Skip to main content
Glama

Server Details

Render chart images from JSON configs via a simple HTTP API. Six themes, ten marks, PNG/SVG output. No client-side JavaScript, no installs – just a URL that returns an image. MCP tools include render, validate, list themes, and browse examples.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Uptime
100.0% over 41 days
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL

TDQS

A4.4/5.0

Scored across 14 tools

Disambiguation5/5

Each tool maps to a distinct resource or action: chart metadata, chart document, chart lifecycle mutations, validation, rendering, schemas, examples, and themes. The only near-overlap is get_chart vs get_chart_document, but their descriptions clearly separate metadata/URLs from the full published document.

Naming Consistency5/5

All 14 tools follow a consistent snake_case verb_noun pattern: get_, list_, save_, update_, delete_, rename_, render_, validate_. There are no mixed conventions or vague generic verbs.

Tool Count5/5

14 tools is within the ideal range and each tool earns its place in a chart authoring/publishing service. The count covers CRUD, validation, rendering, schema discovery, examples, and theming without redundancy.

Completeness4/5

The core saved-chart lifecycle is well covered: list, get, create/save, update, rename, and delete, plus validation and rendering support. The only minor gap is draft handling, since update_chart refuses charts with unpublished editor changes and no tool retrieves that draft, leaving a small edge case for agents.

Available Tools

14 tools
delete_chartDelete chartA
DestructiveIdempotent
Inspect

Use this when the user explicitly wants to permanently delete one saved chart. Deletion cannot be undone, and retrying an already completed deletion succeeds; requires authentication.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesOpaque 32-character saved-chart id

Output Schema

ParametersJSON Schema
NameRequiredDescription
deletedYes

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate destructive and idempotent behavior, but the description adds valuable context: 'Deletion cannot be undone' elaborates on the destructive hint, 'retrying an already completed deletion succeeds' clarifies idempotency, and 'requires authentication' discloses a requirement not present in the annotations. This goes beyond what structured data provides.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, tightly packed sentence that front-loads the usage context and then includes irreversibility, idempotency, and authentication. Every clause earns its place; there is no redundancy or padding.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple single-parameter destructive tool with full annotations and an output schema, the description covers all necessary aspects: when to use it, side effects, retry behavior, and authentication. The agent has enough information to select and invoke the tool correctly without needing external details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description does not mention parameters, but the schema fully covers the single 'id' parameter with a description ('Opaque 32-character saved-chart id') and pattern. With 100% schema description coverage, the baseline of 3 applies; the description adds no additional parameter-level meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'permanently delete one saved chart.' It uses a specific verb and resource, distinguishing it from sibling tools like rename_chart or update_chart. The addition of idempotency ('retrying an already completed deletion succeeds') further clarifies the exact behavior.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says 'Use this when the user explicitly wants to permanently delete one saved chart,' providing clear usage context. It does not name alternative tools or explicitly state when not to use it, but the conditional phrasing implies this is only for explicit deletion requests.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_chartGet chartA
Read-only
Inspect

Use this when the user identifies a saved chart by id and wants to view it or retrieve its metadata and URLs. Displays the published chart when available and does not return its document; requires authentication.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesOpaque 32-character saved-chart id

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYesOpaque 32-character saved-chart id
viewYes
titleYesSaved chart title
sourceYesChart origin; an open set of string values
editUrlYes
embedUrlYesInteractive-embed URL
imageUrlYesRendered-image URL
createdAtYesISO-8601 creation timestamp
manageUrlYes
sizeBytesYesCompressed size of the stored published document, excluding drafts; 0 means no published document has been stored yet
updatedAtYesISO-8601 last-update timestamp
documentUrlYesOwner-only chart-document endpoint
publishedAtYesISO-8601 publish timestamp, or null when public URLs are dark

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the readOnlyHint and destructiveHint annotations, the description adds meaningful behavioral detail: it displays the published chart when available, does not return the document, and requires authentication. This gives the agent a clear picture of side effects and limitations without contradicting the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no filler. It front-loads the primary use case and then adds key behavioral constraints, making it easy for an agent to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple single-parameter read-only tool with an output schema, the description covers the essential context: when to use it, what it returns versus what it excludes, and authentication requirements. Nothing critical is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already fully documents the single id parameter with a pattern and description, so schema coverage is 100%. The description only restates that the id identifies a saved chart, adding no new semantic detail beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: view a saved chart by id or retrieve its metadata and URLs. It also distinguishes itself from get_chart_document by explicitly saying it does not return the document, making its purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description opens with 'Use this when the user identifies a saved chart by id and wants to view it or retrieve its metadata and URLs,' giving clear invocation conditions. It also notes that the tool does not return the document, which implies when not to use it, though it does not name an alternative tool explicitly.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_chart_documentGet chart documentA
Read-only
Inspect

Use this when the user identifies a saved chart by id and needs its complete published Szum document for inspection or reuse. Does not return a newer editor draft; requires authentication.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesOpaque 32-character saved-chart id

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYes
sizeNo
configYes
outputNo
versionYes
presentationNo

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds 'requires authentication' and clarifies it returns the published version, not an editor draft. This gives the agent important context beyond the structured annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the primary use case, and the second sentence adds necessary exclusions and auth. No filler or redundant phrasing.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a one-parameter read tool with an output schema and readOnly annotations, the description covers when to use, what it returns, the version distinction, and authentication. The only minor omission is naming the sibling tool explicitly, but the behavior is clear enough.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the parameter description already specifies 'Opaque 32-character saved-chart id.' The description only repeats the notion of a saved-chart id without adding syntax, format, or additional semantics. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('get'), a specific resource ('complete published Szum document' for a saved chart), and explicitly contrasts with 'newer editor draft', distinguishing it from sibling get_chart. The purpose is immediately clear and not a restatement of the title.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives an explicit condition: 'when the user identifies a saved chart by id and needs its complete published Szum document for inspection or reuse.' It also states what it does not return, signaling when not to use it. The alternative is not named, but the published-vs-editor-draft distinction implies get_chart for drafts.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_examplesGet example chartsA
Read-only
Inspect

Get complete Szum documents for validation, rendering, or saving, with guidance on when to use each pattern. No filters returns one starter per chart type. Any filter searches the complete catalog; all supplied filters intersect. Data is illustrative. Empty matches mean no example satisfies every filter; remove a filter to broaden the search.

ParametersJSON Schema
NameRequiredDescriptionDefault
purposeNoFilter by the primary chart question. Distribution means categorical frequencies, not automatic histogram binning. Range means bounded values, time spans, or uncertainty.
featuresNoReturn examples teaching every selected feature. Annotations explain data; references mark fixed values or statistics; ranges encode start/end values; intervals show lower/upper bounds around scatter observations.
chart_typeNoFilter examples by chart type
example_idNoRetrieve an exact ID from an earlier example result. Intersects any other supplied filters.

Output Schema

ParametersJSON Schema
NameRequiredDescription
examplesYes

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the annotations (readOnlyHint, openWorldHint, destructiveHint), the description adds materially useful behavior: default behavior with no filters, intersection semantics for all filters, the illustrative nature of the data, and the meaning of empty match results. This gives the agent a solid mental model of the tool's runtime behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is four sentences, front-loads the core purpose, and contains no filler or redundant restatement of schema details. Every sentence contributes meaningful semantic or behavioral information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema exists nominally, annotations cover safety, and all parameters are optional, the description is complete: it states what is returned, how filtering works, what no-filter means, and what empty results indicate. No critical calling context is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3, but the description adds value by explaining the general filter behavior: any filter searches the complete catalogainer, all filters intersect, and no filters yields a starter per chart type. This complements, rather than replaces, the schema-level parameter descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the resource as complete Szum example documents and pairs it with a concrete verb ('Get'). It distinguishes itself from sibling tools by calling out the example catalog, one starter per chart type, and the purpose (validation, rendering, saving), so an agent can tell it apart from get_chart or get_chart_document.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives strong situational guidance: use it to fetch complete example documents for validation, rendering, or saving, and explains how to broaden or narrow results with filters. It does not explicitly name alternatives or state when not to use this tool, but the usage context is clear enough for an agent to decide.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_preview_stateGet chart preview stateA
Read-onlyIdempotent
Inspect

Use this when the Szum chart App needs to restore a rendered preview as its current transient or saved view. It is read-only, owner-scoped when authenticated, and hidden from the model.

ParametersJSON Schema
NameRequiredDescriptionDefault
previewIdYesOpaque 16-character chart-preview id

Output Schema

ParametersJSON Schema
NameRequiredDescription
chartNo
statusYes

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already cover read-only, idempotent, and non-destructive behavior. The description adds valuable context beyond annotations: 'owner-scoped when authenticated' and 'hidden from the model,' which are not present in the structured fields. No contradiction exists.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One tightly written sentence that front-loads the trigger condition and packs in scope and visibility details without filler. Every clause earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple one-parameter, read-only getter with an output schema, the description covers when to use it, scoping behavior, and visibility. Return values are already explained by the output schema, so nothing essential is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema fully documents previewId, including type, pattern, and 'opaque 16-character chart-preview id' semantics. With 100% schema description coverage, the description does not need to add parameter details; baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: 'restore a rendered preview as its current transient or saved view.' It clearly distinguishes this from siblings like get_chart and render_chart by focusing on preview-state restoration rather than chart retrieval or rendering.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly opens with 'Use this when the Szum chart App needs to restore a rendered preview,' giving a concrete trigger condition. It does not name alternative tools or exclusions, but the context is specific enough for an agent to select it appropriately.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_schemaGet chart document schemaA
Read-only
Inspect

Use this before authoring an unfamiliar field instead of probing validate_chart for errors. Returns the JSON Schema for the whole Szum document, covering config, data, presentation, size, and output, with every referenced definition included. Pass chart_type to keep only that family's config variants; omitting it returns every family and is much larger. Generated value lists are summarized rather than enumerated; validate_chart remains the authority.

ParametersJSON Schema
NameRequiredDescriptionDefault
chart_typeNoKeep only the config variants for this chart type. Pass it whenever the family is known.

Output Schema

ParametersJSON Schema
NameRequiredDescription
schemaYes
versionYes
chartTypeNo

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the readOnlyHint annotation, the description discloses key behavioral traits: all referenced definitions are included, generated value lists are summarized rather than enumerated, and validate_chart is authoritative for validation. It also warns that omitting chart_type returns a much larger result. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Four sentences, each earning its place: use-case guidance, return scope, parameter behavior, and a caveat about validation authority. The most important instruction is front-loaded. No filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema exists and the tool has only one optional parameter, the description covers everything an agent needs: when to call it, what it returns, how to narrow the result, and its limitation relative to validate_chart. Nothing important is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The single chart_type parameter is fully documented in the schema, and the description adds practical consequence: passing it restricts output to that family's config variants, while omitting it returns every family and is much larger. This goes beyond the schema's description without being verbose.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific verb ('Returns') and resource ('JSON Schema for the whole Szum document'), then enumerates the covered sections: config, data, presentation, size, and output. It also distinguishes itself from validate_chart by framing it as the schema-authoring aid, not the validation authority.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly tells the agent when to use this tool ('before authoring an unfamiliar field') and which sibling not to use ('instead of probing validate_chart for errors'). It also states that validate_chart remains the authority, giving a clear routing rule.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_chartsList chartsA
Read-only
Inspect

Use this when the user wants to find charts in their saved library. Returns paginated metadata and URLs, not chart documents; requires authentication. Draft-only editor charts have publishedAt null, hasDraft true, and sizeBytes 0 because sizeBytes measures only the stored published document, not draft storage.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoCase-insensitive title substring search; trimmed and limited to 100 characters
sortNoSort by creation time (default), update time, or title A-Z
limitNoPage size; defaults to 100 and has a maximum of 1000
cursorNoOpaque nextCursor from the previous page
sourceNoFilter by one or more chart sources; omit to list all

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemsYes
totalNoExact match count, present for title searches or when explicitly requested
nextCursorYesOpaque cursor for the next page, or null on the last page

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, so safety is covered. The description adds that authentication is required, that results are paginated, and explains the draft-only chart field semantics (publishedAt null, hasDraft true, sizeBytes 0). These are non-obvious behaviors beyond the schema, adding real value.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences with front-loaded purpose and no filler. The explanation about draft charts is a single clause that justifies the sizeBytes anomaly, which is valuable. It is concise and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema and fully described input schema, the description covers the main usage, authentication, return type, and a subtle data nuance. It does not mention rate limits or default sort order, but those are minor given the schema already documents defaults. It is complete for an agent to call the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all parameters are already documented. The tool description does not add any parameter-specific meaning or examples, so it relies on the schema. No harm, but no added value beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('find charts') and resource ('saved library'), and explicitly clarifies it returns metadata/URLs not documents, distinguishing it from get_chart_document. This makes its purpose unambiguous and distinct from siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly says 'Use this when the user wants to find charts in their saved library,' giving a clear trigger. It implicitly excludes the case of needing the document by stating it returns metadata/URLs, though it does not name alternative tools for those cases. Clear context without explicit exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_chart_typesList chart typesA
Read-only
Inspect

Use this when choosing a chart family. Returns every current chart type with its shared and family-specific fields.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
sharedYes
chartTypesYes

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already mark this as read-only and non-destructive. The description adds useful behavioral context by stating that it returns every current chart type and includes both shared and family-specific fields, which is beyond the annotation metadata.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences, with the usage context front-loaded and no wasted words. Every clause contributes either the intended use or the return scope.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter read-only list operation with an output schema available, the description is complete. It names the use case and the contents of the result, and no prerequisites, side effects, or alternative behaviors need to be disclosed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so there is no parameter ambiguity and the schema fully covers the input side. The description focuses on output semantics instead, which is appropriate for a parameterless enumeration tool.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb and resource: 'Use this when choosing a chart family' and 'Returns every current chart type.' This clearly distinguishes list_chart_types from siblings like list_charts and list_themes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives an explicit trigger context, 'when choosing a chart family,' which tells the agent when this tool is relevant. It does not mention exclusions or name alternative tools, so it stops short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_themesList themesA
Read-only
Inspect

Use this when choosing a visual theme for a chart. Returns every available theme and guidance on where each works best.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
themesYes

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations declare readOnlyHint: true and destructiveHint: false. Description adds that it returns every theme and guidance, consistent with read-only behavior. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences, front-loaded with usage context. Every word adds value; no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Simple tool with no parameters and output schema present. Description covers purpose and return value sufficiently given the complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters exist; schema coverage is 100%. Description adds no parameter details but isn't needed. Baseline 4 applies as description helps understand the tool's output.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the tool lists themes for charts and provides guidance. It distinguishes itself from siblings like list_charts and list_marks by specifying the resource (themes) and context (for a chart).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says 'Use this when choosing a visual theme for a chart,' giving a clear when-to-use. No alternatives mentioned, but no sibling tool overlaps with this purpose.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

rename_chartRename chartAInspect

Use this when the user wants to change a saved chart's library title without changing its document, publication state, or public URLs; requires authentication.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesOpaque 32-character saved-chart id
titleYesNew saved-chart title; trimmed and limited to 200 characters

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYesOpaque 32-character saved-chart id
viewYes
titleYesSaved chart title
sourceYesChart origin; an open set of string values
editUrlYes
embedUrlYesInteractive-embed URL
imageUrlYesRendered-image URL
createdAtYesISO-8601 creation timestamp
manageUrlYes
sizeBytesYesCompressed size of the stored published document, excluding drafts; 0 means no published document has been stored yet
updatedAtYesISO-8601 last-update timestamp
documentUrlYesOwner-only chart-document endpoint
publishedAtYesISO-8601 publish timestamp, or null when public URLs are dark

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate this is a mutating (readOnlyHint=false) but non-destructive (destructiveHint=false) operation. The description adds valuable context by guaranteeing that the document, publication state, and public URLs are unaffected, and by flagging the authentication requirement.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The entire description is a single sentence with no filler. The usage trigger is front-loaded, and every clause adds either scope, exclusion, or a prerequisite.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter rename operation with an output schema and annotations covering mutation/safety, the description is complete. It covers purpose, when to use it, what it does not affect, and the authentication requirement.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds meaning beyond the schema by clarifying that 'title' refers to the library title (not the document title) and that the operation affects only that field, which helps the agent understand the semantic scope of both parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: 'change a saved chart's library title'. It also distinguishes itself from siblings by explicitly listing what it does not change ('document, publication state, or public URLs'), making the tool's scope unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description opens with 'Use this when the user wants to change a saved chart's library title', which is an explicit trigger condition. It also provides exclusions ('without changing its document, publication state, or public URLs') and a prerequisite ('requires authentication'), though it does not name alternative tools such as update_chart.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

render_chartRender chartAInspect

Use this when the user wants to preview or generate a chart. Validate each generated or changed chart input once before rendering, saving, or updating. Do not revalidate unchanged input; a successful render preflights it for later saves or updates. Errors block; warnings require explicit user approval for the exact chart input. Rendering may add layout warnings to the semantic findings before an action proceeds. Suggestions do not block. A suggestedDocument is a complete, validated replacement. Review the proposed changes before using it; validate again only if you modify it. Stores a 1 hour preview and returns public image URLs. Authenticated previews use the account's render allowance, and each image produced from a returned URL is another render. Anonymous previews are complimentary; their images use the anonymous image allowance.

ParametersJSON Schema
NameRequiredDescriptionDefault
requestYesComplete current ChartDocument JSON with version, config, and data, plus optional presentation, size, and output. Use the same document for validation, rendering, and saving; version must match config.version. Semantic field roles must match row keys. Chronological annual values use YYYY strings on an explicit UTC scale. Column and bar charts with long, wide, or count values, and all area charts, use linear value scales. Their inferred domains include zero, while an explicit domain excluding zero produces a warning. Base-10 log roles and explicit log domains require positive finite values; use line, scatter, or ranged columns and bars.
acknowledgeWarningsNoSet true only after the user explicitly approves every warning returned for this exact request

Output Schema

ParametersJSON Schema
NameRequiredDescription
viewYes
titleYes
formatYes
imageUrlYes
mimeTypeYes
expiresAtYes
validationYes
durableInputYes

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses subtle behaviors beyond annotations: renders are transient (1-hour preview), image URLs count as additional renders against allowances, anonymous previews behave differently, and render may add layout warnings. It also notes that errors block while warnings block pending approval. These details are not in annotations and are critical for correct usage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense and long but every sentence adds operational value. The primary purpose is front-loaded, and the rest covers validation workflow, warning handling, and allowance implications. While it could be tightened, the structure is logical and each sentence earns its place, so 4 is appropriate.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (validation, warnings, render semantics, allowance tracking), the description is comprehensive. It covers the render lifecycle, error/warning blocking rules, suggestedDocument usage, and URL/allowance implications. The output schema exists, so return format is likely documented there. A complete and well-rounded description.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with detailed parameter descriptions. The description adds crucial context: the request must be the same document for validation/rendering/saving, version must match config.version, and chronological values use YYYY strings. It also explains the acknowledgeWarnings semantics (explicit approval). This goes beyond the schema, justifying a 4.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool's purpose: to preview or generate a chart. It uses a specific verb ('preview or generate') and resource ('chart'), and distinguishes it from siblings like validate_chart and save_chart by framing render as the preflight step that validates and produces output.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit guidance on when to use this tool (when the user wants to preview/generate a chart) and extensive workflow rules: validate once, don't revalidate unchanged input, warnings require user approval, suggestions don't block, and suggestedDocument handling. It does not explicitly name sibling alternatives, but the context is clear enough that an agent can infer the tool's role in the render pipeline.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

save_chartSave chartAInspect

Use this when the user wants to permanently save and publish a Szum chart document. Validate each generated or changed chart input once before rendering, saving, or updating. Do not revalidate unchanged input; a successful render preflights it for later saves or updates. Errors block; warnings require explicit user approval for the exact chart input. Rendering may add layout warnings to the semantic findings before an action proceeds. Suggestions do not block. A suggestedDocument is a complete, validated replacement. Review the proposed changes before using it; validate again only if you modify it. Supply one idempotencyKey per intended chart and reuse it for retries. Returns permanent public Image and Embed URLs plus Edit and Studio links; requires authentication and saved-chart storage.

ParametersJSON Schema
NameRequiredDescriptionDefault
documentYesComplete current ChartDocument JSON with version, config, and data, plus optional presentation, size, and output. Use the same document for validation, rendering, and saving; version must match config.version. Semantic field roles must match row keys. Chronological annual values use YYYY strings on an explicit UTC scale. Column and bar charts with long, wide, or count values, and all area charts, use linear value scales. Their inferred domains include zero, while an explicit domain excluding zero produces a warning. Base-10 log roles and explicit log domains require positive finite values; use line, scatter, or ranged columns and bars.
acceptLossesNoCompatibility loss codes explicitly accepted by the user for this save
idempotencyKeyNoStable retry key of at most 255 characters; reuse only for the exact same document
acknowledgeWarningsNoSet true only after the user explicitly approves every warning returned for this exact document

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYesOpaque 32-character saved-chart id
viewYes
titleYes
formatYes
editUrlYes
embedUrlYes
imageUrlYes
mimeTypeYes
manageUrlYes
validationYes

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations declare readOnlyHint=false, openWorldHint=true, and destructiveHint=false. The description substantially enriches this by explaining validation behavior (blocking errors, warning approval, revalidation rules), idempotency key reuse, authentication requirements, storage, and the exact return payload (permanent public URLs and links). This far exceeds what annotations alone convey, providing a complete behavioral picture.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long, but every sentence carries operational weight. It front-loads the core purpose and then systematically covers validation, errors, idempotency, and return values. While it could be tightened, the density is justified given the complexity of the operation. It remains well-structured and not repetitive.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity, the presence of an output schema, full schema coverage, and annotations, the description leaves nothing critical uncovered. It addresses validation workflow, error handling, idempotency, authentication, storage, and return format. An agent has everything needed to invoke it correctly and anticipate outcomes.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, but the description goes far beyond the schema. It explains validation rules for the document (scale types, domain behavior, date formatting, field role matching), clarifies the meaning of acknowledgeWarnings and idempotencyKey, and ties acceptLosses to user approval. This is significant value added beyond the schema's field-level descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a clear, specific verb+resource: 'permanently save and publish a Szum chart document.' It immediately distinguishes this from rendering, validation, and updating by implying the intent to persist and make public. This allows an agent to separate it from siblings like render_chart, validate_chart, and update_chart without extra digging.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use the tool ('when the user wants to permanently save and publish') and provides detailed workflow guidance on validation, idempotency, and error handling. It does not explicitly name alternative tools or say 'do not use for preview/validation', but the context strongly implies these are separate operations. The guidance is clear enough for an agent to decide.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

update_chartUpdate chartA
Destructive
Inspect

Use this when the user wants to replace and publish a saved chart's document while keeping its id and URLs. Validate each generated or changed chart input once before rendering, saving, or updating. Do not revalidate unchanged input; a successful render preflights it for later saves or updates. Errors block; warnings require explicit user approval for the exact chart input. Rendering may add layout warnings to the semantic findings before an action proceeds. Suggestions do not block. A suggestedDocument is a complete, validated replacement. Review the proposed changes before using it; validate again only if you modify it. Refuses charts with unpublished editor changes; requires authentication and saved-chart storage.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesOpaque 32-character saved-chart id
documentYesComplete current ChartDocument JSON with version, config, and data, plus optional presentation, size, and output. Use the same document for validation, rendering, and saving; version must match config.version. Semantic field roles must match row keys. Chronological annual values use YYYY strings on an explicit UTC scale. Column and bar charts with long, wide, or count values, and all area charts, use linear value scales. Their inferred domains include zero, while an explicit domain excluding zero produces a warning. Base-10 log roles and explicit log domains require positive finite values; use line, scatter, or ranged columns and bars.
acceptLossesNoCompatibility loss codes explicitly accepted by the user for this update
acknowledgeWarningsNoSet true only after the user explicitly approves every warning returned for this exact document

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYesOpaque 32-character saved-chart id
viewYes
titleYesSaved chart title
sourceYesChart origin; an open set of string values
editUrlYes
embedUrlYesInteractive-embed URL
imageUrlYesRendered-image URL
createdAtYesISO-8601 creation timestamp
manageUrlYes
sizeBytesYesCompressed size of the stored published document, excluding drafts; 0 means no published document has been stored yet
updatedAtYesISO-8601 last-update timestamp
validationYes
documentUrlYesOwner-only chart-document endpoint
publishedAtYesISO-8601 publish timestamp, or null when public URLs are dark

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses extensive behavioral details beyond the annotations: validation rules, error/warning/suggestion handling, preflight behavior, refusal conditions, and authentication/storage requirements. It clearly explains that the tool is destructive (consistent with destructiveHint:true) and adds nuance about when to revalidate. No annotation contradiction exists.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is lengthy (~200 words) but each sentence contributes unique information. It is front-loaded with the primary use case, followed by validation rules and specific behaviors. The density is justified by the tool's complexity, though it could be tightened by removing the 'suggestedDocument' reference that is not in the schema.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity, the description covers all necessary aspects: when to use, validation workflow, error handling, approval required, refusal conditions, and prerequisites. The output schema (not shown) would handle return values. Nothing an agent needs to invoke correctly is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds value by explaining how acceptLosses and acknowledgeWarnings relate to error/warning handling, and mentions the document validation workflow (version matching, scale rules) that enriches understanding of the 'document' parameter. It does not restate schema details but adds strategic usage context.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'replace and publish a saved chart's document while keeping its id and URLs.' It uses a specific verb-resource pair and differentiates from siblings like save_chart (which likely creates) and render_chart (which only renders). It also mentions the key constraint of preserving id and URLs, which sets it apart from other mutation tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides an explicit 'Use this when...' condition and adds critical validation workflow guidance (errors block, warnings require approval, suggestions don't block). However, it does not explicitly name alternative tools for when not to use it, though the 'when' is specific enough for an agent to infer. The refusal conditions (unpublished editor changes) and authentication requirement further guide usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

validate_chartValidate chart inputA
Read-only
Inspect

Use this when a chart request or document will be rendered, saved, or updated. Validate each generated or changed chart input once before rendering, saving, or updating. Do not revalidate unchanged input; a successful render preflights it for later saves or updates. Errors block; warnings require explicit user approval for the exact chart input. Rendering may add layout warnings to the semantic findings before an action proceeds. Suggestions do not block. A suggestedDocument is a complete, validated replacement. Review the proposed changes before using it; validate again only if you modify it. Read-only, free, and fast.

ParametersJSON Schema
NameRequiredDescriptionDefault
chartYesComplete current ChartDocument JSON with version, config, and data, plus optional presentation, size, and output. Use the same document for validation, rendering, and saving; version must match config.version. Semantic field roles must match row keys. Chronological annual values use YYYY strings on an explicit UTC scale. Column and bar charts with long, wide, or count values, and all area charts, use linear value scales. Their inferred domains include zero, while an explicit domain excluding zero produces a warning. Base-10 log roles and explicit log domains require positive finite values; use line, scatter, or ranged columns and bars.

Output Schema

ParametersJSON Schema
NameRequiredDescription
validYes
diagnosticsYes
compatibilityNo
suggestedDocumentNo

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the annotations (readOnlyHint=true, destructiveHint=false), the description discloses critical behavioral semantics: errors block, warnings require explicit user approval, suggestions do not block, and rendering may add layout warnings. It also states that a suggestedDocument is a complete, validated replacement and that the operation is read-only, free, and fast, adding cost/performance context not captured in annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is longer than minimal but every sentence adds value: it starts with the primary use case, then exclusions, then behavioral semantics, and ends with performance characteristics. It is front-loaded with purpose and well-structured, though it could be slightly more concise without losing essential nuance.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the single parameter with full schema description, the presence of an output schema, and annotations covering read-only/destructive hints, the description is complete. It covers when to use, how the validation behaves (blocking vs. non-blocking), the suggestedDocument replacement concept, and performance characteristics. No critical information for correct invocation is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already provides a detailed description of the 'chart' parameter, covering JSON structure, version matching, field roles, value scales, and domain constraints (schema_description_coverage is 100%). The tool description does not add parameter-specific meaning beyond usage context, so the baseline of 3 applies as per the rubric.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: validate chart input before rendering, saving, or updating. It names the specific verb (validate) and resource (chart input/document), and explicitly differentiates from siblings like render_chart and save_chart by defining when it is needed (pre-render/save/update). The preflight relationship with rendering is also articulated, making it unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage conditions: use it when a chart will be rendered, saved, or updated, and do not revalidate unchanged input because a successful render preflights it. It also instructs to validate again only if modifying a suggestedDocument, giving clear when-to-use and when-not-to-use guidance relative to alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 14 tool updates
    • Changedget_chart6 fields changed
      • removedOutput schema / properties / configUrl
        Removed value: -{
        -  "description": "Owner-only chart-config endpoint",
        -  "type": "string"
        -}
      • addedOutput schema / properties / documentUrl
        Added value: +{
        +  "description": "Owner-only chart-document endpoint",
        +  "type": "string"
        +}
      • removedOutput schema / properties / publishedAt / anyOf
        Removed value: -[
        -  {
        -    "type": "string"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]
      • addedOutput schema / properties / publishedAt / type
        Added value: +[
        +  "string",
        +  "null"
        +]
      • changedOutput schema / properties / sizeBytes / description
        Previous value: -"Compressed size of the stored published config, excluding drafts; 0 means no published config has been stored yet"New value: +"Compressed size of the stored published document, excluding drafts; 0 means no published document has been stored yet"
      • changedOutput schema / required
        Previous value: -[
        -  "view",
        -  "id",
        -  "source",
        -  "title",
        -  "createdAt",
        -  "updatedAt",
        -  "sizeBytes",
        -  "publishedAt",
        -  "imageUrl",
        -  "embedUrl",
        -  "configUrl",
        -  "editUrl",
        -  "manageUrl"
        -]New value: +[
        +  "view",
        +  "id",
        +  "source",
        +  "title",
        +  "createdAt",
        +  "updatedAt",
        +  "sizeBytes",
        +  "publishedAt",
        +  "imageUrl",
        +  "embedUrl",
        +  "documentUrl",
        +  "editUrl",
        +  "manageUrl"
        +]
    • Removedget_chart_config
    • Addedget_chart_document
    • Changedget_examples14 fields changed
      • addedInput schema / properties / chart_type
        Added value: +{
        +  "description": "Filter examples by chart type",
        +  "enum": [
        +    "column",
        +    "bar",
        +    "line",
        +    "area",
        +    "scatter",
        +    "pie"
        +  ],
        +  "type": "string"
        +}
      • addedInput schema / properties / example_id
        Added value: +{
        +  "description": "Retrieve an exact ID from an earlier example result. Intersects any other supplied filters.",
        +  "minLength": 1,
        +  "type": "string"
        +}
      • addedInput schema / properties / features
        Added value: +{
        +  "description": "Return examples teaching every selected feature. Annotations explain data; references mark fixed values or statistics; ranges encode start/end values; intervals show lower/upper bounds around scatter observations.",
        +  "items": {
        +    "enum": [
        +      "labels",
        +      "time_scale",
        +      "stacked",
        +      "categorical_color",
        +      "grouped",
        +      "wide_data",
        +      "totals",
        +      "normalized",
        +      "stable_colors",
        +      "count",
        +      "aggregation",
        +      "signed_values",
        +      "ranges",
        +      "log_scale",
        +      "size_encoding",
        +      "sequential_color",
        +      "diverging_color",
        +      "intervals",
        +      "annotations",
        +      "missing_data",
        +      "references",
        +      "sparkline",
        +      "explicit_order"
        +    ],
        +    "type": "string"
        +  },
        +  "minItems": 1,
        +  "type": "array"
        +}
      • removedInput schema / properties / mark_type
        Removed value: -{
        -  "description": "Filter examples by mark type",
        -  "enum": [
        -    "dot",
        -    "line",
        -    "barY",
        -    "barX",
        -    "areaY",
        -    "areaX",
        -    "pie",
        -    "text",
        -    "ruleX",
        -    "ruleY"
        -  ],
        -  "type": "string"
        -}
      • addedInput schema / properties / purpose
        Added value: +{
        +  "description": "Filter by the primary chart question. Distribution means categorical frequencies, not automatic histogram binning. Range means bounded values, time spans, or uncertainty.",
        +  "enum": [
        +    "comparison",
        +    "trend",
        +    "composition",
        +    "relationship",
        +    "distribution",
        +    "range"
        +  ],
        +  "type": "string"
        +}
      • addedOutput schema / $defs
        Added value: +{
        +  "AnnotationBoxAnchor": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "x": {
        +        "enum": [
        +          "start",
        +          "center",
        +          "end"
        +        ],
        +        "type": "string"
        +      },
        +      "y": {
        +        "enum": [
        +          "top",
        +          "middle",
        +          "bottom"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "x",
        +      "y"
        +    ],
        +    "title": "AnnotationBoxAnchor",
        +    "type": "object"
        +  },
        +  "AnnotationOffset": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "x": {
        +        "type": "number"
        +      },
        +      "y": {
        +        "type": "number"
        +      }
        +    },
        +    "title": "AnnotationOffset",
        +    "type": "object"
        +  },
        +  "AnnotationPlacement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "align": {
        +        "enum": [
        +          "start",
        +          "center",
        +          "end"
        +        ],
        +        "type": "string"
        +      },
        +      "gap": {
        +        "minimum": 0,
        +        "type": "number"
        +      },
        +      "side": {
        +        "enum": [
        +          "above",
        +          "right",
        +          "below",
        +          "left"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "side"
        +    ],
        +    "title": "AnnotationPlacement",
        +    "type": "object"
        +  },
        +  "AnnotationTextStyle": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "background": {
        +        "type": "boolean"
        +      },
        +      "color": {
        +        "$ref": "#/$defs/Color"
        +      },
        +      "fontSize": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      },
        +      "fontWeight": {
        +        "anyOf": [
        +          {
        +            "const": 100,
        +            "type": "number"
        +          },
        +          {
        +            "const": 200,
        +            "type": "number"
        +          },
        +          {
        +            "const": 300,
        +            "type": "number"
        +          },
        +          {
        +            "const": 400,
        +            "type": "number"
        +          },
        +          {
        +            "const": 500,
        +            "type": "number"
        +          },
        +          {
        +            "const": 600,
        +            "type": "number"
        +          },
        +          {
        +            "const": 700,
        +            "type": "number"
        +          },
        +          {
        +            "const": 800,
        +            "type": "number"
        +          },
        +          {
        +            "const": 900,
        +            "type": "number"
        +          }
        +        ]
        +      }
        +    },
        +    "title": "AnnotationTextStyle",
        +    "type": "object"
        +  },
        +  "AreaLabels": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "points": {
        +        "$ref": "#/$defs/ConnectedPointLabels"
        +      },
        +      "series": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "content": {
        +            "items": {
        +              "enum": [
        +                "series",
        +                "value",
        +                "percent"
        +              ],
        +              "type": "string"
        +            },
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          }
        +        },
        +        "required": [
        +          "content"
        +        ],
        +        "type": "object"
        +      }
        +    },
        +    "title": "AreaLabels",
        +    "type": "object"
        +  },
        +  "AxisOptions": {
        +    "anyOf": [
        +      {
        +        "type": "boolean"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "grid": {
        +            "type": "boolean"
        +          },
        +          "line": {
        +            "type": "boolean"
        +          },
        +          "title": {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        },
        +        "type": "object"
        +      }
        +    ],
        +    "title": "AxisOptions"
        +  },
        +  "BandScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "band",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "BandScale",
        +    "type": "object"
        +  },
        +  "BarCategoryRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "oneOf": [
        +          {
        +            "$ref": "#/$defs/BandScale"
        +          },
        +          {
        +            "$ref": "#/$defs/UtcScale"
        +          }
        +        ],
        +        "title": "BarCategoryScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "BarCategoryRole",
        +    "type": "object"
        +  },
        +  "BarSpacingPreference": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "category": {
        +        "exclusiveMaximum": 1,
        +        "minimum": 0,
        +        "type": "number"
        +      },
        +      "series": {
        +        "exclusiveMaximum": 1,
        +        "minimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "BarSpacingPreference",
        +    "type": "object"
        +  },
        +  "CartesianAnnotations": {
        +    "items": {
        +      "additionalProperties": false,
        +      "properties": {
        +        "align": {
        +          "enum": [
        +            "start",
        +            "center",
        +            "end"
        +          ],
        +          "type": "string"
        +        },
        +        "anchor": {
        +          "oneOf": [
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "category": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "category",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "category"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "category": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "series": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "datum",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "category"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "category": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "coordinate",
        +                  "type": "string"
        +                },
        +                "value": {
        +                  "type": "number"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "category",
        +                "value"
        +              ],
        +              "type": "object"
        +            }
        +          ],
        +          "title": "CartesianAnnotationAnchor"
        +        },
        +        "boxAnchor": {
        +          "$ref": "#/$defs/AnnotationBoxAnchor"
        +        },
        +        "connector": {
        +          "enum": [
        +            "none",
        +            "line",
        +            "arrow"
        +          ],
        +          "type": "string"
        +        },
        +        "offset": {
        +          "$ref": "#/$defs/AnnotationOffset"
        +        },
        +        "placement": {
        +          "$ref": "#/$defs/AnnotationPlacement"
        +        },
        +        "reserveSpace": {
        +          "$ref": "#/$defs/ReserveSpace"
        +        },
        +        "style": {
        +          "$ref": "#/$defs/AnnotationTextStyle"
        +        },
        +        "text": {
        +          "type": "string"
        +        },
        +        "visible": {
        +          "type": "boolean"
        +        },
        +        "width": {
        +          "anyOf": [
        +            {
        +              "exclusiveMinimum": 0,
        +              "type": "number"
        +            },
        +            {
        +              "const": "shape",
        +              "type": "string"
        +            }
        +          ]
        +        }
        +      },
        +      "required": [
        +        "text",
        +        "anchor"
        +      ],
        +      "title": "CartesianAnnotation",
        +      "type": "object"
        +    },
        +    "minItems": 1,
        +    "title": "CartesianAnnotations",
        +    "type": "array"
        +  },
        +  "CategoricalColor": {
        +    "anyOf": [
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "$ref": "#/$defs/CategoricalColorMapping"
        +      }
        +    ],
        +    "title": "CategoricalColor"
        +  },
        +  "CategoricalColorMapping": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "domain": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "legend": {
        +        "$ref": "#/$defs/LegendOptions"
        +      },
        +      "range": {
        +        "$ref": "#/$defs/ColorRange"
        +      }
        +    },
        +    "title": "CategoricalColorMapping",
        +    "type": "object"
        +  },
        +  "CategoricalReferences": {
        +    "items": {
        +      "anyOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "const": "category",
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "value": {
        +              "type": [
        +                "string",
        +                "number"
        +              ]
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "value"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "value": {
        +              "type": "number"
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "value"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "statistic": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "basis": {
        +                  "enum": [
        +                    "values",
        +                    "categoryTotals"
        +                  ],
        +                  "type": "string"
        +                },
        +                "operation": {
        +                  "enum": [
        +                    "average",
        +                    "median",
        +                    "min",
        +                    "max"
        +                  ],
        +                  "type": "string"
        +                },
        +                "scope": {
        +                  "enum": [
        +                    "visible",
        +                    "all"
        +                  ],
        +                  "type": "string"
        +                },
        +                "series": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                }
        +              },
        +              "required": [
        +                "operation",
        +                "scope"
        +              ],
        +              "title": "CategoricalReferenceStatistic",
        +              "type": "object"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "statistic",
        +              "type": "string"
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "statistic"
        +          ],
        +          "type": "object"
        +        }
        +      ],
        +      "title": "CategoricalReference"
        +    },
        +    "minItems": 1,
        +    "title": "CategoricalReferences",
        +    "type": "array"
        +  },
        +  "CategoryOrder": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "direction": {
        +            "enum": [
        +              "ascending",
        +              "descending"
        +            ],
        +            "type": "string"
        +          },
        +          "type": {
        +            "enum": [
        +              "category",
        +              "value"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "direction"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "$ref": "#/$defs/ExplicitCategoryOrder"
        +      }
        +    ],
        +    "title": "CategoryOrder"
        +  },
        +  "CategoryRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/CategoryScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "CategoryRole",
        +    "type": "object"
        +  },
        +  "CategoryScale": {
        +    "oneOf": [
        +      {
        +        "$ref": "#/$defs/BandScale"
        +      },
        +      {
        +        "$ref": "#/$defs/LinearScale"
        +      },
        +      {
        +        "$ref": "#/$defs/LogScale"
        +      },
        +      {
        +        "$ref": "#/$defs/UtcScale"
        +      }
        +    ],
        +    "title": "CategoryScale"
        +  },
        +  "CategorySpacing": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "category": {
        +        "exclusiveMaximum": 1,
        +        "minimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "required": [
        +      "category"
        +    ],
        +    "title": "CategorySpacing",
        +    "type": "object"
        +  },
        +  "Color": {
        +    "anyOf": [
        +      {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      {
        +        "anyOf": [
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "dark": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "light": {
        +                "minLength": 1,
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "light"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "dark": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "light": {
        +                "minLength": 1,
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "dark"
        +            ],
        +            "type": "object"
        +          }
        +        ]
        +      }
        +    ],
        +    "title": "Color"
        +  },
        +  "ColorRange": {
        +    "items": {
        +      "$ref": "#/$defs/Color"
        +    },
        +    "minItems": 1,
        +    "title": "ColorRange",
        +    "type": "array"
        +  },
        +  "ConnectedPointLabels": {
        +    "anyOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "at": {
        +            "enum": [
        +              "extrema",
        +              "all",
        +              "ends"
        +            ],
        +            "type": "string"
        +          },
        +          "content": {
        +            "items": {
        +              "enum": [
        +                "category",
        +                "value"
        +              ],
        +              "type": "string"
        +            },
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "position": {
        +            "enum": [
        +              "above",
        +              "side"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "at",
        +          "content"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "at": {
        +            "enum": [
        +              "extrema",
        +              "all",
        +              "ends"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "position": {
        +            "enum": [
        +              "above",
        +              "side"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "at",
        +          "field"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "ConnectedPointLabels"
        +  },
        +  "ContinuousScale": {
        +    "oneOf": [
        +      {
        +        "$ref": "#/$defs/LinearScale"
        +      },
        +      {
        +        "$ref": "#/$defs/LogScale"
        +      },
        +      {
        +        "$ref": "#/$defs/UtcScale"
        +      }
        +    ],
        +    "title": "ContinuousScale"
        +  },
        +  "ExplicitCategoryOrder": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "categories": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "type": {
        +        "const": "explicit",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "categories"
        +    ],
        +    "title": "ExplicitCategoryOrder",
        +    "type": "object"
        +  },
        +  "FieldRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "FieldRole",
        +    "type": "object"
        +  },
        +  "GoogleFontFamily": {
        +    "enum": [
        +      "ABeeZee",
        +      "ADLaM Display",
        +      "AR One Sans",
        +      "Abel",
        +      "Abhaya Libre",
        +      "Aboreto",
        +      "Abril Fatface",
        +      "Abyssinica SIL",
        +      "Aclonica",
        +      "Acme",
        +      "Actor",
        +      "Adamina",
        +      "Advent Pro",
        +      "Afacad",
        +      "Afacad Flux",
        +      "Agbalumo",
        +      "Agdasima",
        +      "Agu Display",
        +      "Aguafina Script",
        +      "Akatab",
        +      "Akaya Kanadaka",
        +      "Akaya Telivigala",
        +      "Akronim",
        +      "Akshar",
        +      "Akt",
        +      "Aladin",
        +      "Alan Sans",
        +      "Alata",
        +      "Alatsi",
        +      "Albert Sans",
        +      "Aldrich",
        +      "Alef",
        +      "Alegreya",
        +      "Alegreya SC",
        +      "Alegreya Sans",
        +      "Alegreya Sans SC",
        +      "Aleo",
        +      "Alex Brush",
        +      "Alexandria",
        +      "Alfa Slab One",
        +      "Alice",
        +      "Alien Block",
        +      "Alike",
        +      "Alike Angular",
        +      "Alkalami",
        +      "Alkatra",
        +      "Allan",
        +      "Allerta",
        +      "Allerta Stencil",
        +      "Allison",
        +      "Allkin",
        +      "Allura",
        +      "Almarai",
        +      "Almendra",
        +      "Almendra Display",
        +      "Almendra SC",
        +      "Alumni Sans",
        +      "Alumni Sans Collegiate One",
        +      "Alumni Sans Inline One",
        +      "Alumni Sans Pinstripe",
        +      "Alumni Sans SC",
        +      "Alyamama",
        +      "Amarante",
        +      "Amaranth",
        +      "Amarna",
        +      "Amatic SC",
        +      "Amethysta",
        +      "Amiko",
        +      "Amiri",
        +      "Amiri Quran",
        +      "Amita",
        +      "Anaheim",
        +      "Ancizar Sans",
        +      "Ancizar Serif",
        +      "Andada Pro",
        +      "Andika",
        +      "Anek Bangla",
        +      "Anek Devanagari",
        +      "Anek Gujarati",
        +      "Anek Gurmukhi",
        +      "Anek Kannada",
        +      "Anek Latin",
        +      "Anek Malayalam",
        +      "Anek Odia",
        +      "Anek Tamil",
        +      "Anek Telugu",
        +      "Angkor",
        +      "Annapurna SIL",
        +      "Annie Use Your Telescope",
        +      "Anonymous Pro",
        +      "Anta",
        +      "Antic",
        +      "Antic Didone",
        +      "Antic Slab",
        +      "Anton",
        +      "Anton SC",
        +      "Antonio",
        +      "Anuphan",
        +      "Anybody",
        +      "Aoboshi One",
        +      "Arapey",
        +      "Arbutus",
        +      "Arbutus Slab",
        +      "Architects Daughter",
        +      "Archivo",
        +      "Archivo Black",
        +      "Archivo Narrow",
        +      "Are You Serious",
        +      "Aref Ruqaa",
        +      "Aref Ruqaa Ink",
        +      "Arima",
        +      "Arimo",
        +      "Arizonia",
        +      "Armata",
        +      "Arsenal",
        +      "Arsenal SC",
        +      "Artifika",
        +      "Arvo",
        +      "Arya",
        +      "Asap",
        +      "Asap Condensed",
        +      "Asar",
        +      "Asimovian",
        +      "Asset",
        +      "Assistant",
        +      "Asta Sans",
        +      "Astloch",
        +      "Asul",
        +      "Athiti",
        +      "Atkinson Hyperlegible",
        +      "Atkinson Hyperlegible Mono",
        +      "Atkinson Hyperlegible Next",
        +      "Atma",
        +      "Atomic Age",
        +      "Aubrey",
        +      "Audiowide",
        +      "Autour One",
        +      "Average",
        +      "Average Sans",
        +      "Averia Gruesa Libre",
        +      "Averia Libre",
        +      "Averia Sans Libre",
        +      "Averia Serif Libre",
        +      "Azeret Mono",
        +      "B612",
        +      "B612 Mono",
        +      "BBH Bartle",
        +      "BBH Bogle",
        +      "BBH Hegarty",
        +      "BIZ UDGothic",
        +      "BIZ UDMincho",
        +      "BIZ UDPGothic",
        +      "BIZ UDPMincho",
        +      "BJCree",
        +      "Babylonica",
        +      "Bacasime Antique",
        +      "Bad Script",
        +      "Badeen Display",
        +      "Bagel Fat One",
        +      "Bahiana",
        +      "Bahianita",
        +      "Bai Jamjuree",
        +      "Bakbak One",
        +      "Ballet",
        +      "Baloo 2",
        +      "Baloo Bhai 2",
        +      "Baloo Bhaijaan 2",
        +      "Baloo Bhaina 2",
        +      "Baloo Chettan 2",
        +      "Baloo Da 2",
        +      "Baloo Paaji 2",
        +      "Baloo Tamma 2",
        +      "Baloo Tammudu 2",
        +      "Baloo Thambi 2",
        +      "Balsamiq Sans",
        +      "Balthazar",
        +      "Bangers",
        +      "Barlow",
        +      "Barlow Condensed",
        +      "Barlow Semi Condensed",
        +      "Barriecito",
        +      "Barrio",
        +      "Basic",
        +      "Baskervville",
        +      "Baskervville SC",
        +      "Battambang",
        +      "Baumans",
        +      "Bayon",
        +      "Be Vietnam Pro",
        +      "Beau Rivage",
        +      "Bebas Neue",
        +      "Beiruti",
        +      "Belanosima",
        +      "Belgrano",
        +      "Bellefair",
        +      "Belleza",
        +      "Bellota",
        +      "Bellota Text",
        +      "BenchNine",
        +      "Benne",
        +      "Bentham",
        +      "Berkshire Swash",
        +      "Besley",
        +      "Betania Patmos",
        +      "Betania Patmos GDL",
        +      "Betania Patmos In",
        +      "Betania Patmos In GDL",
        +      "Beth Ellen",
        +      "Bevan",
        +      "BhuTuka Expanded One",
        +      "Big Shoulders",
        +      "Big Shoulders Inline",
        +      "Big Shoulders Stencil",
        +      "Bigelow Rules",
        +      "Bigshot One",
        +      "Bilbo",
        +      "Bilbo Swash Caps",
        +      "BioRhyme",
        +      "BioRhyme Expanded",
        +      "Birthstone",
        +      "Birthstone Bounce",
        +      "Biryani",
        +      "Bitcount",
        +      "Bitcount Grid Double",
        +      "Bitcount Grid Double Ink",
        +      "Bitcount Grid Single",
        +      "Bitcount Grid Single Ink",
        +      "Bitcount Ink",
        +      "Bitcount Prop Double",
        +      "Bitcount Prop Double Ink",
        +      "Bitcount Prop Single",
        +      "Bitcount Prop Single Ink",
        +      "Bitcount Single",
        +      "Bitcount Single Ink",
        +      "Bitter",
        +      "Black And White Picture",
        +      "Black Han Sans",
        +      "Black Ops One",
        +      "Blaka",
        +      "Blaka Hollow",
        +      "Blaka Ink",
        +      "Blinker",
        +      "Bodoni Moda",
        +      "Bodoni Moda SC",
        +      "Bokor",
        +      "Boldonse",
        +      "Bona Nova",
        +      "Bona Nova SC",
        +      "Bonbon",
        +      "Bonheur Royale",
        +      "Boogaloo",
        +      "Borel",
        +      "Bowlby One",
        +      "Bowlby One SC",
        +      "Bpmf Huninn",
        +      "Bpmf Iansui",
        +      "Bpmf Zihi Kai Std",
        +      "Braah One",
        +      "Brawler",
        +      "Bree Serif",
        +      "Bricolage Grotesque",
        +      "Bruno Ace",
        +      "Bruno Ace SC",
        +      "Brygada 1918",
        +      "Bubblegum Sans",
        +      "Bubbler One",
        +      "Buda",
        +      "Buenard",
        +      "Bungee",
        +      "Bungee Hairline",
        +      "Bungee Inline",
        +      "Bungee Outline",
        +      "Bungee Shade",
        +      "Bungee Spice",
        +      "Bungee Tint",
        +      "Butcherman",
        +      "Butterfly Kids",
        +      "Bytesized",
        +      "Cabin",
        +      "Cabin Condensed",
        +      "Cabin Sketch",
        +      "Cactus Classical Serif",
        +      "Caesar Dressing",
        +      "Cagliostro",
        +      "Cairo",
        +      "Cairo Play",
        +      "Cal Sans",
        +      "Caladea",
        +      "Calistoga",
        +      "Calligraffitti",
        +      "Cambay",
        +      "Cambo",
        +      "Candal",
        +      "Cantarell",
        +      "Cantata One",
        +      "Cantora One",
        +      "Caprasimo",
        +      "Capriola",
        +      "Caramel",
        +      "Carattere",
        +      "Cardo",
        +      "Carlito",
        +      "Carme",
        +      "Carrois Gothic",
        +      "Carrois Gothic SC",
        +      "Carter One",
        +      "Cascadia Code",
        +      "Cascadia Mono",
        +      "Castoro",
        +      "Castoro Titling",
        +      "Catamaran",
        +      "Caudex",
        +      "Cause",
        +      "Caveat",
        +      "Caveat Brush",
        +      "Cedarville Cursive",
        +      "Ceviche One",
        +      "Chakra Petch",
        +      "Changa",
        +      "Changa One",
        +      "Chango",
        +      "Charis SIL",
        +      "Charm",
        +      "Charmonman",
        +      "Chathura",
        +      "Chau Philomene One",
        +      "Chela One",
        +      "Chelsea Market",
        +      "Chenla",
        +      "Cherish",
        +      "Cherry Bomb One",
        +      "Cherry Cream Soda",
        +      "Cherry Swash",
        +      "Chewy",
        +      "Chicle",
        +      "Chilanka",
        +      "Chiron GoRound TC",
        +      "Chiron Hei HK",
        +      "Chiron Sung HK",
        +      "Chivo",
        +      "Chivo Mono",
        +      "Chocolate Classical Sans",
        +      "Chokokutai",
        +      "Chonburi",
        +      "Cinzel",
        +      "Cinzel Decorative",
        +      "Clicker Script",
        +      "Climate Crisis",
        +      "Coda",
        +      "Codystar",
        +      "Coiny",
        +      "Combo",
        +      "Comfortaa",
        +      "Comforter",
        +      "Comforter Brush",
        +      "Comic Neue",
        +      "Comic Relief",
        +      "Coming Soon",
        +      "Comme",
        +      "Commissioner",
        +      "Concert One",
        +      "Condiment",
        +      "Content",
        +      "Contrail One",
        +      "Convergence",
        +      "Cookie",
        +      "Copse",
        +      "Coral Pixels",
        +      "Corben",
        +      "Corinthia",
        +      "Cormorant",
        +      "Cormorant Garamond",
        +      "Cormorant Infant",
        +      "Cormorant SC",
        +      "Cormorant Unicase",
        +      "Cormorant Upright",
        +      "Cossette Texte",
        +      "Cossette Titre",
        +      "Courgette",
        +      "Courier Prime",
        +      "Cousine",
        +      "Coustard",
        +      "Covered By Your Grace",
        +      "Crafty Girls",
        +      "Creepster",
        +      "Crete Round",
        +      "Crimson Pro",
        +      "Crimson Text",
        +      "Croissant One",
        +      "Crushed",
        +      "Cuprum",
        +      "Cute Font",
        +      "Cutive",
        +      "Cutive Mono",
        +      "DM Mono",
        +      "DM Sans",
        +      "DM Serif Display",
        +      "DM Serif Text",
        +      "Dai Banna SIL",
        +      "Damion",
        +      "Dancing Script",
        +      "Danfo",
        +      "Dangrek",
        +      "Darker Grotesque",
        +      "Darumadrop One",
        +      "Datatype",
        +      "David Libre",
        +      "Dawning of a New Day",
        +      "Days One",
        +      "Dekko",
        +      "Dela Gothic One",
        +      "Delicious Handrawn",
        +      "Delius",
        +      "Delius Swash Caps",
        +      "Delius Unicase",
        +      "Della Respira",
        +      "Denk One",
        +      "Devonshire",
        +      "Dhurjati",
        +      "Didact Gothic",
        +      "Diphylleia",
        +      "Diplomata",
        +      "Diplomata SC",
        +      "Do Hyeon",
        +      "Dokdo",
        +      "Domine",
        +      "Donegal One",
        +      "Dongle",
        +      "Doppio One",
        +      "Dorsa",
        +      "Dosis",
        +      "DotGothic16",
        +      "Doto",
        +      "Dr Sugiyama",
        +      "Duru Sans",
        +      "DynaPuff",
        +      "Dynalight",
        +      "EB Garamond",
        +      "Eagle Lake",
        +      "East Sea Dokdo",
        +      "Eater",
        +      "Economica",
        +      "Eczar",
        +      "Edu AU VIC WA NT Arrows",
        +      "Edu AU VIC WA NT Dots",
        +      "Edu AU VIC WA NT Guides",
        +      "Edu AU VIC WA NT Hand",
        +      "Edu AU VIC WA NT Pre",
        +      "Edu NSW ACT Cursive",
        +      "Edu NSW ACT Foundation",
        +      "Edu NSW ACT Hand Pre",
        +      "Edu QLD Beginner",
        +      "Edu QLD Hand",
        +      "Edu SA Beginner",
        +      "Edu SA Hand",
        +      "Edu TAS Beginner",
        +      "Edu VIC WA NT Beginner",
        +      "Edu VIC WA NT Hand",
        +      "Edu VIC WA NT Hand Pre",
        +      "El Messiri",
        +      "Electrolize",
        +      "Elms Sans",
        +      "Elsie",
        +      "Elsie Swash Caps",
        +      "Emblema One",
        +      "Emilys Candy",
        +      "Encode Sans",
        +      "Encode Sans Condensed",
        +      "Encode Sans Expanded",
        +      "Encode Sans SC",
        +      "Encode Sans Semi Condensed",
        +      "Encode Sans Semi Expanded",
        +      "Engagement",
        +      "Englebert",
        +      "Enriqueta",
        +      "Ephesis",
        +      "Epilogue",
        +      "Epunda Sans",
        +      "Epunda Slab",
        +      "Erica One",
        +      "Esteban",
        +      "Estedad",
        +      "Estonia",
        +      "Euphoria Script",
        +      "Ewert",
        +      "Exile",
        +      "Exo",
        +      "Exo 2",
        +      "Expletus Sans",
        +      "Explora",
        +      "Faculty Glyphic",
        +      "Fahkwang",
        +      "Familjen Grotesk",
        +      "Fanwood Text",
        +      "Farro",
        +      "Farsan",
        +      "Fascinate",
        +      "Fascinate Inline",
        +      "Faster One",
        +      "Fasthand",
        +      "Fauna One",
        +      "Faustina",
        +      "Federant",
        +      "Federo",
        +      "Felipa",
        +      "Fenix",
        +      "Festive",
        +      "Figtree",
        +      "Finger Paint",
        +      "Finlandica Headline",
        +      "Finlandica Text",
        +      "Fira Code",
        +      "Fira Mono",
        +      "Fira Sans",
        +      "Fira Sans Condensed",
        +      "Fira Sans Extra Condensed",
        +      "Fjalla One",
        +      "Fjord One",
        +      "Flamenco",
        +      "Flavors",
        +      "Fleur De Leah",
        +      "Flow Block",
        +      "Flow Circular",
        +      "Flow Rounded",
        +      "Foldit",
        +      "Fondamento",
        +      "Fontdiner Swanky",
        +      "Forum",
        +      "Fragment Mono",
        +      "Francois One",
        +      "Frank Ruhl Libre",
        +      "Fraunces",
        +      "Freckle Face",
        +      "Fredericka the Great",
        +      "Fredoka",
        +      "Freehand",
        +      "Freeman",
        +      "Fresca",
        +      "Frijole",
        +      "Fruktur",
        +      "Fugaz One",
        +      "Fuggles",
        +      "Funnel Display",
        +      "Funnel Sans",
        +      "Fustat",
        +      "Fuzzy Bubbles",
        +      "GFS Didot",
        +      "GFS Neohellenic",
        +      "Ga Maamli",
        +      "Gabarito",
        +      "Gabriela",
        +      "Gaegu",
        +      "Gafata",
        +      "Gajraj One",
        +      "Galada",
        +      "Galdeano",
        +      "Galindo",
        +      "Gamja Flower",
        +      "Gantari",
        +      "Gasoek One",
        +      "Gayathri",
        +      "Geist",
        +      "Geist Mono",
        +      "Geist Pixel",
        +      "Gelasio",
        +      "Gemunu Libre",
        +      "Genos",
        +      "Gentium Book Plus",
        +      "Gentium Plus",
        +      "Geo",
        +      "Geologica",
        +      "Geom",
        +      "Geomini",
        +      "Georama",
        +      "Geostar",
        +      "Geostar Fill",
        +      "Germania One",
        +      "Gideon Roman",
        +      "Gidole",
        +      "Gidugu",
        +      "Gilda Display",
        +      "Girassol",
        +      "Give You Glory",
        +      "Glass Antiqua",
        +      "Glegoo",
        +      "Gloock",
        +      "Gloria Hallelujah",
        +      "Glory",
        +      "Gluten",
        +      "Goblin One",
        +      "Gochi Hand",
        +      "Goldman",
        +      "Golos Text",
        +      "Google Sans",
        +      "Google Sans Code",
        +      "Google Sans Flex",
        +      "Gorditas",
        +      "Gothic A1",
        +      "Gotu",
        +      "Goudy Bookletter 1911",
        +      "Gowun Batang",
        +      "Gowun Dodum",
        +      "Graduate",
        +      "Grand Hotel",
        +      "Grandiflora One",
        +      "Grandstander",
        +      "Grape Nuts",
        +      "Gravitas One",
        +      "Great Vibes",
        +      "Grechen Fuemen",
        +      "Grenze",
        +      "Grenze Gotisch",
        +      "Grey Qo",
        +      "Griffy",
        +      "Gruppo",
        +      "Gudea",
        +      "Gugi",
        +      "Gulzar",
        +      "Gupter",
        +      "Gurajada",
        +      "Gveret Levin",
        +      "Gwendolyn",
        +      "Habibi",
        +      "Hachi Maru Pop",
        +      "Hahmlet",
        +      "Halant",
        +      "Hammersmith One",
        +      "Hanalei",
        +      "Hanalei Fill",
        +      "Handjet",
        +      "Handlee",
        +      "Hanken Grotesk",
        +      "Hanuman",
        +      "Happy Monkey",
        +      "Harmattan",
        +      "Headland One",
        +      "Hedvig Letters Sans",
        +      "Hedvig Letters Serif",
        +      "Heebo",
        +      "Henny Penny",
        +      "Hepta Slab",
        +      "Herr Von Muellerhoff",
        +      "Hi Melody",
        +      "Hibur Mono",
        +      "Hina Mincho",
        +      "Hind",
        +      "Hind Guntur",
        +      "Hind Madurai",
        +      "Hind Mysuru",
        +      "Hind Siliguri",
        +      "Hind Vadodara",
        +      "Holtwood One SC",
        +      "Homemade Apple",
        +      "Homenaje",
        +      "Honk",
        +      "Host Grotesk",
        +      "Hubballi",
        +      "Hubot Sans",
        +      "Huninn",
        +      "Hurricane",
        +      "IBM Plex Mono",
        +      "IBM Plex Sans",
        +      "IBM Plex Sans Arabic",
        +      "IBM Plex Sans Condensed",
        +      "IBM Plex Sans Devanagari",
        +      "IBM Plex Sans Hebrew",
        +      "IBM Plex Sans JP",
        +      "IBM Plex Sans KR",
        +      "IBM Plex Sans Thai",
        +      "IBM Plex Sans Thai Looped",
        +      "IBM Plex Serif",
        +      "IM Fell DW Pica",
        +      "IM Fell DW Pica SC",
        +      "IM Fell Double Pica",
        +      "IM Fell Double Pica SC",
        +      "IM Fell English",
        +      "IM Fell English SC",
        +      "IM Fell French Canon",
        +      "IM Fell French Canon SC",
        +      "IM Fell Great Primer",
        +      "IM Fell Great Primer SC",
        +      "Iansui",
        +      "Ibarra Real Nova",
        +      "Iceberg",
        +      "Iceland",
        +      "Idiqlat",
        +      "Imbue",
        +      "Imperial Script",
        +      "Imprima",
        +      "Inclusive Sans",
        +      "Inconsolata",
        +      "Inder",
        +      "Indie Flower",
        +      "Ingrid Darling",
        +      "Inika",
        +      "Inknut Antiqua",
        +      "Inria Sans",
        +      "Inria Serif",
        +      "Inspiration",
        +      "Instrument Sans",
        +      "Instrument Serif",
        +      "Intel One Mono",
        +      "Inter",
        +      "Inter Tight",
        +      "Iosevka Charon",
        +      "Iosevka Charon Mono",
        +      "Irish Grover",
        +      "Island Moments",
        +      "Istok Web",
        +      "Italiana",
        +      "Italianno",
        +      "Itim",
        +      "Jacquard 12",
        +      "Jacquard 12 Charted",
        +      "Jacquard 24",
        +      "Jacquard 24 Charted",
        +      "Jacquarda Bastarda 9",
        +      "Jacquarda Bastarda 9 Charted",
        +      "Jacques Francois",
        +      "Jacques Francois Shadow",
        +      "Jaini",
        +      "Jaini Purva",
        +      "Jaldi",
        +      "Jaro",
        +      "Jersey 10",
        +      "Jersey 10 Charted",
        +      "Jersey 15",
        +      "Jersey 15 Charted",
        +      "Jersey 20",
        +      "Jersey 20 Charted",
        +      "Jersey 25",
        +      "Jersey 25 Charted",
        +      "JetBrains Mono",
        +      "Jim Nightshade",
        +      "Joan",
        +      "Jockey One",
        +      "Jolly Lodger",
        +      "Jomhuria",
        +      "Jomolhari",
        +      "Josefin Sans",
        +      "Josefin Slab",
        +      "Jost",
        +      "Joti One",
        +      "Jua",
        +      "Judson",
        +      "Julee",
        +      "Julius Sans One",
        +      "Junge",
        +      "Jura",
        +      "Just Another Hand",
        +      "Just Me Again Down Here",
        +      "K2D",
        +      "Kablammo",
        +      "Kadwa",
        +      "Kaisei Decol",
        +      "Kaisei HarunoUmi",
        +      "Kaisei Opti",
        +      "Kaisei Tokumin",
        +      "Kalam",
        +      "Kalnia",
        +      "Kalnia Glaze",
        +      "Kameron",
        +      "Kanchenjunga",
        +      "Kanit",
        +      "Kantumruy Pro",
        +      "Kapakana",
        +      "Karantina",
        +      "Karla",
        +      "Karla Tamil Inclined",
        +      "Karla Tamil Upright",
        +      "Karma",
        +      "Katibeh",
        +      "Kaushan Script",
        +      "Kavivanar",
        +      "Kavoon",
        +      "Kay Pho Du",
        +      "Kdam Thmor Pro",
        +      "Keania One",
        +      "Kedebideri",
        +      "Kelly Slab",
        +      "Kenia",
        +      "Khand",
        +      "Khmer",
        +      "Khula",
        +      "Kings",
        +      "Kirang Haerang",
        +      "Kite One",
        +      "Kiwi Maru",
        +      "Klee One",
        +      "Knewave",
        +      "KoHo",
        +      "Kodchasan",
        +      "Kode Mono",
        +      "Koh Santepheap",
        +      "Kolker Brush",
        +      "Konkhmer Sleokchher",
        +      "Kosugi",
        +      "Kosugi Maru",
        +      "Kotta One",
        +      "Koulen",
        +      "Kranky",
        +      "Kreon",
        +      "Kristi",
        +      "Krona One",
        +      "Krub",
        +      "Kufam",
        +      "Kulim Park",
        +      "Kumar One",
        +      "Kumar One Outline",
        +      "Kumbh Sans",
        +      "Kurale",
        +      "LINE Seed JP",
        +      "LXGW Marker Gothic",
        +      "LXGW WenKai Mono TC",
        +      "LXGW WenKai TC",
        +      "La Belle Aurore",
        +      "Labrada",
        +      "Lacquer",
        +      "Laila",
        +      "Lakki Reddy",
        +      "Lalezar",
        +      "Lancelot",
        +      "Langar",
        +      "Lateef",
        +      "Lato",
        +      "Lavishly Yours",
        +      "League Gothic",
        +      "League Script",
        +      "League Spartan",
        +      "Leckerli One",
        +      "Ledger",
        +      "Lekton",
        +      "Lemon",
        +      "Lemonada",
        +      "Lexend",
        +      "Lexend Deca",
        +      "Lexend Exa",
        +      "Lexend Giga",
        +      "Lexend Mega",
        +      "Lexend Peta",
        +      "Lexend Tera",
        +      "Lexend Zetta",
        +      "Libertinus Keyboard",
        +      "Libertinus Math",
        +      "Libertinus Mono",
        +      "Libertinus Sans",
        +      "Libertinus Serif",
        +      "Libertinus Serif Display",
        +      "Libre Barcode 128",
        +      "Libre Barcode 128 Text",
        +      "Libre Barcode 39",
        +      "Libre Barcode 39 Extended",
        +      "Libre Barcode 39 Extended Text",
        +      "Libre Barcode 39 Text",
        +      "Libre Barcode EAN13 Text",
        +      "Libre Baskerville",
        +      "Libre Bodoni",
        +      "Libre Caslon Display",
        +      "Libre Caslon Text",
        +      "Libre Franklin",
        +      "Licorice",
        +      "Life Savers",
        +      "Lilex",
        +      "Lilita One",
        +      "Lily Script One",
        +      "Limelight",
        +      "Linden Hill",
        +      "Linefont",
        +      "Lisu Bosa",
        +      "Liter",
        +      "Literata",
        +      "Liu Jian Mao Cao",
        +      "Livvic",
        +      "Lobster",
        +      "Lobster Two",
        +      "Londrina Outline",
        +      "Londrina Shadow",
        +      "Londrina Sketch",
        +      "Londrina Solid",
        +      "Long Cang",
        +      "Lora",
        +      "Love Light",
        +      "Love Ya Like A Sister",
        +      "Loved by the King",
        +      "Lovers Quarrel",
        +      "Luckiest Guy",
        +      "Lugrasimo",
        +      "Lumanosimo",
        +      "Lunasima",
        +      "Lusitana",
        +      "Lustria",
        +      "Luxurious Roman",
        +      "Luxurious Script",
        +      "M PLUS 1",
        +      "M PLUS 1 Code",
        +      "M PLUS 1p",
        +      "M PLUS 2",
        +      "M PLUS Code Latin",
        +      "M PLUS Rounded 1c",
        +      "M PLUS U",
        +      "Ma Shan Zheng",
        +      "Macondo",
        +      "Macondo Swash Caps",
        +      "Mada",
        +      "Madimi One",
        +      "Magra",
        +      "Maiden Orange",
        +      "Maitree",
        +      "Major Mono Display",
        +      "Mako",
        +      "Mali",
        +      "Mallanna",
        +      "Maname",
        +      "Mandali",
        +      "Manjari",
        +      "Manrope",
        +      "Mansalva",
        +      "Manuale",
        +      "Manufacturing Consent",
        +      "Marcellus",
        +      "Marcellus SC",
        +      "Marck Script",
        +      "Margarine",
        +      "Marhey",
        +      "Markazi Text",
        +      "Marko One",
        +      "Marmelad",
        +      "Martel",
        +      "Martel Sans",
        +      "Martian Mono",
        +      "Marvel",
        +      "Matangi",
        +      "Mate",
        +      "Mate SC",
        +      "Matemasie",
        +      "Material Icons",
        +      "Material Icons Outlined",
        +      "Material Icons Round",
        +      "Material Icons Sharp",
        +      "Material Icons Two Tone",
        +      "Material Symbols",
        +      "Material Symbols Outlined",
        +      "Material Symbols Rounded",
        +      "Material Symbols Sharp",
        +      "Maven Pro",
        +      "McLaren",
        +      "Mea Culpa",
        +      "Meddon",
        +      "MedievalSharp",
        +      "Medula One",
        +      "Meera Inimai",
        +      "Megrim",
        +      "Meie Script",
        +      "Menbere",
        +      "Meow Script",
        +      "Merienda",
        +      "Merriweather",
        +      "Merriweather Sans",
        +      "Metal",
        +      "Metal Mania",
        +      "Metamorphous",
        +      "Metrophobic",
        +      "Michroma",
        +      "Micro 5",
        +      "Micro 5 Charted",
        +      "Milonga",
        +      "Miltonian",
        +      "Miltonian Tattoo",
        +      "Mina",
        +      "Mingzat",
        +      "Miniver",
        +      "Miranda Sans",
        +      "Miriam Libre",
        +      "Mirza",
        +      "Miss Fajardose",
        +      "Mitr",
        +      "Mochiy Pop One",
        +      "Mochiy Pop P One",
        +      "Modak",
        +      "Modern Antiqua",
        +      "Moderustic",
        +      "Mogra",
        +      "Mohave",
        +      "Moirai One",
        +      "Molengo",
        +      "Molle",
        +      "Momo Signature",
        +      "Momo Trust Display",
        +      "Momo Trust Sans",
        +      "Mona Sans",
        +      "Monda",
        +      "Monofett",
        +      "Monomakh",
        +      "Monomaniac One",
        +      "Monoton",
        +      "Monsieur La Doulaise",
        +      "Montaga",
        +      "Montagu Slab",
        +      "MonteCarlo",
        +      "Montenegrin Gothic One",
        +      "Montez",
        +      "Montserrat",
        +      "Montserrat Alternates",
        +      "Montserrat Underline",
        +      "Moo Lah Lah",
        +      "Mooli",
        +      "Moon Dance",
        +      "Moul",
        +      "Moulpali",
        +      "Mountains of Christmas",
        +      "Mouse Memoirs",
        +      "Mozilla Headline",
        +      "Mozilla Text",
        +      "Mr Bedfort",
        +      "Mr Dafoe",
        +      "Mr De Haviland",
        +      "Mrs Saint Delafield",
        +      "Mrs Sheppards",
        +      "Ms Madi",
        +      "Mukta",
        +      "Mukta Mahee",
        +      "Mukta Malar",
        +      "Mukta Vaani",
        +      "Mulish",
        +      "Murecho",
        +      "MuseoModerno",
        +      "My Soul",
        +      "Mynerve",
        +      "Mystery Quest",
        +      "NTR",
        +      "Nabla",
        +      "Namdhinggo",
        +      "Nanum Brush Script",
        +      "Nanum Gothic",
        +      "Nanum Gothic Coding",
        +      "Nanum Myeongjo",
        +      "Nanum Pen Script",
        +      "Narnoor",
        +      "Nata Sans",
        +      "National Park",
        +      "Neonderthaw",
        +      "Nerko One",
        +      "Neucha",
        +      "Neuton",
        +      "New Amsterdam",
        +      "New Rocker",
        +      "New Tegomin",
        +      "News Cycle",
        +      "Newsreader",
        +      "Niconne",
        +      "Niramit",
        +      "Nixie One",
        +      "Nobile",
        +      "Nokora",
        +      "Norican",
        +      "Nosifer",
        +      "Notable",
        +      "Nothing You Could Do",
        +      "Noticia Text",
        +      "Noto Color Emoji",
        +      "Noto Emoji",
        +      "Noto Kufi Arabic",
        +      "Noto Music",
        +      "Noto Naskh Arabic",
        +      "Noto Nastaliq Urdu",
        +      "Noto Rashi Hebrew",
        +      "Noto Sans",
        +      "Noto Sans Adlam",
        +      "Noto Sans Adlam Unjoined",
        +      "Noto Sans Anatolian Hieroglyphs",
        +      "Noto Sans Arabic",
        +      "Noto Sans Armenian",
        +      "Noto Sans Avestan",
        +      "Noto Sans Balinese",
        +      "Noto Sans Bamum",
        +      "Noto Sans Bassa Vah",
        +      "Noto Sans Batak",
        +      "Noto Sans Bengali",
        +      "Noto Sans Bhaiksuki",
        +      "Noto Sans Brahmi",
        +      "Noto Sans Buginese",
        +      "Noto Sans Buhid",
        +      "Noto Sans Canadian Aboriginal",
        +      "Noto Sans Carian",
        +      "Noto Sans Caucasian Albanian",
        +      "Noto Sans Chakma",
        +      "Noto Sans Cham",
        +      "Noto Sans Cherokee",
        +      "Noto Sans Chorasmian",
        +      "Noto Sans Coptic",
        +      "Noto Sans Cuneiform",
        +      "Noto Sans Cypriot",
        +      "Noto Sans Cypro Minoan",
        +      "Noto Sans Deseret",
        +      "Noto Sans Devanagari",
        +      "Noto Sans Display",
        +      "Noto Sans Duployan",
        +      "Noto Sans Egyptian Hieroglyphs",
        +      "Noto Sans Elbasan",
        +      "Noto Sans Elymaic",
        +      "Noto Sans Ethiopic",
        +      "Noto Sans Georgian",
        +      "Noto Sans Glagolitic",
        +      "Noto Sans Gothic",
        +      "Noto Sans Grantha",
        +      "Noto Sans Gujarati",
        +      "Noto Sans Gunjala Gondi",
        +      "Noto Sans Gurmukhi",
        +      "Noto Sans HK",
        +      "Noto Sans Hanifi Rohingya",
        +      "Noto Sans Hanunoo",
        +      "Noto Sans Hatran",
        +      "Noto Sans Hebrew",
        +      "Noto Sans Imperial Aramaic",
        +      "Noto Sans Indic Siyaq Numbers",
        +      "Noto Sans Inscriptional Pahlavi",
        +      "Noto Sans Inscriptional Parthian",
        +      "Noto Sans JP",
        +      "Noto Sans Javanese",
        +      "Noto Sans KR",
        +      "Noto Sans Kaithi",
        +      "Noto Sans Kannada",
        +      "Noto Sans Kawi",
        +      "Noto Sans Kayah Li",
        +      "Noto Sans Kharoshthi",
        +      "Noto Sans Khmer",
        +      "Noto Sans Khojki",
        +      "Noto Sans Khudawadi",
        +      "Noto Sans Lao",
        +      "Noto Sans Lao Looped",
        +      "Noto Sans Lepcha",
        +      "Noto Sans Limbu",
        +      "Noto Sans Linear A",
        +      "Noto Sans Linear B",
        +      "Noto Sans Lisu",
        +      "Noto Sans Lycian",
        +      "Noto Sans Lydian",
        +      "Noto Sans Mahajani",
        +      "Noto Sans Malayalam",
        +      "Noto Sans Mandaic",
        +      "Noto Sans Manichaean",
        +      "Noto Sans Marchen",
        +      "Noto Sans Masaram Gondi",
        +      "Noto Sans Math",
        +      "Noto Sans Mayan Numerals",
        +      "Noto Sans Medefaidrin",
        +      "Noto Sans Meetei Mayek",
        +      "Noto Sans Mende Kikakui",
        +      "Noto Sans Meroitic",
        +      "Noto Sans Miao",
        +      "Noto Sans Modi",
        +      "Noto Sans Mongolian",
        +      "Noto Sans Mono",
        +      "Noto Sans Mro",
        +      "Noto Sans Multani",
        +      "Noto Sans Myanmar",
        +      "Noto Sans NKo",
        +      "Noto Sans NKo Unjoined",
        +      "Noto Sans Nabataean",
        +      "Noto Sans Nag Mundari",
        +      "Noto Sans Nandinagari",
        +      "Noto Sans New Tai Lue",
        +      "Noto Sans Newa",
        +      "Noto Sans Nushu",
        +      "Noto Sans Ogham",
        +      "Noto Sans Ol Chiki",
        +      "Noto Sans Old Hungarian",
        +      "Noto Sans Old Italic",
        +      "Noto Sans Old North Arabian",
        +      "Noto Sans Old Permic",
        +      "Noto Sans Old Persian",
        +      "Noto Sans Old Sogdian",
        +      "Noto Sans Old South Arabian",
        +      "Noto Sans Old Turkic",
        +      "Noto Sans Oriya",
        +      "Noto Sans Osage",
        +      "Noto Sans Osmanya",
        +      "Noto Sans Pahawh Hmong",
        +      "Noto Sans Palmyrene",
        +      "Noto Sans Pau Cin Hau",
        +      "Noto Sans PhagsPa",
        +      "Noto Sans Phoenician",
        +      "Noto Sans Psalter Pahlavi",
        +      "Noto Sans Rejang",
        +      "Noto Sans Runic",
        +      "Noto Sans SC",
        +      "Noto Sans Samaritan",
        +      "Noto Sans Saurashtra",
        +      "Noto Sans Sharada",
        +      "Noto Sans Shavian",
        +      "Noto Sans Siddham",
        +      "Noto Sans SignWriting",
        +      "Noto Sans Sinhala",
        +      "Noto Sans Sogdian",
        +      "Noto Sans Sora Sompeng",
        +      "Noto Sans Soyombo",
        +      "Noto Sans Sundanese",
        +      "Noto Sans Sunuwar",
        +      "Noto Sans Syloti Nagri",
        +      "Noto Sans Symbols",
        +      "Noto Sans Symbols 2",
        +      "Noto Sans Syriac",
        +      "Noto Sans Syriac Eastern",
        +      "Noto Sans Syriac Western",
        +      "Noto Sans TC",
        +      "Noto Sans Tagalog",
        +      "Noto Sans Tagbanwa",
        +      "Noto Sans Tai Le",
        +      "Noto Sans Tai Tham",
        +      "Noto Sans Tai Viet",
        +      "Noto Sans Takri",
        +      "Noto Sans Tamil",
        +      "Noto Sans Tamil Supplement",
        +      "Noto Sans Tangsa",
        +      "Noto Sans Telugu",
        +      "Noto Sans Thaana",
        +      "Noto Sans Thai",
        +      "Noto Sans Thai Looped",
        +      "Noto Sans Tifinagh",
        +      "Noto Sans Tirhuta",
        +      "Noto Sans Ugaritic",
        +      "Noto Sans Vai",
        +      "Noto Sans Vithkuqi",
        +      "Noto Sans Wancho",
        +      "Noto Sans Warang Citi",
        +      "Noto Sans Yi",
        +      "Noto Sans Zanabazar Square",
        +      "Noto Serif",
        +      "Noto Serif Ahom",
        +      "Noto Serif Armenian",
        +      "Noto Serif Balinese",
        +      "Noto Serif Bengali",
        +      "Noto Serif Devanagari",
        +      "Noto Serif Display",
        +      "Noto Serif Dives Akuru",
        +      "Noto Serif Dogra",
        +      "Noto Serif Ethiopic",
        +      "Noto Serif Georgian",
        +      "Noto Serif Grantha",
        +      "Noto Serif Gujarati",
        +      "Noto Serif Gurmukhi",
        +      "Noto Serif HK",
        +      "Noto Serif Hebrew",
        +      "Noto Serif Hentaigana",
        +      "Noto Serif JP",
        +      "Noto Serif KR",
        +      "Noto Serif Kannada",
        +      "Noto Serif Khitan Small Script",
        +      "Noto Serif Khmer",
        +      "Noto Serif Khojki",
        +      "Noto Serif Lao",
        +      "Noto Serif Makasar",
        +      "Noto Serif Malayalam",
        +      "Noto Serif Myanmar",
        +      "Noto Serif NP Hmong",
        +      "Noto Serif Old Uyghur",
        +      "Noto Serif Oriya",
        +      "Noto Serif Ottoman Siyaq",
        +      "Noto Serif SC",
        +      "Noto Serif Sinhala",
        +      "Noto Serif TC",
        +      "Noto Serif Tamil",
        +      "Noto Serif Tangut",
        +      "Noto Serif Telugu",
        +      "Noto Serif Thai",
        +      "Noto Serif Tibetan",
        +      "Noto Serif Todhri",
        +      "Noto Serif Toto",
        +      "Noto Serif Vithkuqi",
        +      "Noto Serif Yezidi",
        +      "Noto Traditional Nushu",
        +      "Noto Znamenny Musical Notation",
        +      "Nova Cut",
        +      "Nova Flat",
        +      "Nova Mono",
        +      "Nova Oval",
        +      "Nova Round",
        +      "Nova Script",
        +      "Nova Slim",
        +      "Nova Square",
        +      "Numans",
        +      "Nunito",
        +      "Nunito Sans",
        +      "Nuosu SIL",
        +      "Odibee Sans",
        +      "Odor Mean Chey",
        +      "Offside",
        +      "Oi",
        +      "Ojuju",
        +      "Old Standard TT",
        +      "Oldenburg",
        +      "Ole",
        +      "Oleo Script",
        +      "Oleo Script Swash Caps",
        +      "Onest",
        +      "Oooh Baby",
        +      "Open Sans",
        +      "Oranienbaum",
        +      "Orbit",
        +      "Orbitron",
        +      "Oregano",
        +      "Orelega One",
        +      "Orienta",
        +      "Original Surfer",
        +      "Oswald",
        +      "Outfit",
        +      "Over the Rainbow",
        +      "Overlock",
        +      "Overlock SC",
        +      "Overpass",
        +      "Overpass Mono",
        +      "Ovo",
        +      "Oxanium",
        +      "Oxygen",
        +      "Oxygen Mono",
        +      "PT Mono",
        +      "PT Sans",
        +      "PT Sans Caption",
        +      "PT Sans Narrow",
        +      "PT Serif",
        +      "PT Serif Caption",
        +      "Pacifico",
        +      "Padauk",
        +      "Padyakke Expanded One",
        +      "Palanquin",
        +      "Palanquin Dark",
        +      "Palette Mosaic",
        +      "Pangolin",
        +      "Paprika",
        +      "Parastoo",
        +      "Parisienne",
        +      "Parkinsans",
        +      "Passero One",
        +      "Passion One",
        +      "Passions Conflict",
        +      "Pathway Extreme",
        +      "Pathway Gothic One",
        +      "Patrick Hand",
        +      "Patrick Hand SC",
        +      "Pattaya",
        +      "Patua One",
        +      "Pavanam",
        +      "Paytone One",
        +      "Peddana",
        +      "Peralta",
        +      "Permanent Marker",
        +      "Petemoss",
        +      "Petit Formal Script",
        +      "Petrona",
        +      "Phetsarath",
        +      "Philosopher",
        +      "Phudu",
        +      "Piazzolla",
        +      "Piedra",
        +      "Pinyon Script",
        +      "Pirata One",
        +      "Pixelify Sans",
        +      "Plaster",
        +      "Platypi",
        +      "Play",
        +      "Playball",
        +      "Playfair",
        +      "Playfair Display",
        +      "Playfair Display SC",
        +      "Playpen Sans",
        +      "Playpen Sans Arabic",
        +      "Playpen Sans Deva",
        +      "Playpen Sans Hebrew",
        +      "Playpen Sans Thai",
        +      "Playwrite AR",
        +      "Playwrite AR Guides",
        +      "Playwrite AT",
        +      "Playwrite AT Guides",
        +      "Playwrite AU NSW",
        +      "Playwrite AU NSW Guides",
        +      "Playwrite AU QLD",
        +      "Playwrite AU QLD Guides",
        +      "Playwrite AU SA",
        +      "Playwrite AU SA Guides",
        +      "Playwrite AU TAS",
        +      "Playwrite AU TAS Guides",
        +      "Playwrite AU VIC",
        +      "Playwrite AU VIC Guides",
        +      "Playwrite BE VLG",
        +      "Playwrite BE VLG Guides",
        +      "Playwrite BE WAL",
        +      "Playwrite BE WAL Guides",
        +      "Playwrite BR",
        +      "Playwrite BR Guides",
        +      "Playwrite CA",
        +      "Playwrite CA Guides",
        +      "Playwrite CL",
        +      "Playwrite CL Guides",
        +      "Playwrite CO",
        +      "Playwrite CO Guides",
        +      "Playwrite CU",
        +      "Playwrite CU Guides",
        +      "Playwrite CZ",
        +      "Playwrite CZ Guides",
        +      "Playwrite DE Grund",
        +      "Playwrite DE Grund Guides",
        +      "Playwrite DE LA",
        +      "Playwrite DE LA Guides",
        +      "Playwrite DE SAS",
        +      "Playwrite DE SAS Guides",
        +      "Playwrite DE VA",
        +      "Playwrite DE VA Guides",
        +      "Playwrite DK Loopet",
        +      "Playwrite DK Loopet Guides",
        +      "Playwrite DK Uloopet",
        +      "Playwrite DK Uloopet Guides",
        +      "Playwrite ES",
        +      "Playwrite ES Deco",
        +      "Playwrite ES Deco Guides",
        +      "Playwrite ES Guides",
        +      "Playwrite FR Moderne",
        +      "Playwrite FR Moderne Guides",
        +      "Playwrite FR Trad",
        +      "Playwrite FR Trad Guides",
        +      "Playwrite GB J",
        +      "Playwrite GB J Guides",
        +      "Playwrite GB S",
        +      "Playwrite GB S Guides",
        +      "Playwrite HR",
        +      "Playwrite HR Guides",
        +      "Playwrite HR Lijeva",
        +      "Playwrite HR Lijeva Guides",
        +      "Playwrite HU",
        +      "Playwrite HU Guides",
        +      "Playwrite ID",
        +      "Playwrite ID Guides",
        +      "Playwrite IE",
        +      "Playwrite IE Guides",
        +      "Playwrite IN",
        +      "Playwrite IN Guides",
        +      "Playwrite IS",
        +      "Playwrite IS Guides",
        +      "Playwrite IT Moderna",
        +      "Playwrite IT Moderna Guides",
        +      "Playwrite IT Trad",
        +      "Playwrite IT Trad Guides",
        +      "Playwrite MX",
        +      "Playwrite MX Guides",
        +      "Playwrite NG Modern",
        +      "Playwrite NG Modern Guides",
        +      "Playwrite NL",
        +      "Playwrite NL Guides",
        +      "Playwrite NO",
        +      "Playwrite NO Guides",
        +      "Playwrite NZ",
        +      "Playwrite NZ Basic",
        +      "Playwrite NZ Basic Guides",
        +      "Playwrite NZ Guides",
        +      "Playwrite PE",
        +      "Playwrite PE Guides",
        +      "Playwrite PL",
        +      "Playwrite PL Guides",
        +      "Playwrite PT",
        +      "Playwrite PT Guides",
        +      "Playwrite RO",
        +      "Playwrite RO Guides",
        +      "Playwrite SK",
        +      "Playwrite SK Guides",
        +      "Playwrite TZ",
        +      "Playwrite TZ Guides",
        +      "Playwrite US Modern",
        +      "Playwrite US Modern Guides",
        +      "Playwrite US Trad",
        +      "Playwrite US Trad Guides",
        +      "Playwrite VN",
        +      "Playwrite VN Guides",
        +      "Playwrite ZA",
        +      "Playwrite ZA Guides",
        +      "Pliant",
        +      "Plus Jakarta Sans",
        +      "Pochaevsk",
        +      "Podkova",
        +      "Poetsen One",
        +      "Poiret One",
        +      "Poller One",
        +      "Poltawski Nowy",
        +      "Poly",
        +      "Pompiere",
        +      "Ponnala",
        +      "Ponomar",
        +      "Pontano Sans",
        +      "Poor Story",
        +      "Poppins",
        +      "Port Lligat Sans",
        +      "Port Lligat Slab",
        +      "Potta One",
        +      "Pragati Narrow",
        +      "Praise",
        +      "Prata",
        +      "Preahvihear",
        +      "Press Start 2P",
        +      "Pridi",
        +      "Princess Sofia",
        +      "Prociono",
        +      "Prompt",
        +      "Prosto One",
        +      "Protest Guerrilla",
        +      "Protest Revolution",
        +      "Protest Riot",
        +      "Protest Strike",
        +      "Proza Libre",
        +      "Public Sans",
        +      "Puppies Play",
        +      "Puritan",
        +      "Purple Purse",
        +      "Qahiri",
        +      "Quando",
        +      "Quantico",
        +      "Quattrocento",
        +      "Quattrocento Sans",
        +      "Questrial",
        +      "Quicksand",
        +      "Quintessential",
        +      "Qwigley",
        +      "Qwitcher Grypen",
        +      "REM",
        +      "Racing Sans One",
        +      "Radio Canada",
        +      "Radio Canada Big",
        +      "Radley",
        +      "Rajdhani",
        +      "Rakkas",
        +      "Raleway",
        +      "Raleway Dots",
        +      "Ramabhadra",
        +      "Ramaraja",
        +      "Rambla",
        +      "Rammetto One",
        +      "Rampart One",
        +      "Ramsina",
        +      "Ranchers",
        +      "Rancho",
        +      "Ranga",
        +      "Rasa",
        +      "Rationale",
        +      "Ravi Prakash",
        +      "Readex Pro",
        +      "Recursive",
        +      "Red Hat Display",
        +      "Red Hat Mono",
        +      "Red Hat Text",
        +      "Red Rose",
        +      "Redacted",
        +      "Redacted Script",
        +      "Reddit Mono",
        +      "Reddit Sans",
        +      "Reddit Sans Condensed",
        +      "Redressed",
        +      "Reem Kufi",
        +      "Reem Kufi Fun",
        +      "Reem Kufi Ink",
        +      "Reenie Beanie",
        +      "Reggae One",
        +      "Rethink Sans",
        +      "Revalia",
        +      "Rhodium Libre",
        +      "Ribeye",
        +      "Ribeye Marrow",
        +      "Righteous",
        +      "Risque",
        +      "Road Rage",
        +      "Roboto",
        +      "Roboto Condensed",
        +      "Roboto Flex",
        +      "Roboto Mono",
        +      "Roboto Serif",
        +      "Roboto Slab",
        +      "Rochester",
        +      "Rock 3D",
        +      "Rock Salt",
        +      "RocknRoll One",
        +      "Rokkitt",
        +      "Romanesco",
        +      "Ropa Sans",
        +      "Rosario",
        +      "Rosarivo",
        +      "Rouge Script",
        +      "Rowdies",
        +      "Rozha One",
        +      "Rubik",
        +      "Rubik 80s Fade",
        +      "Rubik Beastly",
        +      "Rubik Broken Fax",
        +      "Rubik Bubbles",
        +      "Rubik Burned",
        +      "Rubik Dirt",
        +      "Rubik Distressed",
        +      "Rubik Doodle Shadow",
        +      "Rubik Doodle Triangles",
        +      "Rubik Gemstones",
        +      "Rubik Glitch",
        +      "Rubik Glitch Pop",
        +      "Rubik Iso",
        +      "Rubik Lines",
        +      "Rubik Maps",
        +      "Rubik Marker Hatch",
        +      "Rubik Maze",
        +      "Rubik Microbe",
        +      "Rubik Mono One",
        +      "Rubik Moonrocks",
        +      "Rubik Pixels",
        +      "Rubik Puddles",
        +      "Rubik Scribble",
        +      "Rubik Spray Paint",
        +      "Rubik Storm",
        +      "Rubik Vinyl",
        +      "Rubik Wet Paint",
        +      "Ruda",
        +      "Rufina",
        +      "Ruge Boogie",
        +      "Ruluko",
        +      "Rum Raisin",
        +      "Ruslan Display",
        +      "Russo One",
        +      "Ruthie",
        +      "Ruwudu",
        +      "Rye",
        +      "SN Pro",
        +      "STIX Two Math",
        +      "STIX Two Text",
        +      "SUSE",
        +      "SUSE Mono",
        +      "Sacramento",
        +      "Sahitya",
        +      "Sail",
        +      "Saira",
        +      "Saira Condensed",
        +      "Saira Extra Condensed",
        +      "Saira Semi Condensed",
        +      "Saira Stencil",
        +      "Salsa",
        +      "Sanchez",
        +      "Sancreek",
        +      "Sankofa Display",
        +      "Sansation",
        +      "Sansita",
        +      "Sansita Swashed",
        +      "Sarabun",
        +      "Sarala",
        +      "Sarina",
        +      "Sarpanch",
        +      "Sassy Frass",
        +      "Satisfy",
        +      "Savate",
        +      "Sawarabi Gothic",
        +      "Sawarabi Mincho",
        +      "Scada",
        +      "Scheherazade New",
        +      "Schibsted Grotesk",
        +      "Schoolbell",
        +      "Science Gothic",
        +      "Scope One",
        +      "Seaweed Script",
        +      "Secular One",
        +      "Sedan",
        +      "Sedan SC",
        +      "Sedgwick Ave",
        +      "Sedgwick Ave Display",
        +      "Sekuya",
        +      "Sen",
        +      "Send Flowers",
        +      "Sevillana",
        +      "Seymour One",
        +      "Shadows Into Light",
        +      "Shadows Into Light Two",
        +      "Shafarik",
        +      "Shalimar",
        +      "Shantell Sans",
        +      "Shanti",
        +      "Share",
        +      "Share Tech",
        +      "Share Tech Mono",
        +      "Shippori Antique",
        +      "Shippori Antique B1",
        +      "Shippori Mincho",
        +      "Shippori Mincho B1",
        +      "Shizuru",
        +      "Shojumaru",
        +      "Short Stack",
        +      "Shrikhand",
        +      "Siemreap",
        +      "Sigmar",
        +      "Sigmar One",
        +      "Signika",
        +      "Signika Negative",
        +      "Silkscreen",
        +      "Simonetta",
        +      "Single Day",
        +      "Sintony",
        +      "Sirin Stencil",
        +      "Sirivennela",
        +      "Six Caps",
        +      "Sixtyfour",
        +      "Sixtyfour Convergence",
        +      "Skranji",
        +      "Slabo 13px",
        +      "Slabo 27px",
        +      "Slackey",
        +      "Slackside One",
        +      "Smokum",
        +      "Smooch",
        +      "Smooch Sans",
        +      "Smythe",
        +      "Sniglet",
        +      "Snippet",
        +      "Snowburst One",
        +      "Sofadi One",
        +      "Sofia",
        +      "Sofia Sans",
        +      "Sofia Sans Condensed",
        +      "Sofia Sans Extra Condensed",
        +      "Sofia Sans Semi Condensed",
        +      "Solitreo",
        +      "Solway",
        +      "Sometype Mono",
        +      "Song Myung",
        +      "Sono",
        +      "Sonsie One",
        +      "Sora",
        +      "Sorts Mill Goudy",
        +      "Sour Gummy",
        +      "Source Code Pro",
        +      "Source Sans 3",
        +      "Source Serif 4",
        +      "Space Grotesk",
        +      "Space Mono",
        +      "Special Elite",
        +      "Special Gothic",
        +      "Special Gothic Condensed One",
        +      "Special Gothic Expanded One",
        +      "Spectral",
        +      "Spectral SC",
        +      "Spicy Rice",
        +      "Spinnaker",
        +      "Spirax",
        +      "Splash",
        +      "Spline Sans",
        +      "Spline Sans Mono",
        +      "Squada One",
        +      "Square Peg",
        +      "Sree Krushnadevaraya",
        +      "Sriracha",
        +      "Srisakdi",
        +      "Staatliches",
        +      "Stack Sans Headline",
        +      "Stack Sans Notch",
        +      "Stack Sans Text",
        +      "Stalemate",
        +      "Stalinist One",
        +      "Stardos Stencil",
        +      "Stick",
        +      "Stick No Bills",
        +      "Stint Ultra Condensed",
        +      "Stint Ultra Expanded",
        +      "Stoke",
        +      "Story Script",
        +      "Strait",
        +      "Strichpunkt Sans",
        +      "Style Script",
        +      "Stylish",
        +      "Sue Ellen Francisco",
        +      "Suez One",
        +      "Sulphur Point",
        +      "Sumana",
        +      "Sunflower",
        +      "Sunshiney",
        +      "Supermercado One",
        +      "Sura",
        +      "Suranna",
        +      "Suravaram",
        +      "Suwannaphum",
        +      "Swanky and Moo Moo",
        +      "Syncopate",
        +      "Syne",
        +      "Syne Mono",
        +      "Syne Tactile",
        +      "TASA Explorer",
        +      "TASA Orbiter",
        +      "Tac One",
        +      "Tagesschrift",
        +      "Tai Heritage Pro",
        +      "Tajawal",
        +      "Tangerine",
        +      "Tapestry",
        +      "Taprom",
        +      "Tauri",
        +      "Taviraj",
        +      "Teachers",
        +      "Teko",
        +      "Tektur",
        +      "Telex",
        +      "Tenali Ramakrishna",
        +      "Tenor Sans",
        +      "Text Me One",
        +      "Texturina",
        +      "Thasadith",
        +      "The Girl Next Door",
        +      "The Nautigal",
        +      "Tienne",
        +      "TikTok Sans",
        +      "Tillana",
        +      "Tilt Neon",
        +      "Tilt Prism",
        +      "Tilt Warp",
        +      "Timmana",
        +      "Tinos",
        +      "Tiny5",
        +      "Tiro Bangla",
        +      "Tiro Devanagari Hindi",
        +      "Tiro Devanagari Marathi",
        +      "Tiro Devanagari Sanskrit",
        +      "Tiro Gurmukhi",
        +      "Tiro Kannada",
        +      "Tiro Tamil",
        +      "Tiro Telugu",
        +      "Tirra",
        +      "Titan One",
        +      "Titillium Web",
        +      "Tomorrow",
        +      "Tourney",
        +      "Trade Winds",
        +      "Train One",
        +      "Triodion",
        +      "Trirong",
        +      "Trispace",
        +      "Trocchi",
        +      "Trochut",
        +      "Truculenta",
        +      "Trykker",
        +      "Tsukimi Rounded",
        +      "Tuffy",
        +      "Tulpen One",
        +      "Turret Road",
        +      "Twinkle Star",
        +      "Ubuntu",
        +      "Ubuntu Condensed",
        +      "Ubuntu Mono",
        +      "Ubuntu Sans",
        +      "Ubuntu Sans Mono",
        +      "Uchen",
        +      "Ultra",
        +      "Unbounded",
        +      "Uncial Antiqua",
        +      "Underdog",
        +      "Unica One",
        +      "UnifrakturCook",
        +      "UnifrakturMaguntia",
        +      "Unkempt",
        +      "Unlock",
        +      "Unna",
        +      "UoqMunThenKhung",
        +      "Updock",
        +      "Urbanist",
        +      "VT323",
        +      "Vampiro One",
        +      "Varela",
        +      "Varela Round",
        +      "Varta",
        +      "Vast Shadow",
        +      "Vazirmatn",
        +      "Vend Sans",
        +      "Vesper Libre",
        +      "Viaoda Libre",
        +      "Vibes",
        +      "Vibur",
        +      "Victor Mono",
        +      "Vidaloka",
        +      "Viga",
        +      "Vina Sans",
        +      "Voces",
        +      "Volkhov",
        +      "Vollkorn",
        +      "Vollkorn SC",
        +      "Voltaire",
        +      "Vujahday Script",
        +      "WDXL Lubrifont JP N",
        +      "WDXL Lubrifont SC",
        +      "WDXL Lubrifont TC",
        +      "Waiting for the Sunrise",
        +      "Wallpoet",
        +      "Walter Turncoat",
        +      "Warnes",
        +      "Water Brush",
        +      "Waterfall",
        +      "Wavefont",
        +      "Wellfleet",
        +      "Wendy One",
        +      "Whisper",
        +      "WindSong",
        +      "Winky Rough",
        +      "Winky Sans",
        +      "Wire One",
        +      "Wittgenstein",
        +      "Wix Madefor Display",
        +      "Wix Madefor Text",
        +      "Work Sans",
        +      "Workbench",
        +      "Xanh Mono",
        +      "Yaldevi",
        +      "Yanone Kaffeesatz",
        +      "Yantramanav",
        +      "Yarndings 12",
        +      "Yarndings 12 Charted",
        +      "Yarndings 20",
        +      "Yarndings 20 Charted",
        +      "Yatra One",
        +      "Yellowtail",
        +      "Yeon Sung",
        +      "Yeseva One",
        +      "Yesteryear",
        +      "Yomogi",
        +      "Young Serif",
        +      "Yrsa",
        +      "Ysabeau",
        +      "Ysabeau Infant",
        +      "Ysabeau Office",
        +      "Ysabeau SC",
        +      "Yuji Boku",
        +      "Yuji Hentaigana Akari",
        +      "Yuji Hentaigana Akebono",
        +      "Yuji Mai",
        +      "Yuji Syuku",
        +      "Yusei Magic",
        +      "Yuyu",
        +      "Yuyu Short",
        +      "ZCOOL KuaiLe",
        +      "ZCOOL QingKe HuangYou",
        +      "ZCOOL XiaoWei",
        +      "Zain",
        +      "Zalando Sans",
        +      "Zalando Sans Expanded",
        +      "Zalando Sans SemiExpanded",
        +      "Zen Antique",
        +      "Zen Antique Soft",
        +      "Zen Dots",
        +      "Zen Kaku Gothic Antique",
        +      "Zen Kaku Gothic New",
        +      "Zen Kurenaido",
        +      "Zen Loop",
        +      "Zen Maru Gothic",
        +      "Zen Old Mincho",
        +      "Zen Tokyo Zoo",
        +      "Zeyada",
        +      "Zhi Mang Xing",
        +      "Zilla Slab",
        +      "Zilla Slab Highlight"
        +    ],
        +    "type": "string"
        +  },
        +  "GroupedArrangement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "type": {
        +        "const": "grouped",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "GroupedArrangement",
        +    "type": "object"
        +  },
        +  "LegendOptions": {
        +    "anyOf": [
        +      {
        +        "type": "boolean"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "title": {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        },
        +        "type": "object"
        +      }
        +    ],
        +    "title": "LegendOptions"
        +  },
        +  "LineLabels": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "points": {
        +        "$ref": "#/$defs/ConnectedPointLabels"
        +      },
        +      "series": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "content": {
        +            "items": {
        +              "enum": [
        +                "series",
        +                "value"
        +              ],
        +              "type": "string"
        +            },
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          }
        +        },
        +        "required": [
        +          "content"
        +        ],
        +        "type": "object"
        +      }
        +    },
        +    "title": "LineLabels",
        +    "type": "object"
        +  },
        +  "LineStroke": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "LineStroke",
        +    "type": "object"
        +  },
        +  "LinearScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": [
        +          {
        +            "type": "number"
        +          },
        +          {
        +            "type": "number"
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "linear",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "LinearScale",
        +    "type": "object"
        +  },
        +  "LogScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": [
        +          {
        +            "exclusiveMinimum": 0,
        +            "type": "number"
        +          },
        +          {
        +            "exclusiveMinimum": 0,
        +            "type": "number"
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "log",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "LogScale",
        +    "type": "object"
        +  },
        +  "NormalizedArrangement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "normalization": {
        +        "enum": [
        +          "percent"
        +        ],
        +        "type": "string"
        +      },
        +      "type": {
        +        "const": "stacked",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "normalization"
        +    ],
        +    "title": "NormalizedArrangement",
        +    "type": "object"
        +  },
        +  "PositionableBarLabels": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "content": {
        +        "items": {
        +          "enum": [
        +            "value",
        +            "percent",
        +            "category",
        +            "series"
        +          ],
        +          "type": "string"
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "position": {
        +        "enum": [
        +          "auto",
        +          "outside",
        +          "inside"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "content"
        +    ],
        +    "title": "PositionableBarLabels",
        +    "type": "object"
        +  },
        +  "PromotedLine": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "curve": {
        +        "enum": [
        +          "linear",
        +          "monotone",
        +          "step"
        +        ],
        +        "type": "string"
        +      },
        +      "labels": {
        +        "$ref": "#/$defs/LineLabels"
        +      },
        +      "points": {
        +        "anyOf": [
        +          {
        +            "type": "boolean"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "fill": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "radius": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              }
        +            },
        +            "type": "object"
        +          }
        +        ]
        +      },
        +      "series": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "stroke": {
        +        "$ref": "#/$defs/LineStroke"
        +      }
        +    },
        +    "required": [
        +      "series"
        +    ],
        +    "title": "PromotedLine",
        +    "type": "object"
        +  },
        +  "RangeCategoryOrder": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "direction": {
        +            "enum": [
        +              "ascending",
        +              "descending"
        +            ],
        +            "type": "string"
        +          },
        +          "type": {
        +            "const": "category",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "direction"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "$ref": "#/$defs/ExplicitCategoryOrder"
        +      }
        +    ],
        +    "title": "RangeCategoryOrder"
        +  },
        +  "RangeCategoryRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/BandScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "RangeCategoryRole",
        +    "type": "object"
        +  },
        +  "RangeValuesRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "end": {
        +        "$ref": "#/$defs/FieldRole"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/ContinuousScale"
        +      },
        +      "start": {
        +        "$ref": "#/$defs/FieldRole"
        +      },
        +      "type": {
        +        "const": "range",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "start",
        +      "end"
        +    ],
        +    "title": "RangeValuesRole",
        +    "type": "object"
        +  },
        +  "ReferenceLabel": {
        +    "additionalProperties": false,
        +    "description": "Omit for no label. content is an ordered array of text and/or value, without duplicates. text is required when text is included. Values follow the reference's statistic scope and formatting.",
        +    "properties": {
        +      "align": {
        +        "enum": [
        +          "start",
        +          "center",
        +          "end"
        +        ],
        +        "type": "string"
        +      },
        +      "content": {
        +        "items": {
        +          "enum": [
        +            "text",
        +            "value"
        +          ],
        +          "type": "string"
        +        },
        +        "maxItems": 2,
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "position": {
        +        "enum": [
        +          "before",
        +          "after",
        +          "outside-start",
        +          "outside-end"
        +        ],
        +        "type": "string"
        +      },
        +      "text": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "required": [
        +      "content"
        +    ],
        +    "title": "ReferenceLabel",
        +    "type": "object"
        +  },
        +  "ReferenceStroke": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "color": {
        +        "$ref": "#/$defs/Color"
        +      },
        +      "style": {
        +        "enum": [
        +          "solid",
        +          "dashed",
        +          "dotted"
        +        ],
        +        "type": "string"
        +      },
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "ReferenceStroke",
        +    "type": "object"
        +  },
        +  "ReserveSpace": {
        +    "anyOf": [
        +      {
        +        "type": "boolean"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "x": {
        +            "type": "boolean"
        +          },
        +          "y": {
        +            "type": "boolean"
        +          }
        +        },
        +        "required": [
        +          "x",
        +          "y"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "ReserveSpace"
        +  },
        +  "ScatterAnnotations": {
        +    "items": {
        +      "additionalProperties": false,
        +      "properties": {
        +        "align": {
        +          "enum": [
        +            "start",
        +            "center",
        +            "end"
        +          ],
        +          "type": "string"
        +        },
        +        "anchor": {
        +          "oneOf": [
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "id": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "datum",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "id"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "type": {
        +                  "const": "coordinate",
        +                  "type": "string"
        +                },
        +                "x": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "y": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "x",
        +                "y"
        +              ],
        +              "type": "object"
        +            }
        +          ],
        +          "title": "ScatterAnnotationAnchor"
        +        },
        +        "boxAnchor": {
        +          "$ref": "#/$defs/AnnotationBoxAnchor"
        +        },
        +        "connector": {
        +          "enum": [
        +            "none",
        +            "line",
        +            "arrow"
        +          ],
        +          "type": "string"
        +        },
        +        "offset": {
        +          "$ref": "#/$defs/AnnotationOffset"
        +        },
        +        "placement": {
        +          "$ref": "#/$defs/AnnotationPlacement"
        +        },
        +        "reserveSpace": {
        +          "$ref": "#/$defs/ReserveSpace"
        +        },
        +        "style": {
        +          "$ref": "#/$defs/AnnotationTextStyle"
        +        },
        +        "text": {
        +          "type": "string"
        +        },
        +        "visible": {
        +          "type": "boolean"
        +        },
        +        "width": {
        +          "anyOf": [
        +            {
        +              "exclusiveMinimum": 0,
        +              "type": "number"
        +            },
        +            {
        +              "const": "shape",
        +              "type": "string"
        +            }
        +          ]
        +        }
        +      },
        +      "required": [
        +        "text",
        +        "anchor"
        +      ],
        +      "title": "ScatterAnnotation",
        +      "type": "object"
        +    },
        +    "minItems": 1,
        +    "title": "ScatterAnnotations",
        +    "type": "array"
        +  },
        +  "ScatterColor": {
        +    "anyOf": [
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "oneOf": [
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "domain": {
        +                "items": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "minItems": 1,
        +                "type": "array",
        +                "uniqueItems": true
        +              },
        +              "field": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "legend": {
        +                "$ref": "#/$defs/LegendOptions"
        +              },
        +              "range": {
        +                "$ref": "#/$defs/ColorRange"
        +              },
        +              "type": {
        +                "const": "categorical",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type",
        +              "field"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "domain": {
        +                "items": [
        +                  {
        +                    "type": "number"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ],
        +                "maxItems": 2,
        +                "minItems": 2,
        +                "type": "array"
        +              },
        +              "field": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "format": {
        +                "type": "string"
        +              },
        +              "legend": {
        +                "$ref": "#/$defs/LegendOptions"
        +              },
        +              "range": {
        +                "anyOf": [
        +                  {
        +                    "items": [
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      }
        +                    ],
        +                    "maxItems": 2,
        +                    "minItems": 2,
        +                    "type": "array"
        +                  },
        +                  {
        +                    "$ref": "#/$defs/ThreeColorRange"
        +                  }
        +                ],
        +                "title": "SequentialColorRange"
        +              },
        +              "type": {
        +                "const": "sequential",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type",
        +              "field"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "domain": {
        +                "items": [
        +                  {
        +                    "type": "number"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ],
        +                "maxItems": 2,
        +                "minItems": 2,
        +                "type": "array"
        +              },
        +              "field": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "format": {
        +                "type": "string"
        +              },
        +              "legend": {
        +                "$ref": "#/$defs/LegendOptions"
        +              },
        +              "midpoint": {
        +                "type": "number"
        +              },
        +              "range": {
        +                "anyOf": [
        +                  {
        +                    "$ref": "#/$defs/ThreeColorRange"
        +                  },
        +                  {
        +                    "items": [
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      }
        +                    ],
        +                    "maxItems": 5,
        +                    "minItems": 5,
        +                    "type": "array"
        +                  }
        +                ],
        +                "title": "DivergingColorRange"
        +              },
        +              "type": {
        +                "const": "diverging",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type",
        +              "field",
        +              "domain",
        +              "midpoint"
        +            ],
        +            "type": "object"
        +          }
        +        ]
        +      }
        +    ],
        +    "title": "ScatterColor"
        +  },
        +  "ScatterInterval": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "axis": {
        +        "enum": [
        +          "x",
        +          "y"
        +        ],
        +        "type": "string"
        +      },
        +      "lower": {
        +        "$ref": "#/$defs/FieldRole"
        +      },
        +      "stroke": {
        +        "$ref": "#/$defs/Stroke"
        +      },
        +      "upper": {
        +        "$ref": "#/$defs/FieldRole"
        +      }
        +    },
        +    "required": [
        +      "axis",
        +      "lower",
        +      "upper"
        +    ],
        +    "title": "ScatterInterval",
        +    "type": "object"
        +  },
        +  "ScatterLabels": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "position": {
        +        "enum": [
        +          "above",
        +          "side"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "ScatterLabels",
        +    "type": "object"
        +  },
        +  "ScatterReferences": {
        +    "items": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "enum": [
        +                "x",
        +                "y"
        +              ],
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "value": {
        +              "type": [
        +                "string",
        +                "number"
        +              ]
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "value"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "enum": [
        +                "x",
        +                "y"
        +              ],
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "statistic": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "operation": {
        +                  "enum": [
        +                    "average",
        +                    "median",
        +                    "min",
        +                    "max"
        +                  ],
        +                  "type": "string"
        +                },
        +                "scope": {
        +                  "enum": [
        +                    "visible",
        +                    "all"
        +                  ],
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "operation",
        +                "scope"
        +              ],
        +              "title": "ReferenceStatistic",
        +              "type": "object"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "statistic",
        +              "type": "string"
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "statistic"
        +          ],
        +          "type": "object"
        +        }
        +      ],
        +      "title": "ScatterReference"
        +    },
        +    "minItems": 1,
        +    "title": "ScatterReferences",
        +    "type": "array"
        +  },
        +  "ScatterRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/CategoryScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "ScatterRole",
        +    "type": "object"
        +  },
        +  "SeriesLinearValuesRole": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "long",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "field",
        +          "series"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "minItems": 2,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "wide",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "fields"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "count",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "series"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "SeriesLinearValuesRole"
        +  },
        +  "SeriesLinearValuesRoleWithPercent": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "percentFormat": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "long",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "field",
        +          "series"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "minItems": 2,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "percentFormat": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "wide",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "fields"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "percentFormat": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "count",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "series"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "SeriesLinearValuesRoleWithPercent"
        +  },
        +  "SeriesRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "SeriesRole",
        +    "type": "object"
        +  },
        +  "SimpleBarValuesRole": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "long",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "field"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": [
        +              {
        +                "minLength": 1,
        +                "type": "string"
        +              }
        +            ],
        +            "maxItems": 1,
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "wide",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "fields"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "count",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "SimpleBarValuesRole"
        +  },
        +  "StackedArrangement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "type": {
        +        "const": "stacked",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "StackedArrangement",
        +    "type": "object"
        +  },
        +  "StackedBarLabels": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "content": {
        +        "items": {
        +          "enum": [
        +            "value",
        +            "percent",
        +            "category",
        +            "series"
        +          ],
        +          "type": "string"
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      }
        +    },
        +    "required": [
        +      "content"
        +    ],
        +    "title": "StackedBarLabels",
        +    "type": "object"
        +  },
        +  "Stroke": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "color": {
        +        "$ref": "#/$defs/Color"
        +      },
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "Stroke",
        +    "type": "object"
        +  },
        +  "ThemeCategoricalPalette": {
        +    "items": {
        +      "minLength": 1,
        +      "type": "string"
        +    },
        +    "minItems": 1,
        +    "title": "ThemeCategoricalPalette",
        +    "type": "array"
        +  },
        +  "ThemeDivergingRange": {
        +    "anyOf": [
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 3,
        +        "minItems": 3,
        +        "type": "array"
        +      },
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 5,
        +        "minItems": 5,
        +        "type": "array"
        +      }
        +    ],
        +    "title": "ThemeDivergingRange"
        +  },
        +  "ThemeName": {
        +    "enum": [
        +      "editorial",
        +      "clean",
        +      "noir",
        +      "loud",
        +      "soft",
        +      "technical"
        +    ],
        +    "title": "ThemeName",
        +    "type": "string"
        +  },
        +  "ThemeOverrides": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "axes": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "gridLineWidth": {
        +            "minimum": 0,
        +            "type": "number"
        +          },
        +          "lineWidth": {
        +            "minimum": 0,
        +            "type": "number"
        +          },
        +          "tickPadding": {
        +            "minimum": 0,
        +            "type": "number"
        +          },
        +          "tickSize": {
        +            "minimum": 0,
        +            "type": "number"
        +          }
        +        },
        +        "title": "ThemeAxisOverrides",
        +        "type": "object"
        +      },
        +      "colors": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "axes": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "grid": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "line": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "tickLabel": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "title": {
        +                "$ref": "#/$defs/Color"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "background": {
        +            "$ref": "#/$defs/Color"
        +          },
        +          "caption": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "color": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "linkColor": {
        +                "$ref": "#/$defs/Color"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "categorical": {
        +            "anyOf": [
        +              {
        +                "$ref": "#/$defs/ThemeCategoricalPalette"
        +              },
        +              {
        +                "anyOf": [
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      }
        +                    },
        +                    "required": [
        +                      "light"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      }
        +                    },
        +                    "required": [
        +                      "dark"
        +                    ],
        +                    "type": "object"
        +                  }
        +                ]
        +              }
        +            ],
        +            "title": "ThemeCategoricalColors"
        +          },
        +          "diverging": {
        +            "anyOf": [
        +              {
        +                "$ref": "#/$defs/ThemeDivergingRange"
        +              },
        +              {
        +                "anyOf": [
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "light"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "dark"
        +                    ],
        +                    "type": "object"
        +                  }
        +                ]
        +              }
        +            ],
        +            "title": "ThemeDivergingColors"
        +          },
        +          "label": {
        +            "$ref": "#/$defs/Color"
        +          },
        +          "sequential": {
        +            "anyOf": [
        +              {
        +                "$ref": "#/$defs/ThemeSequentialRange"
        +              },
        +              {
        +                "anyOf": [
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "light"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "dark"
        +                    ],
        +                    "type": "object"
        +                  }
        +                ]
        +              }
        +            ],
        +            "title": "ThemeSequentialColors"
        +          },
        +          "subtitle": {
        +            "$ref": "#/$defs/Color"
        +          },
        +          "title": {
        +            "$ref": "#/$defs/Color"
        +          }
        +        },
        +        "title": "ThemeColorOverrides",
        +        "type": "object"
        +      },
        +      "fonts": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "body": {
        +            "$ref": "#/$defs/GoogleFontFamily"
        +          },
        +          "numeric": {
        +            "$ref": "#/$defs/GoogleFontFamily"
        +          },
        +          "title": {
        +            "$ref": "#/$defs/GoogleFontFamily"
        +          }
        +        },
        +        "title": "ThemeFontOverrides",
        +        "type": "object"
        +      },
        +      "typography": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "axisTitle": {
        +            "$ref": "#/$defs/WeightTypography"
        +          },
        +          "baseSize": {
        +            "exclusiveMinimum": 0,
        +            "type": "number"
        +          },
        +          "caption": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "gap": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "header": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "gap": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "titleSubtitleGap": {
        +                "minimum": 0,
        +                "type": "number"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "label": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "haloWidth": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "mutedOpacity": {
        +                "maximum": 1,
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "mutedWeight": {
        +                "anyOf": [
        +                  {
        +                    "const": 100,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 200,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 300,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 400,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 500,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 600,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 700,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 800,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 900,
        +                    "type": "number"
        +                  }
        +                ]
        +              },
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              },
        +              "weight": {
        +                "anyOf": [
        +                  {
        +                    "const": 100,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 200,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 300,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 400,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 500,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 600,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 700,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 800,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 900,
        +                    "type": "number"
        +                  }
        +                ]
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "subtitle": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "tickLabel": {
        +            "$ref": "#/$defs/WeightTypography"
        +          },
        +          "title": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              },
        +              "weight": {
        +                "anyOf": [
        +                  {
        +                    "const": 100,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 200,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 300,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 400,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 500,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 600,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 700,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 800,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 900,
        +                    "type": "number"
        +                  }
        +                ]
        +              }
        +            },
        +            "type": "object"
        +          }
        +        },
        +        "title": "ThemeTypographyOverrides",
        +        "type": "object"
        +      }
        +    },
        +    "title": "ThemeOverrides",
        +    "type": "object"
        +  },
        +  "ThemeSequentialRange": {
        +    "anyOf": [
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 3,
        +        "minItems": 3,
        +        "type": "array"
        +      }
        +    ],
        +    "title": "ThemeSequentialRange"
        +  },
        +  "ThreeColorRange": {
        +    "items": [
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "$ref": "#/$defs/Color"
        +      }
        +    ],
        +    "maxItems": 3,
        +    "minItems": 3,
        +    "title": "ThreeColorRange",
        +    "type": "array"
        +  },
        +  "UtcScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": [
        +          {
        +            "type": [
        +              "string",
        +              "number"
        +            ]
        +          },
        +          {
        +            "type": [
        +              "string",
        +              "number"
        +            ]
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "utc",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "UtcScale",
        +    "type": "object"
        +  },
        +  "WeightTypography": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "weight": {
        +        "anyOf": [
        +          {
        +            "const": 100,
        +            "type": "number"
        +          },
        +          {
        +            "const": 200,
        +            "type": "number"
        +          },
        +          {
        +            "const": 300,
        +            "type": "number"
        +          },
        +          {
        +            "const": 400,
        +            "type": "number"
        +          },
        +          {
        +            "const": 500,
        +            "type": "number"
        +          },
        +          {
        +            "const": 600,
        +            "type": "number"
        +          },
        +          {
        +            "const": 700,
        +            "type": "number"
        +          },
        +          {
        +            "const": 800,
        +            "type": "number"
        +          },
        +          {
        +            "const": 900,
        +            "type": "number"
        +          }
        +        ]
        +      }
        +    },
        +    "title": "WeightTypography",
        +    "type": "object"
        +  }
        +}
      • removedOutput schema / properties / examples / items / properties / config
        Removed value: -{
        -  "additionalProperties": {},
        -  "description": "Schema version 2026-03-20. Send this JSON to POST https://szum.io/validate to validate it or POST https://szum.io/chart to render a chart image.",
        -  "properties": {
        -    "attribution": {
        -      "description": "Show a small \"Made with Szum\" credit in the bottom-right. Always on for free and keyless renders; Creator and Pro omit it by default and set true to opt in.",
        -      "type": "boolean"
        -    },
        -    "color": {
        -      "anyOf": [
        -        {
        -          "additionalProperties": {},
        -          "properties": {
        -            "domain": {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            },
        -            "label": {
        -              "type": "string"
        -            },
        -            "range": {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            },
        -            "type": {
        -              "const": "categorical",
        -              "type": "string"
        -            }
        -          },
        -          "required": [
        -            "type"
        -          ],
        -          "type": "object"
        -        },
        -        {
        -          "additionalProperties": {},
        -          "properties": {
        -            "domain": {
        -              "items": [
        -                {
        -                  "type": "number"
        -                },
        -                {
        -                  "type": "number"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            "label": {
        -              "type": "string"
        -            },
        -            "range": {
        -              "items": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "string"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            "type": {
        -              "const": "sequential",
        -              "type": "string"
        -            }
        -          },
        -          "required": [
        -            "type"
        -          ],
        -          "type": "object"
        -        },
        -        {
        -          "additionalProperties": false,
        -          "properties": {
        -            "label": {
        -              "type": "string"
        -            }
        -          },
        -          "type": "object"
        -        }
        -      ]
        -    },
        -    "data": {
        -      "items": {
        -        "additionalProperties": {
        -          "anyOf": [
        -            {
        -              "type": "string"
        -            },
        -            {
        -              "type": "number"
        -            }
        -          ]
        -        },
        -        "propertyNames": {
        -          "type": "string"
        -        },
        -        "type": "object"
        -      },
        -      "type": "array"
        -    },
        -    "footer": {
        -      "description": "Caption below the chart (a source line, methodology note, date). URLs, bare domains, and [label](url) links in it are auto-detected and rendered as inline links on every surface.",
        -      "type": "string"
        -    },
        -    "format": {
        -      "enum": [
        -        "svg",
        -        "png"
        -      ],
        -      "type": "string"
        -    },
        -    "headerAlign": {
        -      "enum": [
        -        "left",
        -        "center",
        -        "right"
        -      ],
        -      "type": "string"
        -    },
        -    "height": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "locale": {
        -      "description": "Locale identifier accepted by JavaScript Intl and associated with the chart content, such as en, pl, or zh-Hant.",
        -      "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        -      "type": "string"
        -    },
        -    "margin": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "bottom": {
        -          "type": "number"
        -        },
        -        "left": {
        -          "type": "number"
        -        },
        -        "right": {
        -          "type": "number"
        -        },
        -        "top": {
        -          "type": "number"
        -        }
        -      },
        -      "type": "object"
        -    },
        -    "marks": {
        -      "items": {
        -        "oneOf": [
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "label": {
        -                "additionalProperties": {},
        -                "properties": {
        -                  "field": {
        -                    "type": "string"
        -                  },
        -                  "format": {
        -                    "type": "string"
        -                  }
        -                },
        -                "required": [
        -                  "field"
        -                ],
        -                "type": "object"
        -              },
        -              "r": {
        -                "type": "number"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "dot",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "curve": {
        -                "enum": [
        -                  "linear",
        -                  "monotone",
        -                  "step"
        -                ],
        -                "type": "string"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "end": {
        -                        "anyOf": [
        -                          {
        -                            "type": "boolean"
        -                          },
        -                          {
        -                            "items": {
        -                              "enum": [
        -                                "category",
        -                                "value"
        -                              ],
        -                              "type": "string"
        -                            },
        -                            "type": "array"
        -                          }
        -                        ],
        -                        "default": [
        -                          "category"
        -                        ]
        -                      },
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "points": {
        -                        "anyOf": [
        -                          {
        -                            "enum": [
        -                              "extrema",
        -                              "all",
        -                              "ends"
        -                            ],
        -                            "type": "string"
        -                          },
        -                          {
        -                            "const": false,
        -                            "type": "boolean"
        -                          },
        -                          {
        -                            "additionalProperties": {},
        -                            "properties": {
        -                              "at": {
        -                                "enum": [
        -                                  "extrema",
        -                                  "all",
        -                                  "ends"
        -                                ],
        -                                "type": "string"
        -                              },
        -                              "show": {
        -                                "default": [
        -                                  "value"
        -                                ],
        -                                "items": {
        -                                  "enum": [
        -                                    "value",
        -                                    "category"
        -                                  ],
        -                                  "type": "string"
        -                                },
        -                                "type": "array"
        -                              }
        -                            },
        -                            "required": [
        -                              "at"
        -                            ],
        -                            "type": "object"
        -                          }
        -                        ],
        -                        "default": false
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "line",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "cornerRadius": {
        -                "type": "number"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "group": {
        -                "default": "stack",
        -                "enum": [
        -                  "stack",
        -                  "dodge"
        -                ],
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "position": {
        -                        "default": "outside",
        -                        "enum": [
        -                          "auto",
        -                          "outside",
        -                          "inside"
        -                        ],
        -                        "type": "string"
        -                      },
        -                      "show": {
        -                        "default": [
        -                          "value"
        -                        ],
        -                        "items": {
        -                          "enum": [
        -                            "value",
        -                            "percent",
        -                            "category",
        -                            "total"
        -                          ],
        -                          "type": "string"
        -                        },
        -                        "type": "array"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "barY",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "cornerRadius": {
        -                "type": "number"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "group": {
        -                "default": "stack",
        -                "enum": [
        -                  "stack",
        -                  "dodge"
        -                ],
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "position": {
        -                        "default": "outside",
        -                        "enum": [
        -                          "auto",
        -                          "outside",
        -                          "inside"
        -                        ],
        -                        "type": "string"
        -                      },
        -                      "show": {
        -                        "default": [
        -                          "value"
        -                        ],
        -                        "items": {
        -                          "enum": [
        -                            "value",
        -                            "percent",
        -                            "category",
        -                            "total"
        -                          ],
        -                          "type": "string"
        -                        },
        -                        "type": "array"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "barX",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "curve": {
        -                "enum": [
        -                  "linear",
        -                  "monotone",
        -                  "step"
        -                ],
        -                "type": "string"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "end": {
        -                        "anyOf": [
        -                          {
        -                            "type": "boolean"
        -                          },
        -                          {
        -                            "items": {
        -                              "enum": [
        -                                "category",
        -                                "value",
        -                                "percent"
        -                              ],
        -                              "type": "string"
        -                            },
        -                            "type": "array"
        -                          }
        -                        ],
        -                        "default": [
        -                          "category"
        -                        ]
        -                      },
        -                      "format": {
        -                        "type": "string"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "areaY",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "curve": {
        -                "enum": [
        -                  "linear",
        -                  "monotone",
        -                  "step"
        -                ],
        -                "type": "string"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "areaX",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "cornerRadius": {
        -                "type": "number"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "innerRadius": {
        -                "default": 0,
        -                "maximum": 1,
        -                "minimum": 0,
        -                "type": "number"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "position": {
        -                        "default": "auto",
        -                        "enum": [
        -                          "auto",
        -                          "inside",
        -                          "outside"
        -                        ],
        -                        "type": "string"
        -                      },
        -                      "show": {
        -                        "default": [
        -                          "category",
        -                          "percent"
        -                        ],
        -                        "items": {
        -                          "enum": [
        -                            "value",
        -                            "percent",
        -                            "category"
        -                          ],
        -                          "type": "string"
        -                        },
        -                        "type": "array"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "pie",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "dx": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "dy": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "fontSize": {
        -                "type": "number"
        -              },
        -              "fontWeight": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "text": {
        -                "default": "text",
        -                "type": "string"
        -              },
        -              "textAnchor": {
        -                "default": "center",
        -                "enum": [
        -                  "start",
        -                  "center",
        -                  "end"
        -                ],
        -                "type": "string"
        -              },
        -              "type": {
        -                "const": "text",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "ruleX",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "ruleY",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          }
        -        ]
        -      },
        -      "minItems": 1,
        -      "type": "array"
        -    },
        -    "plotHeight": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "plotWidth": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "scale": {
        -      "maximum": 4,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "subtitle": {
        -      "type": "string"
        -    },
        -    "theme": {
        -      "default": "editorial",
        -      "enum": [
        -        "editorial",
        -        "clean",
        -        "noir",
        -        "loud",
        -        "soft",
        -        "technical"
        -      ],
        -      "type": "string"
        -    },
        -    "themeOverrides": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "axisColor": {
        -          "type": "string"
        -        },
        -        "axisFrame": {
        -          "enum": [
        -            "none",
        -            "baseline",
        -            "lShape",
        -            "full"
        -          ],
        -          "type": "string"
        -        },
        -        "axisLabelColor": {
        -          "type": "string"
        -        },
        -        "axisLabelFontWeight": {
        -          "type": "string"
        -        },
        -        "axisLineWidth": {
        -          "type": "number"
        -        },
        -        "backgroundColor": {
        -          "type": "string"
        -        },
        -        "barCornerRadius": {
        -          "type": "number"
        -        },
        -        "barPadding": {
        -          "type": "number"
        -        },
        -        "colors": {
        -          "items": {
        -            "type": "string"
        -          },
        -          "type": "array"
        -        },
        -        "curve": {
        -          "enum": [
        -            "linear",
        -            "monotone",
        -            "step"
        -          ],
        -          "type": "string"
        -        },
        -        "dotRadius": {
        -          "type": "number"
        -        },
        -        "fontFamily": {
        -          "enum": [
        -            "ABeeZee",
        -            "ADLaM Display",
        -            "AR One Sans",
        -            "Abel",
        -            "Abhaya Libre",
        -            "Aboreto",
        -            "Abril Fatface",
        -            "Abyssinica SIL",
        -            "Aclonica",
        -            "Acme",
        -            "Actor",
        -            "Adamina",
        -            "Advent Pro",
        -            "Afacad",
        -            "Afacad Flux",
        -            "Agbalumo",
        -            "Agdasima",
        -            "Agu Display",
        -            "Aguafina Script",
        -            "Akatab",
        -            "Akaya Kanadaka",
        -            "Akaya Telivigala",
        -            "Akronim",
        -            "Akshar",
        -            "Akt",
        -            "Aladin",
        -            "Alan Sans",
        -            "Alata",
        -            "Alatsi",
        -            "Albert Sans",
        -            "Aldrich",
        -            "Alef",
        -            "Alegreya",
        -            "Alegreya SC",
        -            "Alegreya Sans",
        -            "Alegreya Sans SC",
        -            "Aleo",
        -            "Alex Brush",
        -            "Alexandria",
        -            "Alfa Slab One",
        -            "Alice",
        -            "Alien Block",
        -            "Alike",
        -            "Alike Angular",
        -            "Alkalami",
        -            "Alkatra",
        -            "Allan",
        -            "Allerta",
        -            "Allerta Stencil",
        -            "Allison",
        -            "Allkin",
        -            "Allura",
        -            "Almarai",
        -            "Almendra",
        -            "Almendra Display",
        -            "Almendra SC",
        -            "Alumni Sans",
        -            "Alumni Sans Collegiate One",
        -            "Alumni Sans Inline One",
        -            "Alumni Sans Pinstripe",
        -            "Alumni Sans SC",
        -            "Alyamama",
        -            "Amarante",
        -            "Amaranth",
        -            "Amarna",
        -            "Amatic SC",
        -            "Amethysta",
        -            "Amiko",
        -            "Amiri",
        -            "Amiri Quran",
        -            "Amita",
        -            "Anaheim",
        -            "Ancizar Sans",
        -            "Ancizar Serif",
        -            "Andada Pro",
        -            "Andika",
        -            "Anek Bangla",
        -            "Anek Devanagari",
        -            "Anek Gujarati",
        -            "Anek Gurmukhi",
        -            "Anek Kannada",
        -            "Anek Latin",
        -            "Anek Malayalam",
        -            "Anek Odia",
        -            "Anek Tamil",
        -            "Anek Telugu",
        -            "Angkor",
        -            "Annapurna SIL",
        -            "Annie Use Your Telescope",
        -            "Anonymous Pro",
        -            "Anta",
        -            "Antic",
        -            "Antic Didone",
        -            "Antic Slab",
        -            "Anton",
        -            "Anton SC",
        -            "Antonio",
        -            "Anuphan",
        -            "Anybody",
        -            "Aoboshi One",
        -            "Arapey",
        -            "Arbutus",
        -            "Arbutus Slab",
        -            "Architects Daughter",
        -            "Archivo",
        -            "Archivo Black",
        -            "Archivo Narrow",
        -            "Are You Serious",
        -            "Aref Ruqaa",
        -            "Aref Ruqaa Ink",
        -            "Arima",
        -            "Arimo",
        -            "Arizonia",
        -            "Armata",
        -            "Arsenal",
        -            "Arsenal SC",
        -            "Artifika",
        -            "Arvo",
        -            "Arya",
        -            "Asap",
        -            "Asap Condensed",
        -            "Asar",
        -            "Asimovian",
        -            "Asset",
        -            "Assistant",
        -            "Asta Sans",
        -            "Astloch",
        -            "Asul",
        -            "Athiti",
        -            "Atkinson Hyperlegible",
        -            "Atkinson Hyperlegible Mono",
        -            "Atkinson Hyperlegible Next",
        -            "Atma",
        -            "Atomic Age",
        -            "Aubrey",
        -            "Audiowide",
        -            "Autour One",
        -            "Average",
        -            "Average Sans",
        -            "Averia Gruesa Libre",
        -            "Averia Libre",
        -            "Averia Sans Libre",
        -            "Averia Serif Libre",
        -            "Azeret Mono",
        -            "B612",
        -            "B612 Mono",
        -            "BBH Bartle",
        -            "BBH Bogle",
        -            "BBH Hegarty",
        -            "BIZ UDGothic",
        -            "BIZ UDMincho",
        -            "BIZ UDPGothic",
        -            "BIZ UDPMincho",
        -            "BJCree",
        -            "Babylonica",
        -            "Bacasime Antique",
        -            "Bad Script",
        -            "Badeen Display",
        -            "Bagel Fat One",
        -            "Bahiana",
        -            "Bahianita",
        -            "Bai Jamjuree",
        -            "Bakbak One",
        -            "Ballet",
        -            "Baloo 2",
        -            "Baloo Bhai 2",
        -            "Baloo Bhaijaan 2",
        -            "Baloo Bhaina 2",
        -            "Baloo Chettan 2",
        -            "Baloo Da 2",
        -            "Baloo Paaji 2",
        -            "Baloo Tamma 2",
        -            "Baloo Tammudu 2",
        -            "Baloo Thambi 2",
        -            "Balsamiq Sans",
        -            "Balthazar",
        -            "Bangers",
        -            "Barlow",
        -            "Barlow Condensed",
        -            "Barlow Semi Condensed",
        -            "Barriecito",
        -            "Barrio",
        -            "Basic",
        -            "Baskervville",
        -            "Baskervville SC",
        -            "Battambang",
        -            "Baumans",
        -            "Bayon",
        -            "Be Vietnam Pro",
        -            "Beau Rivage",
        -            "Bebas Neue",
        -            "Beiruti",
        -            "Belanosima",
        -            "Belgrano",
        -            "Bellefair",
        -            "Belleza",
        -            "Bellota",
        -            "Bellota Text",
        -            "BenchNine",
        -            "Benne",
        -            "Bentham",
        -            "Berkshire Swash",
        -            "Besley",
        -            "Betania Patmos",
        -            "Betania Patmos GDL",
        -            "Betania Patmos In",
        -            "Betania Patmos In GDL",
        -            "Beth Ellen",
        -            "Bevan",
        -            "BhuTuka Expanded One",
        -            "Big Shoulders",
        -            "Big Shoulders Inline",
        -            "Big Shoulders Stencil",
        -            "Bigelow Rules",
        -            "Bigshot One",
        -            "Bilbo",
        -            "Bilbo Swash Caps",
        -            "BioRhyme",
        -            "BioRhyme Expanded",
        -            "Birthstone",
        -            "Birthstone Bounce",
        -            "Biryani",
        -            "Bitcount",
        -            "Bitcount Grid Double",
        -            "Bitcount Grid Double Ink",
        -            "Bitcount Grid Single",
        -            "Bitcount Grid Single Ink",
        -            "Bitcount Ink",
        -            "Bitcount Prop Double",
        -            "Bitcount Prop Double Ink",
        -            "Bitcount Prop Single",
        -            "Bitcount Prop Single Ink",
        -            "Bitcount Single",
        -            "Bitcount Single Ink",
        -            "Bitter",
        -            "Black And White Picture",
        -            "Black Han Sans",
        -            "Black Ops One",
        -            "Blaka",
        -            "Blaka Hollow",
        -            "Blaka Ink",
        -            "Blinker",
        -            "Bodoni Moda",
        -            "Bodoni Moda SC",
        -            "Bokor",
        -            "Boldonse",
        -            "Bona Nova",
        -            "Bona Nova SC",
        -            "Bonbon",
        -            "Bonheur Royale",
        -            "Boogaloo",
        -            "Borel",
        -            "Bowlby One",
        -            "Bowlby One SC",
        -            "Bpmf Huninn",
        -            "Bpmf Iansui",
        -            "Bpmf Zihi Kai Std",
        -            "Braah One",
        -            "Brawler",
        -            "Bree Serif",
        -            "Bricolage Grotesque",
        -            "Bruno Ace",
        -            "Bruno Ace SC",
        -            "Brygada 1918",
        -            "Bubblegum Sans",
        -            "Bubbler One",
        -            "Buda",
        -            "Buenard",
        -            "Bungee",
        -            "Bungee Hairline",
        -            "Bungee Inline",
        -            "Bungee Outline",
        -            "Bungee Shade",
        -            "Bungee Spice",
        -            "Bungee Tint",
        -            "Butcherman",
        -            "Butterfly Kids",
        -            "Bytesized",
        -            "Cabin",
        -            "Cabin Condensed",
        -            "Cabin Sketch",
        -            "Cactus Classical Serif",
        -            "Caesar Dressing",
        -            "Cagliostro",
        -            "Cairo",
        -            "Cairo Play",
        -            "Cal Sans",
        -            "Caladea",
        -            "Calistoga",
        -            "Calligraffitti",
        -            "Cambay",
        -            "Cambo",
        -            "Candal",
        -            "Cantarell",
        -            "Cantata One",
        -            "Cantora One",
        -            "Caprasimo",
        -            "Capriola",
        -            "Caramel",
        -            "Carattere",
        -            "Cardo",
        -            "Carlito",
        -            "Carme",
        -            "Carrois Gothic",
        -            "Carrois Gothic SC",
        -            "Carter One",
        -            "Cascadia Code",
        -            "Cascadia Mono",
        -            "Castoro",
        -            "Castoro Titling",
        -            "Catamaran",
        -            "Caudex",
        -            "Cause",
        -            "Caveat",
        -            "Caveat Brush",
        -            "Cedarville Cursive",
        -            "Ceviche One",
        -            "Chakra Petch",
        -            "Changa",
        -            "Changa One",
        -            "Chango",
        -            "Charis SIL",
        -            "Charm",
        -            "Charmonman",
        -            "Chathura",
        -            "Chau Philomene One",
        -            "Chela One",
        -            "Chelsea Market",
        -            "Chenla",
        -            "Cherish",
        -            "Cherry Bomb One",
        -            "Cherry Cream Soda",
        -            "Cherry Swash",
        -            "Chewy",
        -            "Chicle",
        -            "Chilanka",
        -            "Chiron GoRound TC",
        -            "Chiron Hei HK",
        -            "Chiron Sung HK",
        -            "Chivo",
        -            "Chivo Mono",
        -            "Chocolate Classical Sans",
        -            "Chokokutai",
        -            "Chonburi",
        -            "Cinzel",
        -            "Cinzel Decorative",
        -            "Clicker Script",
        -            "Climate Crisis",
        -            "Coda",
        -            "Codystar",
        -            "Coiny",
        -            "Combo",
        -            "Comfortaa",
        -            "Comforter",
        -            "Comforter Brush",
        -            "Comic Neue",
        -            "Comic Relief",
        -            "Coming Soon",
        -            "Comme",
        -            "Commissioner",
        -            "Concert One",
        -            "Condiment",
        -            "Content",
        -            "Contrail One",
        -            "Convergence",
        -            "Cookie",
        -            "Copse",
        -            "Coral Pixels",
        -            "Corben",
        -            "Corinthia",
        -            "Cormorant",
        -            "Cormorant Garamond",
        -            "Cormorant Infant",
        -            "Cormorant SC",
        -            "Cormorant Unicase",
        -            "Cormorant Upright",
        -            "Cossette Texte",
        -            "Cossette Titre",
        -            "Courgette",
        -            "Courier Prime",
        -            "Cousine",
        -            "Coustard",
        -            "Covered By Your Grace",
        -            "Crafty Girls",
        -            "Creepster",
        -            "Crete Round",
        -            "Crimson Pro",
        -            "Crimson Text",
        -            "Croissant One",
        -            "Crushed",
        -            "Cuprum",
        -            "Cute Font",
        -            "Cutive",
        -            "Cutive Mono",
        -            "DM Mono",
        -            "DM Sans",
        -            "DM Serif Display",
        -            "DM Serif Text",
        -            "Dai Banna SIL",
        -            "Damion",
        -            "Dancing Script",
        -            "Danfo",
        -            "Dangrek",
        -            "Darker Grotesque",
        -            "Darumadrop One",
        -            "Datatype",
        -            "David Libre",
        -            "Dawning of a New Day",
        -            "Days One",
        -            "Dekko",
        -            "Dela Gothic One",
        -            "Delicious Handrawn",
        -            "Delius",
        -            "Delius Swash Caps",
        -            "Delius Unicase",
        -            "Della Respira",
        -            "Denk One",
        -            "Devonshire",
        -            "Dhurjati",
        -            "Didact Gothic",
        -            "Diphylleia",
        -            "Diplomata",
        -            "Diplomata SC",
        -            "Do Hyeon",
        -            "Dokdo",
        -            "Domine",
        -            "Donegal One",
        -            "Dongle",
        -            "Doppio One",
        -            "Dorsa",
        -            "Dosis",
        -            "DotGothic16",
        -            "Doto",
        -            "Dr Sugiyama",
        -            "Duru Sans",
        -            "DynaPuff",
        -            "Dynalight",
        -            "EB Garamond",
        -            "Eagle Lake",
        -            "East Sea Dokdo",
        -            "Eater",
        -            "Economica",
        -            "Eczar",
        -            "Edu AU VIC WA NT Arrows",
        -            "Edu AU VIC WA NT Dots",
        -            "Edu AU VIC WA NT Guides",
        -            "Edu AU VIC WA NT Hand",
        -            "Edu AU VIC WA NT Pre",
        -            "Edu NSW ACT Cursive",
        -            "Edu NSW ACT Foundation",
        -            "Edu NSW ACT Hand Pre",
        -            "Edu QLD Beginner",
        -            "Edu QLD Hand",
        -            "Edu SA Beginner",
        -            "Edu SA Hand",
        -            "Edu TAS Beginner",
        -            "Edu VIC WA NT Beginner",
        -            "Edu VIC WA NT Hand",
        -            "Edu VIC WA NT Hand Pre",
        -            "El Messiri",
        -            "Electrolize",
        -            "Elms Sans",
        -            "Elsie",
        -            "Elsie Swash Caps",
        -            "Emblema One",
        -            "Emilys Candy",
        -            "Encode Sans",
        -            "Encode Sans Condensed",
        -            "Encode Sans Expanded",
        -            "Encode Sans SC",
        -            "Encode Sans Semi Condensed",
        -            "Encode Sans Semi Expanded",
        -            "Engagement",
        -            "Englebert",
        -            "Enriqueta",
        -            "Ephesis",
        -            "Epilogue",
        -            "Epunda Sans",
        -            "Epunda Slab",
        -            "Erica One",
        -            "Esteban",
        -            "Estedad",
        -            "Estonia",
        -            "Euphoria Script",
        -            "Ewert",
        -            "Exile",
        -            "Exo",
        -            "Exo 2",
        -            "Expletus Sans",
        -            "Explora",
        -            "Faculty Glyphic",
        -            "Fahkwang",
        -            "Familjen Grotesk",
        -            "Fanwood Text",
        -            "Farro",
        -            "Farsan",
        -            "Fascinate",
        -            "Fascinate Inline",
        -            "Faster One",
        -            "Fasthand",
        -            "Fauna One",
        -            "Faustina",
        -            "Federant",
        -            "Federo",
        -            "Felipa",
        -            "Fenix",
        -            "Festive",
        -            "Figtree",
        -            "Finger Paint",
        -            "Finlandica Headline",
        -            "Finlandica Text",
        -            "Fira Code",
        -            "Fira Mono",
        -            "Fira Sans",
        -            "Fira Sans Condensed",
        -            "Fira Sans Extra Condensed",
        -            "Fjalla One",
        -            "Fjord One",
        -            "Flamenco",
        -            "Flavors",
        -            "Fleur De Leah",
        -            "Flow Block",
        -            "Flow Circular",
        -            "Flow Rounded",
        -            "Foldit",
        -            "Fondamento",
        -            "Fontdiner Swanky",
        -            "Forum",
        -            "Fragment Mono",
        -            "Francois One",
        -            "Frank Ruhl Libre",
        -            "Fraunces",
        -            "Freckle Face",
        -            "Fredericka the Great",
        -            "Fredoka",
        -            "Freehand",
        -            "Freeman",
        -            "Fresca",
        -            "Frijole",
        -            "Fruktur",
        -            "Fugaz One",
        -            "Fuggles",
        -            "Funnel Display",
        -            "Funnel Sans",
        -            "Fustat",
        -            "Fuzzy Bubbles",
        -            "GFS Didot",
        -            "GFS Neohellenic",
        -            "Ga Maamli",
        -            "Gabarito",
        -            "Gabriela",
        -            "Gaegu",
        -            "Gafata",
        -            "Gajraj One",
        -            "Galada",
        -            "Galdeano",
        -            "Galindo",
        -            "Gamja Flower",
        -            "Gantari",
        -            "Gasoek One",
        -            "Gayathri",
        -            "Geist",
        -            "Geist Mono",
        -            "Geist Pixel",
        -            "Gelasio",
        -            "Gemunu Libre",
        -            "Genos",
        -            "Gentium Book Plus",
        -            "Gentium Plus",
        -            "Geo",
        -            "Geologica",
        -            "Geom",
        -            "Geomini",
        -            "Georama",
        -            "Geostar",
        -            "Geostar Fill",
        -            "Germania One",
        -            "Gideon Roman",
        -            "Gidole",
        -            "Gidugu",
        -            "Gilda Display",
        -            "Girassol",
        -            "Give You Glory",
        -            "Glass Antiqua",
        -            "Glegoo",
        -            "Gloock",
        -            "Gloria Hallelujah",
        -            "Glory",
        -            "Gluten",
        -            "Goblin One",
        -            "Gochi Hand",
        -            "Goldman",
        -            "Golos Text",
        -            "Google Sans",
        -            "Google Sans Code",
        -            "Google Sans Flex",
        -            "Gorditas",
        -            "Gothic A1",
        -            "Gotu",
        -            "Goudy Bookletter 1911",
        -            "Gowun Batang",
        -            "Gowun Dodum",
        -            "Graduate",
        -            "Grand Hotel",
        -            "Grandiflora One",
        -            "Grandstander",
        -            "Grape Nuts",
        -            "Gravitas One",
        -            "Great Vibes",
        -            "Grechen Fuemen",
        -            "Grenze",
        -            "Grenze Gotisch",
        -            "Grey Qo",
        -            "Griffy",
        -            "Gruppo",
        -            "Gudea",
        -            "Gugi",
        -            "Gulzar",
        -            "Gupter",
        -            "Gurajada",
        -            "Gveret Levin",
        -            "Gwendolyn",
        -            "Habibi",
        -            "Hachi Maru Pop",
        -            "Hahmlet",
        -            "Halant",
        -            "Hammersmith One",
        -            "Hanalei",
        -            "Hanalei Fill",
        -            "Handjet",
        -            "Handlee",
        -            "Hanken Grotesk",
        -            "Hanuman",
        -            "Happy Monkey",
        -            "Harmattan",
        -            "Headland One",
        -            "Hedvig Letters Sans",
        -            "Hedvig Letters Serif",
        -            "Heebo",
        -            "Henny Penny",
        -            "Hepta Slab",
        -            "Herr Von Muellerhoff",
        -            "Hi Melody",
        -            "Hibur Mono",
        -            "Hina Mincho",
        -            "Hind",
        -            "Hind Guntur",
        -            "Hind Madurai",
        -            "Hind Mysuru",
        -            "Hind Siliguri",
        -            "Hind Vadodara",
        -            "Holtwood One SC",
        -            "Homemade Apple",
        -            "Homenaje",
        -            "Honk",
        -            "Host Grotesk",
        -            "Hubballi",
        -            "Hubot Sans",
        -            "Huninn",
        -            "Hurricane",
        -            "IBM Plex Mono",
        -            "IBM Plex Sans",
        -            "IBM Plex Sans Arabic",
        -            "IBM Plex Sans Condensed",
        -            "IBM Plex Sans Devanagari",
        -            "IBM Plex Sans Hebrew",
        -            "IBM Plex Sans JP",
        -            "IBM Plex Sans KR",
        -            "IBM Plex Sans Thai",
        -            "IBM Plex Sans Thai Looped",
        -            "IBM Plex Serif",
        -            "IM Fell DW Pica",
        -            "IM Fell DW Pica SC",
        -            "IM Fell Double Pica",
        -            "IM Fell Double Pica SC",
        -            "IM Fell English",
        -            "IM Fell English SC",
        -            "IM Fell French Canon",
        -            "IM Fell French Canon SC",
        -            "IM Fell Great Primer",
        -            "IM Fell Great Primer SC",
        -            "Iansui",
        -            "Ibarra Real Nova",
        -            "Iceberg",
        -            "Iceland",
        -            "Idiqlat",
        -            "Imbue",
        -            "Imperial Script",
        -            "Imprima",
        -            "Inclusive Sans",
        -            "Inconsolata",
        -            "Inder",
        -            "Indie Flower",
        -            "Ingrid Darling",
        -            "Inika",
        -            "Inknut Antiqua",
        -            "Inria Sans",
        -            "Inria Serif",
        -            "Inspiration",
        -            "Instrument Sans",
        -            "Instrument Serif",
        -            "Intel One Mono",
        -            "Inter",
        -            "Inter Tight",
        -            "Iosevka Charon",
        -            "Iosevka Charon Mono",
        -            "Irish Grover",
        -            "Island Moments",
        -            "Istok Web",
        -            "Italiana",
        -            "Italianno",
        -            "Itim",
        -            "Jacquard 12",
        -            "Jacquard 12 Charted",
        -            "Jacquard 24",
        -            "Jacquard 24 Charted",
        -            "Jacquarda Bastarda 9",
        -            "Jacquarda Bastarda 9 Charted",
        -            "Jacques Francois",
        -            "Jacques Francois Shadow",
        -            "Jaini",
        -            "Jaini Purva",
        -            "Jaldi",
        -            "Jaro",
        -            "Jersey 10",
        -            "Jersey 10 Charted",
        -            "Jersey 15",
        -            "Jersey 15 Charted",
        -            "Jersey 20",
        -            "Jersey 20 Charted",
        -            "Jersey 25",
        -            "Jersey 25 Charted",
        -            "JetBrains Mono",
        -            "Jim Nightshade",
        -            "Joan",
        -            "Jockey One",
        -            "Jolly Lodger",
        -            "Jomhuria",
        -            "Jomolhari",
        -            "Josefin Sans",
        -            "Josefin Slab",
        -            "Jost",
        -            "Joti One",
        -            "Jua",
        -            "Judson",
        -            "Julee",
        -            "Julius Sans One",
        -            "Junge",
        -            "Jura",
        -            "Just Another Hand",
        -            "Just Me Again Down Here",
        -            "K2D",
        -            "Kablammo",
        -            "Kadwa",
        -            "Kaisei Decol",
        -            "Kaisei HarunoUmi",
        -            "Kaisei Opti",
        -            "Kaisei Tokumin",
        -            "Kalam",
        -            "Kalnia",
        -            "Kalnia Glaze",
        -            "Kameron",
        -            "Kanchenjunga",
        -            "Kanit",
        -            "Kantumruy Pro",
        -            "Kapakana",
        -            "Karantina",
        -            "Karla",
        -            "Karla Tamil Inclined",
        -            "Karla Tamil Upright",
        -            "Karma",
        -            "Katibeh",
        -            "Kaushan Script",
        -            "Kavivanar",
        -            "Kavoon",
        -            "Kay Pho Du",
        -            "Kdam Thmor Pro",
        -            "Keania One",
        -            "Kedebideri",
        -            "Kelly Slab",
        -            "Kenia",
        -            "Khand",
        -            "Khmer",
        -            "Khula",
        -            "Kings",
        -            "Kirang Haerang",
        -            "Kite One",
        -            "Kiwi Maru",
        -            "Klee One",
        -            "Knewave",
        -            "KoHo",
        -            "Kodchasan",
        -            "Kode Mono",
        -            "Koh Santepheap",
        -            "Kolker Brush",
        -            "Konkhmer Sleokchher",
        -            "Kosugi",
        -            "Kosugi Maru",
        -            "Kotta One",
        -            "Koulen",
        -            "Kranky",
        -            "Kreon",
        -            "Kristi",
        -            "Krona One",
        -            "Krub",
        -            "Kufam",
        -            "Kulim Park",
        -            "Kumar One",
        -            "Kumar One Outline",
        -            "Kumbh Sans",
        -            "Kurale",
        -            "LINE Seed JP",
        -            "LXGW Marker Gothic",
        -            "LXGW WenKai Mono TC",
        -            "LXGW WenKai TC",
        -            "La Belle Aurore",
        -            "Labrada",
        -            "Lacquer",
        -            "Laila",
        -            "Lakki Reddy",
        -            "Lalezar",
        -            "Lancelot",
        -            "Langar",
        -            "Lateef",
        -            "Lato",
        -            "Lavishly Yours",
        -            "League Gothic",
        -            "League Script",
        -            "League Spartan",
        -            "Leckerli One",
        -            "Ledger",
        -            "Lekton",
        -            "Lemon",
        -            "Lemonada",
        -            "Lexend",
        -            "Lexend Deca",
        -            "Lexend Exa",
        -            "Lexend Giga",
        -            "Lexend Mega",
        -            "Lexend Peta",
        -            "Lexend Tera",
        -            "Lexend Zetta",
        -            "Libertinus Keyboard",
        -            "Libertinus Math",
        -            "Libertinus Mono",
        -            "Libertinus Sans",
        -            "Libertinus Serif",
        -            "Libertinus Serif Display",
        -            "Libre Barcode 128",
        -            "Libre Barcode 128 Text",
        -            "Libre Barcode 39",
        -            "Libre Barcode 39 Extended",
        -            "Libre Barcode 39 Extended Text",
        -            "Libre Barcode 39 Text",
        -            "Libre Barcode EAN13 Text",
        -            "Libre Baskerville",
        -            "Libre Bodoni",
        -            "Libre Caslon Display",
        -            "Libre Caslon Text",
        -            "Libre Franklin",
        -            "Licorice",
        -            "Life Savers",
        -            "Lilex",
        -            "Lilita One",
        -            "Lily Script One",
        -            "Limelight",
        -            "Linden Hill",
        -            "Linefont",
        -            "Lisu Bosa",
        -            "Liter",
        -            "Literata",
        -            "Liu Jian Mao Cao",
        -            "Livvic",
        -            "Lobster",
        -            "Lobster Two",
        -            "Londrina Outline",
        -            "Londrina Shadow",
        -            "Londrina Sketch",
        -            "Londrina Solid",
        -            "Long Cang",
        -            "Lora",
        -            "Love Light",
        -            "Love Ya Like A Sister",
        -            "Loved by the King",
        -            "Lovers Quarrel",
        -            "Luckiest Guy",
        -            "Lugrasimo",
        -            "Lumanosimo",
        -            "Lunasima",
        -            "Lusitana",
        -            "Lustria",
        -            "Luxurious Roman",
        -            "Luxurious Script",
        -            "M PLUS 1",
        -            "M PLUS 1 Code",
        -            "M PLUS 1p",
        -            "M PLUS 2",
        -            "M PLUS Code Latin",
        -            "M PLUS Rounded 1c",
        -            "M PLUS U",
        -            "Ma Shan Zheng",
        -            "Macondo",
        -            "Macondo Swash Caps",
        -            "Mada",
        -            "Madimi One",
        -            "Magra",
        -            "Maiden Orange",
        -            "Maitree",
        -            "Major Mono Display",
        -            "Mako",
        -            "Mali",
        -            "Mallanna",
        -            "Maname",
        -            "Mandali",
        -            "Manjari",
        -            "Manrope",
        -            "Mansalva",
        -            "Manuale",
        -            "Manufacturing Consent",
        -            "Marcellus",
        -            "Marcellus SC",
        -            "Marck Script",
        -            "Margarine",
        -            "Marhey",
        -            "Markazi Text",
        -            "Marko One",
        -            "Marmelad",
        -            "Martel",
        -            "Martel Sans",
        -            "Martian Mono",
        -            "Marvel",
        -            "Matangi",
        -            "Mate",
        -            "Mate SC",
        -            "Matemasie",
        -            "Material Icons",
        -            "Material Icons Outlined",
        -            "Material Icons Round",
        -            "Material Icons Sharp",
        -            "Material Icons Two Tone",
        -            "Material Symbols",
        -            "Material Symbols Outlined",
        -            "Material Symbols Rounded",
        -            "Material Symbols Sharp",
        -            "Maven Pro",
        -            "McLaren",
        -            "Mea Culpa",
        -            "Meddon",
        -            "MedievalSharp",
        -            "Medula One",
        -            "Meera Inimai",
        -            "Megrim",
        -            "Meie Script",
        -            "Menbere",
        -            "Meow Script",
        -            "Merienda",
        -            "Merriweather",
        -            "Merriweather Sans",
        -            "Metal",
        -            "Metal Mania",
        -            "Metamorphous",
        -            "Metrophobic",
        -            "Michroma",
        -            "Micro 5",
        -            "Micro 5 Charted",
        -            "Milonga",
        -            "Miltonian",
        -            "Miltonian Tattoo",
        -            "Mina",
        -            "Mingzat",
        -            "Miniver",
        -            "Miranda Sans",
        -            "Miriam Libre",
        -            "Mirza",
        -            "Miss Fajardose",
        -            "Mitr",
        -            "Mochiy Pop One",
        -            "Mochiy Pop P One",
        -            "Modak",
        -            "Modern Antiqua",
        -            "Moderustic",
        -            "Mogra",
        -            "Mohave",
        -            "Moirai One",
        -            "Molengo",
        -            "Molle",
        -            "Momo Signature",
        -            "Momo Trust Display",
        -            "Momo Trust Sans",
        -            "Mona Sans",
        -            "Monda",
        -            "Monofett",
        -            "Monomakh",
        -            "Monomaniac One",
        -            "Monoton",
        -            "Monsieur La Doulaise",
        -            "Montaga",
        -            "Montagu Slab",
        -            "MonteCarlo",
        -            "Montenegrin Gothic One",
        -            "Montez",
        -            "Montserrat",
        -            "Montserrat Alternates",
        -            "Montserrat Underline",
        -            "Moo Lah Lah",
        -            "Mooli",
        -            "Moon Dance",
        -            "Moul",
        -            "Moulpali",
        -            "Mountains of Christmas",
        -            "Mouse Memoirs",
        -            "Mozilla Headline",
        -            "Mozilla Text",
        -            "Mr Bedfort",
        -            "Mr Dafoe",
        -            "Mr De Haviland",
        -            "Mrs Saint Delafield",
        -            "Mrs Sheppards",
        -            "Ms Madi",
        -            "Mukta",
        -            "Mukta Mahee",
        -            "Mukta Malar",
        -            "Mukta Vaani",
        -            "Mulish",
        -            "Murecho",
        -            "MuseoModerno",
        -            "My Soul",
        -            "Mynerve",
        -            "Mystery Quest",
        -            "NTR",
        -            "Nabla",
        -            "Namdhinggo",
        -            "Nanum Brush Script",
        -            "Nanum Gothic",
        -            "Nanum Gothic Coding",
        -            "Nanum Myeongjo",
        -            "Nanum Pen Script",
        -            "Narnoor",
        -            "Nata Sans",
        -            "National Park",
        -            "Neonderthaw",
        -            "Nerko One",
        -            "Neucha",
        -            "Neuton",
        -            "New Amsterdam",
        -            "New Rocker",
        -            "New Tegomin",
        -            "News Cycle",
        -            "Newsreader",
        -            "Niconne",
        -            "Niramit",
        -            "Nixie One",
        -            "Nobile",
        -            "Nokora",
        -            "Norican",
        -            "Nosifer",
        -            "Notable",
        -            "Nothing You Could Do",
        -            "Noticia Text",
        -            "Noto Color Emoji",
        -            "Noto Emoji",
        -            "Noto Kufi Arabic",
        -            "Noto Music",
        -            "Noto Naskh Arabic",
        -            "Noto Nastaliq Urdu",
        -            "Noto Rashi Hebrew",
        -            "Noto Sans",
        -            "Noto Sans Adlam",
        -            "Noto Sans Adlam Unjoined",
        -            "Noto Sans Anatolian Hieroglyphs",
        -            "Noto Sans Arabic",
        -            "Noto Sans Armenian",
        -            "Noto Sans Avestan",
        -            "Noto Sans Balinese",
        -            "Noto Sans Bamum",
        -            "Noto Sans Bassa Vah",
        -            "Noto Sans Batak",
        -            "Noto Sans Bengali",
        -            "Noto Sans Bhaiksuki",
        -            "Noto Sans Brahmi",
        -            "Noto Sans Buginese",
        -            "Noto Sans Buhid",
        -            "Noto Sans Canadian Aboriginal",
        -            "Noto Sans Carian",
        -            "Noto Sans Caucasian Albanian",
        -            "Noto Sans Chakma",
        -            "Noto Sans Cham",
        -            "Noto Sans Cherokee",
        -            "Noto Sans Chorasmian",
        -            "Noto Sans Coptic",
        -            "Noto Sans Cuneiform",
        -            "Noto Sans Cypriot",
        -            "Noto Sans Cypro Minoan",
        -            "Noto Sans Deseret",
        -            "Noto Sans Devanagari",
        -            "Noto Sans Display",
        -            "Noto Sans Duployan",
        -            "Noto Sans Egyptian Hieroglyphs",
        -            "Noto Sans Elbasan",
        -            "Noto Sans Elymaic",
        -            "Noto Sans Ethiopic",
        -            "Noto Sans Georgian",
        -            "Noto Sans Glagolitic",
        -            "Noto Sans Gothic",
        -            "Noto Sans Grantha",
        -            "Noto Sans Gujarati",
        -            "Noto Sans Gunjala Gondi",
        -            "Noto Sans Gurmukhi",
        -            "Noto Sans HK",
        -            "Noto Sans Hanifi Rohingya",
        -            "Noto Sans Hanunoo",
        -            "Noto Sans Hatran",
        -            "Noto Sans Hebrew",
        -            "Noto Sans Imperial Aramaic",
        -            "Noto Sans Indic Siyaq Numbers",
        -            "Noto Sans Inscriptional Pahlavi",
        -            "Noto Sans Inscriptional Parthian",
        -            "Noto Sans JP",
        -            "Noto Sans Javanese",
        -            "Noto Sans KR",
        -            "Noto Sans Kaithi",
        -            "Noto Sans Kannada",
        -            "Noto Sans Kawi",
        -            "Noto Sans Kayah Li",
        -            "Noto Sans Kharoshthi",
        -            "Noto Sans Khmer",
        -            "Noto Sans Khojki",
        -            "Noto Sans Khudawadi",
        -            "Noto Sans Lao",
        -            "Noto Sans Lao Looped",
        -            "Noto Sans Lepcha",
        -            "Noto Sans Limbu",
        -            "Noto Sans Linear A",
        -            "Noto Sans Linear B",
        -            "Noto Sans Lisu",
        -            "Noto Sans Lycian",
        -            "Noto Sans Lydian",
        -            "Noto Sans Mahajani",
        -            "Noto Sans Malayalam",
        -            "Noto Sans Mandaic",
        -            "Noto Sans Manichaean",
        -            "Noto Sans Marchen",
        -            "Noto Sans Masaram Gondi",
        -            "Noto Sans Math",
        -            "Noto Sans Mayan Numerals",
        -            "Noto Sans Medefaidrin",
        -            "Noto Sans Meetei Mayek",
        -            "Noto Sans Mende Kikakui",
        -            "Noto Sans Meroitic",
        -            "Noto Sans Miao",
        -            "Noto Sans Modi",
        -            "Noto Sans Mongolian",
        -            "Noto Sans Mono",
        -            "Noto Sans Mro",
        -            "Noto Sans Multani",
        -            "Noto Sans Myanmar",
        -            "Noto Sans NKo",
        -            "Noto Sans NKo Unjoined",
        -            "Noto Sans Nabataean",
        -            "Noto Sans Nag Mundari",
        -            "Noto Sans Nandinagari",
        -            "Noto Sans New Tai Lue",
        -            "Noto Sans Newa",
        -            "Noto Sans Nushu",
        -            "Noto Sans Ogham",
        -            "Noto Sans Ol Chiki",
        -            "Noto Sans Old Hungarian",
        -            "Noto Sans Old Italic",
        -            "Noto Sans Old North Arabian",
        -            "Noto Sans Old Permic",
        -            "Noto Sans Old Persian",
        -            "Noto Sans Old Sogdian",
        -            "Noto Sans Old South Arabian",
        -            "Noto Sans Old Turkic",
        -            "Noto Sans Oriya",
        -            "Noto Sans Osage",
        -            "Noto Sans Osmanya",
        -            "Noto Sans Pahawh Hmong",
        -            "Noto Sans Palmyrene",
        -            "Noto Sans Pau Cin Hau",
        -            "Noto Sans PhagsPa",
        -            "Noto Sans Phoenician",
        -            "Noto Sans Psalter Pahlavi",
        -            "Noto Sans Rejang",
        -            "Noto Sans Runic",
        -            "Noto Sans SC",
        -            "Noto Sans Samaritan",
        -            "Noto Sans Saurashtra",
        -            "Noto Sans Sharada",
        -            "Noto Sans Shavian",
        -            "Noto Sans Siddham",
        -            "Noto Sans SignWriting",
        -            "Noto Sans Sinhala",
        -            "Noto Sans Sogdian",
        -            "Noto Sans Sora Sompeng",
        -            "Noto Sans Soyombo",
        -            "Noto Sans Sundanese",
        -            "Noto Sans Sunuwar",
        -            "Noto Sans Syloti Nagri",
        -            "Noto Sans Symbols",
        -            "Noto Sans Symbols 2",
        -            "Noto Sans Syriac",
        -            "Noto Sans Syriac Eastern",
        -            "Noto Sans Syriac Western",
        -            "Noto Sans TC",
        -            "Noto Sans Tagalog",
        -            "Noto Sans Tagbanwa",
        -            "Noto Sans Tai Le",
        -            "Noto Sans Tai Tham",
        -            "Noto Sans Tai Viet",
        -            "Noto Sans Takri",
        -            "Noto Sans Tamil",
        -            "Noto Sans Tamil Supplement",
        -            "Noto Sans Tangsa",
        -            "Noto Sans Telugu",
        -            "Noto Sans Thaana",
        -            "Noto Sans Thai",
        -            "Noto Sans Thai Looped",
        -            "Noto Sans Tifinagh",
        -            "Noto Sans Tirhuta",
        -            "Noto Sans Ugaritic",
        -            "Noto Sans Vai",
        -            "Noto Sans Vithkuqi",
        -            "Noto Sans Wancho",
        -            "Noto Sans Warang Citi",
        -            "Noto Sans Yi",
        -            "Noto Sans Zanabazar Square",
        -            "Noto Serif",
        -            "Noto Serif Ahom",
        -            "Noto Serif Armenian",
        -            "Noto Serif Balinese",
        -            "Noto Serif Bengali",
        -            "Noto Serif Devanagari",
        -            "Noto Serif Display",
        -            "Noto Serif Dives Akuru",
        -            "Noto Serif Dogra",
        -            "Noto Serif Ethiopic",
        -            "Noto Serif Georgian",
        -            "Noto Serif Grantha",
        -            "Noto Serif Gujarati",
        -            "Noto Serif Gurmukhi",
        -            "Noto Serif HK",
        -            "Noto Serif Hebrew",
        -            "Noto Serif Hentaigana",
        -            "Noto Serif JP",
        -            "Noto Serif KR",
        -            "Noto Serif Kannada",
        -            "Noto Serif Khitan Small Script",
        -            "Noto Serif Khmer",
        -            "Noto Serif Khojki",
        -            "Noto Serif Lao",
        -            "Noto Serif Makasar",
        -            "Noto Serif Malayalam",
        -            "Noto Serif Myanmar",
        -            "Noto Serif NP Hmong",
        -            "Noto Serif Old Uyghur",
        -            "Noto Serif Oriya",
        -            "Noto Serif Ottoman Siyaq",
        -            "Noto Serif SC",
        -            "Noto Serif Sinhala",
        -            "Noto Serif TC",
        -            "Noto Serif Tamil",
        -            "Noto Serif Tangut",
        -            "Noto Serif Telugu",
        -            "Noto Serif Thai",
        -            "Noto Serif Tibetan",
        -            "Noto Serif Todhri",
        -            "Noto Serif Toto",
        -            "Noto Serif Vithkuqi",
        -            "Noto Serif Yezidi",
        -            "Noto Traditional Nushu",
        -            "Noto Znamenny Musical Notation",
        -            "Nova Cut",
        -            "Nova Flat",
        -            "Nova Mono",
        -            "Nova Oval",
        -            "Nova Round",
        -            "Nova Script",
        -            "Nova Slim",
        -            "Nova Square",
        -            "Numans",
        -            "Nunito",
        -            "Nunito Sans",
        -            "Nuosu SIL",
        -            "Odibee Sans",
        -            "Odor Mean Chey",
        -            "Offside",
        -            "Oi",
        -            "Ojuju",
        -            "Old Standard TT",
        -            "Oldenburg",
        -            "Ole",
        -            "Oleo Script",
        -            "Oleo Script Swash Caps",
        -            "Onest",
        -            "Oooh Baby",
        -            "Open Sans",
        -            "Oranienbaum",
        -            "Orbit",
        -            "Orbitron",
        -            "Oregano",
        -            "Orelega One",
        -            "Orienta",
        -            "Original Surfer",
        -            "Oswald",
        -            "Outfit",
        -            "Over the Rainbow",
        -            "Overlock",
        -            "Overlock SC",
        -            "Overpass",
        -            "Overpass Mono",
        -            "Ovo",
        -            "Oxanium",
        -            "Oxygen",
        -            "Oxygen Mono",
        -            "PT Mono",
        -            "PT Sans",
        -            "PT Sans Caption",
        -            "PT Sans Narrow",
        -            "PT Serif",
        -            "PT Serif Caption",
        -            "Pacifico",
        -            "Padauk",
        -            "Padyakke Expanded One",
        -            "Palanquin",
        -            "Palanquin Dark",
        -            "Palette Mosaic",
        -            "Pangolin",
        -            "Paprika",
        -            "Parastoo",
        -            "Parisienne",
        -            "Parkinsans",
        -            "Passero One",
        -            "Passion One",
        -            "Passions Conflict",
        -            "Pathway Extreme",
        -            "Pathway Gothic One",
        -            "Patrick Hand",
        -            "Patrick Hand SC",
        -            "Pattaya",
        -            "Patua One",
        -            "Pavanam",
        -            "Paytone One",
        -            "Peddana",
        -            "Peralta",
        -            "Permanent Marker",
        -            "Petemoss",
        -            "Petit Formal Script",
        -            "Petrona",
        -            "Phetsarath",
        -            "Philosopher",
        -            "Phudu",
        -            "Piazzolla",
        -            "Piedra",
        -            "Pinyon Script",
        -            "Pirata One",
        -            "Pixelify Sans",
        -            "Plaster",
        -            "Platypi",
        -            "Play",
        -            "Playball",
        -            "Playfair",
        -            "Playfair Display",
        -            "Playfair Display SC",
        -            "Playpen Sans",
        -            "Playpen Sans Arabic",
        -            "Playpen Sans Deva",
        -            "Playpen Sans Hebrew",
        -            "Playpen Sans Thai",
        -            "Playwrite AR",
        -            "Playwrite AR Guides",
        -            "Playwrite AT",
        -            "Playwrite AT Guides",
        -            "Playwrite AU NSW",
        -            "Playwrite AU NSW Guides",
        -            "Playwrite AU QLD",
        -            "Playwrite AU QLD Guides",
        -            "Playwrite AU SA",
        -            "Playwrite AU SA Guides",
        -            "Playwrite AU TAS",
        -            "Playwrite AU TAS Guides",
        -            "Playwrite AU VIC",
        -            "Playwrite AU VIC Guides",
        -            "Playwrite BE VLG",
        -            "Playwrite BE VLG Guides",
        -            "Playwrite BE WAL",
        -            "Playwrite BE WAL Guides",
        -            "Playwrite BR",
        -            "Playwrite BR Guides",
        -            "Playwrite CA",
        -            "Playwrite CA Guides",
        -            "Playwrite CL",
        -            "Playwrite CL Guides",
        -            "Playwrite CO",
        -            "Playwrite CO Guides",
        -            "Playwrite CU",
        -            "Playwrite CU Guides",
        -            "Playwrite CZ",
        -            "Playwrite CZ Guides",
        -            "Playwrite DE Grund",
        -            "Playwrite DE Grund Guides",
        -            "Playwrite DE LA",
        -            "Playwrite DE LA Guides",
        -            "Playwrite DE SAS",
        -            "Playwrite DE SAS Guides",
        -            "Playwrite DE VA",
        -            "Playwrite DE VA Guides",
        -            "Playwrite DK Loopet",
        -            "Playwrite DK Loopet Guides",
        -            "Playwrite DK Uloopet",
        -            "Playwrite DK Uloopet Guides",
        -            "Playwrite ES",
        -            "Playwrite ES Deco",
        -            "Playwrite ES Deco Guides",
        -            "Playwrite ES Guides",
        -            "Playwrite FR Moderne",
        -            "Playwrite FR Moderne Guides",
        -            "Playwrite FR Trad",
        -            "Playwrite FR Trad Guides",
        -            "Playwrite GB J",
        -            "Playwrite GB J Guides",
        -            "Playwrite GB S",
        -            "Playwrite GB S Guides",
        -            "Playwrite HR",
        -            "Playwrite HR Guides",
        -            "Playwrite HR Lijeva",
        -            "Playwrite HR Lijeva Guides",
        -            "Playwrite HU",
        -            "Playwrite HU Guides",
        -            "Playwrite ID",
        -            "Playwrite ID Guides",
        -            "Playwrite IE",
        -            "Playwrite IE Guides",
        -            "Playwrite IN",
        -            "Playwrite IN Guides",
        -            "Playwrite IS",
        -            "Playwrite IS Guides",
        -            "Playwrite IT Moderna",
        -            "Playwrite IT Moderna Guides",
        -            "Playwrite IT Trad",
        -            "Playwrite IT Trad Guides",
        -            "Playwrite MX",
        -            "Playwrite MX Guides",
        -            "Playwrite NG Modern",
        -            "Playwrite NG Modern Guides",
        -            "Playwrite NL",
        -            "Playwrite NL Guides",
        -            "Playwrite NO",
        -            "Playwrite NO Guides",
        -            "Playwrite NZ",
        -            "Playwrite NZ Basic",
        -            "Playwrite NZ Basic Guides",
        -            "Playwrite NZ Guides",
        -            "Playwrite PE",
        -            "Playwrite PE Guides",
        -            "Playwrite PL",
        -            "Playwrite PL Guides",
        -            "Playwrite PT",
        -            "Playwrite PT Guides",
        -            "Playwrite RO",
        -            "Playwrite RO Guides",
        -            "Playwrite SK",
        -            "Playwrite SK Guides",
        -            "Playwrite TZ",
        -            "Playwrite TZ Guides",
        -            "Playwrite US Modern",
        -            "Playwrite US Modern Guides",
        -            "Playwrite US Trad",
        -            "Playwrite US Trad Guides",
        -            "Playwrite VN",
        -            "Playwrite VN Guides",
        -            "Playwrite ZA",
        -            "Playwrite ZA Guides",
        -            "Pliant",
        -            "Plus Jakarta Sans",
        -            "Pochaevsk",
        -            "Podkova",
        -            "Poetsen One",
        -            "Poiret One",
        -            "Poller One",
        -            "Poltawski Nowy",
        -            "Poly",
        -            "Pompiere",
        -            "Ponnala",
        -            "Ponomar",
        -            "Pontano Sans",
        -            "Poor Story",
        -            "Poppins",
        -            "Port Lligat Sans",
        -            "Port Lligat Slab",
        -            "Potta One",
        -            "Pragati Narrow",
        -            "Praise",
        -            "Prata",
        -            "Preahvihear",
        -            "Press Start 2P",
        -            "Pridi",
        -            "Princess Sofia",
        -            "Prociono",
        -            "Prompt",
        -            "Prosto One",
        -            "Protest Guerrilla",
        -            "Protest Revolution",
        -            "Protest Riot",
        -            "Protest Strike",
        -            "Proza Libre",
        -            "Public Sans",
        -            "Puppies Play",
        -            "Puritan",
        -            "Purple Purse",
        -            "Qahiri",
        -            "Quando",
        -            "Quantico",
        -            "Quattrocento",
        -            "Quattrocento Sans",
        -            "Questrial",
        -            "Quicksand",
        -            "Quintessential",
        -            "Qwigley",
        -            "Qwitcher Grypen",
        -            "REM",
        -            "Racing Sans One",
        -            "Radio Canada",
        -            "Radio Canada Big",
        -            "Radley",
        -            "Rajdhani",
        -            "Rakkas",
        -            "Raleway",
        -            "Raleway Dots",
        -            "Ramabhadra",
        -            "Ramaraja",
        -            "Rambla",
        -            "Rammetto One",
        -            "Rampart One",
        -            "Ramsina",
        -            "Ranchers",
        -            "Rancho",
        -            "Ranga",
        -            "Rasa",
        -            "Rationale",
        -            "Ravi Prakash",
        -            "Readex Pro",
        -            "Recursive",
        -            "Red Hat Display",
        -            "Red Hat Mono",
        -            "Red Hat Text",
        -            "Red Rose",
        -            "Redacted",
        -            "Redacted Script",
        -            "Reddit Mono",
        -            "Reddit Sans",
        -            "Reddit Sans Condensed",
        -            "Redressed",
        -            "Reem Kufi",
        -            "Reem Kufi Fun",
        -            "Reem Kufi Ink",
        -            "Reenie Beanie",
        -            "Reggae One",
        -            "Rethink Sans",
        -            "Revalia",
        -            "Rhodium Libre",
        -            "Ribeye",
        -            "Ribeye Marrow",
        -            "Righteous",
        -            "Risque",
        -            "Road Rage",
        -            "Roboto",
        -            "Roboto Condensed",
        -            "Roboto Flex",
        -            "Roboto Mono",
        -            "Roboto Serif",
        -            "Roboto Slab",
        -            "Rochester",
        -            "Rock 3D",
        -            "Rock Salt",
        -            "RocknRoll One",
        -            "Rokkitt",
        -            "Romanesco",
        -            "Ropa Sans",
        -            "Rosario",
        -            "Rosarivo",
        -            "Rouge Script",
        -            "Rowdies",
        -            "Rozha One",
        -            "Rubik",
        -            "Rubik 80s Fade",
        -            "Rubik Beastly",
        -            "Rubik Broken Fax",
        -            "Rubik Bubbles",
        -            "Rubik Burned",
        -            "Rubik Dirt",
        -            "Rubik Distressed",
        -            "Rubik Doodle Shadow",
        -            "Rubik Doodle Triangles",
        -            "Rubik Gemstones",
        -            "Rubik Glitch",
        -            "Rubik Glitch Pop",
        -            "Rubik Iso",
        -            "Rubik Lines",
        -            "Rubik Maps",
        -            "Rubik Marker Hatch",
        -            "Rubik Maze",
        -            "Rubik Microbe",
        -            "Rubik Mono One",
        -            "Rubik Moonrocks",
        -            "Rubik Pixels",
        -            "Rubik Puddles",
        -            "Rubik Scribble",
        -            "Rubik Spray Paint",
        -            "Rubik Storm",
        -            "Rubik Vinyl",
        -            "Rubik Wet Paint",
        -            "Ruda",
        -            "Rufina",
        -            "Ruge Boogie",
        -            "Ruluko",
        -            "Rum Raisin",
        -            "Ruslan Display",
        -            "Russo One",
        -            "Ruthie",
        -            "Ruwudu",
        -            "Rye",
        -            "SN Pro",
        -            "STIX Two Math",
        -            "STIX Two Text",
        -            "SUSE",
        -            "SUSE Mono",
        -            "Sacramento",
        -            "Sahitya",
        -            "Sail",
        -            "Saira",
        -            "Saira Condensed",
        -            "Saira Extra Condensed",
        -            "Saira Semi Condensed",
        -            "Saira Stencil",
        -            "Salsa",
        -            "Sanchez",
        -            "Sancreek",
        -            "Sankofa Display",
        -            "Sansation",
        -            "Sansita",
        -            "Sansita Swashed",
        -            "Sarabun",
        -            "Sarala",
        -            "Sarina",
        -            "Sarpanch",
        -            "Sassy Frass",
        -            "Satisfy",
        -            "Savate",
        -            "Sawarabi Gothic",
        -            "Sawarabi Mincho",
        -            "Scada",
        -            "Scheherazade New",
        -            "Schibsted Grotesk",
        -            "Schoolbell",
        -            "Science Gothic",
        -            "Scope One",
        -            "Seaweed Script",
        -            "Secular One",
        -            "Sedan",
        -            "Sedan SC",
        -            "Sedgwick Ave",
        -            "Sedgwick Ave Display",
        -            "Sekuya",
        -            "Sen",
        -            "Send Flowers",
        -            "Sevillana",
        -            "Seymour One",
        -            "Shadows Into Light",
        -            "Shadows Into Light Two",
        -            "Shafarik",
        -            "Shalimar",
        -            "Shantell Sans",
        -            "Shanti",
        -            "Share",
        -            "Share Tech",
        -            "Share Tech Mono",
        -            "Shippori Antique",
        -            "Shippori Antique B1",
        -            "Shippori Mincho",
        -            "Shippori Mincho B1",
        -            "Shizuru",
        -            "Shojumaru",
        -            "Short Stack",
        -            "Shrikhand",
        -            "Siemreap",
        -            "Sigmar",
        -            "Sigmar One",
        -            "Signika",
        -            "Signika Negative",
        -            "Silkscreen",
        -            "Simonetta",
        -            "Single Day",
        -            "Sintony",
        -            "Sirin Stencil",
        -            "Sirivennela",
        -            "Six Caps",
        -            "Sixtyfour",
        -            "Sixtyfour Convergence",
        -            "Skranji",
        -            "Slabo 13px",
        -            "Slabo 27px",
        -            "Slackey",
        -            "Slackside One",
        -            "Smokum",
        -            "Smooch",
        -            "Smooch Sans",
        -            "Smythe",
        -            "Sniglet",
        -            "Snippet",
        -            "Snowburst One",
        -            "Sofadi One",
        -            "Sofia",
        -            "Sofia Sans",
        -            "Sofia Sans Condensed",
        -            "Sofia Sans Extra Condensed",
        -            "Sofia Sans Semi Condensed",
        -            "Solitreo",
        -            "Solway",
        -            "Sometype Mono",
        -            "Song Myung",
        -            "Sono",
        -            "Sonsie One",
        -            "Sora",
        -            "Sorts Mill Goudy",
        -            "Sour Gummy",
        -            "Source Code Pro",
        -            "Source Sans 3",
        -            "Source Serif 4",
        -            "Space Grotesk",
        -            "Space Mono",
        -            "Special Elite",
        -            "Special Gothic",
        -            "Special Gothic Condensed One",
        -            "Special Gothic Expanded One",
        -            "Spectral",
        -            "Spectral SC",
        -            "Spicy Rice",
        -            "Spinnaker",
        -            "Spirax",
        -            "Splash",
        -            "Spline Sans",
        -            "Spline Sans Mono",
        -            "Squada One",
        -            "Square Peg",
        -            "Sree Krushnadevaraya",
        -            "Sriracha",
        -            "Srisakdi",
        -            "Staatliches",
        -            "Stack Sans Headline",
        -            "Stack Sans Notch",
        -            "Stack Sans Text",
        -            "Stalemate",
        -            "Stalinist One",
        -            "Stardos Stencil",
        -            "Stick",
        -            "Stick No Bills",
        -            "Stint Ultra Condensed",
        -            "Stint Ultra Expanded",
        -            "Stoke",
        -            "Story Script",
        -            "Strait",
        -            "Strichpunkt Sans",
        -            "Style Script",
        -            "Stylish",
        -            "Sue Ellen Francisco",
        -            "Suez One",
        -            "Sulphur Point",
        -            "Sumana",
        -            "Sunflower",
        -            "Sunshiney",
        -            "Supermercado One",
        -            "Sura",
        -            "Suranna",
        -            "Suravaram",
        -            "Suwannaphum",
        -            "Swanky and Moo Moo",
        -            "Syncopate",
        -            "Syne",
        -            "Syne Mono",
        -            "Syne Tactile",
        -            "TASA Explorer",
        -            "TASA Orbiter",
        -            "Tac One",
        -            "Tagesschrift",
        -            "Tai Heritage Pro",
        -            "Tajawal",
        -            "Tangerine",
        -            "Tapestry",
        -            "Taprom",
        -            "Tauri",
        -            "Taviraj",
        -            "Teachers",
        -            "Teko",
        -            "Tektur",
        -            "Telex",
        -            "Tenali Ramakrishna",
        -            "Tenor Sans",
        -            "Text Me One",
        -            "Texturina",
        -            "Thasadith",
        -            "The Girl Next Door",
        -            "The Nautigal",
        -            "Tienne",
        -            "TikTok Sans",
        -            "Tillana",
        -            "Tilt Neon",
        -            "Tilt Prism",
        -            "Tilt Warp",
        -            "Timmana",
        -            "Tinos",
        -            "Tiny5",
        -            "Tiro Bangla",
        -            "Tiro Devanagari Hindi",
        -            "Tiro Devanagari Marathi",
        -            "Tiro Devanagari Sanskrit",
        -            "Tiro Gurmukhi",
        -            "Tiro Kannada",
        -            "Tiro Tamil",
        -            "Tiro Telugu",
        -            "Tirra",
        -            "Titan One",
        -            "Titillium Web",
        -            "Tomorrow",
        -            "Tourney",
        -            "Trade Winds",
        -            "Train One",
        -            "Triodion",
        -            "Trirong",
        -            "Trispace",
        -            "Trocchi",
        -            "Trochut",
        -            "Truculenta",
        -            "Trykker",
        -            "Tsukimi Rounded",
        -            "Tuffy",
        -            "Tulpen One",
        -            "Turret Road",
        -            "Twinkle Star",
        -            "Ubuntu",
        -            "Ubuntu Condensed",
        -            "Ubuntu Mono",
        -            "Ubuntu Sans",
        -            "Ubuntu Sans Mono",
        -            "Uchen",
        -            "Ultra",
        -            "Unbounded",
        -            "Uncial Antiqua",
        -            "Underdog",
        -            "Unica One",
        -            "UnifrakturCook",
        -            "UnifrakturMaguntia",
        -            "Unkempt",
        -            "Unlock",
        -            "Unna",
        -            "UoqMunThenKhung",
        -            "Updock",
        -            "Urbanist",
        -            "VT323",
        -            "Vampiro One",
        -            "Varela",
        -            "Varela Round",
        -            "Varta",
        -            "Vast Shadow",
        -            "Vazirmatn",
        -            "Vend Sans",
        -            "Vesper Libre",
        -            "Viaoda Libre",
        -            "Vibes",
        -            "Vibur",
        -            "Victor Mono",
        -            "Vidaloka",
        -            "Viga",
        -            "Vina Sans",
        -            "Voces",
        -            "Volkhov",
        -            "Vollkorn",
        -            "Vollkorn SC",
        -            "Voltaire",
        -            "Vujahday Script",
        -            "WDXL Lubrifont JP N",
        -            "WDXL Lubrifont SC",
        -            "WDXL Lubrifont TC",
        -            "Waiting for the Sunrise",
        -            "Wallpoet",
        -            "Walter Turncoat",
        -            "Warnes",
        -            "Water Brush",
        -            "Waterfall",
        -            "Wavefont",
        -            "Wellfleet",
        -            "Wendy One",
        -            "Whisper",
        -            "WindSong",
        -            "Winky Rough",
        -            "Winky Sans",
        -            "Wire One",
        -            "Wittgenstein",
        -            "Wix Madefor Display",
        -            "Wix Madefor Text",
        -            "Work Sans",
        -            "Workbench",
        -            "Xanh Mono",
        -            "Yaldevi",
        -            "Yanone Kaffeesatz",
        -            "Yantramanav",
        -            "Yarndings 12",
        -            "Yarndings 12 Charted",
        -            "Yarndings 20",
        -            "Yarndings 20 Charted",
        -            "Yatra One",
        -            "Yellowtail",
        -            "Yeon Sung",
        -            "Yeseva One",
        -            "Yesteryear",
        -            "Yomogi",
        -            "Young Serif",
        -            "Yrsa",
        -            "Ysabeau",
        -            "Ysabeau Infant",
        -            "Ysabeau Office",
        -            "Ysabeau SC",
        -            "Yuji Boku",
        -            "Yuji Hentaigana Akari",
        -            "Yuji Hentaigana Akebono",
        -            "Yuji Mai",
        -            "Yuji Syuku",
        -            "Yusei Magic",
        -            "Yuyu",
        -            "Yuyu Short",
        -            "ZCOOL KuaiLe",
        -            "ZCOOL QingKe HuangYou",
        -            "ZCOOL XiaoWei",
        -            "Zain",
        -            "Zalando Sans",
        -            "Zalando Sans Expanded",
        -            "Zalando Sans SemiExpanded",
        -            "Zen Antique",
        -            "Zen Antique Soft",
        -            "Zen Dots",
        -            "Zen Kaku Gothic Antique",
        -            "Zen Kaku Gothic New",
        -            "Zen Kurenaido",
        -            "Zen Loop",
        -            "Zen Maru Gothic",
        -            "Zen Old Mincho",
        -            "Zen Tokyo Zoo",
        -            "Zeyada",
        -            "Zhi Mang Xing",
        -            "Zilla Slab",
        -            "Zilla Slab Highlight"
        -          ],
        -          "type": "string"
        -        },
        -        "fontSize": {
        -          "type": "number"
        -        },
        -        "footerColor": {
        -          "type": "string"
        -        },
        -        "footerFontSize": {
        -          "type": "number"
        -        },
        -        "footerGap": {
        -          "type": "number"
        -        },
        -        "footerLinkColor": {
        -          "type": "string"
        -        },
        -        "gridColor": {
        -          "type": "string"
        -        },
        -        "gridLineWidth": {
        -          "type": "number"
        -        },
        -        "gridLines": {
        -          "enum": [
        -            "none",
        -            "value",
        -            "both"
        -          ],
        -          "type": "string"
        -        },
        -        "headerGap": {
        -          "type": "number"
        -        },
        -        "labelColor": {
        -          "type": "string"
        -        },
        -        "labelFontSize": {
        -          "type": "number"
        -        },
        -        "labelFontWeight": {
        -          "type": "string"
        -        },
        -        "labelHaloWidth": {
        -          "type": "number"
        -        },
        -        "labelMutedFontWeight": {
        -          "type": "string"
        -        },
        -        "labelMutedOpacity": {
        -          "type": "number"
        -        },
        -        "lineStrokeWidth": {
        -          "type": "number"
        -        },
        -        "numericFontFamily": {
        -          "enum": [
        -            "ABeeZee",
        -            "ADLaM Display",
        -            "AR One Sans",
        -            "Abel",
        -            "Abhaya Libre",
        -            "Aboreto",
        -            "Abril Fatface",
        -            "Abyssinica SIL",
        -            "Aclonica",
        -            "Acme",
        -            "Actor",
        -            "Adamina",
        -            "Advent Pro",
        -            "Afacad",
        -            "Afacad Flux",
        -            "Agbalumo",
        -            "Agdasima",
        -            "Agu Display",
        -            "Aguafina Script",
        -            "Akatab",
        -            "Akaya Kanadaka",
        -            "Akaya Telivigala",
        -            "Akronim",
        -            "Akshar",
        -            "Akt",
        -            "Aladin",
        -            "Alan Sans",
        -            "Alata",
        -            "Alatsi",
        -            "Albert Sans",
        -            "Aldrich",
        -            "Alef",
        -            "Alegreya",
        -            "Alegreya SC",
        -            "Alegreya Sans",
        -            "Alegreya Sans SC",
        -            "Aleo",
        -            "Alex Brush",
        -            "Alexandria",
        -            "Alfa Slab One",
        -            "Alice",
        -            "Alien Block",
        -            "Alike",
        -            "Alike Angular",
        -            "Alkalami",
        -            "Alkatra",
        -            "Allan",
        -            "Allerta",
        -            "Allerta Stencil",
        -            "Allison",
        -            "Allkin",
        -            "Allura",
        -            "Almarai",
        -            "Almendra",
        -            "Almendra Display",
        -            "Almendra SC",
        -            "Alumni Sans",
        -            "Alumni Sans Collegiate One",
        -            "Alumni Sans Inline One",
        -            "Alumni Sans Pinstripe",
        -            "Alumni Sans SC",
        -            "Alyamama",
        -            "Amarante",
        -            "Amaranth",
        -            "Amarna",
        -            "Amatic SC",
        -            "Amethysta",
        -            "Amiko",
        -            "Amiri",
        -            "Amiri Quran",
        -            "Amita",
        -            "Anaheim",
        -            "Ancizar Sans",
        -            "Ancizar Serif",
        -            "Andada Pro",
        -            "Andika",
        -            "Anek Bangla",
        -            "Anek Devanagari",
        -            "Anek Gujarati",
        -            "Anek Gurmukhi",
        -            "Anek Kannada",
        -            "Anek Latin",
        -            "Anek Malayalam",
        -            "Anek Odia",
        -            "Anek Tamil",
        -            "Anek Telugu",
        -            "Angkor",
        -            "Annapurna SIL",
        -            "Annie Use Your Telescope",
        -            "Anonymous Pro",
        -            "Anta",
        -            "Antic",
        -            "Antic Didone",
        -            "Antic Slab",
        -            "Anton",
        -            "Anton SC",
        -            "Antonio",
        -            "Anuphan",
        -            "Anybody",
        -            "Aoboshi One",
        -            "Arapey",
        -            "Arbutus",
        -            "Arbutus Slab",
        -            "Architects Daughter",
        -            "Archivo",
        -            "Archivo Black",
        -            "Archivo Narrow",
        -            "Are You Serious",
        -            "Aref Ruqaa",
        -            "Aref Ruqaa Ink",
        -            "Arima",
        -            "Arimo",
        -            "Arizonia",
        -            "Armata",
        -            "Arsenal",
        -            "Arsenal SC",
        -            "Artifika",
        -            "Arvo",
        -            "Arya",
        -            "Asap",
        -            "Asap Condensed",
        -            "Asar",
        -            "Asimovian",
        -            "Asset",
        -            "Assistant",
        -            "Asta Sans",
        -            "Astloch",
        -            "Asul",
        -            "Athiti",
        -            "Atkinson Hyperlegible",
        -            "Atkinson Hyperlegible Mono",
        -            "Atkinson Hyperlegible Next",
        -            "Atma",
        -            "Atomic Age",
        -            "Aubrey",
        -            "Audiowide",
        -            "Autour One",
        -            "Average",
        -            "Average Sans",
        -            "Averia Gruesa Libre",
        -            "Averia Libre",
        -            "Averia Sans Libre",
        -            "Averia Serif Libre",
        -            "Azeret Mono",
        -            "B612",
        -            "B612 Mono",
        -            "BBH Bartle",
        -            "BBH Bogle",
        -            "BBH Hegarty",
        -            "BIZ UDGothic",
        -            "BIZ UDMincho",
        -            "BIZ UDPGothic",
        -            "BIZ UDPMincho",
        -            "BJCree",
        -            "Babylonica",
        -            "Bacasime Antique",
        -            "Bad Script",
        -            "Badeen Display",
        -            "Bagel Fat One",
        -            "Bahiana",
        -            "Bahianita",
        -            "Bai Jamjuree",
        -            "Bakbak One",
        -            "Ballet",
        -            "Baloo 2",
        -            "Baloo Bhai 2",
        -            "Baloo Bhaijaan 2",
        -            "Baloo Bhaina 2",
        -            "Baloo Chettan 2",
        -            "Baloo Da 2",
        -            "Baloo Paaji 2",
        -            "Baloo Tamma 2",
        -            "Baloo Tammudu 2",
        -            "Baloo Thambi 2",
        -            "Balsamiq Sans",
        -            "Balthazar",
        -            "Bangers",
        -            "Barlow",
        -            "Barlow Condensed",
        -            "Barlow Semi Condensed",
        -            "Barriecito",
        -            "Barrio",
        -            "Basic",
        -            "Baskervville",
        -            "Baskervville SC",
        -            "Battambang",
        -            "Baumans",
        -            "Bayon",
        -            "Be Vietnam Pro",
        -            "Beau Rivage",
        -            "Bebas Neue",
        -            "Beiruti",
        -            "Belanosima",
        -            "Belgrano",
        -            "Bellefair",
        -            "Belleza",
        -            "Bellota",
        -            "Bellota Text",
        -            "BenchNine",
        -            "Benne",
        -            "Bentham",
        -            "Berkshire Swash",
        -            "Besley",
        -            "Betania Patmos",
        -            "Betania Patmos GDL",
        -            "Betania Patmos In",
        -            "Betania Patmos In GDL",
        -            "Beth Ellen",
        -            "Bevan",
        -            "BhuTuka Expanded One",
        -            "Big Shoulders",
        -            "Big Shoulders Inline",
        -            "Big Shoulders Stencil",
        -            "Bigelow Rules",
        -            "Bigshot One",
        -            "Bilbo",
        -            "Bilbo Swash Caps",
        -            "BioRhyme",
        -            "BioRhyme Expanded",
        -            "Birthstone",
        -            "Birthstone Bounce",
        -            "Biryani",
        -            "Bitcount",
        -            "Bitcount Grid Double",
        -            "Bitcount Grid Double Ink",
        -            "Bitcount Grid Single",
        -            "Bitcount Grid Single Ink",
        -            "Bitcount Ink",
        -            "Bitcount Prop Double",
        -            "Bitcount Prop Double Ink",
        -            "Bitcount Prop Single",
        -            "Bitcount Prop Single Ink",
        -            "Bitcount Single",
        -            "Bitcount Single Ink",
        -            "Bitter",
        -            "Black And White Picture",
        -            "Black Han Sans",
        -            "Black Ops One",
        -            "Blaka",
        -            "Blaka Hollow",
        -            "Blaka Ink",
        -            "Blinker",
        -            "Bodoni Moda",
        -            "Bodoni Moda SC",
        -            "Bokor",
        -            "Boldonse",
        -            "Bona Nova",
        -            "Bona Nova SC",
        -            "Bonbon",
        -            "Bonheur Royale",
        -            "Boogaloo",
        -            "Borel",
        -            "Bowlby One",
        -            "Bowlby One SC",
        -            "Bpmf Huninn",
        -            "Bpmf Iansui",
        -            "Bpmf Zihi Kai Std",
        -            "Braah One",
        -            "Brawler",
        -            "Bree Serif",
        -            "Bricolage Grotesque",
        -            "Bruno Ace",
        -            "Bruno Ace SC",
        -            "Brygada 1918",
        -            "Bubblegum Sans",
        -            "Bubbler One",
        -            "Buda",
        -            "Buenard",
        -            "Bungee",
        -            "Bungee Hairline",
        -            "Bungee Inline",
        -            "Bungee Outline",
        -            "Bungee Shade",
        -            "Bungee Spice",
        -            "Bungee Tint",
        -            "Butcherman",
        -            "Butterfly Kids",
        -            "Bytesized",
        -            "Cabin",
        -            "Cabin Condensed",
        -            "Cabin Sketch",
        -            "Cactus Classical Serif",
        -            "Caesar Dressing",
        -            "Cagliostro",
        -            "Cairo",
        -            "Cairo Play",
        -            "Cal Sans",
        -            "Caladea",
        -            "Calistoga",
        -            "Calligraffitti",
        -            "Cambay",
        -            "Cambo",
        -            "Candal",
        -            "Cantarell",
        -            "Cantata One",
        -            "Cantora One",
        -            "Caprasimo",
        -            "Capriola",
        -            "Caramel",
        -            "Carattere",
        -            "Cardo",
        -            "Carlito",
        -            "Carme",
        -            "Carrois Gothic",
        -            "Carrois Gothic SC",
        -            "Carter One",
        -            "Cascadia Code",
        -            "Cascadia Mono",
        -            "Castoro",
        -            "Castoro Titling",
        -            "Catamaran",
        -            "Caudex",
        -            "Cause",
        -            "Caveat",
        -            "Caveat Brush",
        -            "Cedarville Cursive",
        -            "Ceviche One",
        -            "Chakra Petch",
        -            "Changa",
        -            "Changa One",
        -            "Chango",
        -            "Charis SIL",
        -            "Charm",
        -            "Charmonman",
        -            "Chathura",
        -            "Chau Philomene One",
        -            "Chela One",
        -            "Chelsea Market",
        -            "Chenla",
        -            "Cherish",
        -            "Cherry Bomb One",
        -            "Cherry Cream Soda",
        -            "Cherry Swash",
        -            "Chewy",
        -            "Chicle",
        -            "Chilanka",
        -            "Chiron GoRound TC",
        -            "Chiron Hei HK",
        -            "Chiron Sung HK",
        -            "Chivo",
        -            "Chivo Mono",
        -            "Chocolate Classical Sans",
        -            "Chokokutai",
        -            "Chonburi",
        -            "Cinzel",
        -            "Cinzel Decorative",
        -            "Clicker Script",
        -            "Climate Crisis",
        -            "Coda",
        -            "Codystar",
        -            "Coiny",
        -            "Combo",
        -            "Comfortaa",
        -            "Comforter",
        -            "Comforter Brush",
        -            "Comic Neue",
        -            "Comic Relief",
        -            "Coming Soon",
        -            "Comme",
        -            "Commissioner",
        -            "Concert One",
        -            "Condiment",
        -            "Content",
        -            "Contrail One",
        -            "Convergence",
        -            "Cookie",
        -            "Copse",
        -            "Coral Pixels",
        -            "Corben",
        -            "Corinthia",
        -            "Cormorant",
        -            "Cormorant Garamond",
        -            "Cormorant Infant",
        -            "Cormorant SC",
        -            "Cormorant Unicase",
        -            "Cormorant Upright",
        -            "Cossette Texte",
        -            "Cossette Titre",
        -            "Courgette",
        -            "Courier Prime",
        -            "Cousine",
        -            "Coustard",
        -            "Covered By Your Grace",
        -            "Crafty Girls",
        -            "Creepster",
        -            "Crete Round",
        -            "Crimson Pro",
        -            "Crimson Text",
        -            "Croissant One",
        -            "Crushed",
        -            "Cuprum",
        -            "Cute Font",
        -            "Cutive",
        -            "Cutive Mono",
        -            "DM Mono",
        -            "DM Sans",
        -            "DM Serif Display",
        -            "DM Serif Text",
        -            "Dai Banna SIL",
        -            "Damion",
        -            "Dancing Script",
        -            "Danfo",
        -            "Dangrek",
        -            "Darker Grotesque",
        -            "Darumadrop One",
        -            "Datatype",
        -            "David Libre",
        -            "Dawning of a New Day",
        -            "Days One",
        -            "Dekko",
        -            "Dela Gothic One",
        -            "Delicious Handrawn",
        -            "Delius",
        -            "Delius Swash Caps",
        -            "Delius Unicase",
        -            "Della Respira",
        -            "Denk One",
        -            "Devonshire",
        -            "Dhurjati",
        -            "Didact Gothic",
        -            "Diphylleia",
        -            "Diplomata",
        -            "Diplomata SC",
        -            "Do Hyeon",
        -            "Dokdo",
        -            "Domine",
        -            "Donegal One",
        -            "Dongle",
        -            "Doppio One",
        -            "Dorsa",
        -            "Dosis",
        -            "DotGothic16",
        -            "Doto",
        -            "Dr Sugiyama",
        -            "Duru Sans",
        -            "DynaPuff",
        -            "Dynalight",
        -            "EB Garamond",
        -            "Eagle Lake",
        -            "East Sea Dokdo",
        -            "Eater",
        -            "Economica",
        -            "Eczar",
        -            "Edu AU VIC WA NT Arrows",
        -            "Edu AU VIC WA NT Dots",
        -            "Edu AU VIC WA NT Guides",
        -            "Edu AU VIC WA NT Hand",
        -            "Edu AU VIC WA NT Pre",
        -            "Edu NSW ACT Cursive",
        -            "Edu NSW ACT Foundation",
        -            "Edu NSW ACT Hand Pre",
        -            "Edu QLD Beginner",
        -            "Edu QLD Hand",
        -            "Edu SA Beginner",
        -            "Edu SA Hand",
        -            "Edu TAS Beginner",
        -            "Edu VIC WA NT Beginner",
        -            "Edu VIC WA NT Hand",
        -            "Edu VIC WA NT Hand Pre",
        -            "El Messiri",
        -            "Electrolize",
        -            "Elms Sans",
        -            "Elsie",
        -            "Elsie Swash Caps",
        -            "Emblema One",
        -            "Emilys Candy",
        -            "Encode Sans",
        -            "Encode Sans Condensed",
        -            "Encode Sans Expanded",
        -            "Encode Sans SC",
        -            "Encode Sans Semi Condensed",
        -            "Encode Sans Semi Expanded",
        -            "Engagement",
        -            "Englebert",
        -            "Enriqueta",
        -            "Ephesis",
        -            "Epilogue",
        -            "Epunda Sans",
        -            "Epunda Slab",
        -            "Erica One",
        -            "Esteban",
        -            "Estedad",
        -            "Estonia",
        -            "Euphoria Script",
        -            "Ewert",
        -            "Exile",
        -            "Exo",
        -            "Exo 2",
        -            "Expletus Sans",
        -            "Explora",
        -            "Faculty Glyphic",
        -            "Fahkwang",
        -            "Familjen Grotesk",
        -            "Fanwood Text",
        -            "Farro",
        -            "Farsan",
        -            "Fascinate",
        -            "Fascinate Inline",
        -            "Faster One",
        -            "Fasthand",
        -            "Fauna One",
        -            "Faustina",
        -            "Federant",
        -            "Federo",
        -            "Felipa",
        -            "Fenix",
        -            "Festive",
        -            "Figtree",
        -            "Finger Paint",
        -            "Finlandica Headline",
        -            "Finlandica Text",
        -            "Fira Code",
        -            "Fira Mono",
        -            "Fira Sans",
        -            "Fira Sans Condensed",
        -            "Fira Sans Extra Condensed",
        -            "Fjalla One",
        -            "Fjord One",
        -            "Flamenco",
        -            "Flavors",
        -            "Fleur De Leah",
        -            "Flow Block",
        -            "Flow Circular",
        -            "Flow Rounded",
        -            "Foldit",
        -            "Fondamento",
        -            "Fontdiner Swanky",
        -            "Forum",
        -            "Fragment Mono",
        -            "Francois One",
        -            "Frank Ruhl Libre",
        -            "Fraunces",
        -            "Freckle Face",
        -            "Fredericka the Great",
        -            "Fredoka",
        -            "Freehand",
        -            "Freeman",
        -            "Fresca",
        -            "Frijole",
        -            "Fruktur",
        -            "Fugaz One",
        -            "Fuggles",
        -            "Funnel Display",
        -            "Funnel Sans",
        -            "Fustat",
        -            "Fuzzy Bubbles",
        -            "GFS Didot",
        -            "GFS Neohellenic",
        -            "Ga Maamli",
        -            "Gabarito",
        -            "Gabriela",
        -            "Gaegu",
        -            "Gafata",
        -            "Gajraj One",
        -            "Galada",
        -            "Galdeano",
        -            "Galindo",
        -            "Gamja Flower",
        -            "Gantari",
        -            "Gasoek One",
        -            "Gayathri",
        -            "Geist",
        -            "Geist Mono",
        -            "Geist Pixel",
        -            "Gelasio",
        -            "Gemunu Libre",
        -            "Genos",
        -            "Gentium Book Plus",
        -            "Gentium Plus",
        -            "Geo",
        -            "Geologica",
        -            "Geom",
        -            "Geomini",
        -            "Georama",
        -            "Geostar",
        -            "Geostar Fill",
        -            "Germania One",
        -            "Gideon Roman",
        -            "Gidole",
        -            "Gidugu",
        -            "Gilda Display",
        -            "Girassol",
        -            "Give You Glory",
        -            "Glass Antiqua",
        -            "Glegoo",
        -            "Gloock",
        -            "Gloria Hallelujah",
        -            "Glory",
        -            "Gluten",
        -            "Goblin One",
        -            "Gochi Hand",
        -            "Goldman",
        -            "Golos Text",
        -            "Google Sans",
        -            "Google Sans Code",
        -            "Google Sans Flex",
        -            "Gorditas",
        -            "Gothic A1",
        -            "Gotu",
        -            "Goudy Bookletter 1911",
        -            "Gowun Batang",
        -            "Gowun Dodum",
        -            "Graduate",
        -            "Grand Hotel",
        -            "Grandiflora One",
        -            "Grandstander",
        -            "Grape Nuts",
        -            "Gravitas One",
        -            "Great Vibes",
        -            "Grechen Fuemen",
        -            "Grenze",
        -            "Grenze Gotisch",
        -            "Grey Qo",
        -            "Griffy",
        -            "Gruppo",
        -            "Gudea",
        -            "Gugi",
        -            "Gulzar",
        -            "Gupter",
        -            "Gurajada",
        -            "Gveret Levin",
        -            "Gwendolyn",
        -            "Habibi",
        -            "Hachi Maru Pop",
        -            "Hahmlet",
        -            "Halant",
        -            "Hammersmith One",
        -            "Hanalei",
        -            "Hanalei Fill",
        -            "Handjet",
        -            "Handlee",
        -            "Hanken Grotesk",
        -            "Hanuman",
        -            "Happy Monkey",
        -            "Harmattan",
        -            "Headland One",
        -            "Hedvig Letters Sans",
        -            "Hedvig Letters Serif",
        -            "Heebo",
        -            "Henny Penny",
        -            "Hepta Slab",
        -            "Herr Von Muellerhoff",
        -            "Hi Melody",
        -            "Hibur Mono",
        -            "Hina Mincho",
        -            "Hind",
        -            "Hind Guntur",
        -            "Hind Madurai",
        -            "Hind Mysuru",
        -            "Hind Siliguri",
        -            "Hind Vadodara",
        -            "Holtwood One SC",
        -            "Homemade Apple",
        -            "Homenaje",
        -            "Honk",
        -            "Host Grotesk",
        -            "Hubballi",
        -            "Hubot Sans",
        -            "Huninn",
        -            "Hurricane",
        -            "IBM Plex Mono",
        -            "IBM Plex Sans",
        -            "IBM Plex Sans Arabic",
        -            "IBM Plex Sans Condensed",
        -            "IBM Plex Sans Devanagari",
        -            "IBM Plex Sans Hebrew",
        -            "IBM Plex Sans JP",
        -            "IBM Plex Sans KR",
        -            "IBM Plex Sans Thai",
        -            "IBM Plex Sans Thai Looped",
        -            "IBM Plex Serif",
        -            "IM Fell DW Pica",
        -            "IM Fell DW Pica SC",
        -            "IM Fell Double Pica",
        -            "IM Fell Double Pica SC",
        -            "IM Fell English",
        -            "IM Fell English SC",
        -            "IM Fell French Canon",
        -            "IM Fell French Canon SC",
        -            "IM Fell Great Primer",
        -            "IM Fell Great Primer SC",
        -            "Iansui",
        -            "Ibarra Real Nova",
        -            "Iceberg",
        -            "Iceland",
        -            "Idiqlat",
        -            "Imbue",
        -            "Imperial Script",
        -            "Imprima",
        -            "Inclusive Sans",
        -            "Inconsolata",
        -            "Inder",
        -            "Indie Flower",
        -            "Ingrid Darling",
        -            "Inika",
        -            "Inknut Antiqua",
        -            "Inria Sans",
        -            "Inria Serif",
        -            "Inspiration",
        -            "Instrument Sans",
        -            "Instrument Serif",
        -            "Intel One Mono",
        -            "Inter",
        -            "Inter Tight",
        -            "Iosevka Charon",
        -            "Iosevka Charon Mono",
        -            "Irish Grover",
        -            "Island Moments",
        -            "Istok Web",
        -            "Italiana",
        -            "Italianno",
        -            "Itim",
        -            "Jacquard 12",
        -            "Jacquard 12 Charted",
        -            "Jacquard 24",
        -            "Jacquard 24 Charted",
        -            "Jacquarda Bastarda 9",
        -            "Jacquarda Bastarda 9 Charted",
        -            "Jacques Francois",
        -            "Jacques Francois Shadow",
        -            "Jaini",
        -            "Jaini Purva",
        -            "Jaldi",
        -            "Jaro",
        -            "Jersey 10",
        -            "Jersey 10 Charted",
        -            "Jersey 15",
        -            "Jersey 15 Charted",
        -            "Jersey 20",
        -            "Jersey 20 Charted",
        -            "Jersey 25",
        -            "Jersey 25 Charted",
        -            "JetBrains Mono",
        -            "Jim Nightshade",
        -            "Joan",
        -            "Jockey One",
        -            "Jolly Lodger",
        -            "Jomhuria",
        -            "Jomolhari",
        -            "Josefin Sans",
        -            "Josefin Slab",
        -            "Jost",
        -            "Joti One",
        -            "Jua",
        -            "Judson",
        -            "Julee",
        -            "Julius Sans One",
        -            "Junge",
        -            "Jura",
        -            "Just Another Hand",
        -            "Just Me Again Down Here",
        -            "K2D",
        -            "Kablammo",
        -            "Kadwa",
        -            "Kaisei Decol",
        -            "Kaisei HarunoUmi",
        -            "Kaisei Opti",
        -            "Kaisei Tokumin",
        -            "Kalam",
        -            "Kalnia",
        -            "Kalnia Glaze",
        -            "Kameron",
        -            "Kanchenjunga",
        -            "Kanit",
        -            "Kantumruy Pro",
        -            "Kapakana",
        -            "Karantina",
        -            "Karla",
        -            "Karla Tamil Inclined",
        -            "Karla Tamil Upright",
        -            "Karma",
        -            "Katibeh",
        -            "Kaushan Script",
        -            "Kavivanar",
        -            "Kavoon",
        -            "Kay Pho Du",
        -            "Kdam Thmor Pro",
        -            "Keania One",
        -            "Kedebideri",
        -            "Kelly Slab",
        -            "Kenia",
        -            "Khand",
        -            "Khmer",
        -            "Khula",
        -            "Kings",
        -            "Kirang Haerang",
        -            "Kite One",
        -            "Kiwi Maru",
        -            "Klee One",
        -            "Knewave",
        -            "KoHo",
        -            "Kodchasan",
        -            "Kode Mono",
        -            "Koh Santepheap",
        -            "Kolker Brush",
        -            "Konkhmer Sleokchher",
        -            "Kosugi",
        -            "Kosugi Maru",
        -            "Kotta One",
        -            "Koulen",
        -            "Kranky",
        -            "Kreon",
        -            "Kristi",
        -            "Krona One",
        -            "Krub",
        -            "Kufam",
        -            "Kulim Park",
        -            "Kumar One",
        -            "Kumar One Outline",
        -            "Kumbh Sans",
        -            "Kurale",
        -            "LINE Seed JP",
        -            "LXGW Marker Gothic",
        -            "LXGW WenKai Mono TC",
        -            "LXGW WenKai TC",
        -            "La Belle Aurore",
        -            "Labrada",
        -            "Lacquer",
        -            "Laila",
        -            "Lakki Reddy",
        -            "Lalezar",
        -            "Lancelot",
        -            "Langar",
        -            "Lateef",
        -            "Lato",
        -            "Lavishly Yours",
        -            "League Gothic",
        -            "League Script",
        -            "League Spartan",
        -            "Leckerli One",
        -            "Ledger",
        -            "Lekton",
        -            "Lemon",
        -            "Lemonada",
        -            "Lexend",
        -            "Lexend Deca",
        -            "Lexend Exa",
        -            "Lexend Giga",
        -            "Lexend Mega",
        -            "Lexend Peta",
        -            "Lexend Tera",
        -            "Lexend Zetta",
        -            "Libertinus Keyboard",
        -            "Libertinus Math",
        -            "Libertinus Mono",
        -            "Libertinus Sans",
        -            "Libertinus Serif",
        -            "Libertinus Serif Display",
        -            "Libre Barcode 128",
        -            "Libre Barcode 128 Text",
        -            "Libre Barcode 39",
        -            "Libre Barcode 39 Extended",
        -            "Libre Barcode 39 Extended Text",
        -            "Libre Barcode 39 Text",
        -            "Libre Barcode EAN13 Text",
        -            "Libre Baskerville",
        -            "Libre Bodoni",
        -            "Libre Caslon Display",
        -            "Libre Caslon Text",
        -            "Libre Franklin",
        -            "Licorice",
        -            "Life Savers",
        -            "Lilex",
        -            "Lilita One",
        -            "Lily Script One",
        -            "Limelight",
        -            "Linden Hill",
        -            "Linefont",
        -            "Lisu Bosa",
        -            "Liter",
        -            "Literata",
        -            "Liu Jian Mao Cao",
        -            "Livvic",
        -            "Lobster",
        -            "Lobster Two",
        -            "Londrina Outline",
        -            "Londrina Shadow",
        -            "Londrina Sketch",
        -            "Londrina Solid",
        -            "Long Cang",
        -            "Lora",
        -            "Love Light",
        -            "Love Ya Like A Sister",
        -            "Loved by the King",
        -            "Lovers Quarrel",
        -            "Luckiest Guy",
        -            "Lugrasimo",
        -            "Lumanosimo",
        -            "Lunasima",
        -            "Lusitana",
        -            "Lustria",
        -            "Luxurious Roman",
        -            "Luxurious Script",
        -            "M PLUS 1",
        -            "M PLUS 1 Code",
        -            "M PLUS 1p",
        -            "M PLUS 2",
        -            "M PLUS Code Latin",
        -            "M PLUS Rounded 1c",
        -            "M PLUS U",
        -            "Ma Shan Zheng",
        -            "Macondo",
        -            "Macondo Swash Caps",
        -            "Mada",
        -            "Madimi One",
        -            "Magra",
        -            "Maiden Orange",
        -            "Maitree",
        -            "Major Mono Display",
        -            "Mako",
        -            "Mali",
        -            "Mallanna",
        -            "Maname",
        -            "Mandali",
        -            "Manjari",
        -            "Manrope",
        -            "Mansalva",
        -            "Manuale",
        -            "Manufacturing Consent",
        -            "Marcellus",
        -            "Marcellus SC",
        -            "Marck Script",
        -            "Margarine",
        -            "Marhey",
        -            "Markazi Text",
        -            "Marko One",
        -            "Marmelad",
        -            "Martel",
        -            "Martel Sans",
        -            "Martian Mono",
        -            "Marvel",
        -            "Matangi",
        -            "Mate",
        -            "Mate SC",
        -            "Matemasie",
        -            "Material Icons",
        -            "Material Icons Outlined",
        -            "Material Icons Round",
        -            "Material Icons Sharp",
        -            "Material Icons Two Tone",
        -            "Material Symbols",
        -            "Material Symbols Outlined",
        -            "Material Symbols Rounded",
        -            "Material Symbols Sharp",
        -            "Maven Pro",
        -            "McLaren",
        -            "Mea Culpa",
        -            "Meddon",
        -            "MedievalSharp",
        -            "Medula One",
        -            "Meera Inimai",
        -            "Megrim",
        -            "Meie Script",
        -            "Menbere",
        -            "Meow Script",
        -            "Merienda",
        -            "Merriweather",
        -            "Merriweather Sans",
        -            "Metal",
        -            "Metal Mania",
        -            "Metamorphous",
        -            "Metrophobic",
        -            "Michroma",
        -            "Micro 5",
        -            "Micro 5 Charted",
        -            "Milonga",
        -            "Miltonian",
        -            "Miltonian Tattoo",
        -            "Mina",
        -            "Mingzat",
        -            "Miniver",
        -            "Miranda Sans",
        -            "Miriam Libre",
        -            "Mirza",
        -            "Miss Fajardose",
        -            "Mitr",
        -            "Mochiy Pop One",
        -            "Mochiy Pop P One",
        -            "Modak",
        -            "Modern Antiqua",
        -            "Moderustic",
        -            "Mogra",
        -            "Mohave",
        -            "Moirai One",
        -            "Molengo",
        -            "Molle",
        -            "Momo Signature",
        -            "Momo Trust Display",
        -            "Momo Trust Sans",
        -            "Mona Sans",
        -            "Monda",
        -            "Monofett",
        -            "Monomakh",
        -            "Monomaniac One",
        -            "Monoton",
        -            "Monsieur La Doulaise",
        -            "Montaga",
        -            "Montagu Slab",
        -            "MonteCarlo",
        -            "Montenegrin Gothic One",
        -            "Montez",
        -            "Montserrat",
        -            "Montserrat Alternates",
        -            "Montserrat Underline",
        -            "Moo Lah Lah",
        -            "Mooli",
        -            "Moon Dance",
        -            "Moul",
        -            "Moulpali",
        -            "Mountains of Christmas",
        -            "Mouse Memoirs",
        -            "Mozilla Headline",
        -            "Mozilla Text",
        -            "Mr Bedfort",
        -            "Mr Dafoe",
        -            "Mr De Haviland",
        -            "Mrs Saint Delafield",
        -            "Mrs Sheppards",
        -            "Ms Madi",
        -            "Mukta",
        -            "Mukta Mahee",
        -            "Mukta Malar",
        -            "Mukta Vaani",
        -            "Mulish",
        -            "Murecho",
        -            "MuseoModerno",
        -            "My Soul",
        -            "Mynerve",
        -            "Mystery Quest",
        -            "NTR",
        -            "Nabla",
        -            "Namdhinggo",
        -            "Nanum Brush Script",
        -            "Nanum Gothic",
        -            "Nanum Gothic Coding",
        -            "Nanum Myeongjo",
        -            "Nanum Pen Script",
        -            "Narnoor",
        -            "Nata Sans",
        -            "National Park",
        -            "Neonderthaw",
        -            "Nerko One",
        -            "Neucha",
        -            "Neuton",
        -            "New Amsterdam",
        -            "New Rocker",
        -            "New Tegomin",
        -            "News Cycle",
        -            "Newsreader",
        -            "Niconne",
        -            "Niramit",
        -            "Nixie One",
        -            "Nobile",
        -            "Nokora",
        -            "Norican",
        -            "Nosifer",
        -            "Notable",
        -            "Nothing You Could Do",
        -            "Noticia Text",
        -            "Noto Color Emoji",
        -            "Noto Emoji",
        -            "Noto Kufi Arabic",
        -            "Noto Music",
        -            "Noto Naskh Arabic",
        -            "Noto Nastaliq Urdu",
        -            "Noto Rashi Hebrew",
        -            "Noto Sans",
        -            "Noto Sans Adlam",
        -            "Noto Sans Adlam Unjoined",
        -            "Noto Sans Anatolian Hieroglyphs",
        -            "Noto Sans Arabic",
        -            "Noto Sans Armenian",
        -            "Noto Sans Avestan",
        -            "Noto Sans Balinese",
        -            "Noto Sans Bamum",
        -            "Noto Sans Bassa Vah",
        -            "Noto Sans Batak",
        -            "Noto Sans Bengali",
        -            "Noto Sans Bhaiksuki",
        -            "Noto Sans Brahmi",
        -            "Noto Sans Buginese",
        -            "Noto Sans Buhid",
        -            "Noto Sans Canadian Aboriginal",
        -            "Noto Sans Carian",
        -            "Noto Sans Caucasian Albanian",
        -            "Noto Sans Chakma",
        -            "Noto Sans Cham",
        -            "Noto Sans Cherokee",
        -            "Noto Sans Chorasmian",
        -            "Noto Sans Coptic",
        -            "Noto Sans Cuneiform",
        -            "Noto Sans Cypriot",
        -            "Noto Sans Cypro Minoan",
        -            "Noto Sans Deseret",
        -            "Noto Sans Devanagari",
        -            "Noto Sans Display",
        -            "Noto Sans Duployan",
        -            "Noto Sans Egyptian Hieroglyphs",
        -            "Noto Sans Elbasan",
        -            "Noto Sans Elymaic",
        -            "Noto Sans Ethiopic",
        -            "Noto Sans Georgian",
        -            "Noto Sans Glagolitic",
        -            "Noto Sans Gothic",
        -            "Noto Sans Grantha",
        -            "Noto Sans Gujarati",
        -            "Noto Sans Gunjala Gondi",
        -            "Noto Sans Gurmukhi",
        -            "Noto Sans HK",
        -            "Noto Sans Hanifi Rohingya",
        -            "Noto Sans Hanunoo",
        -            "Noto Sans Hatran",
        -            "Noto Sans Hebrew",
        -            "Noto Sans Imperial Aramaic",
        -            "Noto Sans Indic Siyaq Numbers",
        -            "Noto Sans Inscriptional Pahlavi",
        -            "Noto Sans Inscriptional Parthian",
        -            "Noto Sans JP",
        -            "Noto Sans Javanese",
        -            "Noto Sans KR",
        -            "Noto Sans Kaithi",
        -            "Noto Sans Kannada",
        -            "Noto Sans Kawi",
        -            "Noto Sans Kayah Li",
        -            "Noto Sans Kharoshthi",
        -            "Noto Sans Khmer",
        -            "Noto Sans Khojki",
        -            "Noto Sans Khudawadi",
        -            "Noto Sans Lao",
        -            "Noto Sans Lao Looped",
        -            "Noto Sans Lepcha",
        -            "Noto Sans Limbu",
        -            "Noto Sans Linear A",
        -            "Noto Sans Linear B",
        -            "Noto Sans Lisu",
        -            "Noto Sans Lycian",
        -            "Noto Sans Lydian",
        -            "Noto Sans Mahajani",
        -            "Noto Sans Malayalam",
        -            "Noto Sans Mandaic",
        -            "Noto Sans Manichaean",
        -            "Noto Sans Marchen",
        -            "Noto Sans Masaram Gondi",
        -            "Noto Sans Math",
        -            "Noto Sans Mayan Numerals",
        -            "Noto Sans Medefaidrin",
        -            "Noto Sans Meetei Mayek",
        -            "Noto Sans Mende Kikakui",
        -            "Noto Sans Meroitic",
        -            "Noto Sans Miao",
        -            "Noto Sans Modi",
        -            "Noto Sans Mongolian",
        -            "Noto Sans Mono",
        -            "Noto Sans Mro",
        -            "Noto Sans Multani",
        -            "Noto Sans Myanmar",
        -            "Noto Sans NKo",
        -            "Noto Sans NKo Unjoined",
        -            "Noto Sans Nabataean",
        -            "Noto Sans Nag Mundari",
        -            "Noto Sans Nandinagari",
        -            "Noto Sans New Tai Lue",
        -            "Noto Sans Newa",
        -            "Noto Sans Nushu",
        -            "Noto Sans Ogham",
        -            "Noto Sans Ol Chiki",
        -            "Noto Sans Old Hungarian",
        -            "Noto Sans Old Italic",
        -            "Noto Sans Old North Arabian",
        -            "Noto Sans Old Permic",
        -            "Noto Sans Old Persian",
        -            "Noto Sans Old Sogdian",
        -            "Noto Sans Old South Arabian",
        -            "Noto Sans Old Turkic",
        -            "Noto Sans Oriya",
        -            "Noto Sans Osage",
        -            "Noto Sans Osmanya",
        -            "Noto Sans Pahawh Hmong",
        -            "Noto Sans Palmyrene",
        -            "Noto Sans Pau Cin Hau",
        -            "Noto Sans PhagsPa",
        -            "Noto Sans Phoenician",
        -            "Noto Sans Psalter Pahlavi",
        -            "Noto Sans Rejang",
        -            "Noto Sans Runic",
        -            "Noto Sans SC",
        -            "Noto Sans Samaritan",
        -            "Noto Sans Saurashtra",
        -            "Noto Sans Sharada",
        -            "Noto Sans Shavian",
        -            "Noto Sans Siddham",
        -            "Noto Sans SignWriting",
        -            "Noto Sans Sinhala",
        -            "Noto Sans Sogdian",
        -            "Noto Sans Sora Sompeng",
        -            "Noto Sans Soyombo",
        -            "Noto Sans Sundanese",
        -            "Noto Sans Sunuwar",
        -            "Noto Sans Syloti Nagri",
        -            "Noto Sans Symbols",
        -            "Noto Sans Symbols 2",
        -            "Noto Sans Syriac",
        -            "Noto Sans Syriac Eastern",
        -            "Noto Sans Syriac Western",
        -            "Noto Sans TC",
        -            "Noto Sans Tagalog",
        -            "Noto Sans Tagbanwa",
        -            "Noto Sans Tai Le",
        -            "Noto Sans Tai Tham",
        -            "Noto Sans Tai Viet",
        -            "Noto Sans Takri",
        -            "Noto Sans Tamil",
        -            "Noto Sans Tamil Supplement",
        -            "Noto Sans Tangsa",
        -            "Noto Sans Telugu",
        -            "Noto Sans Thaana",
        -            "Noto Sans Thai",
        -            "Noto Sans Thai Looped",
        -            "Noto Sans Tifinagh",
        -            "Noto Sans Tirhuta",
        -            "Noto Sans Ugaritic",
        -            "Noto Sans Vai",
        -            "Noto Sans Vithkuqi",
        -            "Noto Sans Wancho",
        -            "Noto Sans Warang Citi",
        -            "Noto Sans Yi",
        -            "Noto Sans Zanabazar Square",
        -            "Noto Serif",
        -            "Noto Serif Ahom",
        -            "Noto Serif Armenian",
        -            "Noto Serif Balinese",
        -            "Noto Serif Bengali",
        -            "Noto Serif Devanagari",
        -            "Noto Serif Display",
        -            "Noto Serif Dives Akuru",
        -            "Noto Serif Dogra",
        -            "Noto Serif Ethiopic",
        -            "Noto Serif Georgian",
        -            "Noto Serif Grantha",
        -            "Noto Serif Gujarati",
        -            "Noto Serif Gurmukhi",
        -            "Noto Serif HK",
        -            "Noto Serif Hebrew",
        -            "Noto Serif Hentaigana",
        -            "Noto Serif JP",
        -            "Noto Serif KR",
        -            "Noto Serif Kannada",
        -            "Noto Serif Khitan Small Script",
        -            "Noto Serif Khmer",
        -            "Noto Serif Khojki",
        -            "Noto Serif Lao",
        -            "Noto Serif Makasar",
        -            "Noto Serif Malayalam",
        -            "Noto Serif Myanmar",
        -            "Noto Serif NP Hmong",
        -            "Noto Serif Old Uyghur",
        -            "Noto Serif Oriya",
        -            "Noto Serif Ottoman Siyaq",
        -            "Noto Serif SC",
        -            "Noto Serif Sinhala",
        -            "Noto Serif TC",
        -            "Noto Serif Tamil",
        -            "Noto Serif Tangut",
        -            "Noto Serif Telugu",
        -            "Noto Serif Thai",
        -            "Noto Serif Tibetan",
        -            "Noto Serif Todhri",
        -            "Noto Serif Toto",
        -            "Noto Serif Vithkuqi",
        -            "Noto Serif Yezidi",
        -            "Noto Traditional Nushu",
        -            "Noto Znamenny Musical Notation",
        -            "Nova Cut",
        -            "Nova Flat",
        -            "Nova Mono",
        -            "Nova Oval",
        -            "Nova Round",
        -            "Nova Script",
        -            "Nova Slim",
        -            "Nova Square",
        -            "Numans",
        -            "Nunito",
        -            "Nunito Sans",
        -            "Nuosu SIL",
        -            "Odibee Sans",
        -            "Odor Mean Chey",
        -            "Offside",
        -            "Oi",
        -            "Ojuju",
        -            "Old Standard TT",
        -            "Oldenburg",
        -            "Ole",
        -            "Oleo Script",
        -            "Oleo Script Swash Caps",
        -            "Onest",
        -            "Oooh Baby",
        -            "Open Sans",
        -            "Oranienbaum",
        -            "Orbit",
        -            "Orbitron",
        -            "Oregano",
        -            "Orelega One",
        -            "Orienta",
        -            "Original Surfer",
        -            "Oswald",
        -            "Outfit",
        -            "Over the Rainbow",
        -            "Overlock",
        -            "Overlock SC",
        -            "Overpass",
        -            "Overpass Mono",
        -            "Ovo",
        -            "Oxanium",
        -            "Oxygen",
        -            "Oxygen Mono",
        -            "PT Mono",
        -            "PT Sans",
        -            "PT Sans Caption",
        -            "PT Sans Narrow",
        -            "PT Serif",
        -            "PT Serif Caption",
        -            "Pacifico",
        -            "Padauk",
        -            "Padyakke Expanded One",
        -            "Palanquin",
        -            "Palanquin Dark",
        -            "Palette Mosaic",
        -            "Pangolin",
        -            "Paprika",
        -            "Parastoo",
        -            "Parisienne",
        -            "Parkinsans",
        -            "Passero One",
        -            "Passion One",
        -            "Passions Conflict",
        -            "Pathway Extreme",
        -            "Pathway Gothic One",
        -            "Patrick Hand",
        -            "Patrick Hand SC",
        -            "Pattaya",
        -            "Patua One",
        -            "Pavanam",
        -            "Paytone One",
        -            "Peddana",
        -            "Peralta",
        -            "Permanent Marker",
        -            "Petemoss",
        -            "Petit Formal Script",
        -            "Petrona",
        -            "Phetsarath",
        -            "Philosopher",
        -            "Phudu",
        -            "Piazzolla",
        -            "Piedra",
        -            "Pinyon Script",
        -            "Pirata One",
        -            "Pixelify Sans",
        -            "Plaster",
        -            "Platypi",
        -            "Play",
        -            "Playball",
        -            "Playfair",
        -            "Playfair Display",
        -            "Playfair Display SC",
        -            "Playpen Sans",
        -            "Playpen Sans Arabic",
        -            "Playpen Sans Deva",
        -            "Playpen Sans Hebrew",
        -            "Playpen Sans Thai",
        -            "Playwrite AR",
        -            "Playwrite AR Guides",
        -            "Playwrite AT",
        -            "Playwrite AT Guides",
        -            "Playwrite AU NSW",
        -            "Playwrite AU NSW Guides",
        -            "Playwrite AU QLD",
        -            "Playwrite AU QLD Guides",
        -            "Playwrite AU SA",
        -            "Playwrite AU SA Guides",
        -            "Playwrite AU TAS",
        -            "Playwrite AU TAS Guides",
        -            "Playwrite AU VIC",
        -            "Playwrite AU VIC Guides",
        -            "Playwrite BE VLG",
        -            "Playwrite BE VLG Guides",
        -            "Playwrite BE WAL",
        -            "Playwrite BE WAL Guides",
        -            "Playwrite BR",
        -            "Playwrite BR Guides",
        -            "Playwrite CA",
        -            "Playwrite CA Guides",
        -            "Playwrite CL",
        -            "Playwrite CL Guides",
        -            "Playwrite CO",
        -            "Playwrite CO Guides",
        -            "Playwrite CU",
        -            "Playwrite CU Guides",
        -            "Playwrite CZ",
        -            "Playwrite CZ Guides",
        -            "Playwrite DE Grund",
        -            "Playwrite DE Grund Guides",
        -            "Playwrite DE LA",
        -            "Playwrite DE LA Guides",
        -            "Playwrite DE SAS",
        -            "Playwrite DE SAS Guides",
        -            "Playwrite DE VA",
        -            "Playwrite DE VA Guides",
        -            "Playwrite DK Loopet",
        -            "Playwrite DK Loopet Guides",
        -            "Playwrite DK Uloopet",
        -            "Playwrite DK Uloopet Guides",
        -            "Playwrite ES",
        -            "Playwrite ES Deco",
        -            "Playwrite ES Deco Guides",
        -            "Playwrite ES Guides",
        -            "Playwrite FR Moderne",
        -            "Playwrite FR Moderne Guides",
        -            "Playwrite FR Trad",
        -            "Playwrite FR Trad Guides",
        -            "Playwrite GB J",
        -            "Playwrite GB J Guides",
        -            "Playwrite GB S",
        -            "Playwrite GB S Guides",
        -            "Playwrite HR",
        -            "Playwrite HR Guides",
        -            "Playwrite HR Lijeva",
        -            "Playwrite HR Lijeva Guides",
        -            "Playwrite HU",
        -            "Playwrite HU Guides",
        -            "Playwrite ID",
        -            "Playwrite ID Guides",
        -            "Playwrite IE",
        -            "Playwrite IE Guides",
        -            "Playwrite IN",
        -            "Playwrite IN Guides",
        -            "Playwrite IS",
        -            "Playwrite IS Guides",
        -            "Playwrite IT Moderna",
        -            "Playwrite IT Moderna Guides",
        -            "Playwrite IT Trad",
        -            "Playwrite IT Trad Guides",
        -            "Playwrite MX",
        -            "Playwrite MX Guides",
        -            "Playwrite NG Modern",
        -            "Playwrite NG Modern Guides",
        -            "Playwrite NL",
        -            "Playwrite NL Guides",
        -            "Playwrite NO",
        -            "Playwrite NO Guides",
        -            "Playwrite NZ",
        -            "Playwrite NZ Basic",
        -            "Playwrite NZ Basic Guides",
        -            "Playwrite NZ Guides",
        -            "Playwrite PE",
        -            "Playwrite PE Guides",
        -            "Playwrite PL",
        -            "Playwrite PL Guides",
        -            "Playwrite PT",
        -            "Playwrite PT Guides",
        -            "Playwrite RO",
        -            "Playwrite RO Guides",
        -            "Playwrite SK",
        -            "Playwrite SK Guides",
        -            "Playwrite TZ",
        -            "Playwrite TZ Guides",
        -            "Playwrite US Modern",
        -            "Playwrite US Modern Guides",
        -            "Playwrite US Trad",
        -            "Playwrite US Trad Guides",
        -            "Playwrite VN",
        -            "Playwrite VN Guides",
        -            "Playwrite ZA",
        -            "Playwrite ZA Guides",
        -            "Pliant",
        -            "Plus Jakarta Sans",
        -            "Pochaevsk",
        -            "Podkova",
        -            "Poetsen One",
        -            "Poiret One",
        -            "Poller One",
        -            "Poltawski Nowy",
        -            "Poly",
        -            "Pompiere",
        -            "Ponnala",
        -            "Ponomar",
        -            "Pontano Sans",
        -            "Poor Story",
        -            "Poppins",
        -            "Port Lligat Sans",
        -            "Port Lligat Slab",
        -            "Potta One",
        -            "Pragati Narrow",
        -            "Praise",
        -            "Prata",
        -            "Preahvihear",
        -            "Press Start 2P",
        -            "Pridi",
        -            "Princess Sofia",
        -            "Prociono",
        -            "Prompt",
        -            "Prosto One",
        -            "Protest Guerrilla",
        -            "Protest Revolution",
        -            "Protest Riot",
        -            "Protest Strike",
        -            "Proza Libre",
        -            "Public Sans",
        -            "Puppies Play",
        -            "Puritan",
        -            "Purple Purse",
        -            "Qahiri",
        -            "Quando",
        -            "Quantico",
        -            "Quattrocento",
        -            "Quattrocento Sans",
        -            "Questrial",
        -            "Quicksand",
        -            "Quintessential",
        -            "Qwigley",
        -            "Qwitcher Grypen",
        -            "REM",
        -            "Racing Sans One",
        -            "Radio Canada",
        -            "Radio Canada Big",
        -            "Radley",
        -            "Rajdhani",
        -            "Rakkas",
        -            "Raleway",
        -            "Raleway Dots",
        -            "Ramabhadra",
        -            "Ramaraja",
        -            "Rambla",
        -            "Rammetto One",
        -            "Rampart One",
        -            "Ramsina",
        -            "Ranchers",
        -            "Rancho",
        -            "Ranga",
        -            "Rasa",
        -            "Rationale",
        -            "Ravi Prakash",
        -            "Readex Pro",
        -            "Recursive",
        -            "Red Hat Display",
        -            "Red Hat Mono",
        -            "Red Hat Text",
        -            "Red Rose",
        -            "Redacted",
        -            "Redacted Script",
        -            "Reddit Mono",
        -            "Reddit Sans",
        -            "Reddit Sans Condensed",
        -            "Redressed",
        -            "Reem Kufi",
        -            "Reem Kufi Fun",
        -            "Reem Kufi Ink",
        -            "Reenie Beanie",
        -            "Reggae One",
        -            "Rethink Sans",
        -            "Revalia",
        -            "Rhodium Libre",
        -            "Ribeye",
        -            "Ribeye Marrow",
        -            "Righteous",
        -            "Risque",
        -            "Road Rage",
        -            "Roboto",
        -            "Roboto Condensed",
        -            "Roboto Flex",
        -            "Roboto Mono",
        -            "Roboto Serif",
        -            "Roboto Slab",
        -            "Rochester",
        -            "Rock 3D",
        -            "Rock Salt",
        -            "RocknRoll One",
        -            "Rokkitt",
        -            "Romanesco",
        -            "Ropa Sans",
        -            "Rosario",
        -            "Rosarivo",
        -            "Rouge Script",
        -            "Rowdies",
        -            "Rozha One",
        -            "Rubik",
        -            "Rubik 80s Fade",
        -            "Rubik Beastly",
        -            "Rubik Broken Fax",
        -            "Rubik Bubbles",
        -            "Rubik Burned",
        -            "Rubik Dirt",
        -            "Rubik Distressed",
        -            "Rubik Doodle Shadow",
        -            "Rubik Doodle Triangles",
        -            "Rubik Gemstones",
        -            "Rubik Glitch",
        -            "Rubik Glitch Pop",
        -            "Rubik Iso",
        -            "Rubik Lines",
        -            "Rubik Maps",
        -            "Rubik Marker Hatch",
        -            "Rubik Maze",
        -            "Rubik Microbe",
        -            "Rubik Mono One",
        -            "Rubik Moonrocks",
        -            "Rubik Pixels",
        -            "Rubik Puddles",
        -            "Rubik Scribble",
        -            "Rubik Spray Paint",
        -            "Rubik Storm",
        -            "Rubik Vinyl",
        -            "Rubik Wet Paint",
        -            "Ruda",
        -            "Rufina",
        -            "Ruge Boogie",
        -            "Ruluko",
        -            "Rum Raisin",
        -            "Ruslan Display",
        -            "Russo One",
        -            "Ruthie",
        -            "Ruwudu",
        -            "Rye",
        -            "SN Pro",
        -            "STIX Two Math",
        -            "STIX Two Text",
        -            "SUSE",
        -            "SUSE Mono",
        -            "Sacramento",
        -            "Sahitya",
        -            "Sail",
        -            "Saira",
        -            "Saira Condensed",
        -            "Saira Extra Condensed",
        -            "Saira Semi Condensed",
        -            "Saira Stencil",
        -            "Salsa",
        -            "Sanchez",
        -            "Sancreek",
        -            "Sankofa Display",
        -            "Sansation",
        -            "Sansita",
        -            "Sansita Swashed",
        -            "Sarabun",
        -            "Sarala",
        -            "Sarina",
        -            "Sarpanch",
        -            "Sassy Frass",
        -            "Satisfy",
        -            "Savate",
        -            "Sawarabi Gothic",
        -            "Sawarabi Mincho",
        -            "Scada",
        -            "Scheherazade New",
        -            "Schibsted Grotesk",
        -            "Schoolbell",
        -            "Science Gothic",
        -            "Scope One",
        -            "Seaweed Script",
        -            "Secular One",
        -            "Sedan",
        -            "Sedan SC",
        -            "Sedgwick Ave",
        -            "Sedgwick Ave Display",
        -            "Sekuya",
        -            "Sen",
        -            "Send Flowers",
        -            "Sevillana",
        -            "Seymour One",
        -            "Shadows Into Light",
        -            "Shadows Into Light Two",
        -            "Shafarik",
        -            "Shalimar",
        -            "Shantell Sans",
        -            "Shanti",
        -            "Share",
        -            "Share Tech",
        -            "Share Tech Mono",
        -            "Shippori Antique",
        -            "Shippori Antique B1",
        -            "Shippori Mincho",
        -            "Shippori Mincho B1",
        -            "Shizuru",
        -            "Shojumaru",
        -            "Short Stack",
        -            "Shrikhand",
        -            "Siemreap",
        -            "Sigmar",
        -            "Sigmar One",
        -            "Signika",
        -            "Signika Negative",
        -            "Silkscreen",
        -            "Simonetta",
        -            "Single Day",
        -            "Sintony",
        -            "Sirin Stencil",
        -            "Sirivennela",
        -            "Six Caps",
        -            "Sixtyfour",
        -            "Sixtyfour Convergence",
        -            "Skranji",
        -            "Slabo 13px",
        -            "Slabo 27px",
        -            "Slackey",
        -            "Slackside One",
        -            "Smokum",
        -            "Smooch",
        -            "Smooch Sans",
        -            "Smythe",
        -            "Sniglet",
        -            "Snippet",
        -            "Snowburst One",
        -            "Sofadi One",
        -            "Sofia",
        -            "Sofia Sans",
        -            "Sofia Sans Condensed",
        -            "Sofia Sans Extra Condensed",
        -            "Sofia Sans Semi Condensed",
        -            "Solitreo",
        -            "Solway",
        -            "Sometype Mono",
        -            "Song Myung",
        -            "Sono",
        -            "Sonsie One",
        -            "Sora",
        -            "Sorts Mill Goudy",
        -            "Sour Gummy",
        -            "Source Code Pro",
        -            "Source Sans 3",
        -            "Source Serif 4",
        -            "Space Grotesk",
        -            "Space Mono",
        -            "Special Elite",
        -            "Special Gothic",
        -            "Special Gothic Condensed One",
        -            "Special Gothic Expanded One",
        -            "Spectral",
        -            "Spectral SC",
        -            "Spicy Rice",
        -            "Spinnaker",
        -            "Spirax",
        -            "Splash",
        -            "Spline Sans",
        -            "Spline Sans Mono",
        -            "Squada One",
        -            "Square Peg",
        -            "Sree Krushnadevaraya",
        -            "Sriracha",
        -            "Srisakdi",
        -            "Staatliches",
        -            "Stack Sans Headline",
        -            "Stack Sans Notch",
        -            "Stack Sans Text",
        -            "Stalemate",
        -            "Stalinist One",
        -            "Stardos Stencil",
        -            "Stick",
        -            "Stick No Bills",
        -            "Stint Ultra Condensed",
        -            "Stint Ultra Expanded",
        -            "Stoke",
        -            "Story Script",
        -            "Strait",
        -            "Strichpunkt Sans",
        -            "Style Script",
        -            "Stylish",
        -            "Sue Ellen Francisco",
        -            "Suez One",
        -            "Sulphur Point",
        -            "Sumana",
        -            "Sunflower",
        -            "Sunshiney",
        -            "Supermercado One",
        -            "Sura",
        -            "Suranna",
        -            "Suravaram",
        -            "Suwannaphum",
        -            "Swanky and Moo Moo",
        -            "Syncopate",
        -            "Syne",
        -            "Syne Mono",
        -            "Syne Tactile",
        -            "TASA Explorer",
        -            "TASA Orbiter",
        -            "Tac One",
        -            "Tagesschrift",
        -            "Tai Heritage Pro",
        -            "Tajawal",
        -            "Tangerine",
        -            "Tapestry",
        -            "Taprom",
        -            "Tauri",
        -            "Taviraj",
        -            "Teachers",
        -            "Teko",
        -            "Tektur",
        -            "Telex",
        -            "Tenali Ramakrishna",
        -            "Tenor Sans",
        -            "Text Me One",
        -            "Texturina",
        -            "Thasadith",
        -            "The Girl Next Door",
        -            "The Nautigal",
        -            "Tienne",
        -            "TikTok Sans",
        -            "Tillana",
        -            "Tilt Neon",
        -            "Tilt Prism",
        -            "Tilt Warp",
        -            "Timmana",
        -            "Tinos",
        -            "Tiny5",
        -            "Tiro Bangla",
        -            "Tiro Devanagari Hindi",
        -            "Tiro Devanagari Marathi",
        -            "Tiro Devanagari Sanskrit",
        -            "Tiro Gurmukhi",
        -            "Tiro Kannada",
        -            "Tiro Tamil",
        -            "Tiro Telugu",
        -            "Tirra",
        -            "Titan One",
        -            "Titillium Web",
        -            "Tomorrow",
        -            "Tourney",
        -            "Trade Winds",
        -            "Train One",
        -            "Triodion",
        -            "Trirong",
        -            "Trispace",
        -            "Trocchi",
        -            "Trochut",
        -            "Truculenta",
        -            "Trykker",
        -            "Tsukimi Rounded",
        -            "Tuffy",
        -            "Tulpen One",
        -            "Turret Road",
        -            "Twinkle Star",
        -            "Ubuntu",
        -            "Ubuntu Condensed",
        -            "Ubuntu Mono",
        -            "Ubuntu Sans",
        -            "Ubuntu Sans Mono",
        -            "Uchen",
        -            "Ultra",
        -            "Unbounded",
        -            "Uncial Antiqua",
        -            "Underdog",
        -            "Unica One",
        -            "UnifrakturCook",
        -            "UnifrakturMaguntia",
        -            "Unkempt",
        -            "Unlock",
        -            "Unna",
        -            "UoqMunThenKhung",
        -            "Updock",
        -            "Urbanist",
        -            "VT323",
        -            "Vampiro One",
        -            "Varela",
        -            "Varela Round",
        -            "Varta",
        -            "Vast Shadow",
        -            "Vazirmatn",
        -            "Vend Sans",
        -            "Vesper Libre",
        -            "Viaoda Libre",
        -            "Vibes",
        -            "Vibur",
        -            "Victor Mono",
        -            "Vidaloka",
        -            "Viga",
        -            "Vina Sans",
        -            "Voces",
        -            "Volkhov",
        -            "Vollkorn",
        -            "Vollkorn SC",
        -            "Voltaire",
        -            "Vujahday Script",
        -            "WDXL Lubrifont JP N",
        -            "WDXL Lubrifont SC",
        -            "WDXL Lubrifont TC",
        -            "Waiting for the Sunrise",
        -            "Wallpoet",
        -            "Walter Turncoat",
        -            "Warnes",
        -            "Water Brush",
        -            "Waterfall",
        -            "Wavefont",
        -            "Wellfleet",
        -            "Wendy One",
        -            "Whisper",
        -            "WindSong",
        -            "Winky Rough",
        -            "Winky Sans",
        -            "Wire One",
        -            "Wittgenstein",
        -            "Wix Madefor Display",
        -            "Wix Madefor Text",
        -            "Work Sans",
        -            "Workbench",
        -            "Xanh Mono",
        -            "Yaldevi",
        -            "Yanone Kaffeesatz",
        -            "Yantramanav",
        -            "Yarndings 12",
        -            "Yarndings 12 Charted",
        -            "Yarndings 20",
        -            "Yarndings 20 Charted",
        -            "Yatra One",
        -            "Yellowtail",
        -            "Yeon Sung",
        -            "Yeseva One",
        -            "Yesteryear",
        -            "Yomogi",
        -            "Young Serif",
        -            "Yrsa",
        -            "Ysabeau",
        -            "Ysabeau Infant",
        -            "Ysabeau Office",
        -            "Ysabeau SC",
        -            "Yuji Boku",
        -            "Yuji Hentaigana Akari",
        -            "Yuji Hentaigana Akebono",
        -            "Yuji Mai",
        -            "Yuji Syuku",
        -            "Yusei Magic",
        -            "Yuyu",
        -            "Yuyu Short",
        -            "ZCOOL KuaiLe",
        -            "ZCOOL QingKe HuangYou",
        -            "ZCOOL XiaoWei",
        -            "Zain",
        -            "Zalando Sans",
        -            "Zalando Sans Expanded",
        -            "Zalando Sans SemiExpanded",
        -            "Zen Antique",
        -            "Zen Antique Soft",
        -            "Zen Dots",
        -            "Zen Kaku Gothic Antique",
        -            "Zen Kaku Gothic New",
        -            "Zen Kurenaido",
        -            "Zen Loop",
        -            "Zen Maru Gothic",
        -            "Zen Old Mincho",
        -            "Zen Tokyo Zoo",
        -            "Zeyada",
        -            "Zhi Mang Xing",
        -            "Zilla Slab",
        -            "Zilla Slab Highlight"
        -          ],
        -          "type": "string"
        -        },
        -        "pieCornerRadius": {
        -          "type": "number"
        -        },
        -        "sequentialRange": {
        -          "items": [
        -            {
        -              "type": "string"
        -            },
        -            {
        -              "type": "string"
        -            }
        -          ],
        -          "maxItems": 2,
        -          "minItems": 2,
        -          "type": "array"
        -        },
        -        "subtitleColor": {
        -          "type": "string"
        -        },
        -        "subtitleFontSize": {
        -          "type": "number"
        -        },
        -        "tickDensity": {
        -          "type": "number"
        -        },
        -        "tickLabelColor": {
        -          "type": "string"
        -        },
        -        "tickLabelFontWeight": {
        -          "type": "string"
        -        },
        -        "tickPadding": {
        -          "type": "number"
        -        },
        -        "tickSize": {
        -          "type": "number"
        -        },
        -        "titleColor": {
        -          "type": "string"
        -        },
        -        "titleFontFamily": {
        -          "enum": [
        -            "ABeeZee",
        -            "ADLaM Display",
        -            "AR One Sans",
        -            "Abel",
        -            "Abhaya Libre",
        -            "Aboreto",
        -            "Abril Fatface",
        -            "Abyssinica SIL",
        -            "Aclonica",
        -            "Acme",
        -            "Actor",
        -            "Adamina",
        -            "Advent Pro",
        -            "Afacad",
        -            "Afacad Flux",
        -            "Agbalumo",
        -            "Agdasima",
        -            "Agu Display",
        -            "Aguafina Script",
        -            "Akatab",
        -            "Akaya Kanadaka",
        -            "Akaya Telivigala",
        -            "Akronim",
        -            "Akshar",
        -            "Akt",
        -            "Aladin",
        -            "Alan Sans",
        -            "Alata",
        -            "Alatsi",
        -            "Albert Sans",
        -            "Aldrich",
        -            "Alef",
        -            "Alegreya",
        -            "Alegreya SC",
        -            "Alegreya Sans",
        -            "Alegreya Sans SC",
        -            "Aleo",
        -            "Alex Brush",
        -            "Alexandria",
        -            "Alfa Slab One",
        -            "Alice",
        -            "Alien Block",
        -            "Alike",
        -            "Alike Angular",
        -            "Alkalami",
        -            "Alkatra",
        -            "Allan",
        -            "Allerta",
        -            "Allerta Stencil",
        -            "Allison",
        -            "Allkin",
        -            "Allura",
        -            "Almarai",
        -            "Almendra",
        -            "Almendra Display",
        -            "Almendra SC",
        -            "Alumni Sans",
        -            "Alumni Sans Collegiate One",
        -            "Alumni Sans Inline One",
        -            "Alumni Sans Pinstripe",
        -            "Alumni Sans SC",
        -            "Alyamama",
        -            "Amarante",
        -            "Amaranth",
        -            "Amarna",
        -            "Amatic SC",
        -            "Amethysta",
        -            "Amiko",
        -            "Amiri",
        -            "Amiri Quran",
        -            "Amita",
        -            "Anaheim",
        -            "Ancizar Sans",
        -            "Ancizar Serif",
        -            "Andada Pro",
        -            "Andika",
        -            "Anek Bangla",
        -            "Anek Devanagari",
        -            "Anek Gujarati",
        -            "Anek Gurmukhi",
        -            "Anek Kannada",
        -            "Anek Latin",
        -            "Anek Malayalam",
        -            "Anek Odia",
        -            "Anek Tamil",
        -            "Anek Telugu",
        -            "Angkor",
        -            "Annapurna SIL",
        -            "Annie Use Your Telescope",
        -            "Anonymous Pro",
        -            "Anta",
        -            "Antic",
        -            "Antic Didone",
        -            "Antic Slab",
        -            "Anton",
        -            "Anton SC",
        -            "Antonio",
        -            "Anuphan",
        -            "Anybody",
        -            "Aoboshi One",
        -            "Arapey",
        -            "Arbutus",
        -            "Arbutus Slab",
        -            "Architects Daughter",
        -            "Archivo",
        -            "Archivo Black",
        -            "Archivo Narrow",
        -            "Are You Serious",
        -            "Aref Ruqaa",
        -            "Aref Ruqaa Ink",
        -            "Arima",
        -            "Arimo",
        -            "Arizonia",
        -            "Armata",
        -            "Arsenal",
        -            "Arsenal SC",
        -            "Artifika",
        -            "Arvo",
        -            "Arya",
        -            "Asap",
        -            "Asap Condensed",
        -            "Asar",
        -            "Asimovian",
        -            "Asset",
        -            "Assistant",
        -            "Asta Sans",
        -            "Astloch",
        -            "Asul",
        -            "Athiti",
        -            "Atkinson Hyperlegible",
        -            "Atkinson Hyperlegible Mono",
        -            "Atkinson Hyperlegible Next",
        -            "Atma",
        -            "Atomic Age",
        -            "Aubrey",
        -            "Audiowide",
        -            "Autour One",
        -            "Average",
        -            "Average Sans",
        -            "Averia Gruesa Libre",
        -            "Averia Libre",
        -            "Averia Sans Libre",
        -            "Averia Serif Libre",
        -            "Azeret Mono",
        -            "B612",
        -            "B612 Mono",
        -            "BBH Bartle",
        -            "BBH Bogle",
        -            "BBH Hegarty",
        -            "BIZ UDGothic",
        -            "BIZ UDMincho",
        -            "BIZ UDPGothic",
        -            "BIZ UDPMincho",
        -            "BJCree",
        -            "Babylonica",
        -            "Bacasime Antique",
        -            "Bad Script",
        -            "Badeen Display",
        -            "Bagel Fat One",
        -            "Bahiana",
        -            "Bahianita",
        -            "Bai Jamjuree",
        -            "Bakbak One",
        -            "Ballet",
        -            "Baloo 2",
        -            "Baloo Bhai 2",
        -            "Baloo Bhaijaan 2",
        -            "Baloo Bhaina 2",
        -            "Baloo Chettan 2",
        -            "Baloo Da 2",
        -            "Baloo Paaji 2",
        -            "Baloo Tamma 2",
        -            "Baloo Tammudu 2",
        -            "Baloo Thambi 2",
        -            "Balsamiq Sans",
        -            "Balthazar",
        -            "Bangers",
        -            "Barlow",
        -            "Barlow Condensed",
        -            "Barlow Semi Condensed",
        -            "Barriecito",
        -            "Barrio",
        -            "Basic",
        -            "Baskervville",
        -            "Baskervville SC",
        -            "Battambang",
        -            "Baumans",
        -            "Bayon",
        -            "Be Vietnam Pro",
        -            "Beau Rivage",
        -            "Bebas Neue",
        -            "Beiruti",
        -            "Belanosima",
        -            "Belgrano",
        -            "Bellefair",
        -            "Belleza",
        -            "Bellota",
        -            "Bellota Text",
        -            "BenchNine",
        -            "Benne",
        -            "Bentham",
        -            "Berkshire Swash",
        -            "Besley",
        -            "Betania Patmos",
        -            "Betania Patmos GDL",
        -            "Betania Patmos In",
        -            "Betania Patmos In GDL",
        -            "Beth Ellen",
        -            "Bevan",
        -            "BhuTuka Expanded One",
        -            "Big Shoulders",
        -            "Big Shoulders Inline",
        -            "Big Shoulders Stencil",
        -            "Bigelow Rules",
        -            "Bigshot One",
        -            "Bilbo",
        -            "Bilbo Swash Caps",
        -            "BioRhyme",
        -            "BioRhyme Expanded",
        -            "Birthstone",
        -            "Birthstone Bounce",
        -            "Biryani",
        -            "Bitcount",
        -            "Bitcount Grid Double",
        -            "Bitcount Grid Double Ink",
        -            "Bitcount Grid Single",
        -            "Bitcount Grid Single Ink",
        -            "Bitcount Ink",
        -            "Bitcount Prop Double",
        -            "Bitcount Prop Double Ink",
        -            "Bitcount Prop Single",
        -            "Bitcount Prop Single Ink",
        -            "Bitcount Single",
        -            "Bitcount Single Ink",
        -            "Bitter",
        -            "Black And White Picture",
        -            "Black Han Sans",
        -            "Black Ops One",
        -            "Blaka",
        -            "Blaka Hollow",
        -            "Blaka Ink",
        -            "Blinker",
        -            "Bodoni Moda",
        -            "Bodoni Moda SC",
        -            "Bokor",
        -            "Boldonse",
        -            "Bona Nova",
        -            "Bona Nova SC",
        -            "Bonbon",
        -            "Bonheur Royale",
        -            "Boogaloo",
        -            "Borel",
        -            "Bowlby One",
        -            "Bowlby One SC",
        -            "Bpmf Huninn",
        -            "Bpmf Iansui",
        -            "Bpmf Zihi Kai Std",
        -            "Braah One",
        -            "Brawler",
        -            "Bree Serif",
        -            "Bricolage Grotesque",
        -            "Bruno Ace",
        -            "Bruno Ace SC",
        -            "Brygada 1918",
        -            "Bubblegum Sans",
        -            "Bubbler One",
        -            "Buda",
        -            "Buenard",
        -            "Bungee",
        -            "Bungee Hairline",
        -            "Bungee Inline",
        -            "Bungee Outline",
        -            "Bungee Shade",
        -            "Bungee Spice",
        -            "Bungee Tint",
        -            "Butcherman",
        -            "Butterfly Kids",
        -            "Bytesized",
        -            "Cabin",
        -            "Cabin Condensed",
        -            "Cabin Sketch",
        -            "Cactus Classical Serif",
        -            "Caesar Dressing",
        -            "Cagliostro",
        -            "Cairo",
        -            "Cairo Play",
        -            "Cal Sans",
        -            "Caladea",
        -            "Calistoga",
        -            "Calligraffitti",
        -            "Cambay",
        -            "Cambo",
        -            "Candal",
        -            "Cantarell",
        -            "Cantata One",
        -            "Cantora One",
        -            "Caprasimo",
        -            "Capriola",
        -            "Caramel",
        -            "Carattere",
        -            "Cardo",
        -            "Carlito",
        -            "Carme",
        -            "Carrois Gothic",
        -            "Carrois Gothic SC",
        -            "Carter One",
        -            "Cascadia Code",
        -            "Cascadia Mono",
        -            "Castoro",
        -            "Castoro Titling",
        -            "Catamaran",
        -            "Caudex",
        -            "Cause",
        -            "Caveat",
        -            "Caveat Brush",
        -            "Cedarville Cursive",
        -            "Ceviche One",
        -            "Chakra Petch",
        -            "Changa",
        -            "Changa One",
        -            "Chango",
        -            "Charis SIL",
        -            "Charm",
        -            "Charmonman",
        -            "Chathura",
        -            "Chau Philomene One",
        -            "Chela One",
        -            "Chelsea Market",
        -            "Chenla",
        -            "Cherish",
        -            "Cherry Bomb One",
        -            "Cherry Cream Soda",
        -            "Cherry Swash",
        -            "Chewy",
        -            "Chicle",
        -            "Chilanka",
        -            "Chiron GoRound TC",
        -            "Chiron Hei HK",
        -            "Chiron Sung HK",
        -            "Chivo",
        -            "Chivo Mono",
        -            "Chocolate Classical Sans",
        -            "Chokokutai",
        -            "Chonburi",
        -            "Cinzel",
        -            "Cinzel Decorative",
        -            "Clicker Script",
        -            "Climate Crisis",
        -            "Coda",
        -            "Codystar",
        -            "Coiny",
        -            "Combo",
        -            "Comfortaa",
        -            "Comforter",
        -            "Comforter Brush",
        -            "Comic Neue",
        -            "Comic Relief",
        -            "Coming Soon",
        -            "Comme",
        -            "Commissioner",
        -            "Concert One",
        -            "Condiment",
        -            "Content",
        -            "Contrail One",
        -            "Convergence",
        -            "Cookie",
        -            "Copse",
        -            "Coral Pixels",
        -            "Corben",
        -            "Corinthia",
        -            "Cormorant",
        -            "Cormorant Garamond",
        -            "Cormorant Infant",
        -            "Cormorant SC",
        -            "Cormorant Unicase",
        -            "Cormorant Upright",
        -            "Cossette Texte",
        -            "Cossette Titre",
        -            "Courgette",
        -            "Courier Prime",
        -            "Cousine",
        -            "Coustard",
        -            "Covered By Your Grace",
        -            "Crafty Girls",
        -            "Creepster",
        -            "Crete Round",
        -            "Crimson Pro",
        -            "Crimson Text",
        -            "Croissant One",
        -            "Crushed",
        -            "Cuprum",
        -            "Cute Font",
        -            "Cutive",
        -            "Cutive Mono",
        -            "DM Mono",
        -            "DM Sans",
        -            "DM Serif Display",
        -            "DM Serif Text",
        -            "Dai Banna SIL",
        -            "Damion",
        -            "Dancing Script",
        -            "Danfo",
        -            "Dangrek",
        -            "Darker Grotesque",
        -            "Darumadrop One",
        -            "Datatype",
        -            "David Libre",
        -            "Dawning of a New Day",
        -            "Days One",
        -            "Dekko",
        -            "Dela Gothic One",
        -            "Delicious Handrawn",
        -            "Delius",
        -            "Delius Swash Caps",
        -            "Delius Unicase",
        -            "Della Respira",
        -            "Denk One",
        -            "Devonshire",
        -            "Dhurjati",
        -            "Didact Gothic",
        -            "Diphylleia",
        -            "Diplomata",
        -            "Diplomata SC",
        -            "Do Hyeon",
        -            "Dokdo",
        -            "Domine",
        -            "Donegal One",
        -            "Dongle",
        -            "Doppio One",
        -            "Dorsa",
        -            "Dosis",
        -            "DotGothic16",
        -            "Doto",
        -            "Dr Sugiyama",
        -            "Duru Sans",
        -            "DynaPuff",
        -            "Dynalight",
        -            "EB Garamond",
        -            "Eagle Lake",
        -            "East Sea Dokdo",
        -            "Eater",
        -            "Economica",
        -            "Eczar",
        -            "Edu AU VIC WA NT Arrows",
        -            "Edu AU VIC WA NT Dots",
        -            "Edu AU VIC WA NT Guides",
        -            "Edu AU VIC WA NT Hand",
        -            "Edu AU VIC WA NT Pre",
        -            "Edu NSW ACT Cursive",
        -            "Edu NSW ACT Foundation",
        -            "Edu NSW ACT Hand Pre",
        -            "Edu QLD Beginner",
        -            "Edu QLD Hand",
        -            "Edu SA Beginner",
        -            "Edu SA Hand",
        -            "Edu TAS Beginner",
        -            "Edu VIC WA NT Beginner",
        -            "Edu VIC WA NT Hand",
        -            "Edu VIC WA NT Hand Pre",
        -            "El Messiri",
        -            "Electrolize",
        -            "Elms Sans",
        -            "Elsie",
        -            "Elsie Swash Caps",
        -            "Emblema One",
        -            "Emilys Candy",
        -            "Encode Sans",
        -            "Encode Sans Condensed",
        -            "Encode Sans Expanded",
        -            "Encode Sans SC",
        -            "Encode Sans Semi Condensed",
        -            "Encode Sans Semi Expanded",
        -            "Engagement",
        -            "Englebert",
        -            "Enriqueta",
        -            "Ephesis",
        -            "Epilogue",
        -            "Epunda Sans",
        -            "Epunda Slab",
        -            "Erica One",
        -            "Esteban",
        -            "Estedad",
        -            "Estonia",
        -            "Euphoria Script",
        -            "Ewert",
        -            "Exile",
        -            "Exo",
        -            "Exo 2",
        -            "Expletus Sans",
        -            "Explora",
        -            "Faculty Glyphic",
        -            "Fahkwang",
        -            "Familjen Grotesk",
        -            "Fanwood Text",
        -            "Farro",
        -            "Farsan",
        -            "Fascinate",
        -            "Fascinate Inline",
        -            "Faster One",
        -            "Fasthand",
        -            "Fauna One",
        -            "Faustina",
        -            "Federant",
        -            "Federo",
        -            "Felipa",
        -            "Fenix",
        -            "Festive",
        -            "Figtree",
        -            "Finger Paint",
        -            "Finlandica Headline",
        -            "Finlandica Text",
        -            "Fira Code",
        -            "Fira Mono",
        -            "Fira Sans",
        -            "Fira Sans Condensed",
        -            "Fira Sans Extra Condensed",
        -            "Fjalla One",
        -            "Fjord One",
        -            "Flamenco",
        -            "Flavors",
        -            "Fleur De Leah",
        -            "Flow Block",
        -            "Flow Circular",
        -            "Flow Rounded",
        -            "Foldit",
        -            "Fondamento",
        -            "Fontdiner Swanky",
        -            "Forum",
        -            "Fragment Mono",
        -            "Francois One",
        -            "Frank Ruhl Libre",
        -            "Fraunces",
        -            "Freckle Face",
        -            "Fredericka the Great",
        -            "Fredoka",
        -            "Freehand",
        -            "Freeman",
        -            "Fresca",
        -            "Frijole",
        -            "Fruktur",
        -            "Fugaz One",
        -            "Fuggles",
        -            "Funnel Display",
        -            "Funnel Sans",
        -            "Fustat",
        -            "Fuzzy Bubbles",
        -            "GFS Didot",
        -            "GFS Neohellenic",
        -            "Ga Maamli",
        -            "Gabarito",
        -            "Gabriela",
        -            "Gaegu",
        -            "Gafata",
        -            "Gajraj One",
        -            "Galada",
        -            "Galdeano",
        -            "Galindo",
        -            "Gamja Flower",
        -            "Gantari",
        -            "Gasoek One",
        -            "Gayathri",
        -            "Geist",
        -            "Geist Mono",
        -            "Geist Pixel",
        -            "Gelasio",
        -            "Gemunu Libre",
        -            "Genos",
        -            "Gentium Book Plus",
        -            "Gentium Plus",
        -            "Geo",
        -            "Geologica",
        -            "Geom",
        -            "Geomini",
        -            "Georama",
        -            "Geostar",
        -            "Geostar Fill",
        -            "Germania One",
        -            "Gideon Roman",
        -            "Gidole",
        -            "Gidugu",
        -            "Gilda Display",
        -            "Girassol",
        -            "Give You Glory",
        -            "Glass Antiqua",
        -            "Glegoo",
        -            "Gloock",
        -            "Gloria Hallelujah",
        -            "Glory",
        -            "Gluten",
        -            "Goblin One",
        -            "Gochi Hand",
        -            "Goldman",
        -            "Golos Text",
        -            "Google Sans",
        -            "Google Sans Code",
        -            "Google Sans Flex",
        -            "Gorditas",
        -            "Gothic A1",
        -            "Gotu",
        -            "Goudy Bookletter 1911",
        -            "Gowun Batang",
        -            "Gowun Dodum",
        -            "Graduate",
        -            "Grand Hotel",
        -            "Grandiflora One",
        -            "Grandstander",
        -            "Grape Nuts",
        -            "Gravitas One",
        -            "Great Vibes",
        -            "Grechen Fuemen",
        -            "Grenze",
        -            "Grenze Gotisch",
        -            "Grey Qo",
        -            "Griffy",
        -            "Gruppo",
        -            "Gudea",
        -            "Gugi",
        -            "Gulzar",
        -            "Gupter",
        -            "Gurajada",
        -            "Gveret Levin",
        -            "Gwendolyn",
        -            "Habibi",
        -            "Hachi Maru Pop",
        -            "Hahmlet",
        -            "Halant",
        -            "Hammersmith One",
        -            "Hanalei",
        -            "Hanalei Fill",
        -            "Handjet",
        -            "Handlee",
        -            "Hanken Grotesk",
        -            "Hanuman",
        -            "Happy Monkey",
        -            "Harmattan",
        -            "Headland One",
        -            "Hedvig Letters Sans",
        -            "Hedvig Letters Serif",
        -            "Heebo",
        -            "Henny Penny",
        -            "Hepta Slab",
        -            "Herr Von Muellerhoff",
        -            "Hi Melody",
        -            "Hibur Mono",
        -            "Hina Mincho",
        -            "Hind",
        -            "Hind Guntur",
        -            "Hind Madurai",
        -            "Hind Mysuru",
        -            "Hind Siliguri",
        -            "Hind Vadodara",
        -            "Holtwood One SC",
        -            "Homemade Apple",
        -            "Homenaje",
        -            "Honk",
        -            "Host Grotesk",
        -            "Hubballi",
        -            "Hubot Sans",
        -            "Huninn",
        -            "Hurricane",
        -            "IBM Plex Mono",
        -            "IBM Plex Sans",
        -            "IBM Plex Sans Arabic",
        -            "IBM Plex Sans Condensed",
        -            "IBM Plex Sans Devanagari",
        -            "IBM Plex Sans Hebrew",
        -            "IBM Plex Sans JP",
        -            "IBM Plex Sans KR",
        -            "IBM Plex Sans Thai",
        -            "IBM Plex Sans Thai Looped",
        -            "IBM Plex Serif",
        -            "IM Fell DW Pica",
        -            "IM Fell DW Pica SC",
        -            "IM Fell Double Pica",
        -            "IM Fell Double Pica SC",
        -            "IM Fell English",
        -            "IM Fell English SC",
        -            "IM Fell French Canon",
        -            "IM Fell French Canon SC",
        -            "IM Fell Great Primer",
        -            "IM Fell Great Primer SC",
        -            "Iansui",
        -            "Ibarra Real Nova",
        -            "Iceberg",
        -            "Iceland",
        -            "Idiqlat",
        -            "Imbue",
        -            "Imperial Script",
        -            "Imprima",
        -            "Inclusive Sans",
        -            "Inconsolata",
        -            "Inder",
        -            "Indie Flower",
        -            "Ingrid Darling",
        -            "Inika",
        -            "Inknut Antiqua",
        -            "Inria Sans",
        -            "Inria Serif",
        -            "Inspiration",
        -            "Instrument Sans",
        -            "Instrument Serif",
        -            "Intel One Mono",
        -            "Inter",
        -            "Inter Tight",
        -            "Iosevka Charon",
        -            "Iosevka Charon Mono",
        -            "Irish Grover",
        -            "Island Moments",
        -            "Istok Web",
        -            "Italiana",
        -            "Italianno",
        -            "Itim",
        -            "Jacquard 12",
        -            "Jacquard 12 Charted",
        -            "Jacquard 24",
        -            "Jacquard 24 Charted",
        -            "Jacquarda Bastarda 9",
        -            "Jacquarda Bastarda 9 Charted",
        -            "Jacques Francois",
        -            "Jacques Francois Shadow",
        -            "Jaini",
        -            "Jaini Purva",
        -            "Jaldi",
        -            "Jaro",
        -            "Jersey 10",
        -            "Jersey 10 Charted",
        -            "Jersey 15",
        -            "Jersey 15 Charted",
        -            "Jersey 20",
        -            "Jersey 20 Charted",
        -            "Jersey 25",
        -            "Jersey 25 Charted",
        -            "JetBrains Mono",
        -            "Jim Nightshade",
        -            "Joan",
        -            "Jockey One",
        -            "Jolly Lodger",
        -            "Jomhuria",
        -            "Jomolhari",
        -            "Josefin Sans",
        -            "Josefin Slab",
        -            "Jost",
        -            "Joti One",
        -            "Jua",
        -            "Judson",
        -            "Julee",
        -            "Julius Sans One",
        -            "Junge",
        -            "Jura",
        -            "Just Another Hand",
        -            "Just Me Again Down Here",
        -            "K2D",
        -            "Kablammo",
        -            "Kadwa",
        -            "Kaisei Decol",
        -            "Kaisei HarunoUmi",
        -            "Kaisei Opti",
        -            "Kaisei Tokumin",
        -            "Kalam",
        -            "Kalnia",
        -            "Kalnia Glaze",
        -            "Kameron",
        -            "Kanchenjunga",
        -            "Kanit",
        -            "Kantumruy Pro",
        -            "Kapakana",
        -            "Karantina",
        -            "Karla",
        -            "Karla Tamil Inclined",
        -            "Karla Tamil Upright",
        -            "Karma",
        -            "Katibeh",
        -            "Kaushan Script",
        -            "Kavivanar",
        -            "Kavoon",
        -            "Kay Pho Du",
        -            "Kdam Thmor Pro",
        -            "Keania One",
        -            "Kedebideri",
        -            "Kelly Slab",
        -            "Kenia",
        -            "Khand",
        -            "Khmer",
        -            "Khula",
        -            "Kings",
        -            "Kirang Haerang",
        -            "Kite One",
        -            "Kiwi Maru",
        -            "Klee One",
        -            "Knewave",
        -            "KoHo",
        -            "Kodchasan",
        -            "Kode Mono",
        -            "Koh Santepheap",
        -            "Kolker Brush",
        -            "Konkhmer Sleokchher",
        -            "Kosugi",
        -            "Kosugi Maru",
        -            "Kotta One",
        -            "Koulen",
        -            "Kranky",
        -            "Kreon",
        -            "Kristi",
        -            "Krona One",
        -            "Krub",
        -            "Kufam",
        -            "Kulim Park",
        -            "Kumar One",
        -            "Kumar One Outline",
        -            "Kumbh Sans",
        -            "Kurale",
        -            "LINE Seed JP",
        -            "LXGW Marker Gothic",
        -            "LXGW WenKai Mono TC",
        -            "LXGW WenKai TC",
        -            "La Belle Aurore",
        -            "Labrada",
        -            "Lacquer",
        -            "Laila",
        -            "Lakki Reddy",
        -            "Lalezar",
        -            "Lancelot",
        -            "Langar",
        -            "Lateef",
        -            "Lato",
        -            "Lavishly Yours",
        -            "League Gothic",
        -            "League Script",
        -            "League Spartan",
        -            "Leckerli One",
        -            "Ledger",
        -            "Lekton",
        -            "Lemon",
        -            "Lemonada",
        -            "Lexend",
        -            "Lexend Deca",
        -            "Lexend Exa",
        -            "Lexend Giga",
        -            "Lexend Mega",
        -            "Lexend Peta",
        -            "Lexend Tera",
        -            "Lexend Zetta",
        -            "Libertinus Keyboard",
        -            "Libertinus Math",
        -            "Libertinus Mono",
        -            "Libertinus Sans",
        -            "Libertinus Serif",
        -            "Libertinus Serif Display",
        -            "Libre Barcode 128",
        -            "Libre Barcode 128 Text",
        -            "Libre Barcode 39",
        -            "Libre Barcode 39 Extended",
        -            "Libre Barcode 39 Extended Text",
        -            "Libre Barcode 39 Text",
        -            "Libre Barcode EAN13 Text",
        -            "Libre Baskerville",
        -            "Libre Bodoni",
        -            "Libre Caslon Display",
        -            "Libre Caslon Text",
        -            "Libre Franklin",
        -            "Licorice",
        -            "Life Savers",
        -            "Lilex",
        -            "Lilita One",
        -            "Lily Script One",
        -            "Limelight",
        -            "Linden Hill",
        -            "Linefont",
        -            "Lisu Bosa",
        -            "Liter",
        -            "Literata",
        -            "Liu Jian Mao Cao",
        -            "Livvic",
        -            "Lobster",
        -            "Lobster Two",
        -            "Londrina Outline",
        -            "Londrina Shadow",
        -            "Londrina Sketch",
        -            "Londrina Solid",
        -            "Long Cang",
        -            "Lora",
        -            "Love Light",
        -            "Love Ya Like A Sister",
        -            "Loved by the King",
        -            "Lovers Quarrel",
        -            "Luckiest Guy",
        -            "Lugrasimo",
        -            "Lumanosimo",
        -            "Lunasima",
        -            "Lusitana",
        -            "Lustria",
        -            "Luxurious Roman",
        -            "Luxurious Script",
        -            "M PLUS 1",
        -            "M PLUS 1 Code",
        -            "M PLUS 1p",
        -            "M PLUS 2",
        -            "M PLUS Code Latin",
        -            "M PLUS Rounded 1c",
        -            "M PLUS U",
        -            "Ma Shan Zheng",
        -            "Macondo",
        -            "Macondo Swash Caps",
        -            "Mada",
        -            "Madimi One",
        -            "Magra",
        -            "Maiden Orange",
        -            "Maitree",
        -            "Major Mono Display",
        -            "Mako",
        -            "Mali",
        -            "Mallanna",
        -            "Maname",
        -            "Mandali",
        -            "Manjari",
        -            "Manrope",
        -            "Mansalva",
        -            "Manuale",
        -            "Manufacturing Consent",
        -            "Marcellus",
        -            "Marcellus SC",
        -            "Marck Script",
        -            "Margarine",
        -            "Marhey",
        -            "Markazi Text",
        -            "Marko One",
        -            "Marmelad",
        -            "Martel",
        -            "Martel Sans",
        -            "Martian Mono",
        -            "Marvel",
        -            "Matangi",
        -            "Mate",
        -            "Mate SC",
        -            "Matemasie",
        -            "Material Icons",
        -            "Material Icons Outlined",
        -            "Material Icons Round",
        -            "Material Icons Sharp",
        -            "Material Icons Two Tone",
        -            "Material Symbols",
        -            "Material Symbols Outlined",
        -            "Material Symbols Rounded",
        -            "Material Symbols Sharp",
        -            "Maven Pro",
        -            "McLaren",
        -            "Mea Culpa",
        -            "Meddon",
        -            "MedievalSharp",
        -            "Medula One",
        -            "Meera Inimai",
        -            "Megrim",
        -            "Meie Script",
        -            "Menbere",
        -            "Meow Script",
        -            "Merienda",
        -            "Merriweather",
        -            "Merriweather Sans",
        -            "Metal",
        -            "Metal Mania",
        -            "Metamorphous",
        -            "Metrophobic",
        -            "Michroma",
        -            "Micro 5",
        -            "Micro 5 Charted",
        -            "Milonga",
        -            "Miltonian",
        -            "Miltonian Tattoo",
        -            "Mina",
        -            "Mingzat",
        -            "Miniver",
        -            "Miranda Sans",
        -            "Miriam Libre",
        -            "Mirza",
        -            "Miss Fajardose",
        -            "Mitr",
        -            "Mochiy Pop One",
        -            "Mochiy Pop P One",
        -            "Modak",
        -            "Modern Antiqua",
        -            "Moderustic",
        -            "Mogra",
        -            "Mohave",
        -            "Moirai One",
        -            "Molengo",
        -            "Molle",
        -            "Momo Signature",
        -            "Momo Trust Display",
        -            "Momo Trust Sans",
        -            "Mona Sans",
        -            "Monda",
        -            "Monofett",
        -            "Monomakh",
        -            "Monomaniac One",
        -            "Monoton",
        -            "Monsieur La Doulaise",
        -            "Montaga",
        -            "Montagu Slab",
        -            "MonteCarlo",
        -            "Montenegrin Gothic One",
        -            "Montez",
        -            "Montserrat",
        -            "Montserrat Alternates",
        -            "Montserrat Underline",
        -            "Moo Lah Lah",
        -            "Mooli",
        -            "Moon Dance",
        -            "Moul",
        -            "Moulpali",
        -            "Mountains of Christmas",
        -            "Mouse Memoirs",
        -            "Mozilla Headline",
        -            "Mozilla Text",
        -            "Mr Bedfort",
        -            "Mr Dafoe",
        -            "Mr De Haviland",
        -            "Mrs Saint Delafield",
        -            "Mrs Sheppards",
        -            "Ms Madi",
        -            "Mukta",
        -            "Mukta Mahee",
        -            "Mukta Malar",
        -            "Mukta Vaani",
        -            "Mulish",
        -            "Murecho",
        -            "MuseoModerno",
        -            "My Soul",
        -            "Mynerve",
        -            "Mystery Quest",
        -            "NTR",
        -            "Nabla",
        -            "Namdhinggo",
        -            "Nanum Brush Script",
        -            "Nanum Gothic",
        -            "Nanum Gothic Coding",
        -            "Nanum Myeongjo",
        -            "Nanum Pen Script",
        -            "Narnoor",
        -            "Nata Sans",
        -            "National Park",
        -            "Neonderthaw",
        -            "Nerko One",
        -            "Neucha",
        -            "Neuton",
        -            "New Amsterdam",
        -            "New Rocker",
        -            "New Tegomin",
        -            "News Cycle",
        -            "Newsreader",
        -            "Niconne",
        -            "Niramit",
        -            "Nixie One",
        -            "Nobile",
        -            "Nokora",
        -            "Norican",
        -            "Nosifer",
        -            "Notable",
        -            "Nothing You Could Do",
        -            "Noticia Text",
        -            "Noto Color Emoji",
        -            "Noto Emoji",
        -            "Noto Kufi Arabic",
        -            "Noto Music",
        -            "Noto Naskh Arabic",
        -            "Noto Nastaliq Urdu",
        -            "Noto Rashi Hebrew",
        -            "Noto Sans",
        -            "Noto Sans Adlam",
        -            "Noto Sans Adlam Unjoined",
        -            "Noto Sans Anatolian Hieroglyphs",
        -            "Noto Sans Arabic",
        -            "Noto Sans Armenian",
        -            "Noto Sans Avestan",
        -            "Noto Sans Balinese",
        -            "Noto Sans Bamum",
        -            "Noto Sans Bassa Vah",
        -            "Noto Sans Batak",
        -            "Noto Sans Bengali",
        -            "Noto Sans Bhaiksuki",
        -            "Noto Sans Brahmi",
        -            "Noto Sans Buginese",
        -            "Noto Sans Buhid",
        -            "Noto Sans Canadian Aboriginal",
        -            "Noto Sans Carian",
        -            "Noto Sans Caucasian Albanian",
        -            "Noto Sans Chakma",
        -            "Noto Sans Cham",
        -            "Noto Sans Cherokee",
        -            "Noto Sans Chorasmian",
        -            "Noto Sans Coptic",
        -            "Noto Sans Cuneiform",
        -            "Noto Sans Cypriot",
        -            "Noto Sans Cypro Minoan",
        -            "Noto Sans Deseret",
        -            "Noto Sans Devanagari",
        -            "Noto Sans Display",
        -            "Noto Sans Duployan",
        -            "Noto Sans Egyptian Hieroglyphs",
        -            "Noto Sans Elbasan",
        -            "Noto Sans Elymaic",
        -            "Noto Sans Ethiopic",
        -            "Noto Sans Georgian",
        -            "Noto Sans Glagolitic",
        -            "Noto Sans Gothic",
        -            "Noto Sans Grantha",
        -            "Noto Sans Gujarati",
        -            "Noto Sans Gunjala Gondi",
        -            "Noto Sans Gurmukhi",
        -            "Noto Sans HK",
        -            "Noto Sans Hanifi Rohingya",
        -            "Noto Sans Hanunoo",
        -            "Noto Sans Hatran",
        -            "Noto Sans Hebrew",
        -            "Noto Sans Imperial Aramaic",
        -            "Noto Sans Indic Siyaq Numbers",
        -            "Noto Sans Inscriptional Pahlavi",
        -            "Noto Sans Inscriptional Parthian",
        -            "Noto Sans JP",
        -            "Noto Sans Javanese",
        -            "Noto Sans KR",
        -            "Noto Sans Kaithi",
        -            "Noto Sans Kannada",
        -            "Noto Sans Kawi",
        -            "Noto Sans Kayah Li",
        -            "Noto Sans Kharoshthi",
        -            "Noto Sans Khmer",
        -            "Noto Sans Khojki",
        -            "Noto Sans Khudawadi",
        -            "Noto Sans Lao",
        -            "Noto Sans Lao Looped",
        -            "Noto Sans Lepcha",
        -            "Noto Sans Limbu",
        -            "Noto Sans Linear A",
        -            "Noto Sans Linear B",
        -            "Noto Sans Lisu",
        -            "Noto Sans Lycian",
        -            "Noto Sans Lydian",
        -            "Noto Sans Mahajani",
        -            "Noto Sans Malayalam",
        -            "Noto Sans Mandaic",
        -            "Noto Sans Manichaean",
        -            "Noto Sans Marchen",
        -            "Noto Sans Masaram Gondi",
        -            "Noto Sans Math",
        -            "Noto Sans Mayan Numerals",
        -            "Noto Sans Medefaidrin",
        -            "Noto Sans Meetei Mayek",
        -            "Noto Sans Mende Kikakui",
        -            "Noto Sans Meroitic",
        -            "Noto Sans Miao",
        -            "Noto Sans Modi",
        -            "Noto Sans Mongolian",
        -            "Noto Sans Mono",
        -            "Noto Sans Mro",
        -            "Noto Sans Multani",
        -            "Noto Sans Myanmar",
        -            "Noto Sans NKo",
        -            "Noto Sans NKo Unjoined",
        -            "Noto Sans Nabataean",
        -            "Noto Sans Nag Mundari",
        -            "Noto Sans Nandinagari",
        -            "Noto Sans New Tai Lue",
        -            "Noto Sans Newa",
        -            "Noto Sans Nushu",
        -            "Noto Sans Ogham",
        -            "Noto Sans Ol Chiki",
        -            "Noto Sans Old Hungarian",
        -            "Noto Sans Old Italic",
        -            "Noto Sans Old North Arabian",
        -            "Noto Sans Old Permic",
        -            "Noto Sans Old Persian",
        -            "Noto Sans Old Sogdian",
        -            "Noto Sans Old South Arabian",
        -            "Noto Sans Old Turkic",
        -            "Noto Sans Oriya",
        -            "Noto Sans Osage",
        -            "Noto Sans Osmanya",
        -            "Noto Sans Pahawh Hmong",
        -            "Noto Sans Palmyrene",
        -            "Noto Sans Pau Cin Hau",
        -            "Noto Sans PhagsPa",
        -            "Noto Sans Phoenician",
        -            "Noto Sans Psalter Pahlavi",
        -            "Noto Sans Rejang",
        -            "Noto Sans Runic",
        -            "Noto Sans SC",
        -            "Noto Sans Samaritan",
        -            "Noto Sans Saurashtra",
        -            "Noto Sans Sharada",
        -            "Noto Sans Shavian",
        -            "Noto Sans Siddham",
        -            "Noto Sans SignWriting",
        -            "Noto Sans Sinhala",
        -            "Noto Sans Sogdian",
        -            "Noto Sans Sora Sompeng",
        -            "Noto Sans Soyombo",
        -            "Noto Sans Sundanese",
        -            "Noto Sans Sunuwar",
        -            "Noto Sans Syloti Nagri",
        -            "Noto Sans Symbols",
        -            "Noto Sans Symbols 2",
        -            "Noto Sans Syriac",
        -            "Noto Sans Syriac Eastern",
        -            "Noto Sans Syriac Western",
        -            "Noto Sans TC",
        -            "Noto Sans Tagalog",
        -            "Noto Sans Tagbanwa",
        -            "Noto Sans Tai Le",
        -            "Noto Sans Tai Tham",
        -            "Noto Sans Tai Viet",
        -            "Noto Sans Takri",
        -            "Noto Sans Tamil",
        -            "Noto Sans Tamil Supplement",
        -            "Noto Sans Tangsa",
        -            "Noto Sans Telugu",
        -            "Noto Sans Thaana",
        -            "Noto Sans Thai",
        -            "Noto Sans Thai Looped",
        -            "Noto Sans Tifinagh",
        -            "Noto Sans Tirhuta",
        -            "Noto Sans Ugaritic",
        -            "Noto Sans Vai",
        -            "Noto Sans Vithkuqi",
        -            "Noto Sans Wancho",
        -            "Noto Sans Warang Citi",
        -            "Noto Sans Yi",
        -            "Noto Sans Zanabazar Square",
        -            "Noto Serif",
        -            "Noto Serif Ahom",
        -            "Noto Serif Armenian",
        -            "Noto Serif Balinese",
        -            "Noto Serif Bengali",
        -            "Noto Serif Devanagari",
        -            "Noto Serif Display",
        -            "Noto Serif Dives Akuru",
        -            "Noto Serif Dogra",
        -            "Noto Serif Ethiopic",
        -            "Noto Serif Georgian",
        -            "Noto Serif Grantha",
        -            "Noto Serif Gujarati",
        -            "Noto Serif Gurmukhi",
        -            "Noto Serif HK",
        -            "Noto Serif Hebrew",
        -            "Noto Serif Hentaigana",
        -            "Noto Serif JP",
        -            "Noto Serif KR",
        -            "Noto Serif Kannada",
        -            "Noto Serif Khitan Small Script",
        -            "Noto Serif Khmer",
        -            "Noto Serif Khojki",
        -            "Noto Serif Lao",
        -            "Noto Serif Makasar",
        -            "Noto Serif Malayalam",
        -            "Noto Serif Myanmar",
        -            "Noto Serif NP Hmong",
        -            "Noto Serif Old Uyghur",
        -            "Noto Serif Oriya",
        -            "Noto Serif Ottoman Siyaq",
        -            "Noto Serif SC",
        -            "Noto Serif Sinhala",
        -            "Noto Serif TC",
        -            "Noto Serif Tamil",
        -            "Noto Serif Tangut",
        -            "Noto Serif Telugu",
        -            "Noto Serif Thai",
        -            "Noto Serif Tibetan",
        -            "Noto Serif Todhri",
        -            "Noto Serif Toto",
        -            "Noto Serif Vithkuqi",
        -            "Noto Serif Yezidi",
        -            "Noto Traditional Nushu",
        -            "Noto Znamenny Musical Notation",
        -            "Nova Cut",
        -            "Nova Flat",
        -            "Nova Mono",
        -            "Nova Oval",
        -            "Nova Round",
        -            "Nova Script",
        -            "Nova Slim",
        -            "Nova Square",
        -            "Numans",
        -            "Nunito",
        -            "Nunito Sans",
        -            "Nuosu SIL",
        -            "Odibee Sans",
        -            "Odor Mean Chey",
        -            "Offside",
        -            "Oi",
        -            "Ojuju",
        -            "Old Standard TT",
        -            "Oldenburg",
        -            "Ole",
        -            "Oleo Script",
        -            "Oleo Script Swash Caps",
        -            "Onest",
        -            "Oooh Baby",
        -            "Open Sans",
        -            "Oranienbaum",
        -            "Orbit",
        -            "Orbitron",
        -            "Oregano",
        -            "Orelega One",
        -            "Orienta",
        -            "Original Surfer",
        -            "Oswald",
        -            "Outfit",
        -            "Over the Rainbow",
        -            "Overlock",
        -            "Overlock SC",
        -            "Overpass",
        -            "Overpass Mono",
        -            "Ovo",
        -            "Oxanium",
        -            "Oxygen",
        -            "Oxygen Mono",
        -            "PT Mono",
        -            "PT Sans",
        -            "PT Sans Caption",
        -            "PT Sans Narrow",
        -            "PT Serif",
        -            "PT Serif Caption",
        -            "Pacifico",
        -            "Padauk",
        -            "Padyakke Expanded One",
        -            "Palanquin",
        -            "Palanquin Dark",
        -            "Palette Mosaic",
        -            "Pangolin",
        -            "Paprika",
        -            "Parastoo",
        -            "Parisienne",
        -            "Parkinsans",
        -            "Passero One",
        -            "Passion One",
        -            "Passions Conflict",
        -            "Pathway Extreme",
        -            "Pathway Gothic One",
        -            "Patrick Hand",
        -            "Patrick Hand SC",
        -            "Pattaya",
        -            "Patua One",
        -            "Pavanam",
        -            "Paytone One",
        -            "Peddana",
        -            "Peralta",
        -            "Permanent Marker",
        -            "Petemoss",
        -            "Petit Formal Script",
        -            "Petrona",
        -            "Phetsarath",
        -            "Philosopher",
        -            "Phudu",
        -            "Piazzolla",
        -            "Piedra",
        -            "Pinyon Script",
        -            "Pirata One",
        -            "Pixelify Sans",
        -            "Plaster",
        -            "Platypi",
        -            "Play",
        -            "Playball",
        -            "Playfair",
        -            "Playfair Display",
        -            "Playfair Display SC",
        -            "Playpen Sans",
        -            "Playpen Sans Arabic",
        -            "Playpen Sans Deva",
        -            "Playpen Sans Hebrew",
        -            "Playpen Sans Thai",
        -            "Playwrite AR",
        -            "Playwrite AR Guides",
        -            "Playwrite AT",
        -            "Playwrite AT Guides",
        -            "Playwrite AU NSW",
        -            "Playwrite AU NSW Guides",
        -            "Playwrite AU QLD",
        -            "Playwrite AU QLD Guides",
        -            "Playwrite AU SA",
        -            "Playwrite AU SA Guides",
        -            "Playwrite AU TAS",
        -            "Playwrite AU TAS Guides",
        -            "Playwrite AU VIC",
        -            "Playwrite AU VIC Guides",
        -            "Playwrite BE VLG",
        -            "Playwrite BE VLG Guides",
        -            "Playwrite BE WAL",
        -            "Playwrite BE WAL Guides",
        -            "Playwrite BR",
        -            "Playwrite BR Guides",
        -            "Playwrite CA",
        -            "Playwrite CA Guides",
        -            "Playwrite CL",
        -            "Playwrite CL Guides",
        -            "Playwrite CO",
        -            "Playwrite CO Guides",
        -            "Playwrite CU",
        -            "Playwrite CU Guides",
        -            "Playwrite CZ",
        -            "Playwrite CZ Guides",
        -            "Playwrite DE Grund",
        -            "Playwrite DE Grund Guides",
        -            "Playwrite DE LA",
        -            "Playwrite DE LA Guides",
        -            "Playwrite DE SAS",
        -            "Playwrite DE SAS Guides",
        -            "Playwrite DE VA",
        -            "Playwrite DE VA Guides",
        -            "Playwrite DK Loopet",
        -            "Playwrite DK Loopet Guides",
        -            "Playwrite DK Uloopet",
        -            "Playwrite DK Uloopet Guides",
        -            "Playwrite ES",
        -            "Playwrite ES Deco",
        -            "Playwrite ES Deco Guides",
        -            "Playwrite ES Guides",
        -            "Playwrite FR Moderne",
        -            "Playwrite FR Moderne Guides",
        -            "Playwrite FR Trad",
        -            "Playwrite FR Trad Guides",
        -            "Playwrite GB J",
        -            "Playwrite GB J Guides",
        -            "Playwrite GB S",
        -            "Playwrite GB S Guides",
        -            "Playwrite HR",
        -            "Playwrite HR Guides",
        -            "Playwrite HR Lijeva",
        -            "Playwrite HR Lijeva Guides",
        -            "Playwrite HU",
        -            "Playwrite HU Guides",
        -            "Playwrite ID",
        -            "Playwrite ID Guides",
        -            "Playwrite IE",
        -            "Playwrite IE Guides",
        -            "Playwrite IN",
        -            "Playwrite IN Guides",
        -            "Playwrite IS",
        -            "Playwrite IS Guides",
        -            "Playwrite IT Moderna",
        -            "Playwrite IT Moderna Guides",
        -            "Playwrite IT Trad",
        -            "Playwrite IT Trad Guides",
        -            "Playwrite MX",
        -            "Playwrite MX Guides",
        -            "Playwrite NG Modern",
        -            "Playwrite NG Modern Guides",
        -            "Playwrite NL",
        -            "Playwrite NL Guides",
        -            "Playwrite NO",
        -            "Playwrite NO Guides",
        -            "Playwrite NZ",
        -            "Playwrite NZ Basic",
        -            "Playwrite NZ Basic Guides",
        -            "Playwrite NZ Guides",
        -            "Playwrite PE",
        -            "Playwrite PE Guides",
        -            "Playwrite PL",
        -            "Playwrite PL Guides",
        -            "Playwrite PT",
        -            "Playwrite PT Guides",
        -            "Playwrite RO",
        -            "Playwrite RO Guides",
        -            "Playwrite SK",
        -            "Playwrite SK Guides",
        -            "Playwrite TZ",
        -            "Playwrite TZ Guides",
        -            "Playwrite US Modern",
        -            "Playwrite US Modern Guides",
        -            "Playwrite US Trad",
        -            "Playwrite US Trad Guides",
        -            "Playwrite VN",
        -            "Playwrite VN Guides",
        -            "Playwrite ZA",
        -            "Playwrite ZA Guides",
        -            "Pliant",
        -            "Plus Jakarta Sans",
        -            "Pochaevsk",
        -            "Podkova",
        -            "Poetsen One",
        -            "Poiret One",
        -            "Poller One",
        -            "Poltawski Nowy",
        -            "Poly",
        -            "Pompiere",
        -            "Ponnala",
        -            "Ponomar",
        -            "Pontano Sans",
        -            "Poor Story",
        -            "Poppins",
        -            "Port Lligat Sans",
        -            "Port Lligat Slab",
        -            "Potta One",
        -            "Pragati Narrow",
        -            "Praise",
        -            "Prata",
        -            "Preahvihear",
        -            "Press Start 2P",
        -            "Pridi",
        -            "Princess Sofia",
        -            "Prociono",
        -            "Prompt",
        -            "Prosto One",
        -            "Protest Guerrilla",
        -            "Protest Revolution",
        -            "Protest Riot",
        -            "Protest Strike",
        -            "Proza Libre",
        -            "Public Sans",
        -            "Puppies Play",
        -            "Puritan",
        -            "Purple Purse",
        -            "Qahiri",
        -            "Quando",
        -            "Quantico",
        -            "Quattrocento",
        -            "Quattrocento Sans",
        -            "Questrial",
        -            "Quicksand",
        -            "Quintessential",
        -            "Qwigley",
        -            "Qwitcher Grypen",
        -            "REM",
        -            "Racing Sans One",
        -            "Radio Canada",
        -            "Radio Canada Big",
        -            "Radley",
        -            "Rajdhani",
        -            "Rakkas",
        -            "Raleway",
        -            "Raleway Dots",
        -            "Ramabhadra",
        -            "Ramaraja",
        -            "Rambla",
        -            "Rammetto One",
        -            "Rampart One",
        -            "Ramsina",
        -            "Ranchers",
        -            "Rancho",
        -            "Ranga",
        -            "Rasa",
        -            "Rationale",
        -            "Ravi Prakash",
        -            "Readex Pro",
        -            "Recursive",
        -            "Red Hat Display",
        -            "Red Hat Mono",
        -            "Red Hat Text",
        -            "Red Rose",
        -            "Redacted",
        -            "Redacted Script",
        -            "Reddit Mono",
        -            "Reddit Sans",
        -            "Reddit Sans Condensed",
        -            "Redressed",
        -            "Reem Kufi",
        -            "Reem Kufi Fun",
        -            "Reem Kufi Ink",
        -            "Reenie Beanie",
        -            "Reggae One",
        -            "Rethink Sans",
        -            "Revalia",
        -            "Rhodium Libre",
        -            "Ribeye",
        -            "Ribeye Marrow",
        -            "Righteous",
        -            "Risque",
        -            "Road Rage",
        -            "Roboto",
        -            "Roboto Condensed",
        -            "Roboto Flex",
        -            "Roboto Mono",
        -            "Roboto Serif",
        -            "Roboto Slab",
        -            "Rochester",
        -            "Rock 3D",
        -            "Rock Salt",
        -            "RocknRoll One",
        -            "Rokkitt",
        -            "Romanesco",
        -            "Ropa Sans",
        -            "Rosario",
        -            "Rosarivo",
        -            "Rouge Script",
        -            "Rowdies",
        -            "Rozha One",
        -            "Rubik",
        -            "Rubik 80s Fade",
        -            "Rubik Beastly",
        -            "Rubik Broken Fax",
        -            "Rubik Bubbles",
        -            "Rubik Burned",
        -            "Rubik Dirt",
        -            "Rubik Distressed",
        -            "Rubik Doodle Shadow",
        -            "Rubik Doodle Triangles",
        -            "Rubik Gemstones",
        -            "Rubik Glitch",
        -            "Rubik Glitch Pop",
        -            "Rubik Iso",
        -            "Rubik Lines",
        -            "Rubik Maps",
        -            "Rubik Marker Hatch",
        -            "Rubik Maze",
        -            "Rubik Microbe",
        -            "Rubik Mono One",
        -            "Rubik Moonrocks",
        -            "Rubik Pixels",
        -            "Rubik Puddles",
        -            "Rubik Scribble",
        -            "Rubik Spray Paint",
        -            "Rubik Storm",
        -            "Rubik Vinyl",
        -            "Rubik Wet Paint",
        -            "Ruda",
        -            "Rufina",
        -            "Ruge Boogie",
        -            "Ruluko",
        -            "Rum Raisin",
        -            "Ruslan Display",
        -            "Russo One",
        -            "Ruthie",
        -            "Ruwudu",
        -            "Rye",
        -            "SN Pro",
        -            "STIX Two Math",
        -            "STIX Two Text",
        -            "SUSE",
        -            "SUSE Mono",
        -            "Sacramento",
        -            "Sahitya",
        -            "Sail",
        -            "Saira",
        -            "Saira Condensed",
        -            "Saira Extra Condensed",
        -            "Saira Semi Condensed",
        -            "Saira Stencil",
        -            "Salsa",
        -            "Sanchez",
        -            "Sancreek",
        -            "Sankofa Display",
        -            "Sansation",
        -            "Sansita",
        -            "Sansita Swashed",
        -            "Sarabun",
        -            "Sarala",
        -            "Sarina",
        -            "Sarpanch",
        -            "Sassy Frass",
        -            "Satisfy",
        -            "Savate",
        -            "Sawarabi Gothic",
        -            "Sawarabi Mincho",
        -            "Scada",
        -            "Scheherazade New",
        -            "Schibsted Grotesk",
        -            "Schoolbell",
        -            "Science Gothic",
        -            "Scope One",
        -            "Seaweed Script",
        -            "Secular One",
        -            "Sedan",
        -            "Sedan SC",
        -            "Sedgwick Ave",
        -            "Sedgwick Ave Display",
        -            "Sekuya",
        -            "Sen",
        -            "Send Flowers",
        -            "Sevillana",
        -            "Seymour One",
        -            "Shadows Into Light",
        -            "Shadows Into Light Two",
        -            "Shafarik",
        -            "Shalimar",
        -            "Shantell Sans",
        -            "Shanti",
        -            "Share",
        -            "Share Tech",
        -            "Share Tech Mono",
        -            "Shippori Antique",
        -            "Shippori Antique B1",
        -            "Shippori Mincho",
        -            "Shippori Mincho B1",
        -            "Shizuru",
        -            "Shojumaru",
        -            "Short Stack",
        -            "Shrikhand",
        -            "Siemreap",
        -            "Sigmar",
        -            "Sigmar One",
        -            "Signika",
        -            "Signika Negative",
        -            "Silkscreen",
        -            "Simonetta",
        -            "Single Day",
        -            "Sintony",
        -            "Sirin Stencil",
        -            "Sirivennela",
        -            "Six Caps",
        -            "Sixtyfour",
        -            "Sixtyfour Convergence",
        -            "Skranji",
        -            "Slabo 13px",
        -            "Slabo 27px",
        -            "Slackey",
        -            "Slackside One",
        -            "Smokum",
        -            "Smooch",
        -            "Smooch Sans",
        -            "Smythe",
        -            "Sniglet",
        -            "Snippet",
        -            "Snowburst One",
        -            "Sofadi One",
        -            "Sofia",
        -            "Sofia Sans",
        -            "Sofia Sans Condensed",
        -            "Sofia Sans Extra Condensed",
        -            "Sofia Sans Semi Condensed",
        -            "Solitreo",
        -            "Solway",
        -            "Sometype Mono",
        -            "Song Myung",
        -            "Sono",
        -            "Sonsie One",
        -            "Sora",
        -            "Sorts Mill Goudy",
        -            "Sour Gummy",
        -            "Source Code Pro",
        -            "Source Sans 3",
        -            "Source Serif 4",
        -            "Space Grotesk",
        -            "Space Mono",
        -            "Special Elite",
        -            "Special Gothic",
        -            "Special Gothic Condensed One",
        -            "Special Gothic Expanded One",
        -            "Spectral",
        -            "Spectral SC",
        -            "Spicy Rice",
        -            "Spinnaker",
        -            "Spirax",
        -            "Splash",
        -            "Spline Sans",
        -            "Spline Sans Mono",
        -            "Squada One",
        -            "Square Peg",
        -            "Sree Krushnadevaraya",
        -            "Sriracha",
        -            "Srisakdi",
        -            "Staatliches",
        -            "Stack Sans Headline",
        -            "Stack Sans Notch",
        -            "Stack Sans Text",
        -            "Stalemate",
        -            "Stalinist One",
        -            "Stardos Stencil",
        -            "Stick",
        -            "Stick No Bills",
        -            "Stint Ultra Condensed",
        -            "Stint Ultra Expanded",
        -            "Stoke",
        -            "Story Script",
        -            "Strait",
        -            "Strichpunkt Sans",
        -            "Style Script",
        -            "Stylish",
        -            "Sue Ellen Francisco",
        -            "Suez One",
        -            "Sulphur Point",
        -            "Sumana",
        -            "Sunflower",
        -            "Sunshiney",
        -            "Supermercado One",
        -            "Sura",
        -            "Suranna",
        -            "Suravaram",
        -            "Suwannaphum",
        -            "Swanky and Moo Moo",
        -            "Syncopate",
        -            "Syne",
        -            "Syne Mono",
        -            "Syne Tactile",
        -            "TASA Explorer",
        -            "TASA Orbiter",
        -            "Tac One",
        -            "Tagesschrift",
        -            "Tai Heritage Pro",
        -            "Tajawal",
        -            "Tangerine",
        -            "Tapestry",
        -            "Taprom",
        -            "Tauri",
        -            "Taviraj",
        -            "Teachers",
        -            "Teko",
        -            "Tektur",
        -            "Telex",
        -            "Tenali Ramakrishna",
        -            "Tenor Sans",
        -            "Text Me One",
        -            "Texturina",
        -            "Thasadith",
        -            "The Girl Next Door",
        -            "The Nautigal",
        -            "Tienne",
        -            "TikTok Sans",
        -            "Tillana",
        -            "Tilt Neon",
        -            "Tilt Prism",
        -            "Tilt Warp",
        -            "Timmana",
        -            "Tinos",
        -            "Tiny5",
        -            "Tiro Bangla",
        -            "Tiro Devanagari Hindi",
        -            "Tiro Devanagari Marathi",
        -            "Tiro Devanagari Sanskrit",
        -            "Tiro Gurmukhi",
        -            "Tiro Kannada",
        -            "Tiro Tamil",
        -            "Tiro Telugu",
        -            "Tirra",
        -            "Titan One",
        -            "Titillium Web",
        -            "Tomorrow",
        -            "Tourney",
        -            "Trade Winds",
        -            "Train One",
        -            "Triodion",
        -            "Trirong",
        -            "Trispace",
        -            "Trocchi",
        -            "Trochut",
        -            "Truculenta",
        -            "Trykker",
        -            "Tsukimi Rounded",
        -            "Tuffy",
        -            "Tulpen One",
        -            "Turret Road",
        -            "Twinkle Star",
        -            "Ubuntu",
        -            "Ubuntu Condensed",
        -            "Ubuntu Mono",
        -            "Ubuntu Sans",
        -            "Ubuntu Sans Mono",
        -            "Uchen",
        -            "Ultra",
        -            "Unbounded",
        -            "Uncial Antiqua",
        -            "Underdog",
        -            "Unica One",
        -            "UnifrakturCook",
        -            "UnifrakturMaguntia",
        -            "Unkempt",
        -            "Unlock",
        -            "Unna",
        -            "UoqMunThenKhung",
        -            "Updock",
        -            "Urbanist",
        -            "VT323",
        -            "Vampiro One",
        -            "Varela",
        -            "Varela Round",
        -            "Varta",
        -            "Vast Shadow",
        -            "Vazirmatn",
        -            "Vend Sans",
        -            "Vesper Libre",
        -            "Viaoda Libre",
        -            "Vibes",
        -            "Vibur",
        -            "Victor Mono",
        -            "Vidaloka",
        -            "Viga",
        -            "Vina Sans",
        -            "Voces",
        -            "Volkhov",
        -            "Vollkorn",
        -            "Vollkorn SC",
        -            "Voltaire",
        -            "Vujahday Script",
        -            "WDXL Lubrifont JP N",
        -            "WDXL Lubrifont SC",
        -            "WDXL Lubrifont TC",
        -            "Waiting for the Sunrise",
        -            "Wallpoet",
        -            "Walter Turncoat",
        -            "Warnes",
        -            "Water Brush",
        -            "Waterfall",
        -            "Wavefont",
        -            "Wellfleet",
        -            "Wendy One",
        -            "Whisper",
        -            "WindSong",
        -            "Winky Rough",
        -            "Winky Sans",
        -            "Wire One",
        -            "Wittgenstein",
        -            "Wix Madefor Display",
        -            "Wix Madefor Text",
        -            "Work Sans",
        -            "Workbench",
        -            "Xanh Mono",
        -            "Yaldevi",
        -            "Yanone Kaffeesatz",
        -            "Yantramanav",
        -            "Yarndings 12",
        -            "Yarndings 12 Charted",
        -            "Yarndings 20",
        -            "Yarndings 20 Charted",
        -            "Yatra One",
        -            "Yellowtail",
        -            "Yeon Sung",
        -            "Yeseva One",
        -            "Yesteryear",
        -            "Yomogi",
        -            "Young Serif",
        -            "Yrsa",
        -            "Ysabeau",
        -            "Ysabeau Infant",
        -            "Ysabeau Office",
        -            "Ysabeau SC",
        -            "Yuji Boku",
        -            "Yuji Hentaigana Akari",
        -            "Yuji Hentaigana Akebono",
        -            "Yuji Mai",
        -            "Yuji Syuku",
        -            "Yusei Magic",
        -            "Yuyu",
        -            "Yuyu Short",
        -            "ZCOOL KuaiLe",
        -            "ZCOOL QingKe HuangYou",
        -            "ZCOOL XiaoWei",
        -            "Zain",
        -            "Zalando Sans",
        -            "Zalando Sans Expanded",
        -            "Zalando Sans SemiExpanded",
        -            "Zen Antique",
        -            "Zen Antique Soft",
        -            "Zen Dots",
        -            "Zen Kaku Gothic Antique",
        -            "Zen Kaku Gothic New",
        -            "Zen Kurenaido",
        -            "Zen Loop",
        -            "Zen Maru Gothic",
        -            "Zen Old Mincho",
        -            "Zen Tokyo Zoo",
        -            "Zeyada",
        -            "Zhi Mang Xing",
        -            "Zilla Slab",
        -            "Zilla Slab Highlight"
        -          ],
        -          "type": "string"
        -        },
        -        "titleFontSize": {
        -          "type": "number"
        -        },
        -        "titleFontWeight": {
        -          "type": "string"
        -        },
        -        "titleSubtitleGap": {
        -          "type": "number"
        -        }
        -      },
        -      "type": "object"
        -    },
        -    "title": {
        -      "type": "string"
        -    },
        -    "version": {
        -      "const": "2026-03-20",
        -      "type": "string"
        -    },
        -    "width": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "x": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "display": {
        -          "default": true,
        -          "type": "boolean"
        -        },
        -        "domain": {
        -          "anyOf": [
        -            {
        -              "items": [
        -                {
        -                  "type": "number"
        -                },
        -                {
        -                  "type": "number"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            }
        -          ]
        -        },
        -        "label": {
        -          "type": "string"
        -        },
        -        "nice": {
        -          "type": "boolean"
        -        },
        -        "tickFormat": {
        -          "type": "string"
        -        },
        -        "type": {
        -          "enum": [
        -            "linear",
        -            "log",
        -            "utc",
        -            "band"
        -          ],
        -          "type": "string"
        -        }
        -      },
        -      "type": "object"
        -    },
        -    "y": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "display": {
        -          "default": true,
        -          "type": "boolean"
        -        },
        -        "domain": {
        -          "anyOf": [
        -            {
        -              "items": [
        -                {
        -                  "type": "number"
        -                },
        -                {
        -                  "type": "number"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            }
        -          ]
        -        },
        -        "label": {
        -          "type": "string"
        -        },
        -        "nice": {
        -          "type": "boolean"
        -        },
        -        "tickFormat": {
        -          "type": "string"
        -        },
        -        "type": {
        -          "enum": [
        -            "linear",
        -            "log",
        -            "utc",
        -            "band"
        -          ],
        -          "type": "string"
        -        }
        -      },
        -      "type": "object"
        -    }
        -  },
        -  "required": [
        -    "version",
        -    "format",
        -    "marks"
        -  ],
        -  "title": "Szum Chart Configuration",
        -  "type": "object"
        -}
      • addedOutput schema / properties / examples / items / properties / featured
        Added value: +{
        +  "type": "boolean"
        +}
      • addedOutput schema / properties / examples / items / properties / features
        Added value: +{
        +  "items": {
        +    "enum": [
        +      "labels",
        +      "time_scale",
        +      "stacked",
        +      "categorical_color",
        +      "grouped",
        +      "wide_data",
        +      "totals",
        +      "normalized",
        +      "stable_colors",
        +      "count",
        +      "aggregation",
        +      "signed_values",
        +      "ranges",
        +      "log_scale",
        +      "size_encoding",
        +      "sequential_color",
        +      "diverging_color",
        +      "intervals",
        +      "annotations",
        +      "missing_data",
        +      "references",
        +      "sparkline",
        +      "explicit_order"
        +    ],
        +    "type": "string"
        +  },
        +  "type": "array"
        +}
      • addedOutput schema / properties / examples / items / properties / id
        Added value: +{
        +  "type": "string"
        +}
      • addedOutput schema / properties / examples / items / properties / purpose
        Added value: +{
        +  "enum": [
        +    "comparison",
        +    "trend",
        +    "composition",
        +    "relationship",
        +    "distribution",
        +    "range"
        +  ],
        +  "type": "string"
        +}
      • addedOutput schema / properties / examples / items / properties / request
        Added value: +{
        +  "additionalProperties": false,
        +  "properties": {
        +    "config": {
        +      "anyOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/PositionableBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SimpleBarValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/RangeCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/RangeCategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/RangeValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/StackedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/StackedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "totals": {
        +              "type": "boolean"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "totals",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/GroupedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/PositionableBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/BarSpacingPreference"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "arrangement",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/NormalizedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "arrangement",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/PositionableBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SimpleBarValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/RangeCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/RangeCategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/RangeValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/StackedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/StackedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "totals": {
        +              "type": "boolean"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "totals",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/GroupedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/PositionableBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/BarSpacingPreference"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "arrangement",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/NormalizedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "arrangement",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/CategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/LineLabels"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "points": {
        +              "anyOf": [
        +                {
        +                  "type": "boolean"
        +                },
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "fill": {
        +                      "$ref": "#/$defs/Color"
        +                    },
        +                    "radius": {
        +                      "exclusiveMinimum": 0,
        +                      "type": "number"
        +                    },
        +                    "series": {
        +                      "items": {
        +                        "type": [
        +                          "string",
        +                          "number"
        +                        ]
        +                      },
        +                      "minItems": 1,
        +                      "type": "array",
        +                      "uniqueItems": true
        +                    },
        +                    "stroke": {
        +                      "$ref": "#/$defs/Stroke"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/LineStroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "line",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "oneOf": [
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "aggregation": {
        +                      "enum": [
        +                        "sum",
        +                        "average",
        +                        "min",
        +                        "max",
        +                        "median"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "field": {
        +                      "minLength": 1,
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "scale": {
        +                      "$ref": "#/$defs/ContinuousScale"
        +                    },
        +                    "series": {
        +                      "$ref": "#/$defs/SeriesRole"
        +                    },
        +                    "type": {
        +                      "const": "long",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type",
        +                    "field"
        +                  ],
        +                  "title": "LineLongValuesRole",
        +                  "type": "object"
        +                },
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "aggregation": {
        +                      "enum": [
        +                        "sum",
        +                        "average",
        +                        "min",
        +                        "max",
        +                        "median"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "fields": {
        +                      "items": {
        +                        "minLength": 1,
        +                        "type": "string"
        +                      },
        +                      "minItems": 1,
        +                      "type": "array",
        +                      "uniqueItems": true
        +                    },
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "scale": {
        +                      "$ref": "#/$defs/ContinuousScale"
        +                    },
        +                    "type": {
        +                      "const": "wide",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type",
        +                    "fields"
        +                  ],
        +                  "title": "LineWideValuesRole",
        +                  "type": "object"
        +                },
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "scale": {
        +                      "oneOf": [
        +                        {
        +                          "$ref": "#/$defs/LinearScale"
        +                        },
        +                        {
        +                          "$ref": "#/$defs/LogScale"
        +                        }
        +                      ],
        +                      "title": "QuantitativeScale"
        +                    },
        +                    "series": {
        +                      "$ref": "#/$defs/SeriesRole"
        +                    },
        +                    "type": {
        +                      "const": "count",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type"
        +                  ],
        +                  "title": "CountValuesRole",
        +                  "type": "object"
        +                }
        +              ],
        +              "title": "LineValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "category",
        +            "values"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "type": {
        +                  "const": "stacked",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type"
        +              ],
        +              "type": "object"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/CategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/AreaLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "area",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "anyOf": [
        +                {
        +                  "oneOf": [
        +                    {
        +                      "additionalProperties": false,
        +                      "properties": {
        +                        "aggregation": {
        +                          "enum": [
        +                            "sum",
        +                            "average",
        +                            "min",
        +                            "max",
        +                            "median"
        +                          ],
        +                          "type": "string"
        +                        },
        +                        "field": {
        +                          "minLength": 1,
        +                          "type": "string"
        +                        },
        +                        "format": {
        +                          "type": "string"
        +                        },
        +                        "scale": {
        +                          "$ref": "#/$defs/LinearScale"
        +                        },
        +                        "series": {
        +                          "$ref": "#/$defs/SeriesRole"
        +                        },
        +                        "type": {
        +                          "const": "long",
        +                          "type": "string"
        +                        }
        +                      },
        +                      "required": [
        +                        "type",
        +                        "field"
        +                      ],
        +                      "title": "LinearLongValuesRole",
        +                      "type": "object"
        +                    },
        +                    {
        +                      "additionalProperties": false,
        +                      "properties": {
        +                        "aggregation": {
        +                          "enum": [
        +                            "sum",
        +                            "average",
        +                            "min",
        +                            "max",
        +                            "median"
        +                          ],
        +                          "type": "string"
        +                        },
        +                        "fields": {
        +                          "items": {
        +                            "minLength": 1,
        +                            "type": "string"
        +                          },
        +                          "minItems": 1,
        +                          "type": "array",
        +                          "uniqueItems": true
        +                        },
        +                        "format": {
        +                          "type": "string"
        +                        },
        +                        "scale": {
        +                          "$ref": "#/$defs/LinearScale"
        +                        },
        +                        "type": {
        +                          "const": "wide",
        +                          "type": "string"
        +                        }
        +                      },
        +                      "required": [
        +                        "type",
        +                        "fields"
        +                      ],
        +                      "title": "LinearWideValuesRole",
        +                      "type": "object"
        +                    },
        +                    {
        +                      "additionalProperties": false,
        +                      "properties": {
        +                        "format": {
        +                          "type": "string"
        +                        },
        +                        "scale": {
        +                          "$ref": "#/$defs/LinearScale"
        +                        },
        +                        "series": {
        +                          "$ref": "#/$defs/SeriesRole"
        +                        },
        +                        "type": {
        +                          "const": "count",
        +                          "type": "string"
        +                        }
        +                      },
        +                      "required": [
        +                        "type"
        +                      ],
        +                      "title": "LinearCountValuesRole",
        +                      "type": "object"
        +                    }
        +                  ],
        +                  "title": "LinearValuesRole"
        +                },
        +                {
        +                  "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +                }
        +              ],
        +              "title": "StackedLinearValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "category",
        +            "values"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/NormalizedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/CategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/AreaLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "area",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "category",
        +            "values",
        +            "arrangement"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/ScatterAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/ScatterColor"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "id": {
        +              "$ref": "#/$defs/FieldRole"
        +            },
        +            "interval": {
        +              "$ref": "#/$defs/ScatterInterval"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/ScatterLabels"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "radius": {
        +              "exclusiveMinimum": 0,
        +              "type": "number"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/ScatterReferences"
        +            },
        +            "size": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "field": {
        +                  "minLength": 1,
        +                  "type": "string"
        +                },
        +                "format": {
        +                  "type": "string"
        +                },
        +                "legend": {
        +                  "$ref": "#/$defs/LegendOptions"
        +                }
        +              },
        +              "required": [
        +                "field"
        +              ],
        +              "title": "SizeEncoding",
        +              "type": "object"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "scatter",
        +              "type": "string"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            },
        +            "x": {
        +              "$ref": "#/$defs/ScatterRole"
        +            },
        +            "xAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "y": {
        +              "$ref": "#/$defs/ScatterRole"
        +            },
        +            "yAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "x",
        +            "y"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/ScatterAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/ScatterColor"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "id": {
        +              "$ref": "#/$defs/FieldRole"
        +            },
        +            "interval": {
        +              "$ref": "#/$defs/ScatterInterval"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/ScatterLabels"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/ScatterReferences"
        +            },
        +            "size": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "field": {
        +                  "minLength": 1,
        +                  "type": "string"
        +                },
        +                "format": {
        +                  "type": "string"
        +                },
        +                "legend": {
        +                  "$ref": "#/$defs/LegendOptions"
        +                },
        +                "range": {
        +                  "items": [
        +                    {
        +                      "exclusiveMinimum": 0,
        +                      "type": "number"
        +                    },
        +                    {
        +                      "exclusiveMinimum": 0,
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                }
        +              },
        +              "required": [
        +                "field",
        +                "range"
        +              ],
        +              "title": "RangedSizeEncoding",
        +              "type": "object"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "scatter",
        +              "type": "string"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            },
        +            "x": {
        +              "$ref": "#/$defs/ScatterRole"
        +            },
        +            "xAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "y": {
        +              "$ref": "#/$defs/ScatterRole"
        +            },
        +            "yAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "x",
        +            "y",
        +            "size"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "items": {
        +                "additionalProperties": false,
        +                "properties": {
        +                  "align": {
        +                    "enum": [
        +                      "start",
        +                      "center",
        +                      "end"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "anchor": {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "category": {
        +                        "type": [
        +                          "string",
        +                          "number"
        +                        ]
        +                      },
        +                      "type": {
        +                        "const": "datum",
        +                        "type": "string"
        +                      }
        +                    },
        +                    "required": [
        +                      "type",
        +                      "category"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  "boxAnchor": {
        +                    "$ref": "#/$defs/AnnotationBoxAnchor"
        +                  },
        +                  "connector": {
        +                    "enum": [
        +                      "none",
        +                      "line",
        +                      "arrow"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "offset": {
        +                    "$ref": "#/$defs/AnnotationOffset"
        +                  },
        +                  "placement": {
        +                    "$ref": "#/$defs/AnnotationPlacement"
        +                  },
        +                  "reserveSpace": {
        +                    "$ref": "#/$defs/ReserveSpace"
        +                  },
        +                  "style": {
        +                    "$ref": "#/$defs/AnnotationTextStyle"
        +                  },
        +                  "text": {
        +                    "type": "string"
        +                  },
        +                  "visible": {
        +                    "type": "boolean"
        +                  },
        +                  "width": {
        +                    "anyOf": [
        +                      {
        +                        "exclusiveMinimum": 0,
        +                        "type": "number"
        +                      },
        +                      {
        +                        "const": "shape",
        +                        "type": "string"
        +                      }
        +                    ]
        +                  }
        +                },
        +                "required": [
        +                  "text",
        +                  "anchor"
        +                ],
        +                "title": "PieAnnotation",
        +                "type": "object"
        +              },
        +              "minItems": 1,
        +              "title": "PieAnnotations",
        +              "type": "array"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "field": {
        +                  "minLength": 1,
        +                  "type": "string"
        +                },
        +                "format": {
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "field"
        +              ],
        +              "type": "object"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "innerRadius": {
        +              "exclusiveMaximum": 1,
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "labels": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "content": {
        +                  "items": {
        +                    "enum": [
        +                      "category",
        +                      "value",
        +                      "percent"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "minItems": 1,
        +                  "type": "array",
        +                  "uniqueItems": true
        +                },
        +                "position": {
        +                  "enum": [
        +                    "auto",
        +                    "inside",
        +                    "outside"
        +                  ],
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "content"
        +              ],
        +              "type": "object"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "pie",
        +              "type": "string"
        +            },
        +            "values": {
        +              "oneOf": [
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "aggregation": {
        +                      "enum": [
        +                        "sum",
        +                        "average",
        +                        "min",
        +                        "max",
        +                        "median"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "field": {
        +                      "minLength": 1,
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "percentFormat": {
        +                      "type": "string"
        +                    },
        +                    "type": {
        +                      "const": "long",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type",
        +                    "field"
        +                  ],
        +                  "type": "object"
        +                },
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "percentFormat": {
        +                      "type": "string"
        +                    },
        +                    "type": {
        +                      "const": "count",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type"
        +                  ],
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "category",
        +            "values"
        +          ],
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "data": {
        +      "items": {
        +        "additionalProperties": {
        +          "type": [
        +            "string",
        +            "number",
        +            "null"
        +          ]
        +        },
        +        "propertyNames": {
        +          "type": "string"
        +        },
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "output": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "format": {
        +              "const": "svg",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "format"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "format": {
        +              "const": "png",
        +              "type": "string"
        +            },
        +            "scale": {
        +              "anyOf": [
        +                {
        +                  "const": 1,
        +                  "type": "number"
        +                },
        +                {
        +                  "const": 2,
        +                  "type": "number"
        +                },
        +                {
        +                  "const": 3,
        +                  "type": "number"
        +                },
        +                {
        +                  "const": 4,
        +                  "type": "number"
        +                }
        +              ]
        +            }
        +          },
        +          "required": [
        +            "format"
        +          ],
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "presentation": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "background": {
        +              "enum": [
        +                "opaque",
        +                "transparent"
        +              ],
        +              "type": "string"
        +            },
        +            "colorScheme": {
        +              "enum": [
        +                "light",
        +                "dark"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "colorScheme",
        +            "background"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "background": {
        +              "enum": [
        +                "opaque",
        +                "transparent"
        +              ],
        +              "type": "string"
        +            },
        +            "colorScheme": {
        +              "const": "system",
        +              "type": "string"
        +            },
        +            "systemFallback": {
        +              "enum": [
        +                "light",
        +                "dark"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "colorScheme",
        +            "systemFallback",
        +            "background"
        +          ],
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "size": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "height": {
        +              "maximum": 4096,
        +              "minimum": 1,
        +              "type": "integer"
        +            },
        +            "type": {
        +              "const": "canvas",
        +              "type": "string"
        +            },
        +            "width": {
        +              "maximum": 4096,
        +              "minimum": 1,
        +              "type": "integer"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "width",
        +            "height"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "height": {
        +              "maximum": 4096,
        +              "minimum": 1,
        +              "type": "integer"
        +            },
        +            "margin": {
        +              "additionalProperties": false,
        +              "minProperties": 1,
        +              "properties": {
        +                "bottom": {
        +                  "minimum": 0,
        +                  "type": "number"
        +                },
        +                "left": {
        +                  "minimum": 0,
        +                  "type": "number"
        +                },
        +                "right": {
        +                  "minimum": 0,
        +                  "type": "number"
        +                },
        +                "top": {
        +                  "minimum": 0,
        +                  "type": "number"
        +                }
        +              },
        +              "title": "Margin",
        +              "type": "object"
        +            },
        +            "type": {
        +              "const": "plot",
        +              "type": "string"
        +            },
        +            "width": {
        +              "maximum": 4096,
        +              "minimum": 1,
        +              "type": "integer"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "width",
        +            "height"
        +          ],
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "version": {
        +      "const": "2026-09-26",
        +      "type": "string"
        +    }
        +  },
        +  "required": [
        +    "version",
        +    "config",
        +    "data"
        +  ],
        +  "type": "object"
        +}
      • addedOutput schema / properties / examples / items / properties / use_when
        Added value: +{
        +  "type": "string"
        +}
      • changedOutput schema / properties / examples / items / required
        Previous value: -[
        -  "title",
        -  "config"
        -]New value: +[
        +  "id",
        +  "use_when",
        +  "purpose",
        +  "features",
        +  "title",
        +  "featured",
        +  "request"
        +]
    • Changedget_preview_state8 fields changed
      • addedOutput schema / oneOf
        Added value: +[
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "chart": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "createdAt": {
        +            "description": "ISO-8601 creation timestamp",
        +            "type": "string"
        +          },
        +          "documentUrl": {
        +            "description": "Owner-only chart-document endpoint",
        +            "type": "string"
        +          },
        +          "editUrl": {
        +            "type": "string"
        +          },
        +          "embedUrl": {
        +            "description": "Interactive-embed URL",
        +            "type": "string"
        +          },
        +          "id": {
        +            "description": "Opaque 32-character saved-chart id",
        +            "pattern": "^[0-9a-f]{32}$",
        +            "type": "string"
        +          },
        +          "imageUrl": {
        +            "description": "Rendered-image URL",
        +            "type": "string"
        +          },
        +          "manageUrl": {
        +            "type": "string"
        +          },
        +          "publishedAt": {
        +            "description": "ISO-8601 publish timestamp, or null when public URLs are dark",
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "sizeBytes": {
        +            "description": "Compressed size of the stored published document, excluding drafts; 0 means no published document has been stored yet",
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "source": {
        +            "description": "Chart origin; an open set of string values",
        +            "type": "string"
        +          },
        +          "title": {
        +            "description": "Saved chart title",
        +            "type": "string"
        +          },
        +          "updatedAt": {
        +            "description": "ISO-8601 last-update timestamp",
        +            "type": "string"
        +          },
        +          "view": {
        +            "const": "saved-chart",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "view",
        +          "id",
        +          "source",
        +          "title",
        +          "createdAt",
        +          "updatedAt",
        +          "sizeBytes",
        +          "publishedAt",
        +          "imageUrl",
        +          "embedUrl",
        +          "documentUrl",
        +          "editUrl",
        +          "manageUrl"
        +        ],
        +        "type": "object"
        +      },
        +      "status": {
        +        "const": "saved",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "status",
        +      "chart"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "chart": {
        +        "not": {}
        +      },
        +      "status": {
        +        "const": "transient",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "status"
        +    ],
        +    "type": "object"
        +  }
        +]
      • removedOutput schema / properties / chart / properties / configUrl
        Removed value: -{
        -  "description": "Owner-only chart-config endpoint",
        -  "type": "string"
        -}
      • addedOutput schema / properties / chart / properties / documentUrl
        Added value: +{
        +  "description": "Owner-only chart-document endpoint",
        +  "type": "string"
        +}
      • removedOutput schema / properties / chart / properties / publishedAt / anyOf
        Removed value: -[
        -  {
        -    "type": "string"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]
      • addedOutput schema / properties / chart / properties / publishedAt / type
        Added value: +[
        +  "string",
        +  "null"
        +]
      • changedOutput schema / properties / chart / properties / sizeBytes / description
        Previous value: -"Compressed size of the stored published config, excluding drafts; 0 means no published config has been stored yet"New value: +"Compressed size of the stored published document, excluding drafts; 0 means no published document has been stored yet"
      • changedOutput schema / properties / chart / required
        Previous value: -[
        -  "view",
        -  "id",
        -  "source",
        -  "title",
        -  "createdAt",
        -  "updatedAt",
        -  "sizeBytes",
        -  "publishedAt",
        -  "imageUrl",
        -  "embedUrl",
        -  "configUrl",
        -  "editUrl",
        -  "manageUrl"
        -]New value: +[
        +  "view",
        +  "id",
        +  "source",
        +  "title",
        +  "createdAt",
        +  "updatedAt",
        +  "sizeBytes",
        +  "publishedAt",
        +  "imageUrl",
        +  "embedUrl",
        +  "documentUrl",
        +  "editUrl",
        +  "manageUrl"
        +]
      • changedOutput schema / properties / status / enum
        Previous value: -[
        -  "transient",
        -  "saved"
        -]New value: +[
        +  "saved",
        +  "transient"
        +]
    • Addedget_schema
    • Addedlist_chart_types
    • Changedlist_charts10 fields changed
      • removedOutput schema / properties / items / items / properties / configUrl
        Removed value: -{
        -  "description": "Owner-only chart-config endpoint",
        -  "type": "string"
        -}
      • addedOutput schema / properties / items / items / properties / documentUrl
        Added value: +{
        +  "description": "Owner-only chart-document endpoint",
        +  "type": "string"
        +}
      • changedOutput schema / properties / items / items / properties / hasDraft / description
        Previous value: -"Whether an unpublished editor config exists; with sizeBytes 0 the chart is draft-only, otherwise it has unpublished edits alongside a stored published config"New value: +"Whether an unpublished editor document exists; with sizeBytes 0 the chart is draft-only, otherwise it has unpublished edits alongside a stored published document"
      • removedOutput schema / properties / items / items / properties / publishedAt / anyOf
        Removed value: -[
        -  {
        -    "type": "string"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]
      • addedOutput schema / properties / items / items / properties / publishedAt / type
        Added value: +[
        +  "string",
        +  "null"
        +]
      • changedOutput schema / properties / items / items / properties / sizeBytes / description
        Previous value: -"Compressed size of the stored published config, excluding drafts; 0 means no published config has been stored yet"New value: +"Compressed size of the stored published document, excluding drafts; 0 means no published document has been stored yet"
      • changedOutput schema / properties / items / items / required
        Previous value: -[
        -  "id",
        -  "source",
        -  "title",
        -  "createdAt",
        -  "updatedAt",
        -  "sizeBytes",
        -  "publishedAt",
        -  "imageUrl",
        -  "embedUrl",
        -  "configUrl",
        -  "hasDraft"
        -]New value: +[
        +  "id",
        +  "source",
        +  "title",
        +  "createdAt",
        +  "updatedAt",
        +  "sizeBytes",
        +  "publishedAt",
        +  "imageUrl",
        +  "embedUrl",
        +  "documentUrl",
        +  "hasDraft"
        +]
      • removedOutput schema / properties / nextCursor / anyOf
        Removed value: -[
        -  {
        -    "type": "string"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]
      • addedOutput schema / properties / nextCursor / type
        Added value: +[
        +  "string",
        +  "null"
        +]
      • changedOutput schema / properties / total / description
        Previous value: -"Exact match count, present only for title searches"New value: +"Exact match count, present for title searches or when explicitly requested"
    • Removedlist_marks
    • Changedrename_chart6 fields changed
      • removedOutput schema / properties / configUrl
        Removed value: -{
        -  "description": "Owner-only chart-config endpoint",
        -  "type": "string"
        -}
      • addedOutput schema / properties / documentUrl
        Added value: +{
        +  "description": "Owner-only chart-document endpoint",
        +  "type": "string"
        +}
      • removedOutput schema / properties / publishedAt / anyOf
        Removed value: -[
        -  {
        -    "type": "string"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]
      • addedOutput schema / properties / publishedAt / type
        Added value: +[
        +  "string",
        +  "null"
        +]
      • changedOutput schema / properties / sizeBytes / description
        Previous value: -"Compressed size of the stored published config, excluding drafts; 0 means no published config has been stored yet"New value: +"Compressed size of the stored published document, excluding drafts; 0 means no published document has been stored yet"
      • changedOutput schema / required
        Previous value: -[
        -  "view",
        -  "id",
        -  "source",
        -  "title",
        -  "createdAt",
        -  "updatedAt",
        -  "sizeBytes",
        -  "publishedAt",
        -  "imageUrl",
        -  "embedUrl",
        -  "configUrl",
        -  "editUrl",
        -  "manageUrl"
        -]New value: +[
        +  "view",
        +  "id",
        +  "source",
        +  "title",
        +  "createdAt",
        +  "updatedAt",
        +  "sizeBytes",
        +  "publishedAt",
        +  "imageUrl",
        +  "embedUrl",
        +  "documentUrl",
        +  "editUrl",
        +  "manageUrl"
        +]
    • Changedrender_chart18 fields changed
      • changedInput schema / properties / acknowledgeWarnings / description
        Previous value: -"Set true only after the user explicitly approves every warning returned for this exact config"New value: +"Set true only after the user explicitly approves every warning returned for this exact request"
      • removedInput schema / properties / config
        Removed value: -{
        -  "description": "Complete chart config JSON. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Bar and area value axes stay linear and include zero. Explicit base-10 log scales require positive finite values and domains; use line or dot. Configure scales with top-level x/y; hide with display: false. Put shared data at chart level; use mark data for distinct rows. When rows share a bar position, map a series field to fill or stroke before setting group or aggregate.",
        -  "type": "string"
        -}
      • addedInput schema / properties / request
        Added value: +{
        +  "description": "Complete current ChartDocument JSON with version, config, and data, plus optional presentation, size, and output. Use the same document for validation, rendering, and saving; version must match config.version. Semantic field roles must match row keys. Chronological annual values use YYYY strings on an explicit UTC scale. Column and bar charts with long, wide, or count values, and all area charts, use linear value scales. Their inferred domains include zero, while an explicit domain excluding zero produces a warning. Base-10 log roles and explicit log domains require positive finite values; use line, scatter, or ranged columns and bars.",
        +  "type": "string"
        +}
      • changedInput schema / required
        Previous value: -[
        -  "config"
        -]New value: +[
        +  "request"
        +]
      • addedOutput schema / $defs
        Added value: +{
        +  "AnnotationBoxAnchor": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "x": {
        +        "enum": [
        +          "start",
        +          "center",
        +          "end"
        +        ],
        +        "type": "string"
        +      },
        +      "y": {
        +        "enum": [
        +          "top",
        +          "middle",
        +          "bottom"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "x",
        +      "y"
        +    ],
        +    "title": "AnnotationBoxAnchor",
        +    "type": "object"
        +  },
        +  "AnnotationOffset": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "x": {
        +        "type": "number"
        +      },
        +      "y": {
        +        "type": "number"
        +      }
        +    },
        +    "title": "AnnotationOffset",
        +    "type": "object"
        +  },
        +  "AnnotationPlacement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "align": {
        +        "enum": [
        +          "start",
        +          "center",
        +          "end"
        +        ],
        +        "type": "string"
        +      },
        +      "gap": {
        +        "minimum": 0,
        +        "type": "number"
        +      },
        +      "side": {
        +        "enum": [
        +          "above",
        +          "right",
        +          "below",
        +          "left"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "side"
        +    ],
        +    "title": "AnnotationPlacement",
        +    "type": "object"
        +  },
        +  "AnnotationTextStyle": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "background": {
        +        "type": "boolean"
        +      },
        +      "color": {
        +        "$ref": "#/$defs/Color"
        +      },
        +      "fontSize": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      },
        +      "fontWeight": {
        +        "anyOf": [
        +          {
        +            "const": 100,
        +            "type": "number"
        +          },
        +          {
        +            "const": 200,
        +            "type": "number"
        +          },
        +          {
        +            "const": 300,
        +            "type": "number"
        +          },
        +          {
        +            "const": 400,
        +            "type": "number"
        +          },
        +          {
        +            "const": 500,
        +            "type": "number"
        +          },
        +          {
        +            "const": 600,
        +            "type": "number"
        +          },
        +          {
        +            "const": 700,
        +            "type": "number"
        +          },
        +          {
        +            "const": 800,
        +            "type": "number"
        +          },
        +          {
        +            "const": 900,
        +            "type": "number"
        +          }
        +        ]
        +      }
        +    },
        +    "title": "AnnotationTextStyle",
        +    "type": "object"
        +  },
        +  "AreaLabels": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "points": {
        +        "$ref": "#/$defs/ConnectedPointLabels"
        +      },
        +      "series": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "content": {
        +            "items": {
        +              "enum": [
        +                "series",
        +                "value",
        +                "percent"
        +              ],
        +              "type": "string"
        +            },
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          }
        +        },
        +        "required": [
        +          "content"
        +        ],
        +        "type": "object"
        +      }
        +    },
        +    "title": "AreaLabels",
        +    "type": "object"
        +  },
        +  "AxisOptions": {
        +    "anyOf": [
        +      {
        +        "type": "boolean"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "grid": {
        +            "type": "boolean"
        +          },
        +          "line": {
        +            "type": "boolean"
        +          },
        +          "title": {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        },
        +        "type": "object"
        +      }
        +    ],
        +    "title": "AxisOptions"
        +  },
        +  "BandScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "band",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "BandScale",
        +    "type": "object"
        +  },
        +  "BarCategoryRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "oneOf": [
        +          {
        +            "$ref": "#/$defs/BandScale"
        +          },
        +          {
        +            "$ref": "#/$defs/UtcScale"
        +          }
        +        ],
        +        "title": "BarCategoryScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "BarCategoryRole",
        +    "type": "object"
        +  },
        +  "BarSpacingPreference": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "category": {
        +        "exclusiveMaximum": 1,
        +        "minimum": 0,
        +        "type": "number"
        +      },
        +      "series": {
        +        "exclusiveMaximum": 1,
        +        "minimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "BarSpacingPreference",
        +    "type": "object"
        +  },
        +  "CartesianAnnotations": {
        +    "items": {
        +      "additionalProperties": false,
        +      "properties": {
        +        "align": {
        +          "enum": [
        +            "start",
        +            "center",
        +            "end"
        +          ],
        +          "type": "string"
        +        },
        +        "anchor": {
        +          "oneOf": [
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "category": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "category",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "category"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "category": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "series": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "datum",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "category"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "category": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "coordinate",
        +                  "type": "string"
        +                },
        +                "value": {
        +                  "type": "number"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "category",
        +                "value"
        +              ],
        +              "type": "object"
        +            }
        +          ],
        +          "title": "CartesianAnnotationAnchor"
        +        },
        +        "boxAnchor": {
        +          "$ref": "#/$defs/AnnotationBoxAnchor"
        +        },
        +        "connector": {
        +          "enum": [
        +            "none",
        +            "line",
        +            "arrow"
        +          ],
        +          "type": "string"
        +        },
        +        "offset": {
        +          "$ref": "#/$defs/AnnotationOffset"
        +        },
        +        "placement": {
        +          "$ref": "#/$defs/AnnotationPlacement"
        +        },
        +        "reserveSpace": {
        +          "$ref": "#/$defs/ReserveSpace"
        +        },
        +        "style": {
        +          "$ref": "#/$defs/AnnotationTextStyle"
        +        },
        +        "text": {
        +          "type": "string"
        +        },
        +        "visible": {
        +          "type": "boolean"
        +        },
        +        "width": {
        +          "anyOf": [
        +            {
        +              "exclusiveMinimum": 0,
        +              "type": "number"
        +            },
        +            {
        +              "const": "shape",
        +              "type": "string"
        +            }
        +          ]
        +        }
        +      },
        +      "required": [
        +        "text",
        +        "anchor"
        +      ],
        +      "title": "CartesianAnnotation",
        +      "type": "object"
        +    },
        +    "minItems": 1,
        +    "title": "CartesianAnnotations",
        +    "type": "array"
        +  },
        +  "CategoricalColor": {
        +    "anyOf": [
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "$ref": "#/$defs/CategoricalColorMapping"
        +      }
        +    ],
        +    "title": "CategoricalColor"
        +  },
        +  "CategoricalColorMapping": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "domain": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "legend": {
        +        "$ref": "#/$defs/LegendOptions"
        +      },
        +      "range": {
        +        "$ref": "#/$defs/ColorRange"
        +      }
        +    },
        +    "title": "CategoricalColorMapping",
        +    "type": "object"
        +  },
        +  "CategoricalReferences": {
        +    "items": {
        +      "anyOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "const": "category",
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "value": {
        +              "type": [
        +                "string",
        +                "number"
        +              ]
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "value"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "value": {
        +              "type": "number"
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "value"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "statistic": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "basis": {
        +                  "enum": [
        +                    "values",
        +                    "categoryTotals"
        +                  ],
        +                  "type": "string"
        +                },
        +                "operation": {
        +                  "enum": [
        +                    "average",
        +                    "median",
        +                    "min",
        +                    "max"
        +                  ],
        +                  "type": "string"
        +                },
        +                "scope": {
        +                  "enum": [
        +                    "visible",
        +                    "all"
        +                  ],
        +                  "type": "string"
        +                },
        +                "series": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                }
        +              },
        +              "required": [
        +                "operation",
        +                "scope"
        +              ],
        +              "title": "CategoricalReferenceStatistic",
        +              "type": "object"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "statistic",
        +              "type": "string"
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "statistic"
        +          ],
        +          "type": "object"
        +        }
        +      ],
        +      "title": "CategoricalReference"
        +    },
        +    "minItems": 1,
        +    "title": "CategoricalReferences",
        +    "type": "array"
        +  },
        +  "CategoryOrder": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "direction": {
        +            "enum": [
        +              "ascending",
        +              "descending"
        +            ],
        +            "type": "string"
        +          },
        +          "type": {
        +            "enum": [
        +              "category",
        +              "value"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "direction"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "$ref": "#/$defs/ExplicitCategoryOrder"
        +      }
        +    ],
        +    "title": "CategoryOrder"
        +  },
        +  "CategoryRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/CategoryScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "CategoryRole",
        +    "type": "object"
        +  },
        +  "CategoryScale": {
        +    "oneOf": [
        +      {
        +        "$ref": "#/$defs/BandScale"
        +      },
        +      {
        +        "$ref": "#/$defs/LinearScale"
        +      },
        +      {
        +        "$ref": "#/$defs/LogScale"
        +      },
        +      {
        +        "$ref": "#/$defs/UtcScale"
        +      }
        +    ],
        +    "title": "CategoryScale"
        +  },
        +  "CategorySpacing": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "category": {
        +        "exclusiveMaximum": 1,
        +        "minimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "required": [
        +      "category"
        +    ],
        +    "title": "CategorySpacing",
        +    "type": "object"
        +  },
        +  "Color": {
        +    "anyOf": [
        +      {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      {
        +        "anyOf": [
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "dark": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "light": {
        +                "minLength": 1,
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "light"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "dark": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "light": {
        +                "minLength": 1,
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "dark"
        +            ],
        +            "type": "object"
        +          }
        +        ]
        +      }
        +    ],
        +    "title": "Color"
        +  },
        +  "ColorRange": {
        +    "items": {
        +      "$ref": "#/$defs/Color"
        +    },
        +    "minItems": 1,
        +    "title": "ColorRange",
        +    "type": "array"
        +  },
        +  "ConnectedPointLabels": {
        +    "anyOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "at": {
        +            "enum": [
        +              "extrema",
        +              "all",
        +              "ends"
        +            ],
        +            "type": "string"
        +          },
        +          "content": {
        +            "items": {
        +              "enum": [
        +                "category",
        +                "value"
        +              ],
        +              "type": "string"
        +            },
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "position": {
        +            "enum": [
        +              "above",
        +              "side"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "at",
        +          "content"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "at": {
        +            "enum": [
        +              "extrema",
        +              "all",
        +              "ends"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "position": {
        +            "enum": [
        +              "above",
        +              "side"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "at",
        +          "field"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "ConnectedPointLabels"
        +  },
        +  "ContinuousScale": {
        +    "oneOf": [
        +      {
        +        "$ref": "#/$defs/LinearScale"
        +      },
        +      {
        +        "$ref": "#/$defs/LogScale"
        +      },
        +      {
        +        "$ref": "#/$defs/UtcScale"
        +      }
        +    ],
        +    "title": "ContinuousScale"
        +  },
        +  "ExplicitCategoryOrder": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "categories": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "type": {
        +        "const": "explicit",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "categories"
        +    ],
        +    "title": "ExplicitCategoryOrder",
        +    "type": "object"
        +  },
        +  "FieldRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "FieldRole",
        +    "type": "object"
        +  },
        +  "GoogleFontFamily": {
        +    "enum": [
        +      "ABeeZee",
        +      "ADLaM Display",
        +      "AR One Sans",
        +      "Abel",
        +      "Abhaya Libre",
        +      "Aboreto",
        +      "Abril Fatface",
        +      "Abyssinica SIL",
        +      "Aclonica",
        +      "Acme",
        +      "Actor",
        +      "Adamina",
        +      "Advent Pro",
        +      "Afacad",
        +      "Afacad Flux",
        +      "Agbalumo",
        +      "Agdasima",
        +      "Agu Display",
        +      "Aguafina Script",
        +      "Akatab",
        +      "Akaya Kanadaka",
        +      "Akaya Telivigala",
        +      "Akronim",
        +      "Akshar",
        +      "Akt",
        +      "Aladin",
        +      "Alan Sans",
        +      "Alata",
        +      "Alatsi",
        +      "Albert Sans",
        +      "Aldrich",
        +      "Alef",
        +      "Alegreya",
        +      "Alegreya SC",
        +      "Alegreya Sans",
        +      "Alegreya Sans SC",
        +      "Aleo",
        +      "Alex Brush",
        +      "Alexandria",
        +      "Alfa Slab One",
        +      "Alice",
        +      "Alien Block",
        +      "Alike",
        +      "Alike Angular",
        +      "Alkalami",
        +      "Alkatra",
        +      "Allan",
        +      "Allerta",
        +      "Allerta Stencil",
        +      "Allison",
        +      "Allkin",
        +      "Allura",
        +      "Almarai",
        +      "Almendra",
        +      "Almendra Display",
        +      "Almendra SC",
        +      "Alumni Sans",
        +      "Alumni Sans Collegiate One",
        +      "Alumni Sans Inline One",
        +      "Alumni Sans Pinstripe",
        +      "Alumni Sans SC",
        +      "Alyamama",
        +      "Amarante",
        +      "Amaranth",
        +      "Amarna",
        +      "Amatic SC",
        +      "Amethysta",
        +      "Amiko",
        +      "Amiri",
        +      "Amiri Quran",
        +      "Amita",
        +      "Anaheim",
        +      "Ancizar Sans",
        +      "Ancizar Serif",
        +      "Andada Pro",
        +      "Andika",
        +      "Anek Bangla",
        +      "Anek Devanagari",
        +      "Anek Gujarati",
        +      "Anek Gurmukhi",
        +      "Anek Kannada",
        +      "Anek Latin",
        +      "Anek Malayalam",
        +      "Anek Odia",
        +      "Anek Tamil",
        +      "Anek Telugu",
        +      "Angkor",
        +      "Annapurna SIL",
        +      "Annie Use Your Telescope",
        +      "Anonymous Pro",
        +      "Anta",
        +      "Antic",
        +      "Antic Didone",
        +      "Antic Slab",
        +      "Anton",
        +      "Anton SC",
        +      "Antonio",
        +      "Anuphan",
        +      "Anybody",
        +      "Aoboshi One",
        +      "Arapey",
        +      "Arbutus",
        +      "Arbutus Slab",
        +      "Architects Daughter",
        +      "Archivo",
        +      "Archivo Black",
        +      "Archivo Narrow",
        +      "Are You Serious",
        +      "Aref Ruqaa",
        +      "Aref Ruqaa Ink",
        +      "Arima",
        +      "Arimo",
        +      "Arizonia",
        +      "Armata",
        +      "Arsenal",
        +      "Arsenal SC",
        +      "Artifika",
        +      "Arvo",
        +      "Arya",
        +      "Asap",
        +      "Asap Condensed",
        +      "Asar",
        +      "Asimovian",
        +      "Asset",
        +      "Assistant",
        +      "Asta Sans",
        +      "Astloch",
        +      "Asul",
        +      "Athiti",
        +      "Atkinson Hyperlegible",
        +      "Atkinson Hyperlegible Mono",
        +      "Atkinson Hyperlegible Next",
        +      "Atma",
        +      "Atomic Age",
        +      "Aubrey",
        +      "Audiowide",
        +      "Autour One",
        +      "Average",
        +      "Average Sans",
        +      "Averia Gruesa Libre",
        +      "Averia Libre",
        +      "Averia Sans Libre",
        +      "Averia Serif Libre",
        +      "Azeret Mono",
        +      "B612",
        +      "B612 Mono",
        +      "BBH Bartle",
        +      "BBH Bogle",
        +      "BBH Hegarty",
        +      "BIZ UDGothic",
        +      "BIZ UDMincho",
        +      "BIZ UDPGothic",
        +      "BIZ UDPMincho",
        +      "BJCree",
        +      "Babylonica",
        +      "Bacasime Antique",
        +      "Bad Script",
        +      "Badeen Display",
        +      "Bagel Fat One",
        +      "Bahiana",
        +      "Bahianita",
        +      "Bai Jamjuree",
        +      "Bakbak One",
        +      "Ballet",
        +      "Baloo 2",
        +      "Baloo Bhai 2",
        +      "Baloo Bhaijaan 2",
        +      "Baloo Bhaina 2",
        +      "Baloo Chettan 2",
        +      "Baloo Da 2",
        +      "Baloo Paaji 2",
        +      "Baloo Tamma 2",
        +      "Baloo Tammudu 2",
        +      "Baloo Thambi 2",
        +      "Balsamiq Sans",
        +      "Balthazar",
        +      "Bangers",
        +      "Barlow",
        +      "Barlow Condensed",
        +      "Barlow Semi Condensed",
        +      "Barriecito",
        +      "Barrio",
        +      "Basic",
        +      "Baskervville",
        +      "Baskervville SC",
        +      "Battambang",
        +      "Baumans",
        +      "Bayon",
        +      "Be Vietnam Pro",
        +      "Beau Rivage",
        +      "Bebas Neue",
        +      "Beiruti",
        +      "Belanosima",
        +      "Belgrano",
        +      "Bellefair",
        +      "Belleza",
        +      "Bellota",
        +      "Bellota Text",
        +      "BenchNine",
        +      "Benne",
        +      "Bentham",
        +      "Berkshire Swash",
        +      "Besley",
        +      "Betania Patmos",
        +      "Betania Patmos GDL",
        +      "Betania Patmos In",
        +      "Betania Patmos In GDL",
        +      "Beth Ellen",
        +      "Bevan",
        +      "BhuTuka Expanded One",
        +      "Big Shoulders",
        +      "Big Shoulders Inline",
        +      "Big Shoulders Stencil",
        +      "Bigelow Rules",
        +      "Bigshot One",
        +      "Bilbo",
        +      "Bilbo Swash Caps",
        +      "BioRhyme",
        +      "BioRhyme Expanded",
        +      "Birthstone",
        +      "Birthstone Bounce",
        +      "Biryani",
        +      "Bitcount",
        +      "Bitcount Grid Double",
        +      "Bitcount Grid Double Ink",
        +      "Bitcount Grid Single",
        +      "Bitcount Grid Single Ink",
        +      "Bitcount Ink",
        +      "Bitcount Prop Double",
        +      "Bitcount Prop Double Ink",
        +      "Bitcount Prop Single",
        +      "Bitcount Prop Single Ink",
        +      "Bitcount Single",
        +      "Bitcount Single Ink",
        +      "Bitter",
        +      "Black And White Picture",
        +      "Black Han Sans",
        +      "Black Ops One",
        +      "Blaka",
        +      "Blaka Hollow",
        +      "Blaka Ink",
        +      "Blinker",
        +      "Bodoni Moda",
        +      "Bodoni Moda SC",
        +      "Bokor",
        +      "Boldonse",
        +      "Bona Nova",
        +      "Bona Nova SC",
        +      "Bonbon",
        +      "Bonheur Royale",
        +      "Boogaloo",
        +      "Borel",
        +      "Bowlby One",
        +      "Bowlby One SC",
        +      "Bpmf Huninn",
        +      "Bpmf Iansui",
        +      "Bpmf Zihi Kai Std",
        +      "Braah One",
        +      "Brawler",
        +      "Bree Serif",
        +      "Bricolage Grotesque",
        +      "Bruno Ace",
        +      "Bruno Ace SC",
        +      "Brygada 1918",
        +      "Bubblegum Sans",
        +      "Bubbler One",
        +      "Buda",
        +      "Buenard",
        +      "Bungee",
        +      "Bungee Hairline",
        +      "Bungee Inline",
        +      "Bungee Outline",
        +      "Bungee Shade",
        +      "Bungee Spice",
        +      "Bungee Tint",
        +      "Butcherman",
        +      "Butterfly Kids",
        +      "Bytesized",
        +      "Cabin",
        +      "Cabin Condensed",
        +      "Cabin Sketch",
        +      "Cactus Classical Serif",
        +      "Caesar Dressing",
        +      "Cagliostro",
        +      "Cairo",
        +      "Cairo Play",
        +      "Cal Sans",
        +      "Caladea",
        +      "Calistoga",
        +      "Calligraffitti",
        +      "Cambay",
        +      "Cambo",
        +      "Candal",
        +      "Cantarell",
        +      "Cantata One",
        +      "Cantora One",
        +      "Caprasimo",
        +      "Capriola",
        +      "Caramel",
        +      "Carattere",
        +      "Cardo",
        +      "Carlito",
        +      "Carme",
        +      "Carrois Gothic",
        +      "Carrois Gothic SC",
        +      "Carter One",
        +      "Cascadia Code",
        +      "Cascadia Mono",
        +      "Castoro",
        +      "Castoro Titling",
        +      "Catamaran",
        +      "Caudex",
        +      "Cause",
        +      "Caveat",
        +      "Caveat Brush",
        +      "Cedarville Cursive",
        +      "Ceviche One",
        +      "Chakra Petch",
        +      "Changa",
        +      "Changa One",
        +      "Chango",
        +      "Charis SIL",
        +      "Charm",
        +      "Charmonman",
        +      "Chathura",
        +      "Chau Philomene One",
        +      "Chela One",
        +      "Chelsea Market",
        +      "Chenla",
        +      "Cherish",
        +      "Cherry Bomb One",
        +      "Cherry Cream Soda",
        +      "Cherry Swash",
        +      "Chewy",
        +      "Chicle",
        +      "Chilanka",
        +      "Chiron GoRound TC",
        +      "Chiron Hei HK",
        +      "Chiron Sung HK",
        +      "Chivo",
        +      "Chivo Mono",
        +      "Chocolate Classical Sans",
        +      "Chokokutai",
        +      "Chonburi",
        +      "Cinzel",
        +      "Cinzel Decorative",
        +      "Clicker Script",
        +      "Climate Crisis",
        +      "Coda",
        +      "Codystar",
        +      "Coiny",
        +      "Combo",
        +      "Comfortaa",
        +      "Comforter",
        +      "Comforter Brush",
        +      "Comic Neue",
        +      "Comic Relief",
        +      "Coming Soon",
        +      "Comme",
        +      "Commissioner",
        +      "Concert One",
        +      "Condiment",
        +      "Content",
        +      "Contrail One",
        +      "Convergence",
        +      "Cookie",
        +      "Copse",
        +      "Coral Pixels",
        +      "Corben",
        +      "Corinthia",
        +      "Cormorant",
        +      "Cormorant Garamond",
        +      "Cormorant Infant",
        +      "Cormorant SC",
        +      "Cormorant Unicase",
        +      "Cormorant Upright",
        +      "Cossette Texte",
        +      "Cossette Titre",
        +      "Courgette",
        +      "Courier Prime",
        +      "Cousine",
        +      "Coustard",
        +      "Covered By Your Grace",
        +      "Crafty Girls",
        +      "Creepster",
        +      "Crete Round",
        +      "Crimson Pro",
        +      "Crimson Text",
        +      "Croissant One",
        +      "Crushed",
        +      "Cuprum",
        +      "Cute Font",
        +      "Cutive",
        +      "Cutive Mono",
        +      "DM Mono",
        +      "DM Sans",
        +      "DM Serif Display",
        +      "DM Serif Text",
        +      "Dai Banna SIL",
        +      "Damion",
        +      "Dancing Script",
        +      "Danfo",
        +      "Dangrek",
        +      "Darker Grotesque",
        +      "Darumadrop One",
        +      "Datatype",
        +      "David Libre",
        +      "Dawning of a New Day",
        +      "Days One",
        +      "Dekko",
        +      "Dela Gothic One",
        +      "Delicious Handrawn",
        +      "Delius",
        +      "Delius Swash Caps",
        +      "Delius Unicase",
        +      "Della Respira",
        +      "Denk One",
        +      "Devonshire",
        +      "Dhurjati",
        +      "Didact Gothic",
        +      "Diphylleia",
        +      "Diplomata",
        +      "Diplomata SC",
        +      "Do Hyeon",
        +      "Dokdo",
        +      "Domine",
        +      "Donegal One",
        +      "Dongle",
        +      "Doppio One",
        +      "Dorsa",
        +      "Dosis",
        +      "DotGothic16",
        +      "Doto",
        +      "Dr Sugiyama",
        +      "Duru Sans",
        +      "DynaPuff",
        +      "Dynalight",
        +      "EB Garamond",
        +      "Eagle Lake",
        +      "East Sea Dokdo",
        +      "Eater",
        +      "Economica",
        +      "Eczar",
        +      "Edu AU VIC WA NT Arrows",
        +      "Edu AU VIC WA NT Dots",
        +      "Edu AU VIC WA NT Guides",
        +      "Edu AU VIC WA NT Hand",
        +      "Edu AU VIC WA NT Pre",
        +      "Edu NSW ACT Cursive",
        +      "Edu NSW ACT Foundation",
        +      "Edu NSW ACT Hand Pre",
        +      "Edu QLD Beginner",
        +      "Edu QLD Hand",
        +      "Edu SA Beginner",
        +      "Edu SA Hand",
        +      "Edu TAS Beginner",
        +      "Edu VIC WA NT Beginner",
        +      "Edu VIC WA NT Hand",
        +      "Edu VIC WA NT Hand Pre",
        +      "El Messiri",
        +      "Electrolize",
        +      "Elms Sans",
        +      "Elsie",
        +      "Elsie Swash Caps",
        +      "Emblema One",
        +      "Emilys Candy",
        +      "Encode Sans",
        +      "Encode Sans Condensed",
        +      "Encode Sans Expanded",
        +      "Encode Sans SC",
        +      "Encode Sans Semi Condensed",
        +      "Encode Sans Semi Expanded",
        +      "Engagement",
        +      "Englebert",
        +      "Enriqueta",
        +      "Ephesis",
        +      "Epilogue",
        +      "Epunda Sans",
        +      "Epunda Slab",
        +      "Erica One",
        +      "Esteban",
        +      "Estedad",
        +      "Estonia",
        +      "Euphoria Script",
        +      "Ewert",
        +      "Exile",
        +      "Exo",
        +      "Exo 2",
        +      "Expletus Sans",
        +      "Explora",
        +      "Faculty Glyphic",
        +      "Fahkwang",
        +      "Familjen Grotesk",
        +      "Fanwood Text",
        +      "Farro",
        +      "Farsan",
        +      "Fascinate",
        +      "Fascinate Inline",
        +      "Faster One",
        +      "Fasthand",
        +      "Fauna One",
        +      "Faustina",
        +      "Federant",
        +      "Federo",
        +      "Felipa",
        +      "Fenix",
        +      "Festive",
        +      "Figtree",
        +      "Finger Paint",
        +      "Finlandica Headline",
        +      "Finlandica Text",
        +      "Fira Code",
        +      "Fira Mono",
        +      "Fira Sans",
        +      "Fira Sans Condensed",
        +      "Fira Sans Extra Condensed",
        +      "Fjalla One",
        +      "Fjord One",
        +      "Flamenco",
        +      "Flavors",
        +      "Fleur De Leah",
        +      "Flow Block",
        +      "Flow Circular",
        +      "Flow Rounded",
        +      "Foldit",
        +      "Fondamento",
        +      "Fontdiner Swanky",
        +      "Forum",
        +      "Fragment Mono",
        +      "Francois One",
        +      "Frank Ruhl Libre",
        +      "Fraunces",
        +      "Freckle Face",
        +      "Fredericka the Great",
        +      "Fredoka",
        +      "Freehand",
        +      "Freeman",
        +      "Fresca",
        +      "Frijole",
        +      "Fruktur",
        +      "Fugaz One",
        +      "Fuggles",
        +      "Funnel Display",
        +      "Funnel Sans",
        +      "Fustat",
        +      "Fuzzy Bubbles",
        +      "GFS Didot",
        +      "GFS Neohellenic",
        +      "Ga Maamli",
        +      "Gabarito",
        +      "Gabriela",
        +      "Gaegu",
        +      "Gafata",
        +      "Gajraj One",
        +      "Galada",
        +      "Galdeano",
        +      "Galindo",
        +      "Gamja Flower",
        +      "Gantari",
        +      "Gasoek One",
        +      "Gayathri",
        +      "Geist",
        +      "Geist Mono",
        +      "Geist Pixel",
        +      "Gelasio",
        +      "Gemunu Libre",
        +      "Genos",
        +      "Gentium Book Plus",
        +      "Gentium Plus",
        +      "Geo",
        +      "Geologica",
        +      "Geom",
        +      "Geomini",
        +      "Georama",
        +      "Geostar",
        +      "Geostar Fill",
        +      "Germania One",
        +      "Gideon Roman",
        +      "Gidole",
        +      "Gidugu",
        +      "Gilda Display",
        +      "Girassol",
        +      "Give You Glory",
        +      "Glass Antiqua",
        +      "Glegoo",
        +      "Gloock",
        +      "Gloria Hallelujah",
        +      "Glory",
        +      "Gluten",
        +      "Goblin One",
        +      "Gochi Hand",
        +      "Goldman",
        +      "Golos Text",
        +      "Google Sans",
        +      "Google Sans Code",
        +      "Google Sans Flex",
        +      "Gorditas",
        +      "Gothic A1",
        +      "Gotu",
        +      "Goudy Bookletter 1911",
        +      "Gowun Batang",
        +      "Gowun Dodum",
        +      "Graduate",
        +      "Grand Hotel",
        +      "Grandiflora One",
        +      "Grandstander",
        +      "Grape Nuts",
        +      "Gravitas One",
        +      "Great Vibes",
        +      "Grechen Fuemen",
        +      "Grenze",
        +      "Grenze Gotisch",
        +      "Grey Qo",
        +      "Griffy",
        +      "Gruppo",
        +      "Gudea",
        +      "Gugi",
        +      "Gulzar",
        +      "Gupter",
        +      "Gurajada",
        +      "Gveret Levin",
        +      "Gwendolyn",
        +      "Habibi",
        +      "Hachi Maru Pop",
        +      "Hahmlet",
        +      "Halant",
        +      "Hammersmith One",
        +      "Hanalei",
        +      "Hanalei Fill",
        +      "Handjet",
        +      "Handlee",
        +      "Hanken Grotesk",
        +      "Hanuman",
        +      "Happy Monkey",
        +      "Harmattan",
        +      "Headland One",
        +      "Hedvig Letters Sans",
        +      "Hedvig Letters Serif",
        +      "Heebo",
        +      "Henny Penny",
        +      "Hepta Slab",
        +      "Herr Von Muellerhoff",
        +      "Hi Melody",
        +      "Hibur Mono",
        +      "Hina Mincho",
        +      "Hind",
        +      "Hind Guntur",
        +      "Hind Madurai",
        +      "Hind Mysuru",
        +      "Hind Siliguri",
        +      "Hind Vadodara",
        +      "Holtwood One SC",
        +      "Homemade Apple",
        +      "Homenaje",
        +      "Honk",
        +      "Host Grotesk",
        +      "Hubballi",
        +      "Hubot Sans",
        +      "Huninn",
        +      "Hurricane",
        +      "IBM Plex Mono",
        +      "IBM Plex Sans",
        +      "IBM Plex Sans Arabic",
        +      "IBM Plex Sans Condensed",
        +      "IBM Plex Sans Devanagari",
        +      "IBM Plex Sans Hebrew",
        +      "IBM Plex Sans JP",
        +      "IBM Plex Sans KR",
        +      "IBM Plex Sans Thai",
        +      "IBM Plex Sans Thai Looped",
        +      "IBM Plex Serif",
        +      "IM Fell DW Pica",
        +      "IM Fell DW Pica SC",
        +      "IM Fell Double Pica",
        +      "IM Fell Double Pica SC",
        +      "IM Fell English",
        +      "IM Fell English SC",
        +      "IM Fell French Canon",
        +      "IM Fell French Canon SC",
        +      "IM Fell Great Primer",
        +      "IM Fell Great Primer SC",
        +      "Iansui",
        +      "Ibarra Real Nova",
        +      "Iceberg",
        +      "Iceland",
        +      "Idiqlat",
        +      "Imbue",
        +      "Imperial Script",
        +      "Imprima",
        +      "Inclusive Sans",
        +      "Inconsolata",
        +      "Inder",
        +      "Indie Flower",
        +      "Ingrid Darling",
        +      "Inika",
        +      "Inknut Antiqua",
        +      "Inria Sans",
        +      "Inria Serif",
        +      "Inspiration",
        +      "Instrument Sans",
        +      "Instrument Serif",
        +      "Intel One Mono",
        +      "Inter",
        +      "Inter Tight",
        +      "Iosevka Charon",
        +      "Iosevka Charon Mono",
        +      "Irish Grover",
        +      "Island Moments",
        +      "Istok Web",
        +      "Italiana",
        +      "Italianno",
        +      "Itim",
        +      "Jacquard 12",
        +      "Jacquard 12 Charted",
        +      "Jacquard 24",
        +      "Jacquard 24 Charted",
        +      "Jacquarda Bastarda 9",
        +      "Jacquarda Bastarda 9 Charted",
        +      "Jacques Francois",
        +      "Jacques Francois Shadow",
        +      "Jaini",
        +      "Jaini Purva",
        +      "Jaldi",
        +      "Jaro",
        +      "Jersey 10",
        +      "Jersey 10 Charted",
        +      "Jersey 15",
        +      "Jersey 15 Charted",
        +      "Jersey 20",
        +      "Jersey 20 Charted",
        +      "Jersey 25",
        +      "Jersey 25 Charted",
        +      "JetBrains Mono",
        +      "Jim Nightshade",
        +      "Joan",
        +      "Jockey One",
        +      "Jolly Lodger",
        +      "Jomhuria",
        +      "Jomolhari",
        +      "Josefin Sans",
        +      "Josefin Slab",
        +      "Jost",
        +      "Joti One",
        +      "Jua",
        +      "Judson",
        +      "Julee",
        +      "Julius Sans One",
        +      "Junge",
        +      "Jura",
        +      "Just Another Hand",
        +      "Just Me Again Down Here",
        +      "K2D",
        +      "Kablammo",
        +      "Kadwa",
        +      "Kaisei Decol",
        +      "Kaisei HarunoUmi",
        +      "Kaisei Opti",
        +      "Kaisei Tokumin",
        +      "Kalam",
        +      "Kalnia",
        +      "Kalnia Glaze",
        +      "Kameron",
        +      "Kanchenjunga",
        +      "Kanit",
        +      "Kantumruy Pro",
        +      "Kapakana",
        +      "Karantina",
        +      "Karla",
        +      "Karla Tamil Inclined",
        +      "Karla Tamil Upright",
        +      "Karma",
        +      "Katibeh",
        +      "Kaushan Script",
        +      "Kavivanar",
        +      "Kavoon",
        +      "Kay Pho Du",
        +      "Kdam Thmor Pro",
        +      "Keania One",
        +      "Kedebideri",
        +      "Kelly Slab",
        +      "Kenia",
        +      "Khand",
        +      "Khmer",
        +      "Khula",
        +      "Kings",
        +      "Kirang Haerang",
        +      "Kite One",
        +      "Kiwi Maru",
        +      "Klee One",
        +      "Knewave",
        +      "KoHo",
        +      "Kodchasan",
        +      "Kode Mono",
        +      "Koh Santepheap",
        +      "Kolker Brush",
        +      "Konkhmer Sleokchher",
        +      "Kosugi",
        +      "Kosugi Maru",
        +      "Kotta One",
        +      "Koulen",
        +      "Kranky",
        +      "Kreon",
        +      "Kristi",
        +      "Krona One",
        +      "Krub",
        +      "Kufam",
        +      "Kulim Park",
        +      "Kumar One",
        +      "Kumar One Outline",
        +      "Kumbh Sans",
        +      "Kurale",
        +      "LINE Seed JP",
        +      "LXGW Marker Gothic",
        +      "LXGW WenKai Mono TC",
        +      "LXGW WenKai TC",
        +      "La Belle Aurore",
        +      "Labrada",
        +      "Lacquer",
        +      "Laila",
        +      "Lakki Reddy",
        +      "Lalezar",
        +      "Lancelot",
        +      "Langar",
        +      "Lateef",
        +      "Lato",
        +      "Lavishly Yours",
        +      "League Gothic",
        +      "League Script",
        +      "League Spartan",
        +      "Leckerli One",
        +      "Ledger",
        +      "Lekton",
        +      "Lemon",
        +      "Lemonada",
        +      "Lexend",
        +      "Lexend Deca",
        +      "Lexend Exa",
        +      "Lexend Giga",
        +      "Lexend Mega",
        +      "Lexend Peta",
        +      "Lexend Tera",
        +      "Lexend Zetta",
        +      "Libertinus Keyboard",
        +      "Libertinus Math",
        +      "Libertinus Mono",
        +      "Libertinus Sans",
        +      "Libertinus Serif",
        +      "Libertinus Serif Display",
        +      "Libre Barcode 128",
        +      "Libre Barcode 128 Text",
        +      "Libre Barcode 39",
        +      "Libre Barcode 39 Extended",
        +      "Libre Barcode 39 Extended Text",
        +      "Libre Barcode 39 Text",
        +      "Libre Barcode EAN13 Text",
        +      "Libre Baskerville",
        +      "Libre Bodoni",
        +      "Libre Caslon Display",
        +      "Libre Caslon Text",
        +      "Libre Franklin",
        +      "Licorice",
        +      "Life Savers",
        +      "Lilex",
        +      "Lilita One",
        +      "Lily Script One",
        +      "Limelight",
        +      "Linden Hill",
        +      "Linefont",
        +      "Lisu Bosa",
        +      "Liter",
        +      "Literata",
        +      "Liu Jian Mao Cao",
        +      "Livvic",
        +      "Lobster",
        +      "Lobster Two",
        +      "Londrina Outline",
        +      "Londrina Shadow",
        +      "Londrina Sketch",
        +      "Londrina Solid",
        +      "Long Cang",
        +      "Lora",
        +      "Love Light",
        +      "Love Ya Like A Sister",
        +      "Loved by the King",
        +      "Lovers Quarrel",
        +      "Luckiest Guy",
        +      "Lugrasimo",
        +      "Lumanosimo",
        +      "Lunasima",
        +      "Lusitana",
        +      "Lustria",
        +      "Luxurious Roman",
        +      "Luxurious Script",
        +      "M PLUS 1",
        +      "M PLUS 1 Code",
        +      "M PLUS 1p",
        +      "M PLUS 2",
        +      "M PLUS Code Latin",
        +      "M PLUS Rounded 1c",
        +      "M PLUS U",
        +      "Ma Shan Zheng",
        +      "Macondo",
        +      "Macondo Swash Caps",
        +      "Mada",
        +      "Madimi One",
        +      "Magra",
        +      "Maiden Orange",
        +      "Maitree",
        +      "Major Mono Display",
        +      "Mako",
        +      "Mali",
        +      "Mallanna",
        +      "Maname",
        +      "Mandali",
        +      "Manjari",
        +      "Manrope",
        +      "Mansalva",
        +      "Manuale",
        +      "Manufacturing Consent",
        +      "Marcellus",
        +      "Marcellus SC",
        +      "Marck Script",
        +      "Margarine",
        +      "Marhey",
        +      "Markazi Text",
        +      "Marko One",
        +      "Marmelad",
        +      "Martel",
        +      "Martel Sans",
        +      "Martian Mono",
        +      "Marvel",
        +      "Matangi",
        +      "Mate",
        +      "Mate SC",
        +      "Matemasie",
        +      "Material Icons",
        +      "Material Icons Outlined",
        +      "Material Icons Round",
        +      "Material Icons Sharp",
        +      "Material Icons Two Tone",
        +      "Material Symbols",
        +      "Material Symbols Outlined",
        +      "Material Symbols Rounded",
        +      "Material Symbols Sharp",
        +      "Maven Pro",
        +      "McLaren",
        +      "Mea Culpa",
        +      "Meddon",
        +      "MedievalSharp",
        +      "Medula One",
        +      "Meera Inimai",
        +      "Megrim",
        +      "Meie Script",
        +      "Menbere",
        +      "Meow Script",
        +      "Merienda",
        +      "Merriweather",
        +      "Merriweather Sans",
        +      "Metal",
        +      "Metal Mania",
        +      "Metamorphous",
        +      "Metrophobic",
        +      "Michroma",
        +      "Micro 5",
        +      "Micro 5 Charted",
        +      "Milonga",
        +      "Miltonian",
        +      "Miltonian Tattoo",
        +      "Mina",
        +      "Mingzat",
        +      "Miniver",
        +      "Miranda Sans",
        +      "Miriam Libre",
        +      "Mirza",
        +      "Miss Fajardose",
        +      "Mitr",
        +      "Mochiy Pop One",
        +      "Mochiy Pop P One",
        +      "Modak",
        +      "Modern Antiqua",
        +      "Moderustic",
        +      "Mogra",
        +      "Mohave",
        +      "Moirai One",
        +      "Molengo",
        +      "Molle",
        +      "Momo Signature",
        +      "Momo Trust Display",
        +      "Momo Trust Sans",
        +      "Mona Sans",
        +      "Monda",
        +      "Monofett",
        +      "Monomakh",
        +      "Monomaniac One",
        +      "Monoton",
        +      "Monsieur La Doulaise",
        +      "Montaga",
        +      "Montagu Slab",
        +      "MonteCarlo",
        +      "Montenegrin Gothic One",
        +      "Montez",
        +      "Montserrat",
        +      "Montserrat Alternates",
        +      "Montserrat Underline",
        +      "Moo Lah Lah",
        +      "Mooli",
        +      "Moon Dance",
        +      "Moul",
        +      "Moulpali",
        +      "Mountains of Christmas",
        +      "Mouse Memoirs",
        +      "Mozilla Headline",
        +      "Mozilla Text",
        +      "Mr Bedfort",
        +      "Mr Dafoe",
        +      "Mr De Haviland",
        +      "Mrs Saint Delafield",
        +      "Mrs Sheppards",
        +      "Ms Madi",
        +      "Mukta",
        +      "Mukta Mahee",
        +      "Mukta Malar",
        +      "Mukta Vaani",
        +      "Mulish",
        +      "Murecho",
        +      "MuseoModerno",
        +      "My Soul",
        +      "Mynerve",
        +      "Mystery Quest",
        +      "NTR",
        +      "Nabla",
        +      "Namdhinggo",
        +      "Nanum Brush Script",
        +      "Nanum Gothic",
        +      "Nanum Gothic Coding",
        +      "Nanum Myeongjo",
        +      "Nanum Pen Script",
        +      "Narnoor",
        +      "Nata Sans",
        +      "National Park",
        +      "Neonderthaw",
        +      "Nerko One",
        +      "Neucha",
        +      "Neuton",
        +      "New Amsterdam",
        +      "New Rocker",
        +      "New Tegomin",
        +      "News Cycle",
        +      "Newsreader",
        +      "Niconne",
        +      "Niramit",
        +      "Nixie One",
        +      "Nobile",
        +      "Nokora",
        +      "Norican",
        +      "Nosifer",
        +      "Notable",
        +      "Nothing You Could Do",
        +      "Noticia Text",
        +      "Noto Color Emoji",
        +      "Noto Emoji",
        +      "Noto Kufi Arabic",
        +      "Noto Music",
        +      "Noto Naskh Arabic",
        +      "Noto Nastaliq Urdu",
        +      "Noto Rashi Hebrew",
        +      "Noto Sans",
        +      "Noto Sans Adlam",
        +      "Noto Sans Adlam Unjoined",
        +      "Noto Sans Anatolian Hieroglyphs",
        +      "Noto Sans Arabic",
        +      "Noto Sans Armenian",
        +      "Noto Sans Avestan",
        +      "Noto Sans Balinese",
        +      "Noto Sans Bamum",
        +      "Noto Sans Bassa Vah",
        +      "Noto Sans Batak",
        +      "Noto Sans Bengali",
        +      "Noto Sans Bhaiksuki",
        +      "Noto Sans Brahmi",
        +      "Noto Sans Buginese",
        +      "Noto Sans Buhid",
        +      "Noto Sans Canadian Aboriginal",
        +      "Noto Sans Carian",
        +      "Noto Sans Caucasian Albanian",
        +      "Noto Sans Chakma",
        +      "Noto Sans Cham",
        +      "Noto Sans Cherokee",
        +      "Noto Sans Chorasmian",
        +      "Noto Sans Coptic",
        +      "Noto Sans Cuneiform",
        +      "Noto Sans Cypriot",
        +      "Noto Sans Cypro Minoan",
        +      "Noto Sans Deseret",
        +      "Noto Sans Devanagari",
        +      "Noto Sans Display",
        +      "Noto Sans Duployan",
        +      "Noto Sans Egyptian Hieroglyphs",
        +      "Noto Sans Elbasan",
        +      "Noto Sans Elymaic",
        +      "Noto Sans Ethiopic",
        +      "Noto Sans Georgian",
        +      "Noto Sans Glagolitic",
        +      "Noto Sans Gothic",
        +      "Noto Sans Grantha",
        +      "Noto Sans Gujarati",
        +      "Noto Sans Gunjala Gondi",
        +      "Noto Sans Gurmukhi",
        +      "Noto Sans HK",
        +      "Noto Sans Hanifi Rohingya",
        +      "Noto Sans Hanunoo",
        +      "Noto Sans Hatran",
        +      "Noto Sans Hebrew",
        +      "Noto Sans Imperial Aramaic",
        +      "Noto Sans Indic Siyaq Numbers",
        +      "Noto Sans Inscriptional Pahlavi",
        +      "Noto Sans Inscriptional Parthian",
        +      "Noto Sans JP",
        +      "Noto Sans Javanese",
        +      "Noto Sans KR",
        +      "Noto Sans Kaithi",
        +      "Noto Sans Kannada",
        +      "Noto Sans Kawi",
        +      "Noto Sans Kayah Li",
        +      "Noto Sans Kharoshthi",
        +      "Noto Sans Khmer",
        +      "Noto Sans Khojki",
        +      "Noto Sans Khudawadi",
        +      "Noto Sans Lao",
        +      "Noto Sans Lao Looped",
        +      "Noto Sans Lepcha",
        +      "Noto Sans Limbu",
        +      "Noto Sans Linear A",
        +      "Noto Sans Linear B",
        +      "Noto Sans Lisu",
        +      "Noto Sans Lycian",
        +      "Noto Sans Lydian",
        +      "Noto Sans Mahajani",
        +      "Noto Sans Malayalam",
        +      "Noto Sans Mandaic",
        +      "Noto Sans Manichaean",
        +      "Noto Sans Marchen",
        +      "Noto Sans Masaram Gondi",
        +      "Noto Sans Math",
        +      "Noto Sans Mayan Numerals",
        +      "Noto Sans Medefaidrin",
        +      "Noto Sans Meetei Mayek",
        +      "Noto Sans Mende Kikakui",
        +      "Noto Sans Meroitic",
        +      "Noto Sans Miao",
        +      "Noto Sans Modi",
        +      "Noto Sans Mongolian",
        +      "Noto Sans Mono",
        +      "Noto Sans Mro",
        +      "Noto Sans Multani",
        +      "Noto Sans Myanmar",
        +      "Noto Sans NKo",
        +      "Noto Sans NKo Unjoined",
        +      "Noto Sans Nabataean",
        +      "Noto Sans Nag Mundari",
        +      "Noto Sans Nandinagari",
        +      "Noto Sans New Tai Lue",
        +      "Noto Sans Newa",
        +      "Noto Sans Nushu",
        +      "Noto Sans Ogham",
        +      "Noto Sans Ol Chiki",
        +      "Noto Sans Old Hungarian",
        +      "Noto Sans Old Italic",
        +      "Noto Sans Old North Arabian",
        +      "Noto Sans Old Permic",
        +      "Noto Sans Old Persian",
        +      "Noto Sans Old Sogdian",
        +      "Noto Sans Old South Arabian",
        +      "Noto Sans Old Turkic",
        +      "Noto Sans Oriya",
        +      "Noto Sans Osage",
        +      "Noto Sans Osmanya",
        +      "Noto Sans Pahawh Hmong",
        +      "Noto Sans Palmyrene",
        +      "Noto Sans Pau Cin Hau",
        +      "Noto Sans PhagsPa",
        +      "Noto Sans Phoenician",
        +      "Noto Sans Psalter Pahlavi",
        +      "Noto Sans Rejang",
        +      "Noto Sans Runic",
        +      "Noto Sans SC",
        +      "Noto Sans Samaritan",
        +      "Noto Sans Saurashtra",
        +      "Noto Sans Sharada",
        +      "Noto Sans Shavian",
        +      "Noto Sans Siddham",
        +      "Noto Sans SignWriting",
        +      "Noto Sans Sinhala",
        +      "Noto Sans Sogdian",
        +      "Noto Sans Sora Sompeng",
        +      "Noto Sans Soyombo",
        +      "Noto Sans Sundanese",
        +      "Noto Sans Sunuwar",
        +      "Noto Sans Syloti Nagri",
        +      "Noto Sans Symbols",
        +      "Noto Sans Symbols 2",
        +      "Noto Sans Syriac",
        +      "Noto Sans Syriac Eastern",
        +      "Noto Sans Syriac Western",
        +      "Noto Sans TC",
        +      "Noto Sans Tagalog",
        +      "Noto Sans Tagbanwa",
        +      "Noto Sans Tai Le",
        +      "Noto Sans Tai Tham",
        +      "Noto Sans Tai Viet",
        +      "Noto Sans Takri",
        +      "Noto Sans Tamil",
        +      "Noto Sans Tamil Supplement",
        +      "Noto Sans Tangsa",
        +      "Noto Sans Telugu",
        +      "Noto Sans Thaana",
        +      "Noto Sans Thai",
        +      "Noto Sans Thai Looped",
        +      "Noto Sans Tifinagh",
        +      "Noto Sans Tirhuta",
        +      "Noto Sans Ugaritic",
        +      "Noto Sans Vai",
        +      "Noto Sans Vithkuqi",
        +      "Noto Sans Wancho",
        +      "Noto Sans Warang Citi",
        +      "Noto Sans Yi",
        +      "Noto Sans Zanabazar Square",
        +      "Noto Serif",
        +      "Noto Serif Ahom",
        +      "Noto Serif Armenian",
        +      "Noto Serif Balinese",
        +      "Noto Serif Bengali",
        +      "Noto Serif Devanagari",
        +      "Noto Serif Display",
        +      "Noto Serif Dives Akuru",
        +      "Noto Serif Dogra",
        +      "Noto Serif Ethiopic",
        +      "Noto Serif Georgian",
        +      "Noto Serif Grantha",
        +      "Noto Serif Gujarati",
        +      "Noto Serif Gurmukhi",
        +      "Noto Serif HK",
        +      "Noto Serif Hebrew",
        +      "Noto Serif Hentaigana",
        +      "Noto Serif JP",
        +      "Noto Serif KR",
        +      "Noto Serif Kannada",
        +      "Noto Serif Khitan Small Script",
        +      "Noto Serif Khmer",
        +      "Noto Serif Khojki",
        +      "Noto Serif Lao",
        +      "Noto Serif Makasar",
        +      "Noto Serif Malayalam",
        +      "Noto Serif Myanmar",
        +      "Noto Serif NP Hmong",
        +      "Noto Serif Old Uyghur",
        +      "Noto Serif Oriya",
        +      "Noto Serif Ottoman Siyaq",
        +      "Noto Serif SC",
        +      "Noto Serif Sinhala",
        +      "Noto Serif TC",
        +      "Noto Serif Tamil",
        +      "Noto Serif Tangut",
        +      "Noto Serif Telugu",
        +      "Noto Serif Thai",
        +      "Noto Serif Tibetan",
        +      "Noto Serif Todhri",
        +      "Noto Serif Toto",
        +      "Noto Serif Vithkuqi",
        +      "Noto Serif Yezidi",
        +      "Noto Traditional Nushu",
        +      "Noto Znamenny Musical Notation",
        +      "Nova Cut",
        +      "Nova Flat",
        +      "Nova Mono",
        +      "Nova Oval",
        +      "Nova Round",
        +      "Nova Script",
        +      "Nova Slim",
        +      "Nova Square",
        +      "Numans",
        +      "Nunito",
        +      "Nunito Sans",
        +      "Nuosu SIL",
        +      "Odibee Sans",
        +      "Odor Mean Chey",
        +      "Offside",
        +      "Oi",
        +      "Ojuju",
        +      "Old Standard TT",
        +      "Oldenburg",
        +      "Ole",
        +      "Oleo Script",
        +      "Oleo Script Swash Caps",
        +      "Onest",
        +      "Oooh Baby",
        +      "Open Sans",
        +      "Oranienbaum",
        +      "Orbit",
        +      "Orbitron",
        +      "Oregano",
        +      "Orelega One",
        +      "Orienta",
        +      "Original Surfer",
        +      "Oswald",
        +      "Outfit",
        +      "Over the Rainbow",
        +      "Overlock",
        +      "Overlock SC",
        +      "Overpass",
        +      "Overpass Mono",
        +      "Ovo",
        +      "Oxanium",
        +      "Oxygen",
        +      "Oxygen Mono",
        +      "PT Mono",
        +      "PT Sans",
        +      "PT Sans Caption",
        +      "PT Sans Narrow",
        +      "PT Serif",
        +      "PT Serif Caption",
        +      "Pacifico",
        +      "Padauk",
        +      "Padyakke Expanded One",
        +      "Palanquin",
        +      "Palanquin Dark",
        +      "Palette Mosaic",
        +      "Pangolin",
        +      "Paprika",
        +      "Parastoo",
        +      "Parisienne",
        +      "Parkinsans",
        +      "Passero One",
        +      "Passion One",
        +      "Passions Conflict",
        +      "Pathway Extreme",
        +      "Pathway Gothic One",
        +      "Patrick Hand",
        +      "Patrick Hand SC",
        +      "Pattaya",
        +      "Patua One",
        +      "Pavanam",
        +      "Paytone One",
        +      "Peddana",
        +      "Peralta",
        +      "Permanent Marker",
        +      "Petemoss",
        +      "Petit Formal Script",
        +      "Petrona",
        +      "Phetsarath",
        +      "Philosopher",
        +      "Phudu",
        +      "Piazzolla",
        +      "Piedra",
        +      "Pinyon Script",
        +      "Pirata One",
        +      "Pixelify Sans",
        +      "Plaster",
        +      "Platypi",
        +      "Play",
        +      "Playball",
        +      "Playfair",
        +      "Playfair Display",
        +      "Playfair Display SC",
        +      "Playpen Sans",
        +      "Playpen Sans Arabic",
        +      "Playpen Sans Deva",
        +      "Playpen Sans Hebrew",
        +      "Playpen Sans Thai",
        +      "Playwrite AR",
        +      "Playwrite AR Guides",
        +      "Playwrite AT",
        +      "Playwrite AT Guides",
        +      "Playwrite AU NSW",
        +      "Playwrite AU NSW Guides",
        +      "Playwrite AU QLD",
        +      "Playwrite AU QLD Guides",
        +      "Playwrite AU SA",
        +      "Playwrite AU SA Guides",
        +      "Playwrite AU TAS",
        +      "Playwrite AU TAS Guides",
        +      "Playwrite AU VIC",
        +      "Playwrite AU VIC Guides",
        +      "Playwrite BE VLG",
        +      "Playwrite BE VLG Guides",
        +      "Playwrite BE WAL",
        +      "Playwrite BE WAL Guides",
        +      "Playwrite BR",
        +      "Playwrite BR Guides",
        +      "Playwrite CA",
        +      "Playwrite CA Guides",
        +      "Playwrite CL",
        +      "Playwrite CL Guides",
        +      "Playwrite CO",
        +      "Playwrite CO Guides",
        +      "Playwrite CU",
        +      "Playwrite CU Guides",
        +      "Playwrite CZ",
        +      "Playwrite CZ Guides",
        +      "Playwrite DE Grund",
        +      "Playwrite DE Grund Guides",
        +      "Playwrite DE LA",
        +      "Playwrite DE LA Guides",
        +      "Playwrite DE SAS",
        +      "Playwrite DE SAS Guides",
        +      "Playwrite DE VA",
        +      "Playwrite DE VA Guides",
        +      "Playwrite DK Loopet",
        +      "Playwrite DK Loopet Guides",
        +      "Playwrite DK Uloopet",
        +      "Playwrite DK Uloopet Guides",
        +      "Playwrite ES",
        +      "Playwrite ES Deco",
        +      "Playwrite ES Deco Guides",
        +      "Playwrite ES Guides",
        +      "Playwrite FR Moderne",
        +      "Playwrite FR Moderne Guides",
        +      "Playwrite FR Trad",
        +      "Playwrite FR Trad Guides",
        +      "Playwrite GB J",
        +      "Playwrite GB J Guides",
        +      "Playwrite GB S",
        +      "Playwrite GB S Guides",
        +      "Playwrite HR",
        +      "Playwrite HR Guides",
        +      "Playwrite HR Lijeva",
        +      "Playwrite HR Lijeva Guides",
        +      "Playwrite HU",
        +      "Playwrite HU Guides",
        +      "Playwrite ID",
        +      "Playwrite ID Guides",
        +      "Playwrite IE",
        +      "Playwrite IE Guides",
        +      "Playwrite IN",
        +      "Playwrite IN Guides",
        +      "Playwrite IS",
        +      "Playwrite IS Guides",
        +      "Playwrite IT Moderna",
        +      "Playwrite IT Moderna Guides",
        +      "Playwrite IT Trad",
        +      "Playwrite IT Trad Guides",
        +      "Playwrite MX",
        +      "Playwrite MX Guides",
        +      "Playwrite NG Modern",
        +      "Playwrite NG Modern Guides",
        +      "Playwrite NL",
        +      "Playwrite NL Guides",
        +      "Playwrite NO",
        +      "Playwrite NO Guides",
        +      "Playwrite NZ",
        +      "Playwrite NZ Basic",
        +      "Playwrite NZ Basic Guides",
        +      "Playwrite NZ Guides",
        +      "Playwrite PE",
        +      "Playwrite PE Guides",
        +      "Playwrite PL",
        +      "Playwrite PL Guides",
        +      "Playwrite PT",
        +      "Playwrite PT Guides",
        +      "Playwrite RO",
        +      "Playwrite RO Guides",
        +      "Playwrite SK",
        +      "Playwrite SK Guides",
        +      "Playwrite TZ",
        +      "Playwrite TZ Guides",
        +      "Playwrite US Modern",
        +      "Playwrite US Modern Guides",
        +      "Playwrite US Trad",
        +      "Playwrite US Trad Guides",
        +      "Playwrite VN",
        +      "Playwrite VN Guides",
        +      "Playwrite ZA",
        +      "Playwrite ZA Guides",
        +      "Pliant",
        +      "Plus Jakarta Sans",
        +      "Pochaevsk",
        +      "Podkova",
        +      "Poetsen One",
        +      "Poiret One",
        +      "Poller One",
        +      "Poltawski Nowy",
        +      "Poly",
        +      "Pompiere",
        +      "Ponnala",
        +      "Ponomar",
        +      "Pontano Sans",
        +      "Poor Story",
        +      "Poppins",
        +      "Port Lligat Sans",
        +      "Port Lligat Slab",
        +      "Potta One",
        +      "Pragati Narrow",
        +      "Praise",
        +      "Prata",
        +      "Preahvihear",
        +      "Press Start 2P",
        +      "Pridi",
        +      "Princess Sofia",
        +      "Prociono",
        +      "Prompt",
        +      "Prosto One",
        +      "Protest Guerrilla",
        +      "Protest Revolution",
        +      "Protest Riot",
        +      "Protest Strike",
        +      "Proza Libre",
        +      "Public Sans",
        +      "Puppies Play",
        +      "Puritan",
        +      "Purple Purse",
        +      "Qahiri",
        +      "Quando",
        +      "Quantico",
        +      "Quattrocento",
        +      "Quattrocento Sans",
        +      "Questrial",
        +      "Quicksand",
        +      "Quintessential",
        +      "Qwigley",
        +      "Qwitcher Grypen",
        +      "REM",
        +      "Racing Sans One",
        +      "Radio Canada",
        +      "Radio Canada Big",
        +      "Radley",
        +      "Rajdhani",
        +      "Rakkas",
        +      "Raleway",
        +      "Raleway Dots",
        +      "Ramabhadra",
        +      "Ramaraja",
        +      "Rambla",
        +      "Rammetto One",
        +      "Rampart One",
        +      "Ramsina",
        +      "Ranchers",
        +      "Rancho",
        +      "Ranga",
        +      "Rasa",
        +      "Rationale",
        +      "Ravi Prakash",
        +      "Readex Pro",
        +      "Recursive",
        +      "Red Hat Display",
        +      "Red Hat Mono",
        +      "Red Hat Text",
        +      "Red Rose",
        +      "Redacted",
        +      "Redacted Script",
        +      "Reddit Mono",
        +      "Reddit Sans",
        +      "Reddit Sans Condensed",
        +      "Redressed",
        +      "Reem Kufi",
        +      "Reem Kufi Fun",
        +      "Reem Kufi Ink",
        +      "Reenie Beanie",
        +      "Reggae One",
        +      "Rethink Sans",
        +      "Revalia",
        +      "Rhodium Libre",
        +      "Ribeye",
        +      "Ribeye Marrow",
        +      "Righteous",
        +      "Risque",
        +      "Road Rage",
        +      "Roboto",
        +      "Roboto Condensed",
        +      "Roboto Flex",
        +      "Roboto Mono",
        +      "Roboto Serif",
        +      "Roboto Slab",
        +      "Rochester",
        +      "Rock 3D",
        +      "Rock Salt",
        +      "RocknRoll One",
        +      "Rokkitt",
        +      "Romanesco",
        +      "Ropa Sans",
        +      "Rosario",
        +      "Rosarivo",
        +      "Rouge Script",
        +      "Rowdies",
        +      "Rozha One",
        +      "Rubik",
        +      "Rubik 80s Fade",
        +      "Rubik Beastly",
        +      "Rubik Broken Fax",
        +      "Rubik Bubbles",
        +      "Rubik Burned",
        +      "Rubik Dirt",
        +      "Rubik Distressed",
        +      "Rubik Doodle Shadow",
        +      "Rubik Doodle Triangles",
        +      "Rubik Gemstones",
        +      "Rubik Glitch",
        +      "Rubik Glitch Pop",
        +      "Rubik Iso",
        +      "Rubik Lines",
        +      "Rubik Maps",
        +      "Rubik Marker Hatch",
        +      "Rubik Maze",
        +      "Rubik Microbe",
        +      "Rubik Mono One",
        +      "Rubik Moonrocks",
        +      "Rubik Pixels",
        +      "Rubik Puddles",
        +      "Rubik Scribble",
        +      "Rubik Spray Paint",
        +      "Rubik Storm",
        +      "Rubik Vinyl",
        +      "Rubik Wet Paint",
        +      "Ruda",
        +      "Rufina",
        +      "Ruge Boogie",
        +      "Ruluko",
        +      "Rum Raisin",
        +      "Ruslan Display",
        +      "Russo One",
        +      "Ruthie",
        +      "Ruwudu",
        +      "Rye",
        +      "SN Pro",
        +      "STIX Two Math",
        +      "STIX Two Text",
        +      "SUSE",
        +      "SUSE Mono",
        +      "Sacramento",
        +      "Sahitya",
        +      "Sail",
        +      "Saira",
        +      "Saira Condensed",
        +      "Saira Extra Condensed",
        +      "Saira Semi Condensed",
        +      "Saira Stencil",
        +      "Salsa",
        +      "Sanchez",
        +      "Sancreek",
        +      "Sankofa Display",
        +      "Sansation",
        +      "Sansita",
        +      "Sansita Swashed",
        +      "Sarabun",
        +      "Sarala",
        +      "Sarina",
        +      "Sarpanch",
        +      "Sassy Frass",
        +      "Satisfy",
        +      "Savate",
        +      "Sawarabi Gothic",
        +      "Sawarabi Mincho",
        +      "Scada",
        +      "Scheherazade New",
        +      "Schibsted Grotesk",
        +      "Schoolbell",
        +      "Science Gothic",
        +      "Scope One",
        +      "Seaweed Script",
        +      "Secular One",
        +      "Sedan",
        +      "Sedan SC",
        +      "Sedgwick Ave",
        +      "Sedgwick Ave Display",
        +      "Sekuya",
        +      "Sen",
        +      "Send Flowers",
        +      "Sevillana",
        +      "Seymour One",
        +      "Shadows Into Light",
        +      "Shadows Into Light Two",
        +      "Shafarik",
        +      "Shalimar",
        +      "Shantell Sans",
        +      "Shanti",
        +      "Share",
        +      "Share Tech",
        +      "Share Tech Mono",
        +      "Shippori Antique",
        +      "Shippori Antique B1",
        +      "Shippori Mincho",
        +      "Shippori Mincho B1",
        +      "Shizuru",
        +      "Shojumaru",
        +      "Short Stack",
        +      "Shrikhand",
        +      "Siemreap",
        +      "Sigmar",
        +      "Sigmar One",
        +      "Signika",
        +      "Signika Negative",
        +      "Silkscreen",
        +      "Simonetta",
        +      "Single Day",
        +      "Sintony",
        +      "Sirin Stencil",
        +      "Sirivennela",
        +      "Six Caps",
        +      "Sixtyfour",
        +      "Sixtyfour Convergence",
        +      "Skranji",
        +      "Slabo 13px",
        +      "Slabo 27px",
        +      "Slackey",
        +      "Slackside One",
        +      "Smokum",
        +      "Smooch",
        +      "Smooch Sans",
        +      "Smythe",
        +      "Sniglet",
        +      "Snippet",
        +      "Snowburst One",
        +      "Sofadi One",
        +      "Sofia",
        +      "Sofia Sans",
        +      "Sofia Sans Condensed",
        +      "Sofia Sans Extra Condensed",
        +      "Sofia Sans Semi Condensed",
        +      "Solitreo",
        +      "Solway",
        +      "Sometype Mono",
        +      "Song Myung",
        +      "Sono",
        +      "Sonsie One",
        +      "Sora",
        +      "Sorts Mill Goudy",
        +      "Sour Gummy",
        +      "Source Code Pro",
        +      "Source Sans 3",
        +      "Source Serif 4",
        +      "Space Grotesk",
        +      "Space Mono",
        +      "Special Elite",
        +      "Special Gothic",
        +      "Special Gothic Condensed One",
        +      "Special Gothic Expanded One",
        +      "Spectral",
        +      "Spectral SC",
        +      "Spicy Rice",
        +      "Spinnaker",
        +      "Spirax",
        +      "Splash",
        +      "Spline Sans",
        +      "Spline Sans Mono",
        +      "Squada One",
        +      "Square Peg",
        +      "Sree Krushnadevaraya",
        +      "Sriracha",
        +      "Srisakdi",
        +      "Staatliches",
        +      "Stack Sans Headline",
        +      "Stack Sans Notch",
        +      "Stack Sans Text",
        +      "Stalemate",
        +      "Stalinist One",
        +      "Stardos Stencil",
        +      "Stick",
        +      "Stick No Bills",
        +      "Stint Ultra Condensed",
        +      "Stint Ultra Expanded",
        +      "Stoke",
        +      "Story Script",
        +      "Strait",
        +      "Strichpunkt Sans",
        +      "Style Script",
        +      "Stylish",
        +      "Sue Ellen Francisco",
        +      "Suez One",
        +      "Sulphur Point",
        +      "Sumana",
        +      "Sunflower",
        +      "Sunshiney",
        +      "Supermercado One",
        +      "Sura",
        +      "Suranna",
        +      "Suravaram",
        +      "Suwannaphum",
        +      "Swanky and Moo Moo",
        +      "Syncopate",
        +      "Syne",
        +      "Syne Mono",
        +      "Syne Tactile",
        +      "TASA Explorer",
        +      "TASA Orbiter",
        +      "Tac One",
        +      "Tagesschrift",
        +      "Tai Heritage Pro",
        +      "Tajawal",
        +      "Tangerine",
        +      "Tapestry",
        +      "Taprom",
        +      "Tauri",
        +      "Taviraj",
        +      "Teachers",
        +      "Teko",
        +      "Tektur",
        +      "Telex",
        +      "Tenali Ramakrishna",
        +      "Tenor Sans",
        +      "Text Me One",
        +      "Texturina",
        +      "Thasadith",
        +      "The Girl Next Door",
        +      "The Nautigal",
        +      "Tienne",
        +      "TikTok Sans",
        +      "Tillana",
        +      "Tilt Neon",
        +      "Tilt Prism",
        +      "Tilt Warp",
        +      "Timmana",
        +      "Tinos",
        +      "Tiny5",
        +      "Tiro Bangla",
        +      "Tiro Devanagari Hindi",
        +      "Tiro Devanagari Marathi",
        +      "Tiro Devanagari Sanskrit",
        +      "Tiro Gurmukhi",
        +      "Tiro Kannada",
        +      "Tiro Tamil",
        +      "Tiro Telugu",
        +      "Tirra",
        +      "Titan One",
        +      "Titillium Web",
        +      "Tomorrow",
        +      "Tourney",
        +      "Trade Winds",
        +      "Train One",
        +      "Triodion",
        +      "Trirong",
        +      "Trispace",
        +      "Trocchi",
        +      "Trochut",
        +      "Truculenta",
        +      "Trykker",
        +      "Tsukimi Rounded",
        +      "Tuffy",
        +      "Tulpen One",
        +      "Turret Road",
        +      "Twinkle Star",
        +      "Ubuntu",
        +      "Ubuntu Condensed",
        +      "Ubuntu Mono",
        +      "Ubuntu Sans",
        +      "Ubuntu Sans Mono",
        +      "Uchen",
        +      "Ultra",
        +      "Unbounded",
        +      "Uncial Antiqua",
        +      "Underdog",
        +      "Unica One",
        +      "UnifrakturCook",
        +      "UnifrakturMaguntia",
        +      "Unkempt",
        +      "Unlock",
        +      "Unna",
        +      "UoqMunThenKhung",
        +      "Updock",
        +      "Urbanist",
        +      "VT323",
        +      "Vampiro One",
        +      "Varela",
        +      "Varela Round",
        +      "Varta",
        +      "Vast Shadow",
        +      "Vazirmatn",
        +      "Vend Sans",
        +      "Vesper Libre",
        +      "Viaoda Libre",
        +      "Vibes",
        +      "Vibur",
        +      "Victor Mono",
        +      "Vidaloka",
        +      "Viga",
        +      "Vina Sans",
        +      "Voces",
        +      "Volkhov",
        +      "Vollkorn",
        +      "Vollkorn SC",
        +      "Voltaire",
        +      "Vujahday Script",
        +      "WDXL Lubrifont JP N",
        +      "WDXL Lubrifont SC",
        +      "WDXL Lubrifont TC",
        +      "Waiting for the Sunrise",
        +      "Wallpoet",
        +      "Walter Turncoat",
        +      "Warnes",
        +      "Water Brush",
        +      "Waterfall",
        +      "Wavefont",
        +      "Wellfleet",
        +      "Wendy One",
        +      "Whisper",
        +      "WindSong",
        +      "Winky Rough",
        +      "Winky Sans",
        +      "Wire One",
        +      "Wittgenstein",
        +      "Wix Madefor Display",
        +      "Wix Madefor Text",
        +      "Work Sans",
        +      "Workbench",
        +      "Xanh Mono",
        +      "Yaldevi",
        +      "Yanone Kaffeesatz",
        +      "Yantramanav",
        +      "Yarndings 12",
        +      "Yarndings 12 Charted",
        +      "Yarndings 20",
        +      "Yarndings 20 Charted",
        +      "Yatra One",
        +      "Yellowtail",
        +      "Yeon Sung",
        +      "Yeseva One",
        +      "Yesteryear",
        +      "Yomogi",
        +      "Young Serif",
        +      "Yrsa",
        +      "Ysabeau",
        +      "Ysabeau Infant",
        +      "Ysabeau Office",
        +      "Ysabeau SC",
        +      "Yuji Boku",
        +      "Yuji Hentaigana Akari",
        +      "Yuji Hentaigana Akebono",
        +      "Yuji Mai",
        +      "Yuji Syuku",
        +      "Yusei Magic",
        +      "Yuyu",
        +      "Yuyu Short",
        +      "ZCOOL KuaiLe",
        +      "ZCOOL QingKe HuangYou",
        +      "ZCOOL XiaoWei",
        +      "Zain",
        +      "Zalando Sans",
        +      "Zalando Sans Expanded",
        +      "Zalando Sans SemiExpanded",
        +      "Zen Antique",
        +      "Zen Antique Soft",
        +      "Zen Dots",
        +      "Zen Kaku Gothic Antique",
        +      "Zen Kaku Gothic New",
        +      "Zen Kurenaido",
        +      "Zen Loop",
        +      "Zen Maru Gothic",
        +      "Zen Old Mincho",
        +      "Zen Tokyo Zoo",
        +      "Zeyada",
        +      "Zhi Mang Xing",
        +      "Zilla Slab",
        +      "Zilla Slab Highlight"
        +    ],
        +    "type": "string"
        +  },
        +  "GroupedArrangement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "type": {
        +        "const": "grouped",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "GroupedArrangement",
        +    "type": "object"
        +  },
        +  "LegendOptions": {
        +    "anyOf": [
        +      {
        +        "type": "boolean"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "title": {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        },
        +        "type": "object"
        +      }
        +    ],
        +    "title": "LegendOptions"
        +  },
        +  "LineLabels": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "points": {
        +        "$ref": "#/$defs/ConnectedPointLabels"
        +      },
        +      "series": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "content": {
        +            "items": {
        +              "enum": [
        +                "series",
        +                "value"
        +              ],
        +              "type": "string"
        +            },
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          }
        +        },
        +        "required": [
        +          "content"
        +        ],
        +        "type": "object"
        +      }
        +    },
        +    "title": "LineLabels",
        +    "type": "object"
        +  },
        +  "LineStroke": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "LineStroke",
        +    "type": "object"
        +  },
        +  "LinearScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": [
        +          {
        +            "type": "number"
        +          },
        +          {
        +            "type": "number"
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "linear",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "LinearScale",
        +    "type": "object"
        +  },
        +  "LogScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": [
        +          {
        +            "exclusiveMinimum": 0,
        +            "type": "number"
        +          },
        +          {
        +            "exclusiveMinimum": 0,
        +            "type": "number"
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "log",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "LogScale",
        +    "type": "object"
        +  },
        +  "NormalizedArrangement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "normalization": {
        +        "enum": [
        +          "percent"
        +        ],
        +        "type": "string"
        +      },
        +      "type": {
        +        "const": "stacked",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "normalization"
        +    ],
        +    "title": "NormalizedArrangement",
        +    "type": "object"
        +  },
        +  "PositionableBarLabels": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "content": {
        +        "items": {
        +          "enum": [
        +            "value",
        +            "percent",
        +            "category",
        +            "series"
        +          ],
        +          "type": "string"
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "position": {
        +        "enum": [
        +          "auto",
        +          "outside",
        +          "inside"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "content"
        +    ],
        +    "title": "PositionableBarLabels",
        +    "type": "object"
        +  },
        +  "PromotedLine": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "curve": {
        +        "enum": [
        +          "linear",
        +          "monotone",
        +          "step"
        +        ],
        +        "type": "string"
        +      },
        +      "labels": {
        +        "$ref": "#/$defs/LineLabels"
        +      },
        +      "points": {
        +        "anyOf": [
        +          {
        +            "type": "boolean"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "fill": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "radius": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              }
        +            },
        +            "type": "object"
        +          }
        +        ]
        +      },
        +      "series": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "stroke": {
        +        "$ref": "#/$defs/LineStroke"
        +      }
        +    },
        +    "required": [
        +      "series"
        +    ],
        +    "title": "PromotedLine",
        +    "type": "object"
        +  },
        +  "RangeCategoryOrder": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "direction": {
        +            "enum": [
        +              "ascending",
        +              "descending"
        +            ],
        +            "type": "string"
        +          },
        +          "type": {
        +            "const": "category",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "direction"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "$ref": "#/$defs/ExplicitCategoryOrder"
        +      }
        +    ],
        +    "title": "RangeCategoryOrder"
        +  },
        +  "RangeCategoryRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/BandScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "RangeCategoryRole",
        +    "type": "object"
        +  },
        +  "RangeValuesRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "end": {
        +        "$ref": "#/$defs/FieldRole"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/ContinuousScale"
        +      },
        +      "start": {
        +        "$ref": "#/$defs/FieldRole"
        +      },
        +      "type": {
        +        "const": "range",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "start",
        +      "end"
        +    ],
        +    "title": "RangeValuesRole",
        +    "type": "object"
        +  },
        +  "ReferenceLabel": {
        +    "additionalProperties": false,
        +    "description": "Omit for no label. content is an ordered array of text and/or value, without duplicates. text is required when text is included. Values follow the reference's statistic scope and formatting.",
        +    "properties": {
        +      "align": {
        +        "enum": [
        +          "start",
        +          "center",
        +          "end"
        +        ],
        +        "type": "string"
        +      },
        +      "content": {
        +        "items": {
        +          "enum": [
        +            "text",
        +            "value"
        +          ],
        +          "type": "string"
        +        },
        +        "maxItems": 2,
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "position": {
        +        "enum": [
        +          "before",
        +          "after",
        +          "outside-start",
        +          "outside-end"
        +        ],
        +        "type": "string"
        +      },
        +      "text": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "required": [
        +      "content"
        +    ],
        +    "title": "ReferenceLabel",
        +    "type": "object"
        +  },
        +  "ReferenceStroke": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "color": {
        +        "$ref": "#/$defs/Color"
        +      },
        +      "style": {
        +        "enum": [
        +          "solid",
        +          "dashed",
        +          "dotted"
        +        ],
        +        "type": "string"
        +      },
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "ReferenceStroke",
        +    "type": "object"
        +  },
        +  "ReserveSpace": {
        +    "anyOf": [
        +      {
        +        "type": "boolean"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "x": {
        +            "type": "boolean"
        +          },
        +          "y": {
        +            "type": "boolean"
        +          }
        +        },
        +        "required": [
        +          "x",
        +          "y"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "ReserveSpace"
        +  },
        +  "ScatterAnnotations": {
        +    "items": {
        +      "additionalProperties": false,
        +      "properties": {
        +        "align": {
        +          "enum": [
        +            "start",
        +            "center",
        +            "end"
        +          ],
        +          "type": "string"
        +        },
        +        "anchor": {
        +          "oneOf": [
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "id": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "datum",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "id"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "type": {
        +                  "const": "coordinate",
        +                  "type": "string"
        +                },
        +                "x": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "y": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "x",
        +                "y"
        +              ],
        +              "type": "object"
        +            }
        +          ],
        +          "title": "ScatterAnnotationAnchor"
        +        },
        +        "boxAnchor": {
        +          "$ref": "#/$defs/AnnotationBoxAnchor"
        +        },
        +        "connector": {
        +          "enum": [
        +            "none",
        +            "line",
        +            "arrow"
        +          ],
        +          "type": "string"
        +        },
        +        "offset": {
        +          "$ref": "#/$defs/AnnotationOffset"
        +        },
        +        "placement": {
        +          "$ref": "#/$defs/AnnotationPlacement"
        +        },
        +        "reserveSpace": {
        +          "$ref": "#/$defs/ReserveSpace"
        +        },
        +        "style": {
        +          "$ref": "#/$defs/AnnotationTextStyle"
        +        },
        +        "text": {
        +          "type": "string"
        +        },
        +        "visible": {
        +          "type": "boolean"
        +        },
        +        "width": {
        +          "anyOf": [
        +            {
        +              "exclusiveMinimum": 0,
        +              "type": "number"
        +            },
        +            {
        +              "const": "shape",
        +              "type": "string"
        +            }
        +          ]
        +        }
        +      },
        +      "required": [
        +        "text",
        +        "anchor"
        +      ],
        +      "title": "ScatterAnnotation",
        +      "type": "object"
        +    },
        +    "minItems": 1,
        +    "title": "ScatterAnnotations",
        +    "type": "array"
        +  },
        +  "ScatterColor": {
        +    "anyOf": [
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "oneOf": [
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "domain": {
        +                "items": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "minItems": 1,
        +                "type": "array",
        +                "uniqueItems": true
        +              },
        +              "field": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "legend": {
        +                "$ref": "#/$defs/LegendOptions"
        +              },
        +              "range": {
        +                "$ref": "#/$defs/ColorRange"
        +              },
        +              "type": {
        +                "const": "categorical",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type",
        +              "field"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "domain": {
        +                "items": [
        +                  {
        +                    "type": "number"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ],
        +                "maxItems": 2,
        +                "minItems": 2,
        +                "type": "array"
        +              },
        +              "field": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "format": {
        +                "type": "string"
        +              },
        +              "legend": {
        +                "$ref": "#/$defs/LegendOptions"
        +              },
        +              "range": {
        +                "anyOf": [
        +                  {
        +                    "items": [
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      }
        +                    ],
        +                    "maxItems": 2,
        +                    "minItems": 2,
        +                    "type": "array"
        +                  },
        +                  {
        +                    "$ref": "#/$defs/ThreeColorRange"
        +                  }
        +                ],
        +                "title": "SequentialColorRange"
        +              },
        +              "type": {
        +                "const": "sequential",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type",
        +              "field"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "domain": {
        +                "items": [
        +                  {
        +                    "type": "number"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ],
        +                "maxItems": 2,
        +                "minItems": 2,
        +                "type": "array"
        +              },
        +              "field": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "format": {
        +                "type": "string"
        +              },
        +              "legend": {
        +                "$ref": "#/$defs/LegendOptions"
        +              },
        +              "midpoint": {
        +                "type": "number"
        +              },
        +              "range": {
        +                "anyOf": [
        +                  {
        +                    "$ref": "#/$defs/ThreeColorRange"
        +                  },
        +                  {
        +                    "items": [
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      }
        +                    ],
        +                    "maxItems": 5,
        +                    "minItems": 5,
        +                    "type": "array"
        +                  }
        +                ],
        +                "title": "DivergingColorRange"
        +              },
        +              "type": {
        +                "const": "diverging",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type",
        +              "field",
        +              "domain",
        +              "midpoint"
        +            ],
        +            "type": "object"
        +          }
        +        ]
        +      }
        +    ],
        +    "title": "ScatterColor"
        +  },
        +  "ScatterInterval": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "axis": {
        +        "enum": [
        +          "x",
        +          "y"
        +        ],
        +        "type": "string"
        +      },
        +      "lower": {
        +        "$ref": "#/$defs/FieldRole"
        +      },
        +      "stroke": {
        +        "$ref": "#/$defs/Stroke"
        +      },
        +      "upper": {
        +        "$ref": "#/$defs/FieldRole"
        +      }
        +    },
        +    "required": [
        +      "axis",
        +      "lower",
        +      "upper"
        +    ],
        +    "title": "ScatterInterval",
        +    "type": "object"
        +  },
        +  "ScatterLabels": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "position": {
        +        "enum": [
        +          "above",
        +          "side"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "ScatterLabels",
        +    "type": "object"
        +  },
        +  "ScatterReferences": {
        +    "items": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "enum": [
        +                "x",
        +                "y"
        +              ],
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "value": {
        +              "type": [
        +                "string",
        +                "number"
        +              ]
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "value"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "enum": [
        +                "x",
        +                "y"
        +              ],
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "statistic": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "operation": {
        +                  "enum": [
        +                    "average",
        +                    "median",
        +                    "min",
        +                    "max"
        +                  ],
        +                  "type": "string"
        +                },
        +                "scope": {
        +                  "enum": [
        +                    "visible",
        +                    "all"
        +                  ],
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "operation",
        +                "scope"
        +              ],
        +              "title": "ReferenceStatistic",
        +              "type": "object"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "statistic",
        +              "type": "string"
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "statistic"
        +          ],
        +          "type": "object"
        +        }
        +      ],
        +      "title": "ScatterReference"
        +    },
        +    "minItems": 1,
        +    "title": "ScatterReferences",
        +    "type": "array"
        +  },
        +  "ScatterRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/CategoryScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "ScatterRole",
        +    "type": "object"
        +  },
        +  "SeriesLinearValuesRole": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "long",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "field",
        +          "series"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "minItems": 2,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "wide",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "fields"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "count",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "series"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "SeriesLinearValuesRole"
        +  },
        +  "SeriesLinearValuesRoleWithPercent": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "percentFormat": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "long",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "field",
        +          "series"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "minItems": 2,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "percentFormat": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "wide",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "fields"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "percentFormat": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "count",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "series"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "SeriesLinearValuesRoleWithPercent"
        +  },
        +  "SeriesRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "SeriesRole",
        +    "type": "object"
        +  },
        +  "SimpleBarValuesRole": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "long",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "field"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": [
        +              {
        +                "minLength": 1,
        +                "type": "string"
        +              }
        +            ],
        +            "maxItems": 1,
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "wide",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "fields"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "count",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "SimpleBarValuesRole"
        +  },
        +  "StackedArrangement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "type": {
        +        "const": "stacked",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "StackedArrangement",
        +    "type": "object"
        +  },
        +  "StackedBarLabels": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "content": {
        +        "items": {
        +          "enum": [
        +            "value",
        +            "percent",
        +            "category",
        +            "series"
        +          ],
        +          "type": "string"
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      }
        +    },
        +    "required": [
        +      "content"
        +    ],
        +    "title": "StackedBarLabels",
        +    "type": "object"
        +  },
        +  "Stroke": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "color": {
        +        "$ref": "#/$defs/Color"
        +      },
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "Stroke",
        +    "type": "object"
        +  },
        +  "ThemeCategoricalPalette": {
        +    "items": {
        +      "minLength": 1,
        +      "type": "string"
        +    },
        +    "minItems": 1,
        +    "title": "ThemeCategoricalPalette",
        +    "type": "array"
        +  },
        +  "ThemeDivergingRange": {
        +    "anyOf": [
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 3,
        +        "minItems": 3,
        +        "type": "array"
        +      },
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 5,
        +        "minItems": 5,
        +        "type": "array"
        +      }
        +    ],
        +    "title": "ThemeDivergingRange"
        +  },
        +  "ThemeName": {
        +    "enum": [
        +      "editorial",
        +      "clean",
        +      "noir",
        +      "loud",
        +      "soft",
        +      "technical"
        +    ],
        +    "title": "ThemeName",
        +    "type": "string"
        +  },
        +  "ThemeOverrides": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "axes": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "gridLineWidth": {
        +            "minimum": 0,
        +            "type": "number"
        +          },
        +          "lineWidth": {
        +            "minimum": 0,
        +            "type": "number"
        +          },
        +          "tickPadding": {
        +            "minimum": 0,
        +            "type": "number"
        +          },
        +          "tickSize": {
        +            "minimum": 0,
        +            "type": "number"
        +          }
        +        },
        +        "title": "ThemeAxisOverrides",
        +        "type": "object"
        +      },
        +      "colors": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "axes": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "grid": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "line": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "tickLabel": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "title": {
        +                "$ref": "#/$defs/Color"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "background": {
        +            "$ref": "#/$defs/Color"
        +          },
        +          "caption": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "color": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "linkColor": {
        +                "$ref": "#/$defs/Color"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "categorical": {
        +            "anyOf": [
        +              {
        +                "$ref": "#/$defs/ThemeCategoricalPalette"
        +              },
        +              {
        +                "anyOf": [
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      }
        +                    },
        +                    "required": [
        +                      "light"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      }
        +                    },
        +                    "required": [
        +                      "dark"
        +                    ],
        +                    "type": "object"
        +                  }
        +                ]
        +              }
        +            ],
        +            "title": "ThemeCategoricalColors"
        +          },
        +          "diverging": {
        +            "anyOf": [
        +              {
        +                "$ref": "#/$defs/ThemeDivergingRange"
        +              },
        +              {
        +                "anyOf": [
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "light"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "dark"
        +                    ],
        +                    "type": "object"
        +                  }
        +                ]
        +              }
        +            ],
        +            "title": "ThemeDivergingColors"
        +          },
        +          "label": {
        +            "$ref": "#/$defs/Color"
        +          },
        +          "sequential": {
        +            "anyOf": [
        +              {
        +                "$ref": "#/$defs/ThemeSequentialRange"
        +              },
        +              {
        +                "anyOf": [
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "light"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "dark"
        +                    ],
        +                    "type": "object"
        +                  }
        +                ]
        +              }
        +            ],
        +            "title": "ThemeSequentialColors"
        +          },
        +          "subtitle": {
        +            "$ref": "#/$defs/Color"
        +          },
        +          "title": {
        +            "$ref": "#/$defs/Color"
        +          }
        +        },
        +        "title": "ThemeColorOverrides",
        +        "type": "object"
        +      },
        +      "fonts": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "body": {
        +            "$ref": "#/$defs/GoogleFontFamily"
        +          },
        +          "numeric": {
        +            "$ref": "#/$defs/GoogleFontFamily"
        +          },
        +          "title": {
        +            "$ref": "#/$defs/GoogleFontFamily"
        +          }
        +        },
        +        "title": "ThemeFontOverrides",
        +        "type": "object"
        +      },
        +      "typography": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "axisTitle": {
        +            "$ref": "#/$defs/WeightTypography"
        +          },
        +          "baseSize": {
        +            "exclusiveMinimum": 0,
        +            "type": "number"
        +          },
        +          "caption": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "gap": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "header": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "gap": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "titleSubtitleGap": {
        +                "minimum": 0,
        +                "type": "number"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "label": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "haloWidth": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "mutedOpacity": {
        +                "maximum": 1,
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "mutedWeight": {
        +                "anyOf": [
        +                  {
        +                    "const": 100,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 200,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 300,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 400,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 500,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 600,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 700,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 800,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 900,
        +                    "type": "number"
        +                  }
        +                ]
        +              },
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              },
        +              "weight": {
        +                "anyOf": [
        +                  {
        +                    "const": 100,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 200,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 300,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 400,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 500,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 600,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 700,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 800,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 900,
        +                    "type": "number"
        +                  }
        +                ]
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "subtitle": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "tickLabel": {
        +            "$ref": "#/$defs/WeightTypography"
        +          },
        +          "title": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              },
        +              "weight": {
        +                "anyOf": [
        +                  {
        +                    "const": 100,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 200,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 300,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 400,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 500,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 600,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 700,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 800,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 900,
        +                    "type": "number"
        +                  }
        +                ]
        +              }
        +            },
        +            "type": "object"
        +          }
        +        },
        +        "title": "ThemeTypographyOverrides",
        +        "type": "object"
        +      }
        +    },
        +    "title": "ThemeOverrides",
        +    "type": "object"
        +  },
        +  "ThemeSequentialRange": {
        +    "anyOf": [
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 3,
        +        "minItems": 3,
        +        "type": "array"
        +      }
        +    ],
        +    "title": "ThemeSequentialRange"
        +  },
        +  "ThreeColorRange": {
        +    "items": [
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "$ref": "#/$defs/Color"
        +      }
        +    ],
        +    "maxItems": 3,
        +    "minItems": 3,
        +    "title": "ThreeColorRange",
        +    "type": "array"
        +  },
        +  "UtcScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": [
        +          {
        +            "type": [
        +              "string",
        +              "number"
        +            ]
        +          },
        +          {
        +            "type": [
        +              "string",
        +              "number"
        +            ]
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "utc",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "UtcScale",
        +    "type": "object"
        +  },
        +  "WeightTypography": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "weight": {
        +        "anyOf": [
        +          {
        +            "const": 100,
        +            "type": "number"
        +          },
        +          {
        +            "const": 200,
        +            "type": "number"
        +          },
        +          {
        +            "const": 300,
        +            "type": "number"
        +          },
        +          {
        +            "const": 400,
        +            "type": "number"
        +          },
        +          {
        +            "const": 500,
        +            "type": "number"
        +          },
        +          {
        +            "const": 600,
        +            "type": "number"
        +          },
        +          {
        +            "const": 700,
        +            "type": "number"
        +          },
        +          {
        +            "const": 800,
        +            "type": "number"
        +          },
        +          {
        +            "const": 900,
        +            "type": "number"
        +          }
        +        ]
        +      }
        +    },
        +    "title": "WeightTypography",
        +    "type": "object"
        +  },
        +  "szumSchema88": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "config": {
        +        "anyOf": [
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "accessibilityDescription": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "annotations": {
        +                "$ref": "#/$defs/CartesianAnnotations"
        +              },
        +              "caption": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "category": {
        +                "$ref": "#/$defs/BarCategoryRole"
        +              },
        +              "categoryAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "color": {
        +                "$ref": "#/$defs/CategoricalColor"
        +              },
        +              "cornerRadius": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "headerAlign": {
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "labels": {
        +                "$ref": "#/$defs/PositionableBarLabels"
        +              },
        +              "line": {
        +                "$ref": "#/$defs/PromotedLine"
        +              },
        +              "locale": {
        +                "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +                "type": "string"
        +              },
        +              "order": {
        +                "$ref": "#/$defs/CategoryOrder"
        +              },
        +              "plotBorder": {
        +                "type": "boolean"
        +              },
        +              "references": {
        +                "$ref": "#/$defs/CategoricalReferences"
        +              },
        +              "spacing": {
        +                "$ref": "#/$defs/CategorySpacing"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              },
        +              "subtitle": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "theme": {
        +                "$ref": "#/$defs/ThemeName"
        +              },
        +              "themeOverrides": {
        +                "$ref": "#/$defs/ThemeOverrides"
        +              },
        +              "title": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "type": {
        +                "const": "column",
        +                "type": "string"
        +              },
        +              "valueAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "values": {
        +                "$ref": "#/$defs/SimpleBarValuesRole"
        +              },
        +              "version": {
        +                "const": "2026-09-26",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "version",
        +              "category",
        +              "values",
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "accessibilityDescription": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "caption": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "category": {
        +                "$ref": "#/$defs/RangeCategoryRole"
        +              },
        +              "categoryAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "color": {
        +                "$ref": "#/$defs/CategoricalColor"
        +              },
        +              "cornerRadius": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "headerAlign": {
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "locale": {
        +                "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +                "type": "string"
        +              },
        +              "order": {
        +                "$ref": "#/$defs/RangeCategoryOrder"
        +              },
        +              "plotBorder": {
        +                "type": "boolean"
        +              },
        +              "spacing": {
        +                "$ref": "#/$defs/CategorySpacing"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              },
        +              "subtitle": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "theme": {
        +                "$ref": "#/$defs/ThemeName"
        +              },
        +              "themeOverrides": {
        +                "$ref": "#/$defs/ThemeOverrides"
        +              },
        +              "title": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "type": {
        +                "const": "column",
        +                "type": "string"
        +              },
        +              "valueAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "values": {
        +                "$ref": "#/$defs/RangeValuesRole"
        +              },
        +              "version": {
        +                "const": "2026-09-26",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "version",
        +              "category",
        +              "values",
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "accessibilityDescription": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "annotations": {
        +                "$ref": "#/$defs/CartesianAnnotations"
        +              },
        +              "arrangement": {
        +                "$ref": "#/$defs/StackedArrangement"
        +              },
        +              "caption": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "category": {
        +                "$ref": "#/$defs/BarCategoryRole"
        +              },
        +              "categoryAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "color": {
        +                "$ref": "#/$defs/CategoricalColor"
        +              },
        +              "cornerRadius": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "headerAlign": {
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "labels": {
        +                "$ref": "#/$defs/StackedBarLabels"
        +              },
        +              "line": {
        +                "$ref": "#/$defs/PromotedLine"
        +              },
        +              "locale": {
        +                "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +                "type": "string"
        +              },
        +              "order": {
        +                "$ref": "#/$defs/CategoryOrder"
        +              },
        +              "plotBorder": {
        +                "type": "boolean"
        +              },
        +              "references": {
        +                "$ref": "#/$defs/CategoricalReferences"
        +              },
        +              "spacing": {
        +                "$ref": "#/$defs/CategorySpacing"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              },
        +              "subtitle": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "theme": {
        +                "$ref": "#/$defs/ThemeName"
        +              },
        +              "themeOverrides": {
        +                "$ref": "#/$defs/ThemeOverrides"
        +              },
        +              "title": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "type": {
        +                "const": "column",
        +                "type": "string"
        +              },
        +              "valueAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "values": {
        +                "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +              },
        +              "version": {
        +                "const": "2026-09-26",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "version",
        +              "category",
        +              "values",
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "accessibilityDescription": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "annotations": {
        +                "$ref": "#/$defs/CartesianAnnotations"
        +              },
        +              "arrangement": {
        +                "$ref": "#/$defs/StackedArrangement"
        +              },
        +              "caption": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "category": {
        +                "$ref": "#/$defs/BarCategoryRole"
        +              },
        +              "categoryAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "color": {
        +                "$ref": "#/$defs/CategoricalColor"
        +              },
        +              "cornerRadius": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "headerAlign": {
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "labels": {
        +                "$ref": "#/$defs/StackedBarLabels"
        +              },
        +              "line": {
        +                "$ref": "#/$defs/PromotedLine"
        +              },
        +              "locale": {
        +                "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +                "type": "string"
        +              },
        +              "order": {
        +                "$ref": "#/$defs/CategoryOrder"
        +              },
        +              "plotBorder": {
        +                "type": "boolean"
        +              },
        +              "references": {
        +                "$ref": "#/$defs/CategoricalReferences"
        +              },
        +              "spacing": {
        +                "$ref": "#/$defs/CategorySpacing"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              },
        +              "subtitle": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "theme": {
        +                "$ref": "#/$defs/ThemeName"
        +              },
        +              "themeOverrides": {
        +                "$ref": "#/$defs/ThemeOverrides"
        +              },
        +              "title": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "totals": {
        +                "type": "boolean"
        +              },
        +              "type": {
        +                "const": "column",
        +                "type": "string"
        +              },
        +              "valueAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "values": {
        +                "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +              },
        +              "version": {
        +                "const": "2026-09-26",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "version",
        +              "category",
        +              "values",
        +              "totals",
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "accessibilityDescription": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "annotations": {
        +                "$ref": "#/$defs/CartesianAnnotations"
        +              },
        +              "arrangement": {
        +                "$ref": "#/$defs/GroupedArrangement"
        +              },
        +              "caption": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "category": {
        +                "$ref": "#/$defs/BarCategoryRole"
        +              },
        +              "categoryAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "color": {
        +                "$ref": "#/$defs/CategoricalColorMapping"
        +              },
        +              "cornerRadius": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "headerAlign": {
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "labels": {
        +                "$ref": "#/$defs/PositionableBarLabels"
        +              },
        +              "line": {
        +                "$ref": "#/$defs/PromotedLine"
        +              },
        +              "locale": {
        +                "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +                "type": "string"
        +              },
        +              "order": {
        +                "$ref": "#/$defs/CategoryOrder"
        +              },
        +              "plotBorder": {
        +                "type": "boolean"
        +              },
        +              "references": {
        +                "$ref": "#/$defs/CategoricalReferences"
        +              },
        +              "spacing": {
        +                "$ref": "#/$defs/BarSpacingPreference"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              },
        +              "subtitle": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "theme": {
        +                "$ref": "#/$defs/ThemeName"
        +              },
        +              "themeOverrides": {
        +                "$ref": "#/$defs/ThemeOverrides"
        +              },
        +              "title": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "type": {
        +                "const": "column",
        +                "type": "string"
        +              },
        +              "valueAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "values": {
        +                "$ref": "#/$defs/SeriesLinearValuesRole"
        +              },
        +              "version": {
        +                "const": "2026-09-26",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "version",
        +              "category",
        +              "values",
        +              "arrangement",
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "accessibilityDescription": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "annotations": {
        +                "$ref": "#/$defs/CartesianAnnotations"
        +              },
        +              "arrangement": {
        +                "$ref": "#/$defs/NormalizedArrangement"
        +              },
        +              "caption": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "category": {
        +                "$ref": "#/$defs/BarCategoryRole"
        +              },
        +              "categoryAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "color": {
        +                "$ref": "#/$defs/CategoricalColorMapping"
        +              },
        +              "cornerRadius": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "headerAlign": {
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "labels": {
        +                "$ref": "#/$defs/StackedBarLabels"
        +              },
        +              "line": {
        +                "$ref": "#/$defs/PromotedLine"
        +              },
        +              "locale": {
        +                "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +                "type": "string"
        +              },
        +              "order": {
        +                "$ref": "#/$defs/CategoryOrder"
        +              },
        +              "plotBorder": {
        +                "type": "boolean"
        +              },
        +              "references": {
        +                "$ref": "#/$defs/CategoricalReferences"
        +              },
        +              "spacing": {
        +                "$ref": "#/$defs/CategorySpacing"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              },
        +              "subtitle": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "theme": {
        +                "$ref": "#/$defs/ThemeName"
        +              },
        +              "themeOverrides": {
        +                "$ref": "#/$defs/ThemeOverrides"
        +              },
        +              "title": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "type": {
        +                "const": "column",
        +                "type": "string"
        +              },
        +              "valueAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "values": {
        +                "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +              },
        +              "version": {
        +                "const": "2026-09-26",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "version",
        +              "category",
        +              "values",
        +              "arrangement",
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "accessibilityDescription": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "annotations": {
        +                "$ref": "#/$defs/CartesianAnnotations"
        +              },
        +              "caption": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "category": {
        +                "$ref": "#/$defs/BarCategoryRole"
        +              },
        +              "categoryAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "color": {
        +                "$ref": "#/$defs/CategoricalColor"
        +              },
        +              "cornerRadius": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "headerAlign": {
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "labels": {
        +                "$ref": "#/$defs/PositionableBarLabels"
        +              },
        +              "line": {
        +                "$ref": "#/$defs/PromotedLine"
        +              },
        +              "locale": {
        +                "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +                "type": "string"
        +              },
        +              "order": {
        +                "$ref": "#/$defs/CategoryOrder"
        +              },
        +              "plotBorder": {
        +                "type": "boolean"
        +              },
        +              "references": {
        +                "$ref": "#/$defs/CategoricalReferences"
        +              },
        +              "spacing": {
        +                "$ref": "#/$defs/CategorySpacing"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              },
        +              "subtitle": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "theme": {
        +                "$ref": "#/$defs/ThemeName"
        +              },
        +              "themeOverrides": {
        +                "$ref": "#/$defs/ThemeOverrides"
        +              },
        +              "title": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "type": {
        +                "const": "bar",
        +                "type": "string"
        +              },
        +              "valueAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "values": {
        +                "$ref": "#/$defs/SimpleBarValuesRole"
        +              },
        +              "version": {
        +                "const": "2026-09-26",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "version",
        +              "category",
        +              "values",
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "accessibilityDescription": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "caption": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "category": {
        +                "$ref": "#/$defs/RangeCategoryRole"
        +              },
        +              "categoryAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "color": {
        +                "$ref": "#/$defs/CategoricalColor"
        +              },
        +              "cornerRadius": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "headerAlign": {
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "locale": {
        +                "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +                "type": "string"
        +              },
        +              "order": {
        +                "$ref": "#/$defs/RangeCategoryOrder"
        +              },
        +              "plotBorder": {
        +                "type": "boolean"
        +              },
        +              "spacing": {
        +                "$ref": "#/$defs/CategorySpacing"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              },
        +              "subtitle": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "theme": {
        +                "$ref": "#/$defs/ThemeName"
        +              },
        +              "themeOverrides": {
        +                "$ref": "#/$defs/ThemeOverrides"
        +              },
        +              "title": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "type": {
        +                "const": "bar",
        +                "type": "string"
        +              },
        +              "valueAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "values": {
        +                "$ref": "#/$defs/RangeValuesRole"
        +              },
        +              "version": {
        +                "const": "2026-09-26",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "version",
        +              "category",
        +              "values",
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "accessibilityDescription": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "annotations": {
        +                "$ref": "#/$defs/CartesianAnnotations"
        +              },
        +              "arrangement": {
        +                "$ref": "#/$defs/StackedArrangement"
        +              },
        +              "caption": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "category": {
        +                "$ref": "#/$defs/BarCategoryRole"
        +              },
        +              "categoryAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "color": {
        +                "$ref": "#/$defs/CategoricalColor"
        +              },
        +              "cornerRadius": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "headerAlign": {
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "labels": {
        +                "$ref": "#/$defs/StackedBarLabels"
        +              },
        +              "line": {
        +                "$ref": "#/$defs/PromotedLine"
        +              },
        +              "locale": {
        +                "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +                "type": "string"
        +              },
        +              "order": {
        +                "$ref": "#/$defs/CategoryOrder"
        +              },
        +              "plotBorder": {
        +                "type": "boolean"
        +              },
        +              "references": {
        +                "$ref": "#/$defs/CategoricalReferences"
        +              },
        +              "spacing": {
        +                "$ref": "#/$defs/CategorySpacing"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              },
        +              "subtitle": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "theme": {
        +                "$ref": "#/$defs/ThemeName"
        +              },
        +              "themeOverrides": {
        +                "$ref": "#/$defs/ThemeOverrides"
        +              },
        +              "title": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "type": {
        +                "const": "bar",
        +                "type": "string"
        +              },
        +              "valueAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "values": {
        +                "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +              },
        +              "version": {
        +                "const": "2026-09-26",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "version",
        +              "category",
        +              "values",
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "accessibilityDescription": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "annotations": {
        +                "$ref": "#/$defs/CartesianAnnotations"
        +              },
        +              "arrangement": {
        +                "$ref": "#/$defs/StackedArrangement"
        +              },
        +              "caption": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "category": {
        +                "$ref": "#/$defs/BarCategoryRole"
        +              },
        +              "categoryAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "color": {
        +                "$ref": "#/$defs/CategoricalColor"
        +              },
        +              "cornerRadius": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "headerAlign": {
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "labels": {
        +                "$ref": "#/$defs/StackedBarLabels"
        +              },
        +              "line": {
        +                "$ref": "#/$defs/PromotedLine"
        +              },
        +              "locale": {
        +                "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +                "type": "string"
        +              },
        +              "order": {
        +                "$ref": "#/$defs/CategoryOrder"
        +              },
        +              "plotBorder": {
        +                "type": "boolean"
        +              },
        +              "references": {
        +                "$ref": "#/$defs/CategoricalReferences"
        +              },
        +              "spacing": {
        +                "$ref": "#/$defs/CategorySpacing"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              },
        +              "subtitle": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "theme": {
        +                "$ref": "#/$defs/ThemeName"
        +              },
        +              "themeOverrides": {
        +                "$ref": "#/$defs/ThemeOverrides"
        +              },
        +              "title": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "totals": {
        +                "type": "boolean"
        +              },
        +              "type": {
        +                "const": "bar",
        +                "type": "string"
        +              },
        +              "valueAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "values": {
        +                "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +              },
        +              "version": {
        +                "const": "2026-09-26",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "version",
        +              "category",
        +              "values",
        +              "totals",
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "accessibilityDescription": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "annotations": {
        +                "$ref": "#/$defs/CartesianAnnotations"
        +              },
        +              "arrangement": {
        +                "$ref": "#/$defs/GroupedArrangement"
        +              },
        +              "caption": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "category": {
        +                "$ref": "#/$defs/BarCategoryRole"
        +              },
        +              "categoryAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "color": {
        +                "$ref": "#/$defs/CategoricalColorMapping"
        +              },
        +              "cornerRadius": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "headerAlign": {
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "labels": {
        +                "$ref": "#/$defs/PositionableBarLabels"
        +              },
        +              "line": {
        +                "$ref": "#/$defs/PromotedLine"
        +              },
        +              "locale": {
        +                "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +                "type": "string"
        +              },
        +              "order": {
        +                "$ref": "#/$defs/CategoryOrder"
        +              },
        +              "plotBorder": {
        +                "type": "boolean"
        +              },
        +              "references": {
        +                "$ref": "#/$defs/CategoricalReferences"
        +              },
        +              "spacing": {
        +                "$ref": "#/$defs/BarSpacingPreference"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              },
        +              "subtitle": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "theme": {
        +                "$ref": "#/$defs/ThemeName"
        +              },
        +              "themeOverrides": {
        +                "$ref": "#/$defs/ThemeOverrides"
        +              },
        +              "title": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "type": {
        +                "const": "bar",
        +                "type": "string"
        +              },
        +              "valueAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "values": {
        +                "$ref": "#/$defs/SeriesLinearValuesRole"
        +              },
        +              "version": {
        +                "const": "2026-09-26",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "version",
        +              "category",
        +              "values",
        +              "arrangement",
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "accessibilityDescription": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "annotations": {
        +                "$ref": "#/$defs/CartesianAnnotations"
        +              },
        +              "arrangement": {
        +                "$ref": "#/$defs/NormalizedArrangement"
        +              },
        +              "caption": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "category": {
        +                "$ref": "#/$defs/BarCategoryRole"
        +              },
        +              "categoryAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "color": {
        +                "$ref": "#/$defs/CategoricalColorMapping"
        +              },
        +              "cornerRadius": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "headerAlign": {
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "labels": {
        +                "$ref": "#/$defs/StackedBarLabels"
        +              },
        +              "line": {
        +                "$ref": "#/$defs/PromotedLine"
        +              },
        +              "locale": {
        +                "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +                "type": "string"
        +              },
        +              "order": {
        +                "$ref": "#/$defs/CategoryOrder"
        +              },
        +              "plotBorder": {
        +                "type": "boolean"
        +              },
        +              "references": {
        +                "$ref": "#/$defs/CategoricalReferences"
        +              },
        +              "spacing": {
        +                "$ref": "#/$defs/CategorySpacing"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              },
        +              "subtitle": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "theme": {
        +                "$ref": "#/$defs/ThemeName"
        +              },
        +              "themeOverrides": {
        +                "$ref": "#/$defs/ThemeOverrides"
        +              },
        +              "title": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "type": {
        +                "const": "bar",
        +                "type": "string"
        +              },
        +              "valueAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "values": {
        +                "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +              },
        +              "version": {
        +                "const": "2026-09-26",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "version",
        +              "category",
        +              "values",
        +              "arrangement",
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "accessibilityDescription": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "annotations": {
        +                "$ref": "#/$defs/CartesianAnnotations"
        +              },
        +              "caption": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "category": {
        +                "$ref": "#/$defs/CategoryRole"
        +              },
        +              "categoryAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "color": {
        +                "$ref": "#/$defs/CategoricalColor"
        +              },
        +              "curve": {
        +                "enum": [
        +                  "linear",
        +                  "monotone",
        +                  "step"
        +                ],
        +                "type": "string"
        +              },
        +              "headerAlign": {
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "labels": {
        +                "$ref": "#/$defs/LineLabels"
        +              },
        +              "locale": {
        +                "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +                "type": "string"
        +              },
        +              "order": {
        +                "$ref": "#/$defs/CategoryOrder"
        +              },
        +              "plotBorder": {
        +                "type": "boolean"
        +              },
        +              "points": {
        +                "anyOf": [
        +                  {
        +                    "type": "boolean"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "fill": {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      "radius": {
        +                        "exclusiveMinimum": 0,
        +                        "type": "number"
        +                      },
        +                      "series": {
        +                        "items": {
        +                          "type": [
        +                            "string",
        +                            "number"
        +                          ]
        +                        },
        +                        "minItems": 1,
        +                        "type": "array",
        +                        "uniqueItems": true
        +                      },
        +                      "stroke": {
        +                        "$ref": "#/$defs/Stroke"
        +                      }
        +                    },
        +                    "type": "object"
        +                  }
        +                ]
        +              },
        +              "references": {
        +                "$ref": "#/$defs/CategoricalReferences"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/LineStroke"
        +              },
        +              "subtitle": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "theme": {
        +                "$ref": "#/$defs/ThemeName"
        +              },
        +              "themeOverrides": {
        +                "$ref": "#/$defs/ThemeOverrides"
        +              },
        +              "title": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "type": {
        +                "const": "line",
        +                "type": "string"
        +              },
        +              "valueAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "values": {
        +                "oneOf": [
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "aggregation": {
        +                        "enum": [
        +                          "sum",
        +                          "average",
        +                          "min",
        +                          "max",
        +                          "median"
        +                        ],
        +                        "type": "string"
        +                      },
        +                      "field": {
        +                        "minLength": 1,
        +                        "type": "string"
        +                      },
        +                      "format": {
        +                        "type": "string"
        +                      },
        +                      "scale": {
        +                        "$ref": "#/$defs/ContinuousScale"
        +                      },
        +                      "series": {
        +                        "$ref": "#/$defs/SeriesRole"
        +                      },
        +                      "type": {
        +                        "const": "long",
        +                        "type": "string"
        +                      }
        +                    },
        +                    "required": [
        +                      "type",
        +                      "field"
        +                    ],
        +                    "title": "LineLongValuesRole",
        +                    "type": "object"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "aggregation": {
        +                        "enum": [
        +                          "sum",
        +                          "average",
        +                          "min",
        +                          "max",
        +                          "median"
        +                        ],
        +                        "type": "string"
        +                      },
        +                      "fields": {
        +                        "items": {
        +                          "minLength": 1,
        +                          "type": "string"
        +                        },
        +                        "minItems": 1,
        +                        "type": "array",
        +                        "uniqueItems": true
        +                      },
        +                      "format": {
        +                        "type": "string"
        +                      },
        +                      "scale": {
        +                        "$ref": "#/$defs/ContinuousScale"
        +                      },
        +                      "type": {
        +                        "const": "wide",
        +                        "type": "string"
        +                      }
        +                    },
        +                    "required": [
        +                      "type",
        +                      "fields"
        +                    ],
        +                    "title": "LineWideValuesRole",
        +                    "type": "object"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "format": {
        +                        "type": "string"
        +                      },
        +                      "scale": {
        +                        "oneOf": [
        +                          {
        +                            "$ref": "#/$defs/LinearScale"
        +                          },
        +                          {
        +                            "$ref": "#/$defs/LogScale"
        +                          }
        +                        ],
        +                        "title": "QuantitativeScale"
        +                      },
        +                      "series": {
        +                        "$ref": "#/$defs/SeriesRole"
        +                      },
        +                      "type": {
        +                        "const": "count",
        +                        "type": "string"
        +                      }
        +                    },
        +                    "required": [
        +                      "type"
        +                    ],
        +                    "title": "CountValuesRole",
        +                    "type": "object"
        +                  }
        +                ],
        +                "title": "LineValuesRole"
        +              },
        +              "version": {
        +                "const": "2026-09-26",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "version",
        +              "type",
        +              "category",
        +              "values"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "accessibilityDescription": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "annotations": {
        +                "$ref": "#/$defs/CartesianAnnotations"
        +              },
        +              "arrangement": {
        +                "additionalProperties": false,
        +                "properties": {
        +                  "type": {
        +                    "const": "stacked",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              "caption": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "category": {
        +                "$ref": "#/$defs/CategoryRole"
        +              },
        +              "categoryAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "color": {
        +                "$ref": "#/$defs/CategoricalColor"
        +              },
        +              "curve": {
        +                "enum": [
        +                  "linear",
        +                  "monotone",
        +                  "step"
        +                ],
        +                "type": "string"
        +              },
        +              "headerAlign": {
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "labels": {
        +                "$ref": "#/$defs/AreaLabels"
        +              },
        +              "line": {
        +                "$ref": "#/$defs/PromotedLine"
        +              },
        +              "locale": {
        +                "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +                "type": "string"
        +              },
        +              "order": {
        +                "$ref": "#/$defs/CategoryOrder"
        +              },
        +              "plotBorder": {
        +                "type": "boolean"
        +              },
        +              "references": {
        +                "$ref": "#/$defs/CategoricalReferences"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              },
        +              "subtitle": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "theme": {
        +                "$ref": "#/$defs/ThemeName"
        +              },
        +              "themeOverrides": {
        +                "$ref": "#/$defs/ThemeOverrides"
        +              },
        +              "title": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "type": {
        +                "const": "area",
        +                "type": "string"
        +              },
        +              "valueAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "values": {
        +                "anyOf": [
        +                  {
        +                    "oneOf": [
        +                      {
        +                        "additionalProperties": false,
        +                        "properties": {
        +                          "aggregation": {
        +                            "enum": [
        +                              "sum",
        +                              "average",
        +                              "min",
        +                              "max",
        +                              "median"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "field": {
        +                            "minLength": 1,
        +                            "type": "string"
        +                          },
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "scale": {
        +                            "$ref": "#/$defs/LinearScale"
        +                          },
        +                          "series": {
        +                            "$ref": "#/$defs/SeriesRole"
        +                          },
        +                          "type": {
        +                            "const": "long",
        +                            "type": "string"
        +                          }
        +                        },
        +                        "required": [
        +                          "type",
        +                          "field"
        +                        ],
        +                        "title": "LinearLongValuesRole",
        +                        "type": "object"
        +                      },
        +                      {
        +                        "additionalProperties": false,
        +                        "properties": {
        +                          "aggregation": {
        +                            "enum": [
        +                              "sum",
        +                              "average",
        +                              "min",
        +                              "max",
        +                              "median"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "fields": {
        +                            "items": {
        +                              "minLength": 1,
        +                              "type": "string"
        +                            },
        +                            "minItems": 1,
        +                            "type": "array",
        +                            "uniqueItems": true
        +                          },
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "scale": {
        +                            "$ref": "#/$defs/LinearScale"
        +                          },
        +                          "type": {
        +                            "const": "wide",
        +                            "type": "string"
        +                          }
        +                        },
        +                        "required": [
        +                          "type",
        +                          "fields"
        +                        ],
        +                        "title": "LinearWideValuesRole",
        +                        "type": "object"
        +                      },
        +                      {
        +                        "additionalProperties": false,
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "scale": {
        +                            "$ref": "#/$defs/LinearScale"
        +                          },
        +                          "series": {
        +                            "$ref": "#/$defs/SeriesRole"
        +                          },
        +                          "type": {
        +                            "const": "count",
        +                            "type": "string"
        +                          }
        +                        },
        +                        "required": [
        +                          "type"
        +                        ],
        +                        "title": "LinearCountValuesRole",
        +                        "type": "object"
        +                      }
        +                    ],
        +                    "title": "LinearValuesRole"
        +                  },
        +                  {
        +                    "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +                  }
        +                ],
        +                "title": "StackedLinearValuesRole"
        +              },
        +              "version": {
        +                "const": "2026-09-26",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "version",
        +              "type",
        +              "category",
        +              "values"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "accessibilityDescription": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "annotations": {
        +                "$ref": "#/$defs/CartesianAnnotations"
        +              },
        +              "arrangement": {
        +                "$ref": "#/$defs/NormalizedArrangement"
        +              },
        +              "caption": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "category": {
        +                "$ref": "#/$defs/CategoryRole"
        +              },
        +              "categoryAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "color": {
        +                "$ref": "#/$defs/CategoricalColorMapping"
        +              },
        +              "curve": {
        +                "enum": [
        +                  "linear",
        +                  "monotone",
        +                  "step"
        +                ],
        +                "type": "string"
        +              },
        +              "headerAlign": {
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "labels": {
        +                "$ref": "#/$defs/AreaLabels"
        +              },
        +              "line": {
        +                "$ref": "#/$defs/PromotedLine"
        +              },
        +              "locale": {
        +                "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +                "type": "string"
        +              },
        +              "order": {
        +                "$ref": "#/$defs/CategoryOrder"
        +              },
        +              "plotBorder": {
        +                "type": "boolean"
        +              },
        +              "references": {
        +                "$ref": "#/$defs/CategoricalReferences"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              },
        +              "subtitle": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "theme": {
        +                "$ref": "#/$defs/ThemeName"
        +              },
        +              "themeOverrides": {
        +                "$ref": "#/$defs/ThemeOverrides"
        +              },
        +              "title": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "type": {
        +                "const": "area",
        +                "type": "string"
        +              },
        +              "valueAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "values": {
        +                "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +              },
        +              "version": {
        +                "const": "2026-09-26",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "version",
        +              "type",
        +              "category",
        +              "values",
        +              "arrangement"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "accessibilityDescription": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "annotations": {
        +                "$ref": "#/$defs/ScatterAnnotations"
        +              },
        +              "caption": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "color": {
        +                "$ref": "#/$defs/ScatterColor"
        +              },
        +              "headerAlign": {
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "id": {
        +                "$ref": "#/$defs/FieldRole"
        +              },
        +              "interval": {
        +                "$ref": "#/$defs/ScatterInterval"
        +              },
        +              "labels": {
        +                "$ref": "#/$defs/ScatterLabels"
        +              },
        +              "locale": {
        +                "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +                "type": "string"
        +              },
        +              "plotBorder": {
        +                "type": "boolean"
        +              },
        +              "radius": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              },
        +              "references": {
        +                "$ref": "#/$defs/ScatterReferences"
        +              },
        +              "size": {
        +                "additionalProperties": false,
        +                "properties": {
        +                  "field": {
        +                    "minLength": 1,
        +                    "type": "string"
        +                  },
        +                  "format": {
        +                    "type": "string"
        +                  },
        +                  "legend": {
        +                    "$ref": "#/$defs/LegendOptions"
        +                  }
        +                },
        +                "required": [
        +                  "field"
        +                ],
        +                "title": "SizeEncoding",
        +                "type": "object"
        +              },
        +              "subtitle": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "theme": {
        +                "$ref": "#/$defs/ThemeName"
        +              },
        +              "themeOverrides": {
        +                "$ref": "#/$defs/ThemeOverrides"
        +              },
        +              "title": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "type": {
        +                "const": "scatter",
        +                "type": "string"
        +              },
        +              "version": {
        +                "const": "2026-09-26",
        +                "type": "string"
        +              },
        +              "x": {
        +                "$ref": "#/$defs/ScatterRole"
        +              },
        +              "xAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "y": {
        +                "$ref": "#/$defs/ScatterRole"
        +              },
        +              "yAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              }
        +            },
        +            "required": [
        +              "version",
        +              "type",
        +              "x",
        +              "y"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "accessibilityDescription": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "annotations": {
        +                "$ref": "#/$defs/ScatterAnnotations"
        +              },
        +              "caption": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "color": {
        +                "$ref": "#/$defs/ScatterColor"
        +              },
        +              "headerAlign": {
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "id": {
        +                "$ref": "#/$defs/FieldRole"
        +              },
        +              "interval": {
        +                "$ref": "#/$defs/ScatterInterval"
        +              },
        +              "labels": {
        +                "$ref": "#/$defs/ScatterLabels"
        +              },
        +              "locale": {
        +                "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +                "type": "string"
        +              },
        +              "plotBorder": {
        +                "type": "boolean"
        +              },
        +              "references": {
        +                "$ref": "#/$defs/ScatterReferences"
        +              },
        +              "size": {
        +                "additionalProperties": false,
        +                "properties": {
        +                  "field": {
        +                    "minLength": 1,
        +                    "type": "string"
        +                  },
        +                  "format": {
        +                    "type": "string"
        +                  },
        +                  "legend": {
        +                    "$ref": "#/$defs/LegendOptions"
        +                  },
        +                  "range": {
        +                    "items": [
        +                      {
        +                        "exclusiveMinimum": 0,
        +                        "type": "number"
        +                      },
        +                      {
        +                        "exclusiveMinimum": 0,
        +                        "type": "number"
        +                      }
        +                    ],
        +                    "maxItems": 2,
        +                    "minItems": 2,
        +                    "type": "array"
        +                  }
        +                },
        +                "required": [
        +                  "field",
        +                  "range"
        +                ],
        +                "title": "RangedSizeEncoding",
        +                "type": "object"
        +              },
        +              "subtitle": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "theme": {
        +                "$ref": "#/$defs/ThemeName"
        +              },
        +              "themeOverrides": {
        +                "$ref": "#/$defs/ThemeOverrides"
        +              },
        +              "title": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "type": {
        +                "const": "scatter",
        +                "type": "string"
        +              },
        +              "version": {
        +                "const": "2026-09-26",
        +                "type": "string"
        +              },
        +              "x": {
        +                "$ref": "#/$defs/ScatterRole"
        +              },
        +              "xAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              },
        +              "y": {
        +                "$ref": "#/$defs/ScatterRole"
        +              },
        +              "yAxis": {
        +                "$ref": "#/$defs/AxisOptions"
        +              }
        +            },
        +            "required": [
        +              "version",
        +              "type",
        +              "x",
        +              "y",
        +              "size"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "accessibilityDescription": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "annotations": {
        +                "items": {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "align": {
        +                      "enum": [
        +                        "start",
        +                        "center",
        +                        "end"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "anchor": {
        +                      "additionalProperties": false,
        +                      "properties": {
        +                        "category": {
        +                          "type": [
        +                            "string",
        +                            "number"
        +                          ]
        +                        },
        +                        "type": {
        +                          "const": "datum",
        +                          "type": "string"
        +                        }
        +                      },
        +                      "required": [
        +                        "type",
        +                        "category"
        +                      ],
        +                      "type": "object"
        +                    },
        +                    "boxAnchor": {
        +                      "$ref": "#/$defs/AnnotationBoxAnchor"
        +                    },
        +                    "connector": {
        +                      "enum": [
        +                        "none",
        +                        "line",
        +                        "arrow"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "offset": {
        +                      "$ref": "#/$defs/AnnotationOffset"
        +                    },
        +                    "placement": {
        +                      "$ref": "#/$defs/AnnotationPlacement"
        +                    },
        +                    "reserveSpace": {
        +                      "$ref": "#/$defs/ReserveSpace"
        +                    },
        +                    "style": {
        +                      "$ref": "#/$defs/AnnotationTextStyle"
        +                    },
        +                    "text": {
        +                      "type": "string"
        +                    },
        +                    "visible": {
        +                      "type": "boolean"
        +                    },
        +                    "width": {
        +                      "anyOf": [
        +                        {
        +                          "exclusiveMinimum": 0,
        +                          "type": "number"
        +                        },
        +                        {
        +                          "const": "shape",
        +                          "type": "string"
        +                        }
        +                      ]
        +                    }
        +                  },
        +                  "required": [
        +                    "text",
        +                    "anchor"
        +                  ],
        +                  "title": "PieAnnotation",
        +                  "type": "object"
        +                },
        +                "minItems": 1,
        +                "title": "PieAnnotations",
        +                "type": "array"
        +              },
        +              "caption": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "category": {
        +                "additionalProperties": false,
        +                "properties": {
        +                  "field": {
        +                    "minLength": 1,
        +                    "type": "string"
        +                  },
        +                  "format": {
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "field"
        +                ],
        +                "type": "object"
        +              },
        +              "color": {
        +                "$ref": "#/$defs/CategoricalColorMapping"
        +              },
        +              "cornerRadius": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "headerAlign": {
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "innerRadius": {
        +                "exclusiveMaximum": 1,
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "labels": {
        +                "additionalProperties": false,
        +                "properties": {
        +                  "content": {
        +                    "items": {
        +                      "enum": [
        +                        "category",
        +                        "value",
        +                        "percent"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "minItems": 1,
        +                    "type": "array",
        +                    "uniqueItems": true
        +                  },
        +                  "position": {
        +                    "enum": [
        +                      "auto",
        +                      "inside",
        +                      "outside"
        +                    ],
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "content"
        +                ],
        +                "type": "object"
        +              },
        +              "locale": {
        +                "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +                "type": "string"
        +              },
        +              "order": {
        +                "$ref": "#/$defs/CategoryOrder"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              },
        +              "subtitle": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "theme": {
        +                "$ref": "#/$defs/ThemeName"
        +              },
        +              "themeOverrides": {
        +                "$ref": "#/$defs/ThemeOverrides"
        +              },
        +              "title": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "type": {
        +                "const": "pie",
        +                "type": "string"
        +              },
        +              "values": {
        +                "oneOf": [
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "aggregation": {
        +                        "enum": [
        +                          "sum",
        +                          "average",
        +                          "min",
        +                          "max",
        +                          "median"
        +                        ],
        +                        "type": "string"
        +                      },
        +                      "field": {
        +                        "minLength": 1,
        +                        "type": "string"
        +                      },
        +                      "format": {
        +                        "type": "string"
        +                      },
        +                      "percentFormat": {
        +                        "type": "string"
        +                      },
        +                      "type": {
        +                        "const": "long",
        +                        "type": "string"
        +                      }
        +                    },
        +                    "required": [
        +                      "type",
        +                      "field"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "format": {
        +                        "type": "string"
        +                      },
        +                      "percentFormat": {
        +                        "type": "string"
        +                      },
        +                      "type": {
        +                        "const": "count",
        +                        "type": "string"
        +                      }
        +                    },
        +                    "required": [
        +                      "type"
        +                    ],
        +                    "type": "object"
        +                  }
        +                ]
        +              },
        +              "version": {
        +                "const": "2026-09-26",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "version",
        +              "type",
        +              "category",
        +              "values"
        +            ],
        +            "type": "object"
        +          }
        +        ]
        +      },
        +      "data": {
        +        "items": {
        +          "additionalProperties": {
        +            "type": [
        +              "string",
        +              "number",
        +              "null"
        +            ]
        +          },
        +          "propertyNames": {
        +            "type": "string"
        +          },
        +          "type": "object"
        +        },
        +        "type": "array"
        +      },
        +      "output": {
        +        "oneOf": [
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "format": {
        +                "const": "svg",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "format"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "format": {
        +                "const": "png",
        +                "type": "string"
        +              },
        +              "scale": {
        +                "anyOf": [
        +                  {
        +                    "const": 1,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 2,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 3,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 4,
        +                    "type": "number"
        +                  }
        +                ]
        +              }
        +            },
        +            "required": [
        +              "format"
        +            ],
        +            "type": "object"
        +          }
        +        ]
        +      },
        +      "presentation": {
        +        "oneOf": [
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "background": {
        +                "enum": [
        +                  "opaque",
        +                  "transparent"
        +                ],
        +                "type": "string"
        +              },
        +              "colorScheme": {
        +                "enum": [
        +                  "light",
        +                  "dark"
        +                ],
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "colorScheme",
        +              "background"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "background": {
        +                "enum": [
        +                  "opaque",
        +                  "transparent"
        +                ],
        +                "type": "string"
        +              },
        +              "colorScheme": {
        +                "const": "system",
        +                "type": "string"
        +              },
        +              "systemFallback": {
        +                "enum": [
        +                  "light",
        +                  "dark"
        +                ],
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "colorScheme",
        +              "systemFallback",
        +              "background"
        +            ],
        +            "type": "object"
        +          }
        +        ]
        +      },
        +      "size": {
        +        "oneOf": [
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "height": {
        +                "maximum": 4096,
        +                "minimum": 1,
        +                "type": "integer"
        +              },
        +              "type": {
        +                "const": "canvas",
        +                "type": "string"
        +              },
        +              "width": {
        +                "maximum": 4096,
        +                "minimum": 1,
        +                "type": "integer"
        +              }
        +            },
        +            "required": [
        +              "type",
        +              "width",
        +              "height"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "height": {
        +                "maximum": 4096,
        +                "minimum": 1,
        +                "type": "integer"
        +              },
        +              "margin": {
        +                "additionalProperties": false,
        +                "minProperties": 1,
        +                "properties": {
        +                  "bottom": {
        +                    "minimum": 0,
        +                    "type": "number"
        +                  },
        +                  "left": {
        +                    "minimum": 0,
        +                    "type": "number"
        +                  },
        +                  "right": {
        +                    "minimum": 0,
        +                    "type": "number"
        +                  },
        +                  "top": {
        +                    "minimum": 0,
        +                    "type": "number"
        +                  }
        +                },
        +                "title": "Margin",
        +                "type": "object"
        +              },
        +              "type": {
        +                "const": "plot",
        +                "type": "string"
        +              },
        +              "width": {
        +                "maximum": 4096,
        +                "minimum": 1,
        +                "type": "integer"
        +              }
        +            },
        +            "required": [
        +              "type",
        +              "width",
        +              "height"
        +            ],
        +            "type": "object"
        +          }
        +        ]
        +      },
        +      "version": {
        +        "const": "2026-09-26",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "version",
        +      "config",
        +      "data"
        +    ],
        +    "type": "object"
        +  }
        +}
      • addedOutput schema / properties / durableInput
        Added value: +{
        +  "oneOf": [
        +    {
        +      "additionalProperties": false,
        +      "properties": {
        +        "document": {
        +          "$ref": "#/$defs/szumSchema88"
        +        },
        +        "status": {
        +          "const": "ready",
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "status",
        +        "document"
        +      ],
        +      "type": "object"
        +    },
        +    {
        +      "additionalProperties": false,
        +      "properties": {
        +        "lossCodes": {
        +          "items": {
        +            "type": "string"
        +          },
        +          "minItems": 1,
        +          "type": "array"
        +        },
        +        "status": {
        +          "const": "loss_acceptance_required",
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "status",
        +        "lossCodes"
        +      ],
        +      "type": "object"
        +    }
        +  ]
        +}
      • addedOutput schema / properties / validation / properties / compatibility
        Added value: +{
        +  "oneOf": [
        +    {
        +      "additionalProperties": false,
        +      "properties": {
        +        "classification": {
        +          "enum": [
        +            "exact",
        +            "normalized"
        +          ],
        +          "type": "string"
        +        },
        +        "lossCodes": {
        +          "maxItems": 0,
        +          "minItems": 0,
        +          "type": "array"
        +        }
        +      },
        +      "required": [
        +        "classification",
        +        "lossCodes"
        +      ],
        +      "type": "object"
        +    },
        +    {
        +      "additionalProperties": false,
        +      "properties": {
        +        "classification": {
        +          "const": "lossy",
        +          "type": "string"
        +        },
        +        "lossCodes": {
        +          "items": {
        +            "type": "string"
        +          },
        +          "minItems": 1,
        +          "type": "array"
        +        }
        +      },
        +      "required": [
        +        "classification",
        +        "lossCodes"
        +      ],
        +      "type": "object"
        +    },
        +    {
        +      "additionalProperties": false,
        +      "properties": {
        +        "classification": {
        +          "const": "unsupported",
        +          "type": "string"
        +        },
        +        "lossCodes": {
        +          "maxItems": 0,
        +          "minItems": 0,
        +          "type": "array"
        +        },
        +        "unsupportedCode": {
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "classification",
        +        "lossCodes",
        +        "unsupportedCode"
        +      ],
        +      "type": "object"
        +    }
        +  ]
        +}
      • removedOutput schema / properties / validation / properties / diagnostics / items / additionalProperties
        Removed value: -false
      • addedOutput schema / properties / validation / properties / diagnostics / items / oneOf
        Added value: +[
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "invalid_structure",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "actualBytes": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "maxBytes": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "reason": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "invalid_preference",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "actualItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "fields": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "maximum": {
        +            "type": "number"
        +          },
        +          "minimum": {
        +            "type": "number"
        +          },
        +          "minimumItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "parts": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "property": {
        +            "type": "string"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "requiredItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "role": {
        +            "type": "string"
        +          },
        +          "samplePaths": {
        +            "items": {
        +              "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "sampleValues": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "syntax": {
        +            "enum": [
        +              "percent",
        +              "semantic"
        +            ],
        +            "type": "string"
        +          },
        +          "type": {
        +            "type": "string"
        +          },
        +          "value": {
        +            "type": [
        +              "string",
        +              "number"
        +            ]
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "incompatible_data",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "affectedCategories": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "affectedRows": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "aggregation": {
        +            "type": "string"
        +          },
        +          "axis": {
        +            "enum": [
        +              "x",
        +              "y"
        +            ],
        +            "type": "string"
        +          },
        +          "categoryField": {
        +            "type": "string"
        +          },
        +          "expected": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "field": {
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "omission": {
        +            "enum": [
        +              "incompatible",
        +              "missing"
        +            ],
        +            "type": "string"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "roles": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "rowCount": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "samplePaths": {
        +            "items": {
        +              "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "sampleValues": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "valueField": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "incompatible_scale",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "actualItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "affectedValues": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "axis": {
        +            "enum": [
        +              "x",
        +              "y"
        +            ],
        +            "type": "string"
        +          },
        +          "domain": {
        +            "items": [
        +              {
        +                "type": "number"
        +              },
        +              {
        +                "type": "number"
        +              }
        +            ],
        +            "maxItems": 2,
        +            "minItems": 2,
        +            "type": "array"
        +          },
        +          "expectedItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "markTypes": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "samplePaths": {
        +            "items": {
        +              "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "sampleValues": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "supportedTypes": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "type": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "duplicate_identity",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "affectedRows": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "categoryField": {
        +            "type": "string"
        +          },
        +          "field": {
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "samplePaths": {
        +            "items": {
        +              "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "seriesField": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "unresolved_decoration",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "annotationIndex": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "axis": {
        +            "enum": [
        +              "x",
        +              "y"
        +            ],
        +            "type": "string"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "referenceIndex": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "statistic": {
        +            "type": "string"
        +          },
        +          "value": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "render_adjustment",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "affectedCount": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "labelRoles": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "reason": {
        +            "const": "label_collision_suppressed",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason",
        +          "affectedCount",
        +          "labelRoles"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  }
        +]
      • removedOutput schema / properties / validation / properties / diagnostics / items / properties
        Removed value: -{
        -  "code": {
        -    "type": "string"
        -  },
        -  "details": {
        -    "additionalProperties": {},
        -    "propertyNames": {
        -      "type": "string"
        -    },
        -    "type": "object"
        -  },
        -  "message": {
        -    "type": "string"
        -  },
        -  "path": {
        -    "items": {
        -      "anyOf": [
        -        {
        -          "type": "string"
        -        },
        -        {
        -          "type": "number"
        -        }
        -      ]
        -    },
        -    "type": "array"
        -  },
        -  "relatedPaths": {
        -    "items": {
        -      "items": {
        -        "anyOf": [
        -          {
        -            "type": "string"
        -          },
        -          {
        -            "type": "number"
        -          }
        -        ]
        -      },
        -      "type": "array"
        -    },
        -    "type": "array"
        -  },
        -  "severity": {
        -    "enum": [
        -      "error",
        -      "warning",
        -      "suggestion"
        -    ],
        -    "type": "string"
        -  }
        -}
      • removedOutput schema / properties / validation / properties / diagnostics / items / required
        Removed value: -[
        -  "code",
        -  "severity",
        -  "path",
        -  "message",
        -  "details"
        -]
      • removedOutput schema / properties / validation / properties / diagnostics / items / type
        Removed value: -"object"
      • removedOutput schema / properties / validation / properties / errors
        Removed value: -{
        -  "items": {
        -    "additionalProperties": false,
        -    "properties": {
        -      "code": {
        -        "type": "string"
        -      },
        -      "details": {
        -        "additionalProperties": {},
        -        "propertyNames": {
        -          "type": "string"
        -        },
        -        "type": "object"
        -      },
        -      "message": {
        -        "type": "string"
        -      },
        -      "path": {
        -        "items": {
        -          "anyOf": [
        -            {
        -              "type": "string"
        -            },
        -            {
        -              "type": "number"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "relatedPaths": {
        -        "items": {
        -          "items": {
        -            "anyOf": [
        -              {
        -                "type": "string"
        -              },
        -              {
        -                "type": "number"
        -              }
        -            ]
        -          },
        -          "type": "array"
        -        },
        -        "type": "array"
        -      },
        -      "severity": {
        -        "enum": [
        -          "error",
        -          "warning",
        -          "suggestion"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "code",
        -      "severity",
        -      "path",
        -      "message",
        -      "details"
        -    ],
        -    "type": "object"
        -  },
        -  "type": "array"
        -}
      • removedOutput schema / properties / validation / properties / message
        Removed value: -{
        -  "type": "string"
        -}
      • removedOutput schema / properties / validation / properties / suggestedConfig
        Removed value: -{
        -  "additionalProperties": {},
        -  "description": "Schema version 2026-03-20. Send this JSON to POST https://szum.io/validate to validate it or POST https://szum.io/chart to render a chart image.",
        -  "properties": {
        -    "attribution": {
        -      "description": "Show a small \"Made with Szum\" credit in the bottom-right. Always on for free and keyless renders; Creator and Pro omit it by default and set true to opt in.",
        -      "type": "boolean"
        -    },
        -    "color": {
        -      "anyOf": [
        -        {
        -          "additionalProperties": {},
        -          "properties": {
        -            "domain": {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            },
        -            "label": {
        -              "type": "string"
        -            },
        -            "range": {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            },
        -            "type": {
        -              "const": "categorical",
        -              "type": "string"
        -            }
        -          },
        -          "required": [
        -            "type"
        -          ],
        -          "type": "object"
        -        },
        -        {
        -          "additionalProperties": {},
        -          "properties": {
        -            "domain": {
        -              "items": [
        -                {
        -                  "type": "number"
        -                },
        -                {
        -                  "type": "number"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            "label": {
        -              "type": "string"
        -            },
        -            "range": {
        -              "items": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "string"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            "type": {
        -              "const": "sequential",
        -              "type": "string"
        -            }
        -          },
        -          "required": [
        -            "type"
        -          ],
        -          "type": "object"
        -        },
        -        {
        -          "additionalProperties": false,
        -          "properties": {
        -            "label": {
        -              "type": "string"
        -            }
        -          },
        -          "type": "object"
        -        }
        -      ]
        -    },
        -    "data": {
        -      "items": {
        -        "additionalProperties": {
        -          "anyOf": [
        -            {
        -              "type": "string"
        -            },
        -            {
        -              "type": "number"
        -            }
        -          ]
        -        },
        -        "propertyNames": {
        -          "type": "string"
        -        },
        -        "type": "object"
        -      },
        -      "type": "array"
        -    },
        -    "footer": {
        -      "description": "Caption below the chart (a source line, methodology note, date). URLs, bare domains, and [label](url) links in it are auto-detected and rendered as inline links on every surface.",
        -      "type": "string"
        -    },
        -    "format": {
        -      "enum": [
        -        "svg",
        -        "png"
        -      ],
        -      "type": "string"
        -    },
        -    "headerAlign": {
        -      "enum": [
        -        "left",
        -        "center",
        -        "right"
        -      ],
        -      "type": "string"
        -    },
        -    "height": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "locale": {
        -      "description": "Locale identifier accepted by JavaScript Intl and associated with the chart content, such as en, pl, or zh-Hant.",
        -      "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        -      "type": "string"
        -    },
        -    "margin": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "bottom": {
        -          "type": "number"
        -        },
        -        "left": {
        -          "type": "number"
        -        },
        -        "right": {
        -          "type": "number"
        -        },
        -        "top": {
        -          "type": "number"
        -        }
        -      },
        -      "type": "object"
        -    },
        -    "marks": {
        -      "items": {
        -        "oneOf": [
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "label": {
        -                "additionalProperties": {},
        -                "properties": {
        -                  "field": {
        -                    "type": "string"
        -                  },
        -                  "format": {
        -                    "type": "string"
        -                  }
        -                },
        -                "required": [
        -                  "field"
        -                ],
        -                "type": "object"
        -              },
        -              "r": {
        -                "type": "number"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "dot",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "curve": {
        -                "enum": [
        -                  "linear",
        -                  "monotone",
        -                  "step"
        -                ],
        -                "type": "string"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "end": {
        -                        "anyOf": [
        -                          {
        -                            "type": "boolean"
        -                          },
        -                          {
        -                            "items": {
        -                              "enum": [
        -                                "category",
        -                                "value"
        -                              ],
        -                              "type": "string"
        -                            },
        -                            "type": "array"
        -                          }
        -                        ],
        -                        "default": [
        -                          "category"
        -                        ]
        -                      },
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "points": {
        -                        "anyOf": [
        -                          {
        -                            "enum": [
        -                              "extrema",
        -                              "all",
        -                              "ends"
        -                            ],
        -                            "type": "string"
        -                          },
        -                          {
        -                            "const": false,
        -                            "type": "boolean"
        -                          },
        -                          {
        -                            "additionalProperties": {},
        -                            "properties": {
        -                              "at": {
        -                                "enum": [
        -                                  "extrema",
        -                                  "all",
        -                                  "ends"
        -                                ],
        -                                "type": "string"
        -                              },
        -                              "show": {
        -                                "default": [
        -                                  "value"
        -                                ],
        -                                "items": {
        -                                  "enum": [
        -                                    "value",
        -                                    "category"
        -                                  ],
        -                                  "type": "string"
        -                                },
        -                                "type": "array"
        -                              }
        -                            },
        -                            "required": [
        -                              "at"
        -                            ],
        -                            "type": "object"
        -                          }
        -                        ],
        -                        "default": false
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "line",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "cornerRadius": {
        -                "type": "number"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "group": {
        -                "default": "stack",
        -                "enum": [
        -                  "stack",
        -                  "dodge"
        -                ],
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "position": {
        -                        "default": "outside",
        -                        "enum": [
        -                          "auto",
        -                          "outside",
        -                          "inside"
        -                        ],
        -                        "type": "string"
        -                      },
        -                      "show": {
        -                        "default": [
        -                          "value"
        -                        ],
        -                        "items": {
        -                          "enum": [
        -                            "value",
        -                            "percent",
        -                            "category",
        -                            "total"
        -                          ],
        -                          "type": "string"
        -                        },
        -                        "type": "array"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "barY",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "cornerRadius": {
        -                "type": "number"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "group": {
        -                "default": "stack",
        -                "enum": [
        -                  "stack",
        -                  "dodge"
        -                ],
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "position": {
        -                        "default": "outside",
        -                        "enum": [
        -                          "auto",
        -                          "outside",
        -                          "inside"
        -                        ],
        -                        "type": "string"
        -                      },
        -                      "show": {
        -                        "default": [
        -                          "value"
        -                        ],
        -                        "items": {
        -                          "enum": [
        -                            "value",
        -                            "percent",
        -                            "category",
        -                            "total"
        -                          ],
        -                          "type": "string"
        -                        },
        -                        "type": "array"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "barX",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "curve": {
        -                "enum": [
        -                  "linear",
        -                  "monotone",
        -                  "step"
        -                ],
        -                "type": "string"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "end": {
        -                        "anyOf": [
        -                          {
        -                            "type": "boolean"
        -                          },
        -                          {
        -                            "items": {
        -                              "enum": [
        -                                "category",
        -                                "value",
        -                                "percent"
        -                              ],
        -                              "type": "string"
        -                            },
        -                            "type": "array"
        -                          }
        -                        ],
        -                        "default": [
        -                          "category"
        -                        ]
        -                      },
        -                      "format": {
        -                        "type": "string"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "areaY",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "curve": {
        -                "enum": [
        -                  "linear",
        -                  "monotone",
        -                  "step"
        -                ],
        -                "type": "string"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "areaX",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "cornerRadius": {
        -                "type": "number"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "innerRadius": {
        -                "default": 0,
        -                "maximum": 1,
        -                "minimum": 0,
        -                "type": "number"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "position": {
        -                        "default": "auto",
        -                        "enum": [
        -                          "auto",
        -                          "inside",
        -                          "outside"
        -                        ],
        -                        "type": "string"
        -                      },
        -                      "show": {
        -                        "default": [
        -                          "category",
        -                          "percent"
        -                        ],
        -                        "items": {
        -                          "enum": [
        -                            "value",
        -                            "percent",
        -                            "category"
        -                          ],
        -                          "type": "string"
        -                        },
        -                        "type": "array"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "pie",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "dx": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "dy": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "fontSize": {
        -                "type": "number"
        -              },
        -              "fontWeight": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "text": {
        -                "default": "text",
        -                "type": "string"
        -              },
        -              "textAnchor": {
        -                "default": "center",
        -                "enum": [
        -                  "start",
        -                  "center",
        -                  "end"
        -                ],
        -                "type": "string"
        -              },
        -              "type": {
        -                "const": "text",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "ruleX",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "ruleY",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          }
        -        ]
        -      },
        -      "minItems": 1,
        -      "type": "array"
        -    },
        -    "plotHeight": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "plotWidth": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "scale": {
        -      "maximum": 4,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "subtitle": {
        -      "type": "string"
        -    },
        -    "theme": {
        -      "default": "editorial",
        -      "enum": [
        -        "editorial",
        -        "clean",
        -        "noir",
        -        "loud",
        -        "soft",
        -        "technical"
        -      ],
        -      "type": "string"
        -    },
        -    "themeOverrides": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "axisColor": {
        -          "type": "string"
        -        },
        -        "axisFrame": {
        -          "enum": [
        -            "none",
        -            "baseline",
        -            "lShape",
        -            "full"
        -          ],
        -          "type": "string"
        -        },
        -        "axisLabelColor": {
        -          "type": "string"
        -        },
        -        "axisLabelFontWeight": {
        -          "type": "string"
        -        },
        -        "axisLineWidth": {
        -          "type": "number"
        -        },
        -        "backgroundColor": {
        -          "type": "string"
        -        },
        -        "barCornerRadius": {
        -          "type": "number"
        -        },
        -        "barPadding": {
        -          "type": "number"
        -        },
        -        "colors": {
        -          "items": {
        -            "type": "string"
        -          },
        -          "type": "array"
        -        },
        -        "curve": {
        -          "enum": [
        -            "linear",
        -            "monotone",
        -            "step"
        -          ],
        -          "type": "string"
        -        },
        -        "dotRadius": {
        -          "type": "number"
        -        },
        -        "fontFamily": {
        -          "enum": [
        -            "ABeeZee",
        -            "ADLaM Display",
        -            "AR One Sans",
        -            "Abel",
        -            "Abhaya Libre",
        -            "Aboreto",
        -            "Abril Fatface",
        -            "Abyssinica SIL",
        -            "Aclonica",
        -            "Acme",
        -            "Actor",
        -            "Adamina",
        -            "Advent Pro",
        -            "Afacad",
        -            "Afacad Flux",
        -            "Agbalumo",
        -            "Agdasima",
        -            "Agu Display",
        -            "Aguafina Script",
        -            "Akatab",
        -            "Akaya Kanadaka",
        -            "Akaya Telivigala",
        -            "Akronim",
        -            "Akshar",
        -            "Akt",
        -            "Aladin",
        -            "Alan Sans",
        -            "Alata",
        -            "Alatsi",
        -            "Albert Sans",
        -            "Aldrich",
        -            "Alef",
        -            "Alegreya",
        -            "Alegreya SC",
        -            "Alegreya Sans",
        -            "Alegreya Sans SC",
        -            "Aleo",
        -            "Alex Brush",
        -            "Alexandria",
        -            "Alfa Slab One",
        -            "Alice",
        -            "Alien Block",
        -            "Alike",
        -            "Alike Angular",
        -            "Alkalami",
        -            "Alkatra",
        -            "Allan",
        -            "Allerta",
        -            "Allerta Stencil",
        -            "Allison",
        -            "Allkin",
        -            "Allura",
        -            "Almarai",
        -            "Almendra",
        -            "Almendra Display",
        -            "Almendra SC",
        -            "Alumni Sans",
        -            "Alumni Sans Collegiate One",
        -            "Alumni Sans Inline One",
        -            "Alumni Sans Pinstripe",
        -            "Alumni Sans SC",
        -            "Alyamama",
        -            "Amarante",
        -            "Amaranth",
        -            "Amarna",
        -            "Amatic SC",
        -            "Amethysta",
        -            "Amiko",
        -            "Amiri",
        -            "Amiri Quran",
        -            "Amita",
        -            "Anaheim",
        -            "Ancizar Sans",
        -            "Ancizar Serif",
        -            "Andada Pro",
        -            "Andika",
        -            "Anek Bangla",
        -            "Anek Devanagari",
        -            "Anek Gujarati",
        -            "Anek Gurmukhi",
        -            "Anek Kannada",
        -            "Anek Latin",
        -            "Anek Malayalam",
        -            "Anek Odia",
        -            "Anek Tamil",
        -            "Anek Telugu",
        -            "Angkor",
        -            "Annapurna SIL",
        -            "Annie Use Your Telescope",
        -            "Anonymous Pro",
        -            "Anta",
        -            "Antic",
        -            "Antic Didone",
        -            "Antic Slab",
        -            "Anton",
        -            "Anton SC",
        -            "Antonio",
        -            "Anuphan",
        -            "Anybody",
        -            "Aoboshi One",
        -            "Arapey",
        -            "Arbutus",
        -            "Arbutus Slab",
        -            "Architects Daughter",
        -            "Archivo",
        -            "Archivo Black",
        -            "Archivo Narrow",
        -            "Are You Serious",
        -            "Aref Ruqaa",
        -            "Aref Ruqaa Ink",
        -            "Arima",
        -            "Arimo",
        -            "Arizonia",
        -            "Armata",
        -            "Arsenal",
        -            "Arsenal SC",
        -            "Artifika",
        -            "Arvo",
        -            "Arya",
        -            "Asap",
        -            "Asap Condensed",
        -            "Asar",
        -            "Asimovian",
        -            "Asset",
        -            "Assistant",
        -            "Asta Sans",
        -            "Astloch",
        -            "Asul",
        -            "Athiti",
        -            "Atkinson Hyperlegible",
        -            "Atkinson Hyperlegible Mono",
        -            "Atkinson Hyperlegible Next",
        -            "Atma",
        -            "Atomic Age",
        -            "Aubrey",
        -            "Audiowide",
        -            "Autour One",
        -            "Average",
        -            "Average Sans",
        -            "Averia Gruesa Libre",
        -            "Averia Libre",
        -            "Averia Sans Libre",
        -            "Averia Serif Libre",
        -            "Azeret Mono",
        -            "B612",
        -            "B612 Mono",
        -            "BBH Bartle",
        -            "BBH Bogle",
        -            "BBH Hegarty",
        -            "BIZ UDGothic",
        -            "BIZ UDMincho",
        -            "BIZ UDPGothic",
        -            "BIZ UDPMincho",
        -            "BJCree",
        -            "Babylonica",
        -            "Bacasime Antique",
        -            "Bad Script",
        -            "Badeen Display",
        -            "Bagel Fat One",
        -            "Bahiana",
        -            "Bahianita",
        -            "Bai Jamjuree",
        -            "Bakbak One",
        -            "Ballet",
        -            "Baloo 2",
        -            "Baloo Bhai 2",
        -            "Baloo Bhaijaan 2",
        -            "Baloo Bhaina 2",
        -            "Baloo Chettan 2",
        -            "Baloo Da 2",
        -            "Baloo Paaji 2",
        -            "Baloo Tamma 2",
        -            "Baloo Tammudu 2",
        -            "Baloo Thambi 2",
        -            "Balsamiq Sans",
        -            "Balthazar",
        -            "Bangers",
        -            "Barlow",
        -            "Barlow Condensed",
        -            "Barlow Semi Condensed",
        -            "Barriecito",
        -            "Barrio",
        -            "Basic",
        -            "Baskervville",
        -            "Baskervville SC",
        -            "Battambang",
        -            "Baumans",
        -            "Bayon",
        -            "Be Vietnam Pro",
        -            "Beau Rivage",
        -            "Bebas Neue",
        -            "Beiruti",
        -            "Belanosima",
        -            "Belgrano",
        -            "Bellefair",
        -            "Belleza",
        -            "Bellota",
        -            "Bellota Text",
        -            "BenchNine",
        -            "Benne",
        -            "Bentham",
        -            "Berkshire Swash",
        -            "Besley",
        -            "Betania Patmos",
        -            "Betania Patmos GDL",
        -            "Betania Patmos In",
        -            "Betania Patmos In GDL",
        -            "Beth Ellen",
        -            "Bevan",
        -            "BhuTuka Expanded One",
        -            "Big Shoulders",
        -            "Big Shoulders Inline",
        -            "Big Shoulders Stencil",
        -            "Bigelow Rules",
        -            "Bigshot One",
        -            "Bilbo",
        -            "Bilbo Swash Caps",
        -            "BioRhyme",
        -            "BioRhyme Expanded",
        -            "Birthstone",
        -            "Birthstone Bounce",
        -            "Biryani",
        -            "Bitcount",
        -            "Bitcount Grid Double",
        -            "Bitcount Grid Double Ink",
        -            "Bitcount Grid Single",
        -            "Bitcount Grid Single Ink",
        -            "Bitcount Ink",
        -            "Bitcount Prop Double",
        -            "Bitcount Prop Double Ink",
        -            "Bitcount Prop Single",
        -            "Bitcount Prop Single Ink",
        -            "Bitcount Single",
        -            "Bitcount Single Ink",
        -            "Bitter",
        -            "Black And White Picture",
        -            "Black Han Sans",
        -            "Black Ops One",
        -            "Blaka",
        -            "Blaka Hollow",
        -            "Blaka Ink",
        -            "Blinker",
        -            "Bodoni Moda",
        -            "Bodoni Moda SC",
        -            "Bokor",
        -            "Boldonse",
        -            "Bona Nova",
        -            "Bona Nova SC",
        -            "Bonbon",
        -            "Bonheur Royale",
        -            "Boogaloo",
        -            "Borel",
        -            "Bowlby One",
        -            "Bowlby One SC",
        -            "Bpmf Huninn",
        -            "Bpmf Iansui",
        -            "Bpmf Zihi Kai Std",
        -            "Braah One",
        -            "Brawler",
        -            "Bree Serif",
        -            "Bricolage Grotesque",
        -            "Bruno Ace",
        -            "Bruno Ace SC",
        -            "Brygada 1918",
        -            "Bubblegum Sans",
        -            "Bubbler One",
        -            "Buda",
        -            "Buenard",
        -            "Bungee",
        -            "Bungee Hairline",
        -            "Bungee Inline",
        -            "Bungee Outline",
        -            "Bungee Shade",
        -            "Bungee Spice",
        -            "Bungee Tint",
        -            "Butcherman",
        -            "Butterfly Kids",
        -            "Bytesized",
        -            "Cabin",
        -            "Cabin Condensed",
        -            "Cabin Sketch",
        -            "Cactus Classical Serif",
        -            "Caesar Dressing",
        -            "Cagliostro",
        -            "Cairo",
        -            "Cairo Play",
        -            "Cal Sans",
        -            "Caladea",
        -            "Calistoga",
        -            "Calligraffitti",
        -            "Cambay",
        -            "Cambo",
        -            "Candal",
        -            "Cantarell",
        -            "Cantata One",
        -            "Cantora One",
        -            "Caprasimo",
        -            "Capriola",
        -            "Caramel",
        -            "Carattere",
        -            "Cardo",
        -            "Carlito",
        -            "Carme",
        -            "Carrois Gothic",
        -            "Carrois Gothic SC",
        -            "Carter One",
        -            "Cascadia Code",
        -            "Cascadia Mono",
        -            "Castoro",
        -            "Castoro Titling",
        -            "Catamaran",
        -            "Caudex",
        -            "Cause",
        -            "Caveat",
        -            "Caveat Brush",
        -            "Cedarville Cursive",
        -            "Ceviche One",
        -            "Chakra Petch",
        -            "Changa",
        -            "Changa One",
        -            "Chango",
        -            "Charis SIL",
        -            "Charm",
        -            "Charmonman",
        -            "Chathura",
        -            "Chau Philomene One",
        -            "Chela One",
        -            "Chelsea Market",
        -            "Chenla",
        -            "Cherish",
        -            "Cherry Bomb One",
        -            "Cherry Cream Soda",
        -            "Cherry Swash",
        -            "Chewy",
        -            "Chicle",
        -            "Chilanka",
        -            "Chiron GoRound TC",
        -            "Chiron Hei HK",
        -            "Chiron Sung HK",
        -            "Chivo",
        -            "Chivo Mono",
        -            "Chocolate Classical Sans",
        -            "Chokokutai",
        -            "Chonburi",
        -            "Cinzel",
        -            "Cinzel Decorative",
        -            "Clicker Script",
        -            "Climate Crisis",
        -            "Coda",
        -            "Codystar",
        -            "Coiny",
        -            "Combo",
        -            "Comfortaa",
        -            "Comforter",
        -            "Comforter Brush",
        -            "Comic Neue",
        -            "Comic Relief",
        -            "Coming Soon",
        -            "Comme",
        -            "Commissioner",
        -            "Concert One",
        -            "Condiment",
        -            "Content",
        -            "Contrail One",
        -            "Convergence",
        -            "Cookie",
        -            "Copse",
        -            "Coral Pixels",
        -            "Corben",
        -            "Corinthia",
        -            "Cormorant",
        -            "Cormorant Garamond",
        -            "Cormorant Infant",
        -            "Cormorant SC",
        -            "Cormorant Unicase",
        -            "Cormorant Upright",
        -            "Cossette Texte",
        -            "Cossette Titre",
        -            "Courgette",
        -            "Courier Prime",
        -            "Cousine",
        -            "Coustard",
        -            "Covered By Your Grace",
        -            "Crafty Girls",
        -            "Creepster",
        -            "Crete Round",
        -            "Crimson Pro",
        -            "Crimson Text",
        -            "Croissant One",
        -            "Crushed",
        -            "Cuprum",
        -            "Cute Font",
        -            "Cutive",
        -            "Cutive Mono",
        -            "DM Mono",
        -            "DM Sans",
        -            "DM Serif Display",
        -            "DM Serif Text",
        -            "Dai Banna SIL",
        -            "Damion",
        -            "Dancing Script",
        -            "Danfo",
        -            "Dangrek",
        -            "Darker Grotesque",
        -            "Darumadrop One",
        -            "Datatype",
        -            "David Libre",
        -            "Dawning of a New Day",
        -            "Days One",
        -            "Dekko",
        -            "Dela Gothic One",
        -            "Delicious Handrawn",
        -            "Delius",
        -            "Delius Swash Caps",
        -            "Delius Unicase",
        -            "Della Respira",
        -            "Denk One",
        -            "Devonshire",
        -            "Dhurjati",
        -            "Didact Gothic",
        -            "Diphylleia",
        -            "Diplomata",
        -            "Diplomata SC",
        -            "Do Hyeon",
        -            "Dokdo",
        -            "Domine",
        -            "Donegal One",
        -            "Dongle",
        -            "Doppio One",
        -            "Dorsa",
        -            "Dosis",
        -            "DotGothic16",
        -            "Doto",
        -            "Dr Sugiyama",
        -            "Duru Sans",
        -            "DynaPuff",
        -            "Dynalight",
        -            "EB Garamond",
        -            "Eagle Lake",
        -            "East Sea Dokdo",
        -            "Eater",
        -            "Economica",
        -            "Eczar",
        -            "Edu AU VIC WA NT Arrows",
        -            "Edu AU VIC WA NT Dots",
        -            "Edu AU VIC WA NT Guides",
        -            "Edu AU VIC WA NT Hand",
        -            "Edu AU VIC WA NT Pre",
        -            "Edu NSW ACT Cursive",
        -            "Edu NSW ACT Foundation",
        -            "Edu NSW ACT Hand Pre",
        -            "Edu QLD Beginner",
        -            "Edu QLD Hand",
        -            "Edu SA Beginner",
        -            "Edu SA Hand",
        -            "Edu TAS Beginner",
        -            "Edu VIC WA NT Beginner",
        -            "Edu VIC WA NT Hand",
        -            "Edu VIC WA NT Hand Pre",
        -            "El Messiri",
        -            "Electrolize",
        -            "Elms Sans",
        -            "Elsie",
        -            "Elsie Swash Caps",
        -            "Emblema One",
        -            "Emilys Candy",
        -            "Encode Sans",
        -            "Encode Sans Condensed",
        -            "Encode Sans Expanded",
        -            "Encode Sans SC",
        -            "Encode Sans Semi Condensed",
        -            "Encode Sans Semi Expanded",
        -            "Engagement",
        -            "Englebert",
        -            "Enriqueta",
        -            "Ephesis",
        -            "Epilogue",
        -            "Epunda Sans",
        -            "Epunda Slab",
        -            "Erica One",
        -            "Esteban",
        -            "Estedad",
        -            "Estonia",
        -            "Euphoria Script",
        -            "Ewert",
        -            "Exile",
        -            "Exo",
        -            "Exo 2",
        -            "Expletus Sans",
        -            "Explora",
        -            "Faculty Glyphic",
        -            "Fahkwang",
        -            "Familjen Grotesk",
        -            "Fanwood Text",
        -            "Farro",
        -            "Farsan",
        -            "Fascinate",
        -            "Fascinate Inline",
        -            "Faster One",
        -            "Fasthand",
        -            "Fauna One",
        -            "Faustina",
        -            "Federant",
        -            "Federo",
        -            "Felipa",
        -            "Fenix",
        -            "Festive",
        -            "Figtree",
        -            "Finger Paint",
        -            "Finlandica Headline",
        -            "Finlandica Text",
        -            "Fira Code",
        -            "Fira Mono",
        -            "Fira Sans",
        -            "Fira Sans Condensed",
        -            "Fira Sans Extra Condensed",
        -            "Fjalla One",
        -            "Fjord One",
        -            "Flamenco",
        -            "Flavors",
        -            "Fleur De Leah",
        -            "Flow Block",
        -            "Flow Circular",
        -            "Flow Rounded",
        -            "Foldit",
        -            "Fondamento",
        -            "Fontdiner Swanky",
        -            "Forum",
        -            "Fragment Mono",
        -            "Francois One",
        -            "Frank Ruhl Libre",
        -            "Fraunces",
        -            "Freckle Face",
        -            "Fredericka the Great",
        -            "Fredoka",
        -            "Freehand",
        -            "Freeman",
        -            "Fresca",
        -            "Frijole",
        -            "Fruktur",
        -            "Fugaz One",
        -            "Fuggles",
        -            "Funnel Display",
        -            "Funnel Sans",
        -            "Fustat",
        -            "Fuzzy Bubbles",
        -            "GFS Didot",
        -            "GFS Neohellenic",
        -            "Ga Maamli",
        -            "Gabarito",
        -            "Gabriela",
        -            "Gaegu",
        -            "Gafata",
        -            "Gajraj One",
        -            "Galada",
        -            "Galdeano",
        -            "Galindo",
        -            "Gamja Flower",
        -            "Gantari",
        -            "Gasoek One",
        -            "Gayathri",
        -            "Geist",
        -            "Geist Mono",
        -            "Geist Pixel",
        -            "Gelasio",
        -            "Gemunu Libre",
        -            "Genos",
        -            "Gentium Book Plus",
        -            "Gentium Plus",
        -            "Geo",
        -            "Geologica",
        -            "Geom",
        -            "Geomini",
        -            "Georama",
        -            "Geostar",
        -            "Geostar Fill",
        -            "Germania One",
        -            "Gideon Roman",
        -            "Gidole",
        -            "Gidugu",
        -            "Gilda Display",
        -            "Girassol",
        -            "Give You Glory",
        -            "Glass Antiqua",
        -            "Glegoo",
        -            "Gloock",
        -            "Gloria Hallelujah",
        -            "Glory",
        -            "Gluten",
        -            "Goblin One",
        -            "Gochi Hand",
        -            "Goldman",
        -            "Golos Text",
        -            "Google Sans",
        -            "Google Sans Code",
        -            "Google Sans Flex",
        -            "Gorditas",
        -            "Gothic A1",
        -            "Gotu",
        -            "Goudy Bookletter 1911",
        -            "Gowun Batang",
        -            "Gowun Dodum",
        -            "Graduate",
        -            "Grand Hotel",
        -            "Grandiflora One",
        -            "Grandstander",
        -            "Grape Nuts",
        -            "Gravitas One",
        -            "Great Vibes",
        -            "Grechen Fuemen",
        -            "Grenze",
        -            "Grenze Gotisch",
        -            "Grey Qo",
        -            "Griffy",
        -            "Gruppo",
        -            "Gudea",
        -            "Gugi",
        -            "Gulzar",
        -            "Gupter",
        -            "Gurajada",
        -            "Gveret Levin",
        -            "Gwendolyn",
        -            "Habibi",
        -            "Hachi Maru Pop",
        -            "Hahmlet",
        -            "Halant",
        -            "Hammersmith One",
        -            "Hanalei",
        -            "Hanalei Fill",
        -            "Handjet",
        -            "Handlee",
        -            "Hanken Grotesk",
        -            "Hanuman",
        -            "Happy Monkey",
        -            "Harmattan",
        -            "Headland One",
        -            "Hedvig Letters Sans",
        -            "Hedvig Letters Serif",
        -            "Heebo",
        -            "Henny Penny",
        -            "Hepta Slab",
        -            "Herr Von Muellerhoff",
        -            "Hi Melody",
        -            "Hibur Mono",
        -            "Hina Mincho",
        -            "Hind",
        -            "Hind Guntur",
        -            "Hind Madurai",
        -            "Hind Mysuru",
        -            "Hind Siliguri",
        -            "Hind Vadodara",
        -            "Holtwood One SC",
        -            "Homemade Apple",
        -            "Homenaje",
        -            "Honk",
        -            "Host Grotesk",
        -            "Hubballi",
        -            "Hubot Sans",
        -            "Huninn",
        -            "Hurricane",
        -            "IBM Plex Mono",
        -            "IBM Plex Sans",
        -            "IBM Plex Sans Arabic",
        -            "IBM Plex Sans Condensed",
        -            "IBM Plex Sans Devanagari",
        -            "IBM Plex Sans Hebrew",
        -            "IBM Plex Sans JP",
        -            "IBM Plex Sans KR",
        -            "IBM Plex Sans Thai",
        -            "IBM Plex Sans Thai Looped",
        -            "IBM Plex Serif",
        -            "IM Fell DW Pica",
        -            "IM Fell DW Pica SC",
        -            "IM Fell Double Pica",
        -            "IM Fell Double Pica SC",
        -            "IM Fell English",
        -            "IM Fell English SC",
        -            "IM Fell French Canon",
        -            "IM Fell French Canon SC",
        -            "IM Fell Great Primer",
        -            "IM Fell Great Primer SC",
        -            "Iansui",
        -            "Ibarra Real Nova",
        -            "Iceberg",
        -            "Iceland",
        -            "Idiqlat",
        -            "Imbue",
        -            "Imperial Script",
        -            "Imprima",
        -            "Inclusive Sans",
        -            "Inconsolata",
        -            "Inder",
        -            "Indie Flower",
        -            "Ingrid Darling",
        -            "Inika",
        -            "Inknut Antiqua",
        -            "Inria Sans",
        -            "Inria Serif",
        -            "Inspiration",
        -            "Instrument Sans",
        -            "Instrument Serif",
        -            "Intel One Mono",
        -            "Inter",
        -            "Inter Tight",
        -            "Iosevka Charon",
        -            "Iosevka Charon Mono",
        -            "Irish Grover",
        -            "Island Moments",
        -            "Istok Web",
        -            "Italiana",
        -            "Italianno",
        -            "Itim",
        -            "Jacquard 12",
        -            "Jacquard 12 Charted",
        -            "Jacquard 24",
        -            "Jacquard 24 Charted",
        -            "Jacquarda Bastarda 9",
        -            "Jacquarda Bastarda 9 Charted",
        -            "Jacques Francois",
        -            "Jacques Francois Shadow",
        -            "Jaini",
        -            "Jaini Purva",
        -            "Jaldi",
        -            "Jaro",
        -            "Jersey 10",
        -            "Jersey 10 Charted",
        -            "Jersey 15",
        -            "Jersey 15 Charted",
        -            "Jersey 20",
        -            "Jersey 20 Charted",
        -            "Jersey 25",
        -            "Jersey 25 Charted",
        -            "JetBrains Mono",
        -            "Jim Nightshade",
        -            "Joan",
        -            "Jockey One",
        -            "Jolly Lodger",
        -            "Jomhuria",
        -            "Jomolhari",
        -            "Josefin Sans",
        -            "Josefin Slab",
        -            "Jost",
        -            "Joti One",
        -            "Jua",
        -            "Judson",
        -            "Julee",
        -            "Julius Sans One",
        -            "Junge",
        -            "Jura",
        -            "Just Another Hand",
        -            "Just Me Again Down Here",
        -            "K2D",
        -            "Kablammo",
        -            "Kadwa",
        -            "Kaisei Decol",
        -            "Kaisei HarunoUmi",
        -            "Kaisei Opti",
        -            "Kaisei Tokumin",
        -            "Kalam",
        -            "Kalnia",
        -            "Kalnia Glaze",
        -            "Kameron",
        -            "Kanchenjunga",
        -            "Kanit",
        -            "Kantumruy Pro",
        -            "Kapakana",
        -            "Karantina",
        -            "Karla",
        -            "Karla Tamil Inclined",
        -            "Karla Tamil Upright",
        -            "Karma",
        -            "Katibeh",
        -            "Kaushan Script",
        -            "Kavivanar",
        -            "Kavoon",
        -            "Kay Pho Du",
        -            "Kdam Thmor Pro",
        -            "Keania One",
        -            "Kedebideri",
        -            "Kelly Slab",
        -            "Kenia",
        -            "Khand",
        -            "Khmer",
        -            "Khula",
        -            "Kings",
        -            "Kirang Haerang",
        -            "Kite One",
        -            "Kiwi Maru",
        -            "Klee One",
        -            "Knewave",
        -            "KoHo",
        -            "Kodchasan",
        -            "Kode Mono",
        -            "Koh Santepheap",
        -            "Kolker Brush",
        -            "Konkhmer Sleokchher",
        -            "Kosugi",
        -            "Kosugi Maru",
        -            "Kotta One",
        -            "Koulen",
        -            "Kranky",
        -            "Kreon",
        -            "Kristi",
        -            "Krona One",
        -            "Krub",
        -            "Kufam",
        -            "Kulim Park",
        -            "Kumar One",
        -            "Kumar One Outline",
        -            "Kumbh Sans",
        -            "Kurale",
        -            "LINE Seed JP",
        -            "LXGW Marker Gothic",
        -            "LXGW WenKai Mono TC",
        -            "LXGW WenKai TC",
        -            "La Belle Aurore",
        -            "Labrada",
        -            "Lacquer",
        -            "Laila",
        -            "Lakki Reddy",
        -            "Lalezar",
        -            "Lancelot",
        -            "Langar",
        -            "Lateef",
        -            "Lato",
        -            "Lavishly Yours",
        -            "League Gothic",
        -            "League Script",
        -            "League Spartan",
        -            "Leckerli One",
        -            "Ledger",
        -            "Lekton",
        -            "Lemon",
        -            "Lemonada",
        -            "Lexend",
        -            "Lexend Deca",
        -            "Lexend Exa",
        -            "Lexend Giga",
        -            "Lexend Mega",
        -            "Lexend Peta",
        -            "Lexend Tera",
        -            "Lexend Zetta",
        -            "Libertinus Keyboard",
        -            "Libertinus Math",
        -            "Libertinus Mono",
        -            "Libertinus Sans",
        -            "Libertinus Serif",
        -            "Libertinus Serif Display",
        -            "Libre Barcode 128",
        -            "Libre Barcode 128 Text",
        -            "Libre Barcode 39",
        -            "Libre Barcode 39 Extended",
        -            "Libre Barcode 39 Extended Text",
        -            "Libre Barcode 39 Text",
        -            "Libre Barcode EAN13 Text",
        -            "Libre Baskerville",
        -            "Libre Bodoni",
        -            "Libre Caslon Display",
        -            "Libre Caslon Text",
        -            "Libre Franklin",
        -            "Licorice",
        -            "Life Savers",
        -            "Lilex",
        -            "Lilita One",
        -            "Lily Script One",
        -            "Limelight",
        -            "Linden Hill",
        -            "Linefont",
        -            "Lisu Bosa",
        -            "Liter",
        -            "Literata",
        -            "Liu Jian Mao Cao",
        -            "Livvic",
        -            "Lobster",
        -            "Lobster Two",
        -            "Londrina Outline",
        -            "Londrina Shadow",
        -            "Londrina Sketch",
        -            "Londrina Solid",
        -            "Long Cang",
        -            "Lora",
        -            "Love Light",
        -            "Love Ya Like A Sister",
        -            "Loved by the King",
        -            "Lovers Quarrel",
        -            "Luckiest Guy",
        -            "Lugrasimo",
        -            "Lumanosimo",
        -            "Lunasima",
        -            "Lusitana",
        -            "Lustria",
        -            "Luxurious Roman",
        -            "Luxurious Script",
        -            "M PLUS 1",
        -            "M PLUS 1 Code",
        -            "M PLUS 1p",
        -            "M PLUS 2",
        -            "M PLUS Code Latin",
        -            "M PLUS Rounded 1c",
        -            "M PLUS U",
        -            "Ma Shan Zheng",
        -            "Macondo",
        -            "Macondo Swash Caps",
        -            "Mada",
        -            "Madimi One",
        -            "Magra",
        -            "Maiden Orange",
        -            "Maitree",
        -            "Major Mono Display",
        -            "Mako",
        -            "Mali",
        -            "Mallanna",
        -            "Maname",
        -            "Mandali",
        -            "Manjari",
        -            "Manrope",
        -            "Mansalva",
        -            "Manuale",
        -            "Manufacturing Consent",
        -            "Marcellus",
        -            "Marcellus SC",
        -            "Marck Script",
        -            "Margarine",
        -            "Marhey",
        -            "Markazi Text",
        -            "Marko One",
        -            "Marmelad",
        -            "Martel",
        -            "Martel Sans",
        -            "Martian Mono",
        -            "Marvel",
        -            "Matangi",
        -            "Mate",
        -            "Mate SC",
        -            "Matemasie",
        -            "Material Icons",
        -            "Material Icons Outlined",
        -            "Material Icons Round",
        -            "Material Icons Sharp",
        -            "Material Icons Two Tone",
        -            "Material Symbols",
        -            "Material Symbols Outlined",
        -            "Material Symbols Rounded",
        -            "Material Symbols Sharp",
        -            "Maven Pro",
        -            "McLaren",
        -            "Mea Culpa",
        -            "Meddon",
        -            "MedievalSharp",
        -            "Medula One",
        -            "Meera Inimai",
        -            "Megrim",
        -            "Meie Script",
        -            "Menbere",
        -            "Meow Script",
        -            "Merienda",
        -            "Merriweather",
        -            "Merriweather Sans",
        -            "Metal",
        -            "Metal Mania",
        -            "Metamorphous",
        -            "Metrophobic",
        -            "Michroma",
        -            "Micro 5",
        -            "Micro 5 Charted",
        -            "Milonga",
        -            "Miltonian",
        -            "Miltonian Tattoo",
        -            "Mina",
        -            "Mingzat",
        -            "Miniver",
        -            "Miranda Sans",
        -            "Miriam Libre",
        -            "Mirza",
        -            "Miss Fajardose",
        -            "Mitr",
        -            "Mochiy Pop One",
        -            "Mochiy Pop P One",
        -            "Modak",
        -            "Modern Antiqua",
        -            "Moderustic",
        -            "Mogra",
        -            "Mohave",
        -            "Moirai One",
        -            "Molengo",
        -            "Molle",
        -            "Momo Signature",
        -            "Momo Trust Display",
        -            "Momo Trust Sans",
        -            "Mona Sans",
        -            "Monda",
        -            "Monofett",
        -            "Monomakh",
        -            "Monomaniac One",
        -            "Monoton",
        -            "Monsieur La Doulaise",
        -            "Montaga",
        -            "Montagu Slab",
        -            "MonteCarlo",
        -            "Montenegrin Gothic One",
        -            "Montez",
        -            "Montserrat",
        -            "Montserrat Alternates",
        -            "Montserrat Underline",
        -            "Moo Lah Lah",
        -            "Mooli",
        -            "Moon Dance",
        -            "Moul",
        -            "Moulpali",
        -            "Mountains of Christmas",
        -            "Mouse Memoirs",
        -            "Mozilla Headline",
        -            "Mozilla Text",
        -            "Mr Bedfort",
        -            "Mr Dafoe",
        -            "Mr De Haviland",
        -            "Mrs Saint Delafield",
        -            "Mrs Sheppards",
        -            "Ms Madi",
        -            "Mukta",
        -            "Mukta Mahee",
        -            "Mukta Malar",
        -            "Mukta Vaani",
        -            "Mulish",
        -            "Murecho",
        -            "MuseoModerno",
        -            "My Soul",
        -            "Mynerve",
        -            "Mystery Quest",
        -            "NTR",
        -            "Nabla",
        -            "Namdhinggo",
        -            "Nanum Brush Script",
        -            "Nanum Gothic",
        -            "Nanum Gothic Coding",
        -            "Nanum Myeongjo",
        -            "Nanum Pen Script",
        -            "Narnoor",
        -            "Nata Sans",
        -            "National Park",
        -            "Neonderthaw",
        -            "Nerko One",
        -            "Neucha",
        -            "Neuton",
        -            "New Amsterdam",
        -            "New Rocker",
        -            "New Tegomin",
        -            "News Cycle",
        -            "Newsreader",
        -            "Niconne",
        -            "Niramit",
        -            "Nixie One",
        -            "Nobile",
        -            "Nokora",
        -            "Norican",
        -            "Nosifer",
        -            "Notable",
        -            "Nothing You Could Do",
        -            "Noticia Text",
        -            "Noto Color Emoji",
        -            "Noto Emoji",
        -            "Noto Kufi Arabic",
        -            "Noto Music",
        -            "Noto Naskh Arabic",
        -            "Noto Nastaliq Urdu",
        -            "Noto Rashi Hebrew",
        -            "Noto Sans",
        -            "Noto Sans Adlam",
        -            "Noto Sans Adlam Unjoined",
        -            "Noto Sans Anatolian Hieroglyphs",
        -            "Noto Sans Arabic",
        -            "Noto Sans Armenian",
        -            "Noto Sans Avestan",
        -            "Noto Sans Balinese",
        -            "Noto Sans Bamum",
        -            "Noto Sans Bassa Vah",
        -            "Noto Sans Batak",
        -            "Noto Sans Bengali",
        -            "Noto Sans Bhaiksuki",
        -            "Noto Sans Brahmi",
        -            "Noto Sans Buginese",
        -            "Noto Sans Buhid",
        -            "Noto Sans Canadian Aboriginal",
        -            "Noto Sans Carian",
        -            "Noto Sans Caucasian Albanian",
        -            "Noto Sans Chakma",
        -            "Noto Sans Cham",
        -            "Noto Sans Cherokee",
        -            "Noto Sans Chorasmian",
        -            "Noto Sans Coptic",
        -            "Noto Sans Cuneiform",
        -            "Noto Sans Cypriot",
        -            "Noto Sans Cypro Minoan",
        -            "Noto Sans Deseret",
        -            "Noto Sans Devanagari",
        -            "Noto Sans Display",
        -            "Noto Sans Duployan",
        -            "Noto Sans Egyptian Hieroglyphs",
        -            "Noto Sans Elbasan",
        -            "Noto Sans Elymaic",
        -            "Noto Sans Ethiopic",
        -            "Noto Sans Georgian",
        -            "Noto Sans Glagolitic",
        -            "Noto Sans Gothic",
        -            "Noto Sans Grantha",
        -            "Noto Sans Gujarati",
        -            "Noto Sans Gunjala Gondi",
        -            "Noto Sans Gurmukhi",
        -            "Noto Sans HK",
        -            "Noto Sans Hanifi Rohingya",
        -            "Noto Sans Hanunoo",
        -            "Noto Sans Hatran",
        -            "Noto Sans Hebrew",
        -            "Noto Sans Imperial Aramaic",
        -            "Noto Sans Indic Siyaq Numbers",
        -            "Noto Sans Inscriptional Pahlavi",
        -            "Noto Sans Inscriptional Parthian",
        -            "Noto Sans JP",
        -            "Noto Sans Javanese",
        -            "Noto Sans KR",
        -            "Noto Sans Kaithi",
        -            "Noto Sans Kannada",
        -            "Noto Sans Kawi",
        -            "Noto Sans Kayah Li",
        -            "Noto Sans Kharoshthi",
        -            "Noto Sans Khmer",
        -            "Noto Sans Khojki",
        -            "Noto Sans Khudawadi",
        -            "Noto Sans Lao",
        -            "Noto Sans Lao Looped",
        -            "Noto Sans Lepcha",
        -            "Noto Sans Limbu",
        -            "Noto Sans Linear A",
        -            "Noto Sans Linear B",
        -            "Noto Sans Lisu",
        -            "Noto Sans Lycian",
        -            "Noto Sans Lydian",
        -            "Noto Sans Mahajani",
        -            "Noto Sans Malayalam",
        -            "Noto Sans Mandaic",
        -            "Noto Sans Manichaean",
        -            "Noto Sans Marchen",
        -            "Noto Sans Masaram Gondi",
        -            "Noto Sans Math",
        -            "Noto Sans Mayan Numerals",
        -            "Noto Sans Medefaidrin",
        -            "Noto Sans Meetei Mayek",
        -            "Noto Sans Mende Kikakui",
        -            "Noto Sans Meroitic",
        -            "Noto Sans Miao",
        -            "Noto Sans Modi",
        -            "Noto Sans Mongolian",
        -            "Noto Sans Mono",
        -            "Noto Sans Mro",
        -            "Noto Sans Multani",
        -            "Noto Sans Myanmar",
        -            "Noto Sans NKo",
        -            "Noto Sans NKo Unjoined",
        -            "Noto Sans Nabataean",
        -            "Noto Sans Nag Mundari",
        -            "Noto Sans Nandinagari",
        -            "Noto Sans New Tai Lue",
        -            "Noto Sans Newa",
        -            "Noto Sans Nushu",
        -            "Noto Sans Ogham",
        -            "Noto Sans Ol Chiki",
        -            "Noto Sans Old Hungarian",
        -            "Noto Sans Old Italic",
        -            "Noto Sans Old North Arabian",
        -            "Noto Sans Old Permic",
        -            "Noto Sans Old Persian",
        -            "Noto Sans Old Sogdian",
        -            "Noto Sans Old South Arabian",
        -            "Noto Sans Old Turkic",
        -            "Noto Sans Oriya",
        -            "Noto Sans Osage",
        -            "Noto Sans Osmanya",
        -            "Noto Sans Pahawh Hmong",
        -            "Noto Sans Palmyrene",
        -            "Noto Sans Pau Cin Hau",
        -            "Noto Sans PhagsPa",
        -            "Noto Sans Phoenician",
        -            "Noto Sans Psalter Pahlavi",
        -            "Noto Sans Rejang",
        -            "Noto Sans Runic",
        -            "Noto Sans SC",
        -            "Noto Sans Samaritan",
        -            "Noto Sans Saurashtra",
        -            "Noto Sans Sharada",
        -            "Noto Sans Shavian",
        -            "Noto Sans Siddham",
        -            "Noto Sans SignWriting",
        -            "Noto Sans Sinhala",
        -            "Noto Sans Sogdian",
        -            "Noto Sans Sora Sompeng",
        -            "Noto Sans Soyombo",
        -            "Noto Sans Sundanese",
        -            "Noto Sans Sunuwar",
        -            "Noto Sans Syloti Nagri",
        -            "Noto Sans Symbols",
        -            "Noto Sans Symbols 2",
        -            "Noto Sans Syriac",
        -            "Noto Sans Syriac Eastern",
        -            "Noto Sans Syriac Western",
        -            "Noto Sans TC",
        -            "Noto Sans Tagalog",
        -            "Noto Sans Tagbanwa",
        -            "Noto Sans Tai Le",
        -            "Noto Sans Tai Tham",
        -            "Noto Sans Tai Viet",
        -            "Noto Sans Takri",
        -            "Noto Sans Tamil",
        -            "Noto Sans Tamil Supplement",
        -            "Noto Sans Tangsa",
        -            "Noto Sans Telugu",
        -            "Noto Sans Thaana",
        -            "Noto Sans Thai",
        -            "Noto Sans Thai Looped",
        -            "Noto Sans Tifinagh",
        -            "Noto Sans Tirhuta",
        -            "Noto Sans Ugaritic",
        -            "Noto Sans Vai",
        -            "Noto Sans Vithkuqi",
        -            "Noto Sans Wancho",
        -            "Noto Sans Warang Citi",
        -            "Noto Sans Yi",
        -            "Noto Sans Zanabazar Square",
        -            "Noto Serif",
        -            "Noto Serif Ahom",
        -            "Noto Serif Armenian",
        -            "Noto Serif Balinese",
        -            "Noto Serif Bengali",
        -            "Noto Serif Devanagari",
        -            "Noto Serif Display",
        -            "Noto Serif Dives Akuru",
        -            "Noto Serif Dogra",
        -            "Noto Serif Ethiopic",
        -            "Noto Serif Georgian",
        -            "Noto Serif Grantha",
        -            "Noto Serif Gujarati",
        -            "Noto Serif Gurmukhi",
        -            "Noto Serif HK",
        -            "Noto Serif Hebrew",
        -            "Noto Serif Hentaigana",
        -            "Noto Serif JP",
        -            "Noto Serif KR",
        -            "Noto Serif Kannada",
        -            "Noto Serif Khitan Small Script",
        -            "Noto Serif Khmer",
        -            "Noto Serif Khojki",
        -            "Noto Serif Lao",
        -            "Noto Serif Makasar",
        -            "Noto Serif Malayalam",
        -            "Noto Serif Myanmar",
        -            "Noto Serif NP Hmong",
        -            "Noto Serif Old Uyghur",
        -            "Noto Serif Oriya",
        -            "Noto Serif Ottoman Siyaq",
        -            "Noto Serif SC",
        -            "Noto Serif Sinhala",
        -            "Noto Serif TC",
        -            "Noto Serif Tamil",
        -            "Noto Serif Tangut",
        -            "Noto Serif Telugu",
        -            "Noto Serif Thai",
        -            "Noto Serif Tibetan",
        -            "Noto Serif Todhri",
        -            "Noto Serif Toto",
        -            "Noto Serif Vithkuqi",
        -            "Noto Serif Yezidi",
        -            "Noto Traditional Nushu",
        -            "Noto Znamenny Musical Notation",
        -            "Nova Cut",
        -            "Nova Flat",
        -            "Nova Mono",
        -            "Nova Oval",
        -            "Nova Round",
        -            "Nova Script",
        -            "Nova Slim",
        -            "Nova Square",
        -            "Numans",
        -            "Nunito",
        -            "Nunito Sans",
        -            "Nuosu SIL",
        -            "Odibee Sans",
        -            "Odor Mean Chey",
        -            "Offside",
        -            "Oi",
        -            "Ojuju",
        -            "Old Standard TT",
        -            "Oldenburg",
        -            "Ole",
        -            "Oleo Script",
        -            "Oleo Script Swash Caps",
        -            "Onest",
        -            "Oooh Baby",
        -            "Open Sans",
        -            "Oranienbaum",
        -            "Orbit",
        -            "Orbitron",
        -            "Oregano",
        -            "Orelega One",
        -            "Orienta",
        -            "Original Surfer",
        -            "Oswald",
        -            "Outfit",
        -            "Over the Rainbow",
        -            "Overlock",
        -            "Overlock SC",
        -            "Overpass",
        -            "Overpass Mono",
        -            "Ovo",
        -            "Oxanium",
        -            "Oxygen",
        -            "Oxygen Mono",
        -            "PT Mono",
        -            "PT Sans",
        -            "PT Sans Caption",
        -            "PT Sans Narrow",
        -            "PT Serif",
        -            "PT Serif Caption",
        -            "Pacifico",
        -            "Padauk",
        -            "Padyakke Expanded One",
        -            "Palanquin",
        -            "Palanquin Dark",
        -            "Palette Mosaic",
        -            "Pangolin",
        -            "Paprika",
        -            "Parastoo",
        -            "Parisienne",
        -            "Parkinsans",
        -            "Passero One",
        -            "Passion One",
        -            "Passions Conflict",
        -            "Pathway Extreme",
        -            "Pathway Gothic One",
        -            "Patrick Hand",
        -            "Patrick Hand SC",
        -            "Pattaya",
        -            "Patua One",
        -            "Pavanam",
        -            "Paytone One",
        -            "Peddana",
        -            "Peralta",
        -            "Permanent Marker",
        -            "Petemoss",
        -            "Petit Formal Script",
        -            "Petrona",
        -            "Phetsarath",
        -            "Philosopher",
        -            "Phudu",
        -            "Piazzolla",
        -            "Piedra",
        -            "Pinyon Script",
        -            "Pirata One",
        -            "Pixelify Sans",
        -            "Plaster",
        -            "Platypi",
        -            "Play",
        -            "Playball",
        -            "Playfair",
        -            "Playfair Display",
        -            "Playfair Display SC",
        -            "Playpen Sans",
        -            "Playpen Sans Arabic",
        -            "Playpen Sans Deva",
        -            "Playpen Sans Hebrew",
        -            "Playpen Sans Thai",
        -            "Playwrite AR",
        -            "Playwrite AR Guides",
        -            "Playwrite AT",
        -            "Playwrite AT Guides",
        -            "Playwrite AU NSW",
        -            "Playwrite AU NSW Guides",
        -            "Playwrite AU QLD",
        -            "Playwrite AU QLD Guides",
        -            "Playwrite AU SA",
        -            "Playwrite AU SA Guides",
        -            "Playwrite AU TAS",
        -            "Playwrite AU TAS Guides",
        -            "Playwrite AU VIC",
        -            "Playwrite AU VIC Guides",
        -            "Playwrite BE VLG",
        -            "Playwrite BE VLG Guides",
        -            "Playwrite BE WAL",
        -            "Playwrite BE WAL Guides",
        -            "Playwrite BR",
        -            "Playwrite BR Guides",
        -            "Playwrite CA",
        -            "Playwrite CA Guides",
        -            "Playwrite CL",
        -            "Playwrite CL Guides",
        -            "Playwrite CO",
        -            "Playwrite CO Guides",
        -            "Playwrite CU",
        -            "Playwrite CU Guides",
        -            "Playwrite CZ",
        -            "Playwrite CZ Guides",
        -            "Playwrite DE Grund",
        -            "Playwrite DE Grund Guides",
        -            "Playwrite DE LA",
        -            "Playwrite DE LA Guides",
        -            "Playwrite DE SAS",
        -            "Playwrite DE SAS Guides",
        -            "Playwrite DE VA",
        -            "Playwrite DE VA Guides",
        -            "Playwrite DK Loopet",
        -            "Playwrite DK Loopet Guides",
        -            "Playwrite DK Uloopet",
        -            "Playwrite DK Uloopet Guides",
        -            "Playwrite ES",
        -            "Playwrite ES Deco",
        -            "Playwrite ES Deco Guides",
        -            "Playwrite ES Guides",
        -            "Playwrite FR Moderne",
        -            "Playwrite FR Moderne Guides",
        -            "Playwrite FR Trad",
        -            "Playwrite FR Trad Guides",
        -            "Playwrite GB J",
        -            "Playwrite GB J Guides",
        -            "Playwrite GB S",
        -            "Playwrite GB S Guides",
        -            "Playwrite HR",
        -            "Playwrite HR Guides",
        -            "Playwrite HR Lijeva",
        -            "Playwrite HR Lijeva Guides",
        -            "Playwrite HU",
        -            "Playwrite HU Guides",
        -            "Playwrite ID",
        -            "Playwrite ID Guides",
        -            "Playwrite IE",
        -            "Playwrite IE Guides",
        -            "Playwrite IN",
        -            "Playwrite IN Guides",
        -            "Playwrite IS",
        -            "Playwrite IS Guides",
        -            "Playwrite IT Moderna",
        -            "Playwrite IT Moderna Guides",
        -            "Playwrite IT Trad",
        -            "Playwrite IT Trad Guides",
        -            "Playwrite MX",
        -            "Playwrite MX Guides",
        -            "Playwrite NG Modern",
        -            "Playwrite NG Modern Guides",
        -            "Playwrite NL",
        -            "Playwrite NL Guides",
        -            "Playwrite NO",
        -            "Playwrite NO Guides",
        -            "Playwrite NZ",
        -            "Playwrite NZ Basic",
        -            "Playwrite NZ Basic Guides",
        -            "Playwrite NZ Guides",
        -            "Playwrite PE",
        -            "Playwrite PE Guides",
        -            "Playwrite PL",
        -            "Playwrite PL Guides",
        -            "Playwrite PT",
        -            "Playwrite PT Guides",
        -            "Playwrite RO",
        -            "Playwrite RO Guides",
        -            "Playwrite SK",
        -            "Playwrite SK Guides",
        -            "Playwrite TZ",
        -            "Playwrite TZ Guides",
        -            "Playwrite US Modern",
        -            "Playwrite US Modern Guides",
        -            "Playwrite US Trad",
        -            "Playwrite US Trad Guides",
        -            "Playwrite VN",
        -            "Playwrite VN Guides",
        -            "Playwrite ZA",
        -            "Playwrite ZA Guides",
        -            "Pliant",
        -            "Plus Jakarta Sans",
        -            "Pochaevsk",
        -            "Podkova",
        -            "Poetsen One",
        -            "Poiret One",
        -            "Poller One",
        -            "Poltawski Nowy",
        -            "Poly",
        -            "Pompiere",
        -            "Ponnala",
        -            "Ponomar",
        -            "Pontano Sans",
        -            "Poor Story",
        -            "Poppins",
        -            "Port Lligat Sans",
        -            "Port Lligat Slab",
        -            "Potta One",
        -            "Pragati Narrow",
        -            "Praise",
        -            "Prata",
        -            "Preahvihear",
        -            "Press Start 2P",
        -            "Pridi",
        -            "Princess Sofia",
        -            "Prociono",
        -            "Prompt",
        -            "Prosto One",
        -            "Protest Guerrilla",
        -            "Protest Revolution",
        -            "Protest Riot",
        -            "Protest Strike",
        -            "Proza Libre",
        -            "Public Sans",
        -            "Puppies Play",
        -            "Puritan",
        -            "Purple Purse",
        -            "Qahiri",
        -            "Quando",
        -            "Quantico",
        -            "Quattrocento",
        -            "Quattrocento Sans",
        -            "Questrial",
        -            "Quicksand",
        -            "Quintessential",
        -            "Qwigley",
        -            "Qwitcher Grypen",
        -            "REM",
        -            "Racing Sans One",
        -            "Radio Canada",
        -            "Radio Canada Big",
        -            "Radley",
        -            "Rajdhani",
        -            "Rakkas",
        -            "Raleway",
        -            "Raleway Dots",
        -            "Ramabhadra",
        -            "Ramaraja",
        -            "Rambla",
        -            "Rammetto One",
        -            "Rampart One",
        -            "Ramsina",
        -            "Ranchers",
        -            "Rancho",
        -            "Ranga",
        -            "Rasa",
        -            "Rationale",
        -            "Ravi Prakash",
        -            "Readex Pro",
        -            "Recursive",
        -            "Red Hat Display",
        -            "Red Hat Mono",
        -            "Red Hat Text",
        -            "Red Rose",
        -            "Redacted",
        -            "Redacted Script",
        -            "Reddit Mono",
        -            "Reddit Sans",
        -            "Reddit Sans Condensed",
        -            "Redressed",
        -            "Reem Kufi",
        -            "Reem Kufi Fun",
        -            "Reem Kufi Ink",
        -            "Reenie Beanie",
        -            "Reggae One",
        -            "Rethink Sans",
        -            "Revalia",
        -            "Rhodium Libre",
        -            "Ribeye",
        -            "Ribeye Marrow",
        -            "Righteous",
        -            "Risque",
        -            "Road Rage",
        -            "Roboto",
        -            "Roboto Condensed",
        -            "Roboto Flex",
        -            "Roboto Mono",
        -            "Roboto Serif",
        -            "Roboto Slab",
        -            "Rochester",
        -            "Rock 3D",
        -            "Rock Salt",
        -            "RocknRoll One",
        -            "Rokkitt",
        -            "Romanesco",
        -            "Ropa Sans",
        -            "Rosario",
        -            "Rosarivo",
        -            "Rouge Script",
        -            "Rowdies",
        -            "Rozha One",
        -            "Rubik",
        -            "Rubik 80s Fade",
        -            "Rubik Beastly",
        -            "Rubik Broken Fax",
        -            "Rubik Bubbles",
        -            "Rubik Burned",
        -            "Rubik Dirt",
        -            "Rubik Distressed",
        -            "Rubik Doodle Shadow",
        -            "Rubik Doodle Triangles",
        -            "Rubik Gemstones",
        -            "Rubik Glitch",
        -            "Rubik Glitch Pop",
        -            "Rubik Iso",
        -            "Rubik Lines",
        -            "Rubik Maps",
        -            "Rubik Marker Hatch",
        -            "Rubik Maze",
        -            "Rubik Microbe",
        -            "Rubik Mono One",
        -            "Rubik Moonrocks",
        -            "Rubik Pixels",
        -            "Rubik Puddles",
        -            "Rubik Scribble",
        -            "Rubik Spray Paint",
        -            "Rubik Storm",
        -            "Rubik Vinyl",
        -            "Rubik Wet Paint",
        -            "Ruda",
        -            "Rufina",
        -            "Ruge Boogie",
        -            "Ruluko",
        -            "Rum Raisin",
        -            "Ruslan Display",
        -            "Russo One",
        -            "Ruthie",
        -            "Ruwudu",
        -            "Rye",
        -            "SN Pro",
        -            "STIX Two Math",
        -            "STIX Two Text",
        -            "SUSE",
        -            "SUSE Mono",
        -            "Sacramento",
        -            "Sahitya",
        -            "Sail",
        -            "Saira",
        -            "Saira Condensed",
        -            "Saira Extra Condensed",
        -            "Saira Semi Condensed",
        -            "Saira Stencil",
        -            "Salsa",
        -            "Sanchez",
        -            "Sancreek",
        -            "Sankofa Display",
        -            "Sansation",
        -            "Sansita",
        -            "Sansita Swashed",
        -            "Sarabun",
        -            "Sarala",
        -            "Sarina",
        -            "Sarpanch",
        -            "Sassy Frass",
        -            "Satisfy",
        -            "Savate",
        -            "Sawarabi Gothic",
        -            "Sawarabi Mincho",
        -            "Scada",
        -            "Scheherazade New",
        -            "Schibsted Grotesk",
        -            "Schoolbell",
        -            "Science Gothic",
        -            "Scope One",
        -            "Seaweed Script",
        -            "Secular One",
        -            "Sedan",
        -            "Sedan SC",
        -            "Sedgwick Ave",
        -            "Sedgwick Ave Display",
        -            "Sekuya",
        -            "Sen",
        -            "Send Flowers",
        -            "Sevillana",
        -            "Seymour One",
        -            "Shadows Into Light",
        -            "Shadows Into Light Two",
        -            "Shafarik",
        -            "Shalimar",
        -            "Shantell Sans",
        -            "Shanti",
        -            "Share",
        -            "Share Tech",
        -            "Share Tech Mono",
        -            "Shippori Antique",
        -            "Shippori Antique B1",
        -            "Shippori Mincho",
        -            "Shippori Mincho B1",
        -            "Shizuru",
        -            "Shojumaru",
        -            "Short Stack",
        -            "Shrikhand",
        -            "Siemreap",
        -            "Sigmar",
        -            "Sigmar One",
        -            "Signika",
        -            "Signika Negative",
        -            "Silkscreen",
        -            "Simonetta",
        -            "Single Day",
        -            "Sintony",
        -            "Sirin Stencil",
        -            "Sirivennela",
        -            "Six Caps",
        -            "Sixtyfour",
        -            "Sixtyfour Convergence",
        -            "Skranji",
        -            "Slabo 13px",
        -            "Slabo 27px",
        -            "Slackey",
        -            "Slackside One",
        -            "Smokum",
        -            "Smooch",
        -            "Smooch Sans",
        -            "Smythe",
        -            "Sniglet",
        -            "Snippet",
        -            "Snowburst One",
        -            "Sofadi One",
        -            "Sofia",
        -            "Sofia Sans",
        -            "Sofia Sans Condensed",
        -            "Sofia Sans Extra Condensed",
        -            "Sofia Sans Semi Condensed",
        -            "Solitreo",
        -            "Solway",
        -            "Sometype Mono",
        -            "Song Myung",
        -            "Sono",
        -            "Sonsie One",
        -            "Sora",
        -            "Sorts Mill Goudy",
        -            "Sour Gummy",
        -            "Source Code Pro",
        -            "Source Sans 3",
        -            "Source Serif 4",
        -            "Space Grotesk",
        -            "Space Mono",
        -            "Special Elite",
        -            "Special Gothic",
        -            "Special Gothic Condensed One",
        -            "Special Gothic Expanded One",
        -            "Spectral",
        -            "Spectral SC",
        -            "Spicy Rice",
        -            "Spinnaker",
        -            "Spirax",
        -            "Splash",
        -            "Spline Sans",
        -            "Spline Sans Mono",
        -            "Squada One",
        -            "Square Peg",
        -            "Sree Krushnadevaraya",
        -            "Sriracha",
        -            "Srisakdi",
        -            "Staatliches",
        -            "Stack Sans Headline",
        -            "Stack Sans Notch",
        -            "Stack Sans Text",
        -            "Stalemate",
        -            "Stalinist One",
        -            "Stardos Stencil",
        -            "Stick",
        -            "Stick No Bills",
        -            "Stint Ultra Condensed",
        -            "Stint Ultra Expanded",
        -            "Stoke",
        -            "Story Script",
        -            "Strait",
        -            "Strichpunkt Sans",
        -            "Style Script",
        -            "Stylish",
        -            "Sue Ellen Francisco",
        -            "Suez One",
        -            "Sulphur Point",
        -            "Sumana",
        -            "Sunflower",
        -            "Sunshiney",
        -            "Supermercado One",
        -            "Sura",
        -            "Suranna",
        -            "Suravaram",
        -            "Suwannaphum",
        -            "Swanky and Moo Moo",
        -            "Syncopate",
        -            "Syne",
        -            "Syne Mono",
        -            "Syne Tactile",
        -            "TASA Explorer",
        -            "TASA Orbiter",
        -            "Tac One",
        -            "Tagesschrift",
        -            "Tai Heritage Pro",
        -            "Tajawal",
        -            "Tangerine",
        -            "Tapestry",
        -            "Taprom",
        -            "Tauri",
        -            "Taviraj",
        -            "Teachers",
        -            "Teko",
        -            "Tektur",
        -            "Telex",
        -            "Tenali Ramakrishna",
        -            "Tenor Sans",
        -            "Text Me One",
        -            "Texturina",
        -            "Thasadith",
        -            "The Girl Next Door",
        -            "The Nautigal",
        -            "Tienne",
        -            "TikTok Sans",
        -            "Tillana",
        -            "Tilt Neon",
        -            "Tilt Prism",
        -            "Tilt Warp",
        -            "Timmana",
        -            "Tinos",
        -            "Tiny5",
        -            "Tiro Bangla",
        -            "Tiro Devanagari Hindi",
        -            "Tiro Devanagari Marathi",
        -            "Tiro Devanagari Sanskrit",
        -            "Tiro Gurmukhi",
        -            "Tiro Kannada",
        -            "Tiro Tamil",
        -            "Tiro Telugu",
        -            "Tirra",
        -            "Titan One",
        -            "Titillium Web",
        -            "Tomorrow",
        -            "Tourney",
        -            "Trade Winds",
        -            "Train One",
        -            "Triodion",
        -            "Trirong",
        -            "Trispace",
        -            "Trocchi",
        -            "Trochut",
        -            "Truculenta",
        -            "Trykker",
        -            "Tsukimi Rounded",
        -            "Tuffy",
        -            "Tulpen One",
        -            "Turret Road",
        -            "Twinkle Star",
        -            "Ubuntu",
        -            "Ubuntu Condensed",
        -            "Ubuntu Mono",
        -            "Ubuntu Sans",
        -            "Ubuntu Sans Mono",
        -            "Uchen",
        -            "Ultra",
        -            "Unbounded",
        -            "Uncial Antiqua",
        -            "Underdog",
        -            "Unica One",
        -            "UnifrakturCook",
        -            "UnifrakturMaguntia",
        -            "Unkempt",
        -            "Unlock",
        -            "Unna",
        -            "UoqMunThenKhung",
        -            "Updock",
        -            "Urbanist",
        -            "VT323",
        -            "Vampiro One",
        -            "Varela",
        -            "Varela Round",
        -            "Varta",
        -            "Vast Shadow",
        -            "Vazirmatn",
        -            "Vend Sans",
        -            "Vesper Libre",
        -            "Viaoda Libre",
        -            "Vibes",
        -            "Vibur",
        -            "Victor Mono",
        -            "Vidaloka",
        -            "Viga",
        -            "Vina Sans",
        -            "Voces",
        -            "Volkhov",
        -            "Vollkorn",
        -            "Vollkorn SC",
        -            "Voltaire",
        -            "Vujahday Script",
        -            "WDXL Lubrifont JP N",
        -            "WDXL Lubrifont SC",
        -            "WDXL Lubrifont TC",
        -            "Waiting for the Sunrise",
        -            "Wallpoet",
        -            "Walter Turncoat",
        -            "Warnes",
        -            "Water Brush",
        -            "Waterfall",
        -            "Wavefont",
        -            "Wellfleet",
        -            "Wendy One",
        -            "Whisper",
        -            "WindSong",
        -            "Winky Rough",
        -            "Winky Sans",
        -            "Wire One",
        -            "Wittgenstein",
        -            "Wix Madefor Display",
        -            "Wix Madefor Text",
        -            "Work Sans",
        -            "Workbench",
        -            "Xanh Mono",
        -            "Yaldevi",
        -            "Yanone Kaffeesatz",
        -            "Yantramanav",
        -            "Yarndings 12",
        -            "Yarndings 12 Charted",
        -            "Yarndings 20",
        -            "Yarndings 20 Charted",
        -            "Yatra One",
        -            "Yellowtail",
        -            "Yeon Sung",
        -            "Yeseva One",
        -            "Yesteryear",
        -            "Yomogi",
        -            "Young Serif",
        -            "Yrsa",
        -            "Ysabeau",
        -            "Ysabeau Infant",
        -            "Ysabeau Office",
        -            "Ysabeau SC",
        -            "Yuji Boku",
        -            "Yuji Hentaigana Akari",
        -            "Yuji Hentaigana Akebono",
        -            "Yuji Mai",
        -            "Yuji Syuku",
        -            "Yusei Magic",
        -            "Yuyu",
        -            "Yuyu Short",
        -            "ZCOOL KuaiLe",
        -            "ZCOOL QingKe HuangYou",
        -            "ZCOOL XiaoWei",
        -            "Zain",
        -            "Zalando Sans",
        -            "Zalando Sans Expanded",
        -            "Zalando Sans SemiExpanded",
        -            "Zen Antique",
        -            "Zen Antique Soft",
        -            "Zen Dots",
        -            "Zen Kaku Gothic Antique",
        -            "Zen Kaku Gothic New",
        -            "Zen Kurenaido",
        -            "Zen Loop",
        -            "Zen Maru Gothic",
        -            "Zen Old Mincho",
        -            "Zen Tokyo Zoo",
        -            "Zeyada",
        -            "Zhi Mang Xing",
        -            "Zilla Slab",
        -            "Zilla Slab Highlight"
        -          ],
        -          "type": "string"
        -        },
        -        "fontSize": {
        -          "type": "number"
        -        },
        -        "footerColor": {
        -          "type": "string"
        -        },
        -        "footerFontSize": {
        -          "type": "number"
        -        },
        -        "footerGap": {
        -          "type": "number"
        -        },
        -        "footerLinkColor": {
        -          "type": "string"
        -        },
        -        "gridColor": {
        -          "type": "string"
        -        },
        -        "gridLineWidth": {
        -          "type": "number"
        -        },
        -        "gridLines": {
        -          "enum": [
        -            "none",
        -            "value",
        -            "both"
        -          ],
        -          "type": "string"
        -        },
        -        "headerGap": {
        -          "type": "number"
        -        },
        -        "labelColor": {
        -          "type": "string"
        -        },
        -        "labelFontSize": {
        -          "type": "number"
        -        },
        -        "labelFontWeight": {
        -          "type": "string"
        -        },
        -        "labelHaloWidth": {
        -          "type": "number"
        -        },
        -        "labelMutedFontWeight": {
        -          "type": "string"
        -        },
        -        "labelMutedOpacity": {
        -          "type": "number"
        -        },
        -        "lineStrokeWidth": {
        -          "type": "number"
        -        },
        -        "numericFontFamily": {
        -          "enum": [
        -            "ABeeZee",
        -            "ADLaM Display",
        -            "AR One Sans",
        -            "Abel",
        -            "Abhaya Libre",
        -            "Aboreto",
        -            "Abril Fatface",
        -            "Abyssinica SIL",
        -            "Aclonica",
        -            "Acme",
        -            "Actor",
        -            "Adamina",
        -            "Advent Pro",
        -            "Afacad",
        -            "Afacad Flux",
        -            "Agbalumo",
        -            "Agdasima",
        -            "Agu Display",
        -            "Aguafina Script",
        -            "Akatab",
        -            "Akaya Kanadaka",
        -            "Akaya Telivigala",
        -            "Akronim",
        -            "Akshar",
        -            "Akt",
        -            "Aladin",
        -            "Alan Sans",
        -            "Alata",
        -            "Alatsi",
        -            "Albert Sans",
        -            "Aldrich",
        -            "Alef",
        -            "Alegreya",
        -            "Alegreya SC",
        -            "Alegreya Sans",
        -            "Alegreya Sans SC",
        -            "Aleo",
        -            "Alex Brush",
        -            "Alexandria",
        -            "Alfa Slab One",
        -            "Alice",
        -            "Alien Block",
        -            "Alike",
        -            "Alike Angular",
        -            "Alkalami",
        -            "Alkatra",
        -            "Allan",
        -            "Allerta",
        -            "Allerta Stencil",
        -            "Allison",
        -            "Allkin",
        -            "Allura",
        -            "Almarai",
        -            "Almendra",
        -            "Almendra Display",
        -            "Almendra SC",
        -            "Alumni Sans",
        -            "Alumni Sans Collegiate One",
        -            "Alumni Sans Inline One",
        -            "Alumni Sans Pinstripe",
        -            "Alumni Sans SC",
        -            "Alyamama",
        -            "Amarante",
        -            "Amaranth",
        -            "Amarna",
        -            "Amatic SC",
        -            "Amethysta",
        -            "Amiko",
        -            "Amiri",
        -            "Amiri Quran",
        -            "Amita",
        -            "Anaheim",
        -            "Ancizar Sans",
        -            "Ancizar Serif",
        -            "Andada Pro",
        -            "Andika",
        -            "Anek Bangla",
        -            "Anek Devanagari",
        -            "Anek Gujarati",
        -            "Anek Gurmukhi",
        -            "Anek Kannada",
        -            "Anek Latin",
        -            "Anek Malayalam",
        -            "Anek Odia",
        -            "Anek Tamil",
        -            "Anek Telugu",
        -            "Angkor",
        -            "Annapurna SIL",
        -            "Annie Use Your Telescope",
        -            "Anonymous Pro",
        -            "Anta",
        -            "Antic",
        -            "Antic Didone",
        -            "Antic Slab",
        -            "Anton",
        -            "Anton SC",
        -            "Antonio",
        -            "Anuphan",
        -            "Anybody",
        -            "Aoboshi One",
        -            "Arapey",
        -            "Arbutus",
        -            "Arbutus Slab",
        -            "Architects Daughter",
        -            "Archivo",
        -            "Archivo Black",
        -            "Archivo Narrow",
        -            "Are You Serious",
        -            "Aref Ruqaa",
        -            "Aref Ruqaa Ink",
        -            "Arima",
        -            "Arimo",
        -            "Arizonia",
        -            "Armata",
        -            "Arsenal",
        -            "Arsenal SC",
        -            "Artifika",
        -            "Arvo",
        -            "Arya",
        -            "Asap",
        -            "Asap Condensed",
        -            "Asar",
        -            "Asimovian",
        -            "Asset",
        -            "Assistant",
        -            "Asta Sans",
        -            "Astloch",
        -            "Asul",
        -            "Athiti",
        -            "Atkinson Hyperlegible",
        -            "Atkinson Hyperlegible Mono",
        -            "Atkinson Hyperlegible Next",
        -            "Atma",
        -            "Atomic Age",
        -            "Aubrey",
        -            "Audiowide",
        -            "Autour One",
        -            "Average",
        -            "Average Sans",
        -            "Averia Gruesa Libre",
        -            "Averia Libre",
        -            "Averia Sans Libre",
        -            "Averia Serif Libre",
        -            "Azeret Mono",
        -            "B612",
        -            "B612 Mono",
        -            "BBH Bartle",
        -            "BBH Bogle",
        -            "BBH Hegarty",
        -            "BIZ UDGothic",
        -            "BIZ UDMincho",
        -            "BIZ UDPGothic",
        -            "BIZ UDPMincho",
        -            "BJCree",
        -            "Babylonica",
        -            "Bacasime Antique",
        -            "Bad Script",
        -            "Badeen Display",
        -            "Bagel Fat One",
        -            "Bahiana",
        -            "Bahianita",
        -            "Bai Jamjuree",
        -            "Bakbak One",
        -            "Ballet",
        -            "Baloo 2",
        -            "Baloo Bhai 2",
        -            "Baloo Bhaijaan 2",
        -            "Baloo Bhaina 2",
        -            "Baloo Chettan 2",
        -            "Baloo Da 2",
        -            "Baloo Paaji 2",
        -            "Baloo Tamma 2",
        -            "Baloo Tammudu 2",
        -            "Baloo Thambi 2",
        -            "Balsamiq Sans",
        -            "Balthazar",
        -            "Bangers",
        -            "Barlow",
        -            "Barlow Condensed",
        -            "Barlow Semi Condensed",
        -            "Barriecito",
        -            "Barrio",
        -            "Basic",
        -            "Baskervville",
        -            "Baskervville SC",
        -            "Battambang",
        -            "Baumans",
        -            "Bayon",
        -            "Be Vietnam Pro",
        -            "Beau Rivage",
        -            "Bebas Neue",
        -            "Beiruti",
        -            "Belanosima",
        -            "Belgrano",
        -            "Bellefair",
        -            "Belleza",
        -            "Bellota",
        -            "Bellota Text",
        -            "BenchNine",
        -            "Benne",
        -            "Bentham",
        -            "Berkshire Swash",
        -            "Besley",
        -            "Betania Patmos",
        -            "Betania Patmos GDL",
        -            "Betania Patmos In",
        -            "Betania Patmos In GDL",
        -            "Beth Ellen",
        -            "Bevan",
        -            "BhuTuka Expanded One",
        -            "Big Shoulders",
        -            "Big Shoulders Inline",
        -            "Big Shoulders Stencil",
        -            "Bigelow Rules",
        -            "Bigshot One",
        -            "Bilbo",
        -            "Bilbo Swash Caps",
        -            "BioRhyme",
        -            "BioRhyme Expanded",
        -            "Birthstone",
        -            "Birthstone Bounce",
        -            "Biryani",
        -            "Bitcount",
        -            "Bitcount Grid Double",
        -            "Bitcount Grid Double Ink",
        -            "Bitcount Grid Single",
        -            "Bitcount Grid Single Ink",
        -            "Bitcount Ink",
        -            "Bitcount Prop Double",
        -            "Bitcount Prop Double Ink",
        -            "Bitcount Prop Single",
        -            "Bitcount Prop Single Ink",
        -            "Bitcount Single",
        -            "Bitcount Single Ink",
        -            "Bitter",
        -            "Black And White Picture",
        -            "Black Han Sans",
        -            "Black Ops One",
        -            "Blaka",
        -            "Blaka Hollow",
        -            "Blaka Ink",
        -            "Blinker",
        -            "Bodoni Moda",
        -            "Bodoni Moda SC",
        -            "Bokor",
        -            "Boldonse",
        -            "Bona Nova",
        -            "Bona Nova SC",
        -            "Bonbon",
        -            "Bonheur Royale",
        -            "Boogaloo",
        -            "Borel",
        -            "Bowlby One",
        -            "Bowlby One SC",
        -            "Bpmf Huninn",
        -            "Bpmf Iansui",
        -            "Bpmf Zihi Kai Std",
        -            "Braah One",
        -            "Brawler",
        -            "Bree Serif",
        -            "Bricolage Grotesque",
        -            "Bruno Ace",
        -            "Bruno Ace SC",
        -            "Brygada 1918",
        -            "Bubblegum Sans",
        -            "Bubbler One",
        -            "Buda",
        -            "Buenard",
        -            "Bungee",
        -            "Bungee Hairline",
        -            "Bungee Inline",
        -            "Bungee Outline",
        -            "Bungee Shade",
        -            "Bungee Spice",
        -            "Bungee Tint",
        -            "Butcherman",
        -            "Butterfly Kids",
        -            "Bytesized",
        -            "Cabin",
        -            "Cabin Condensed",
        -            "Cabin Sketch",
        -            "Cactus Classical Serif",
        -            "Caesar Dressing",
        -            "Cagliostro",
        -            "Cairo",
        -            "Cairo Play",
        -            "Cal Sans",
        -            "Caladea",
        -            "Calistoga",
        -            "Calligraffitti",
        -            "Cambay",
        -            "Cambo",
        -            "Candal",
        -            "Cantarell",
        -            "Cantata One",
        -            "Cantora One",
        -            "Caprasimo",
        -            "Capriola",
        -            "Caramel",
        -            "Carattere",
        -            "Cardo",
        -            "Carlito",
        -            "Carme",
        -            "Carrois Gothic",
        -            "Carrois Gothic SC",
        -            "Carter One",
        -            "Cascadia Code",
        -            "Cascadia Mono",
        -            "Castoro",
        -            "Castoro Titling",
        -            "Catamaran",
        -            "Caudex",
        -            "Cause",
        -            "Caveat",
        -            "Caveat Brush",
        -            "Cedarville Cursive",
        -            "Ceviche One",
        -            "Chakra Petch",
        -            "Changa",
        -            "Changa One",
        -            "Chango",
        -            "Charis SIL",
        -            "Charm",
        -            "Charmonman",
        -            "Chathura",
        -            "Chau Philomene One",
        -            "Chela One",
        -            "Chelsea Market",
        -            "Chenla",
        -            "Cherish",
        -            "Cherry Bomb One",
        -            "Cherry Cream Soda",
        -            "Cherry Swash",
        -            "Chewy",
        -            "Chicle",
        -            "Chilanka",
        -            "Chiron GoRound TC",
        -            "Chiron Hei HK",
        -            "Chiron Sung HK",
        -            "Chivo",
        -            "Chivo Mono",
        -            "Chocolate Classical Sans",
        -            "Chokokutai",
        -            "Chonburi",
        -            "Cinzel",
        -            "Cinzel Decorative",
        -            "Clicker Script",
        -            "Climate Crisis",
        -            "Coda",
        -            "Codystar",
        -            "Coiny",
        -            "Combo",
        -            "Comfortaa",
        -            "Comforter",
        -            "Comforter Brush",
        -            "Comic Neue",
        -            "Comic Relief",
        -            "Coming Soon",
        -            "Comme",
        -            "Commissioner",
        -            "Concert One",
        -            "Condiment",
        -            "Content",
        -            "Contrail One",
        -            "Convergence",
        -            "Cookie",
        -            "Copse",
        -            "Coral Pixels",
        -            "Corben",
        -            "Corinthia",
        -            "Cormorant",
        -            "Cormorant Garamond",
        -            "Cormorant Infant",
        -            "Cormorant SC",
        -            "Cormorant Unicase",
        -            "Cormorant Upright",
        -            "Cossette Texte",
        -            "Cossette Titre",
        -            "Courgette",
        -            "Courier Prime",
        -            "Cousine",
        -            "Coustard",
        -            "Covered By Your Grace",
        -            "Crafty Girls",
        -            "Creepster",
        -            "Crete Round",
        -            "Crimson Pro",
        -            "Crimson Text",
        -            "Croissant One",
        -            "Crushed",
        -            "Cuprum",
        -            "Cute Font",
        -            "Cutive",
        -            "Cutive Mono",
        -            "DM Mono",
        -            "DM Sans",
        -            "DM Serif Display",
        -            "DM Serif Text",
        -            "Dai Banna SIL",
        -            "Damion",
        -            "Dancing Script",
        -            "Danfo",
        -            "Dangrek",
        -            "Darker Grotesque",
        -            "Darumadrop One",
        -            "Datatype",
        -            "David Libre",
        -            "Dawning of a New Day",
        -            "Days One",
        -            "Dekko",
        -            "Dela Gothic One",
        -            "Delicious Handrawn",
        -            "Delius",
        -            "Delius Swash Caps",
        -            "Delius Unicase",
        -            "Della Respira",
        -            "Denk One",
        -            "Devonshire",
        -            "Dhurjati",
        -            "Didact Gothic",
        -            "Diphylleia",
        -            "Diplomata",
        -            "Diplomata SC",
        -            "Do Hyeon",
        -            "Dokdo",
        -            "Domine",
        -            "Donegal One",
        -            "Dongle",
        -            "Doppio One",
        -            "Dorsa",
        -            "Dosis",
        -            "DotGothic16",
        -            "Doto",
        -            "Dr Sugiyama",
        -            "Duru Sans",
        -            "DynaPuff",
        -            "Dynalight",
        -            "EB Garamond",
        -            "Eagle Lake",
        -            "East Sea Dokdo",
        -            "Eater",
        -            "Economica",
        -            "Eczar",
        -            "Edu AU VIC WA NT Arrows",
        -            "Edu AU VIC WA NT Dots",
        -            "Edu AU VIC WA NT Guides",
        -            "Edu AU VIC WA NT Hand",
        -            "Edu AU VIC WA NT Pre",
        -            "Edu NSW ACT Cursive",
        -            "Edu NSW ACT Foundation",
        -            "Edu NSW ACT Hand Pre",
        -            "Edu QLD Beginner",
        -            "Edu QLD Hand",
        -            "Edu SA Beginner",
        -            "Edu SA Hand",
        -            "Edu TAS Beginner",
        -            "Edu VIC WA NT Beginner",
        -            "Edu VIC WA NT Hand",
        -            "Edu VIC WA NT Hand Pre",
        -            "El Messiri",
        -            "Electrolize",
        -            "Elms Sans",
        -            "Elsie",
        -            "Elsie Swash Caps",
        -            "Emblema One",
        -            "Emilys Candy",
        -            "Encode Sans",
        -            "Encode Sans Condensed",
        -            "Encode Sans Expanded",
        -            "Encode Sans SC",
        -            "Encode Sans Semi Condensed",
        -            "Encode Sans Semi Expanded",
        -            "Engagement",
        -            "Englebert",
        -            "Enriqueta",
        -            "Ephesis",
        -            "Epilogue",
        -            "Epunda Sans",
        -            "Epunda Slab",
        -            "Erica One",
        -            "Esteban",
        -            "Estedad",
        -            "Estonia",
        -            "Euphoria Script",
        -            "Ewert",
        -            "Exile",
        -            "Exo",
        -            "Exo 2",
        -            "Expletus Sans",
        -            "Explora",
        -            "Faculty Glyphic",
        -            "Fahkwang",
        -            "Familjen Grotesk",
        -            "Fanwood Text",
        -            "Farro",
        -            "Farsan",
        -            "Fascinate",
        -            "Fascinate Inline",
        -            "Faster One",
        -            "Fasthand",
        -            "Fauna One",
        -            "Faustina",
        -            "Federant",
        -            "Federo",
        -            "Felipa",
        -            "Fenix",
        -            "Festive",
        -            "Figtree",
        -            "Finger Paint",
        -            "Finlandica Headline",
        -            "Finlandica Text",
        -            "Fira Code",
        -            "Fira Mono",
        -            "Fira Sans",
        -            "Fira Sans Condensed",
        -            "Fira Sans Extra Condensed",
        -            "Fjalla One",
        -            "Fjord One",
        -            "Flamenco",
        -            "Flavors",
        -            "Fleur De Leah",
        -            "Flow Block",
        -            "Flow Circular",
        -            "Flow Rounded",
        -            "Foldit",
        -            "Fondamento",
        -            "Fontdiner Swanky",
        -            "Forum",
        -            "Fragment Mono",
        -            "Francois One",
        -            "Frank Ruhl Libre",
        -            "Fraunces",
        -            "Freckle Face",
        -            "Fredericka the Great",
        -            "Fredoka",
        -            "Freehand",
        -            "Freeman",
        -            "Fresca",
        -            "Frijole",
        -            "Fruktur",
        -            "Fugaz One",
        -            "Fuggles",
        -            "Funnel Display",
        -            "Funnel Sans",
        -            "Fustat",
        -            "Fuzzy Bubbles",
        -            "GFS Didot",
        -            "GFS Neohellenic",
        -            "Ga Maamli",
        -            "Gabarito",
        -            "Gabriela",
        -            "Gaegu",
        -            "Gafata",
        -            "Gajraj One",
        -            "Galada",
        -            "Galdeano",
        -            "Galindo",
        -            "Gamja Flower",
        -            "Gantari",
        -            "Gasoek One",
        -            "Gayathri",
        -            "Geist",
        -            "Geist Mono",
        -            "Geist Pixel",
        -            "Gelasio",
        -            "Gemunu Libre",
        -            "Genos",
        -            "Gentium Book Plus",
        -            "Gentium Plus",
        -            "Geo",
        -            "Geologica",
        -            "Geom",
        -            "Geomini",
        -            "Georama",
        -            "Geostar",
        -            "Geostar Fill",
        -            "Germania One",
        -            "Gideon Roman",
        -            "Gidole",
        -            "Gidugu",
        -            "Gilda Display",
        -            "Girassol",
        -            "Give You Glory",
        -            "Glass Antiqua",
        -            "Glegoo",
        -            "Gloock",
        -            "Gloria Hallelujah",
        -            "Glory",
        -            "Gluten",
        -            "Goblin One",
        -            "Gochi Hand",
        -            "Goldman",
        -            "Golos Text",
        -            "Google Sans",
        -            "Google Sans Code",
        -            "Google Sans Flex",
        -            "Gorditas",
        -            "Gothic A1",
        -            "Gotu",
        -            "Goudy Bookletter 1911",
        -            "Gowun Batang",
        -            "Gowun Dodum",
        -            "Graduate",
        -            "Grand Hotel",
        -            "Grandiflora One",
        -            "Grandstander",
        -            "Grape Nuts",
        -            "Gravitas One",
        -            "Great Vibes",
        -            "Grechen Fuemen",
        -            "Grenze",
        -            "Grenze Gotisch",
        -            "Grey Qo",
        -            "Griffy",
        -            "Gruppo",
        -            "Gudea",
        -            "Gugi",
        -            "Gulzar",
        -            "Gupter",
        -            "Gurajada",
        -            "Gveret Levin",
        -            "Gwendolyn",
        -            "Habibi",
        -            "Hachi Maru Pop",
        -            "Hahmlet",
        -            "Halant",
        -            "Hammersmith One",
        -            "Hanalei",
        -            "Hanalei Fill",
        -            "Handjet",
        -            "Handlee",
        -            "Hanken Grotesk",
        -            "Hanuman",
        -            "Happy Monkey",
        -            "Harmattan",
        -            "Headland One",
        -            "Hedvig Letters Sans",
        -            "Hedvig Letters Serif",
        -            "Heebo",
        -            "Henny Penny",
        -            "Hepta Slab",
        -            "Herr Von Muellerhoff",
        -            "Hi Melody",
        -            "Hibur Mono",
        -            "Hina Mincho",
        -            "Hind",
        -            "Hind Guntur",
        -            "Hind Madurai",
        -            "Hind Mysuru",
        -            "Hind Siliguri",
        -            "Hind Vadodara",
        -            "Holtwood One SC",
        -            "Homemade Apple",
        -            "Homenaje",
        -            "Honk",
        -            "Host Grotesk",
        -            "Hubballi",
        -            "Hubot Sans",
        -            "Huninn",
        -            "Hurricane",
        -            "IBM Plex Mono",
        -            "IBM Plex Sans",
        -            "IBM Plex Sans Arabic",
        -            "IBM Plex Sans Condensed",
        -            "IBM Plex Sans Devanagari",
        -            "IBM Plex Sans Hebrew",
        -            "IBM Plex Sans JP",
        -            "IBM Plex Sans KR",
        -            "IBM Plex Sans Thai",
        -            "IBM Plex Sans Thai Looped",
        -            "IBM Plex Serif",
        -            "IM Fell DW Pica",
        -            "IM Fell DW Pica SC",
        -            "IM Fell Double Pica",
        -            "IM Fell Double Pica SC",
        -            "IM Fell English",
        -            "IM Fell English SC",
        -            "IM Fell French Canon",
        -            "IM Fell French Canon SC",
        -            "IM Fell Great Primer",
        -            "IM Fell Great Primer SC",
        -            "Iansui",
        -            "Ibarra Real Nova",
        -            "Iceberg",
        -            "Iceland",
        -            "Idiqlat",
        -            "Imbue",
        -            "Imperial Script",
        -            "Imprima",
        -            "Inclusive Sans",
        -            "Inconsolata",
        -            "Inder",
        -            "Indie Flower",
        -            "Ingrid Darling",
        -            "Inika",
        -            "Inknut Antiqua",
        -            "Inria Sans",
        -            "Inria Serif",
        -            "Inspiration",
        -            "Instrument Sans",
        -            "Instrument Serif",
        -            "Intel One Mono",
        -            "Inter",
        -            "Inter Tight",
        -            "Iosevka Charon",
        -            "Iosevka Charon Mono",
        -            "Irish Grover",
        -            "Island Moments",
        -            "Istok Web",
        -            "Italiana",
        -            "Italianno",
        -            "Itim",
        -            "Jacquard 12",
        -            "Jacquard 12 Charted",
        -            "Jacquard 24",
        -            "Jacquard 24 Charted",
        -            "Jacquarda Bastarda 9",
        -            "Jacquarda Bastarda 9 Charted",
        -            "Jacques Francois",
        -            "Jacques Francois Shadow",
        -            "Jaini",
        -            "Jaini Purva",
        -            "Jaldi",
        -            "Jaro",
        -            "Jersey 10",
        -            "Jersey 10 Charted",
        -            "Jersey 15",
        -            "Jersey 15 Charted",
        -            "Jersey 20",
        -            "Jersey 20 Charted",
        -            "Jersey 25",
        -            "Jersey 25 Charted",
        -            "JetBrains Mono",
        -            "Jim Nightshade",
        -            "Joan",
        -            "Jockey One",
        -            "Jolly Lodger",
        -            "Jomhuria",
        -            "Jomolhari",
        -            "Josefin Sans",
        -            "Josefin Slab",
        -            "Jost",
        -            "Joti One",
        -            "Jua",
        -            "Judson",
        -            "Julee",
        -            "Julius Sans One",
        -            "Junge",
        -            "Jura",
        -            "Just Another Hand",
        -            "Just Me Again Down Here",
        -            "K2D",
        -            "Kablammo",
        -            "Kadwa",
        -            "Kaisei Decol",
        -            "Kaisei HarunoUmi",
        -            "Kaisei Opti",
        -            "Kaisei Tokumin",
        -            "Kalam",
        -            "Kalnia",
        -            "Kalnia Glaze",
        -            "Kameron",
        -            "Kanchenjunga",
        -            "Kanit",
        -            "Kantumruy Pro",
        -            "Kapakana",
        -            "Karantina",
        -            "Karla",
        -            "Karla Tamil Inclined",
        -            "Karla Tamil Upright",
        -            "Karma",
        -            "Katibeh",
        -            "Kaushan Script",
        -            "Kavivanar",
        -            "Kavoon",
        -            "Kay Pho Du",
        -            "Kdam Thmor Pro",
        -            "Keania One",
        -            "Kedebideri",
        -            "Kelly Slab",
        -            "Kenia",
        -            "Khand",
        -            "Khmer",
        -            "Khula",
        -            "Kings",
        -            "Kirang Haerang",
        -            "Kite One",
        -            "Kiwi Maru",
        -            "Klee One",
        -            "Knewave",
        -            "KoHo",
        -            "Kodchasan",
        -            "Kode Mono",
        -            "Koh Santepheap",
        -            "Kolker Brush",
        -            "Konkhmer Sleokchher",
        -            "Kosugi",
        -            "Kosugi Maru",
        -            "Kotta One",
        -            "Koulen",
        -            "Kranky",
        -            "Kreon",
        -            "Kristi",
        -            "Krona One",
        -            "Krub",
        -            "Kufam",
        -            "Kulim Park",
        -            "Kumar One",
        -            "Kumar One Outline",
        -            "Kumbh Sans",
        -            "Kurale",
        -            "LINE Seed JP",
        -            "LXGW Marker Gothic",
        -            "LXGW WenKai Mono TC",
        -            "LXGW WenKai TC",
        -            "La Belle Aurore",
        -            "Labrada",
        -            "Lacquer",
        -            "Laila",
        -            "Lakki Reddy",
        -            "Lalezar",
        -            "Lancelot",
        -            "Langar",
        -            "Lateef",
        -            "Lato",
        -            "Lavishly Yours",
        -            "League Gothic",
        -            "League Script",
        -            "League Spartan",
        -            "Leckerli One",
        -            "Ledger",
        -            "Lekton",
        -            "Lemon",
        -            "Lemonada",
        -            "Lexend",
        -            "Lexend Deca",
        -            "Lexend Exa",
        -            "Lexend Giga",
        -            "Lexend Mega",
        -            "Lexend Peta",
        -            "Lexend Tera",
        -            "Lexend Zetta",
        -            "Libertinus Keyboard",
        -            "Libertinus Math",
        -            "Libertinus Mono",
        -            "Libertinus Sans",
        -            "Libertinus Serif",
        -            "Libertinus Serif Display",
        -            "Libre Barcode 128",
        -            "Libre Barcode 128 Text",
        -            "Libre Barcode 39",
        -            "Libre Barcode 39 Extended",
        -            "Libre Barcode 39 Extended Text",
        -            "Libre Barcode 39 Text",
        -            "Libre Barcode EAN13 Text",
        -            "Libre Baskerville",
        -            "Libre Bodoni",
        -            "Libre Caslon Display",
        -            "Libre Caslon Text",
        -            "Libre Franklin",
        -            "Licorice",
        -            "Life Savers",
        -            "Lilex",
        -            "Lilita One",
        -            "Lily Script One",
        -            "Limelight",
        -            "Linden Hill",
        -            "Linefont",
        -            "Lisu Bosa",
        -            "Liter",
        -            "Literata",
        -            "Liu Jian Mao Cao",
        -            "Livvic",
        -            "Lobster",
        -            "Lobster Two",
        -            "Londrina Outline",
        -            "Londrina Shadow",
        -            "Londrina Sketch",
        -            "Londrina Solid",
        -            "Long Cang",
        -            "Lora",
        -            "Love Light",
        -            "Love Ya Like A Sister",
        -            "Loved by the King",
        -            "Lovers Quarrel",
        -            "Luckiest Guy",
        -            "Lugrasimo",
        -            "Lumanosimo",
        -            "Lunasima",
        -            "Lusitana",
        -            "Lustria",
        -            "Luxurious Roman",
        -            "Luxurious Script",
        -            "M PLUS 1",
        -            "M PLUS 1 Code",
        -            "M PLUS 1p",
        -            "M PLUS 2",
        -            "M PLUS Code Latin",
        -            "M PLUS Rounded 1c",
        -            "M PLUS U",
        -            "Ma Shan Zheng",
        -            "Macondo",
        -            "Macondo Swash Caps",
        -            "Mada",
        -            "Madimi One",
        -            "Magra",
        -            "Maiden Orange",
        -            "Maitree",
        -            "Major Mono Display",
        -            "Mako",
        -            "Mali",
        -            "Mallanna",
        -            "Maname",
        -            "Mandali",
        -            "Manjari",
        -            "Manrope",
        -            "Mansalva",
        -            "Manuale",
        -            "Manufacturing Consent",
        -            "Marcellus",
        -            "Marcellus SC",
        -            "Marck Script",
        -            "Margarine",
        -            "Marhey",
        -            "Markazi Text",
        -            "Marko One",
        -            "Marmelad",
        -            "Martel",
        -            "Martel Sans",
        -            "Martian Mono",
        -            "Marvel",
        -            "Matangi",
        -            "Mate",
        -            "Mate SC",
        -            "Matemasie",
        -            "Material Icons",
        -            "Material Icons Outlined",
        -            "Material Icons Round",
        -            "Material Icons Sharp",
        -            "Material Icons Two Tone",
        -            "Material Symbols",
        -            "Material Symbols Outlined",
        -            "Material Symbols Rounded",
        -            "Material Symbols Sharp",
        -            "Maven Pro",
        -            "McLaren",
        -            "Mea Culpa",
        -            "Meddon",
        -            "MedievalSharp",
        -            "Medula One",
        -            "Meera Inimai",
        -            "Megrim",
        -            "Meie Script",
        -            "Menbere",
        -            "Meow Script",
        -            "Merienda",
        -            "Merriweather",
        -            "Merriweather Sans",
        -            "Metal",
        -            "Metal Mania",
        -            "Metamorphous",
        -            "Metrophobic",
        -            "Michroma",
        -            "Micro 5",
        -            "Micro 5 Charted",
        -            "Milonga",
        -            "Miltonian",
        -            "Miltonian Tattoo",
        -            "Mina",
        -            "Mingzat",
        -            "Miniver",
        -            "Miranda Sans",
        -            "Miriam Libre",
        -            "Mirza",
        -            "Miss Fajardose",
        -            "Mitr",
        -            "Mochiy Pop One",
        -            "Mochiy Pop P One",
        -            "Modak",
        -            "Modern Antiqua",
        -            "Moderustic",
        -            "Mogra",
        -            "Mohave",
        -            "Moirai One",
        -            "Molengo",
        -            "Molle",
        -            "Momo Signature",
        -            "Momo Trust Display",
        -            "Momo Trust Sans",
        -            "Mona Sans",
        -            "Monda",
        -            "Monofett",
        -            "Monomakh",
        -            "Monomaniac One",
        -            "Monoton",
        -            "Monsieur La Doulaise",
        -            "Montaga",
        -            "Montagu Slab",
        -            "MonteCarlo",
        -            "Montenegrin Gothic One",
        -            "Montez",
        -            "Montserrat",
        -            "Montserrat Alternates",
        -            "Montserrat Underline",
        -            "Moo Lah Lah",
        -            "Mooli",
        -            "Moon Dance",
        -            "Moul",
        -            "Moulpali",
        -            "Mountains of Christmas",
        -            "Mouse Memoirs",
        -            "Mozilla Headline",
        -            "Mozilla Text",
        -            "Mr Bedfort",
        -            "Mr Dafoe",
        -            "Mr De Haviland",
        -            "Mrs Saint Delafield",
        -            "Mrs Sheppards",
        -            "Ms Madi",
        -            "Mukta",
        -            "Mukta Mahee",
        -            "Mukta Malar",
        -            "Mukta Vaani",
        -            "Mulish",
        -            "Murecho",
        -            "MuseoModerno",
        -            "My Soul",
        -            "Mynerve",
        -            "Mystery Quest",
        -            "NTR",
        -            "Nabla",
        -            "Namdhinggo",
        -            "Nanum Brush Script",
        -            "Nanum Gothic",
        -            "Nanum Gothic Coding",
        -            "Nanum Myeongjo",
        -            "Nanum Pen Script",
        -            "Narnoor",
        -            "Nata Sans",
        -            "National Park",
        -            "Neonderthaw",
        -            "Nerko One",
        -            "Neucha",
        -            "Neuton",
        -            "New Amsterdam",
        -            "New Rocker",
        -            "New Tegomin",
        -            "News Cycle",
        -            "Newsreader",
        -            "Niconne",
        -            "Niramit",
        -            "Nixie One",
        -            "Nobile",
        -            "Nokora",
        -            "Norican",
        -            "Nosifer",
        -            "Notable",
        -            "Nothing You Could Do",
        -            "Noticia Text",
        -            "Noto Color Emoji",
        -            "Noto Emoji",
        -            "Noto Kufi Arabic",
        -            "Noto Music",
        -            "Noto Naskh Arabic",
        -            "Noto Nastaliq Urdu",
        -            "Noto Rashi Hebrew",
        -            "Noto Sans",
        -            "Noto Sans Adlam",
        -            "Noto Sans Adlam Unjoined",
        -            "Noto Sans Anatolian Hieroglyphs",
        -            "Noto Sans Arabic",
        -            "Noto Sans Armenian",
        -            "Noto Sans Avestan",
        -            "Noto Sans Balinese",
        -            "Noto Sans Bamum",
        -            "Noto Sans Bassa Vah",
        -            "Noto Sans Batak",
        -            "Noto Sans Bengali",
        -            "Noto Sans Bhaiksuki",
        -            "Noto Sans Brahmi",
        -            "Noto Sans Buginese",
        -            "Noto Sans Buhid",
        -            "Noto Sans Canadian Aboriginal",
        -            "Noto Sans Carian",
        -            "Noto Sans Caucasian Albanian",
        -            "Noto Sans Chakma",
        -            "Noto Sans Cham",
        -            "Noto Sans Cherokee",
        -            "Noto Sans Chorasmian",
        -            "Noto Sans Coptic",
        -            "Noto Sans Cuneiform",
        -            "Noto Sans Cypriot",
        -            "Noto Sans Cypro Minoan",
        -            "Noto Sans Deseret",
        -            "Noto Sans Devanagari",
        -            "Noto Sans Display",
        -            "Noto Sans Duployan",
        -            "Noto Sans Egyptian Hieroglyphs",
        -            "Noto Sans Elbasan",
        -            "Noto Sans Elymaic",
        -            "Noto Sans Ethiopic",
        -            "Noto Sans Georgian",
        -            "Noto Sans Glagolitic",
        -            "Noto Sans Gothic",
        -            "Noto Sans Grantha",
        -            "Noto Sans Gujarati",
        -            "Noto Sans Gunjala Gondi",
        -            "Noto Sans Gurmukhi",
        -            "Noto Sans HK",
        -            "Noto Sans Hanifi Rohingya",
        -            "Noto Sans Hanunoo",
        -            "Noto Sans Hatran",
        -            "Noto Sans Hebrew",
        -            "Noto Sans Imperial Aramaic",
        -            "Noto Sans Indic Siyaq Numbers",
        -            "Noto Sans Inscriptional Pahlavi",
        -            "Noto Sans Inscriptional Parthian",
        -            "Noto Sans JP",
        -            "Noto Sans Javanese",
        -            "Noto Sans KR",
        -            "Noto Sans Kaithi",
        -            "Noto Sans Kannada",
        -            "Noto Sans Kawi",
        -            "Noto Sans Kayah Li",
        -            "Noto Sans Kharoshthi",
        -            "Noto Sans Khmer",
        -            "Noto Sans Khojki",
        -            "Noto Sans Khudawadi",
        -            "Noto Sans Lao",
        -            "Noto Sans Lao Looped",
        -            "Noto Sans Lepcha",
        -            "Noto Sans Limbu",
        -            "Noto Sans Linear A",
        -            "Noto Sans Linear B",
        -            "Noto Sans Lisu",
        -            "Noto Sans Lycian",
        -            "Noto Sans Lydian",
        -            "Noto Sans Mahajani",
        -            "Noto Sans Malayalam",
        -            "Noto Sans Mandaic",
        -            "Noto Sans Manichaean",
        -            "Noto Sans Marchen",
        -            "Noto Sans Masaram Gondi",
        -            "Noto Sans Math",
        -            "Noto Sans Mayan Numerals",
        -            "Noto Sans Medefaidrin",
        -            "Noto Sans Meetei Mayek",
        -            "Noto Sans Mende Kikakui",
        -            "Noto Sans Meroitic",
        -            "Noto Sans Miao",
        -            "Noto Sans Modi",
        -            "Noto Sans Mongolian",
        -            "Noto Sans Mono",
        -            "Noto Sans Mro",
        -            "Noto Sans Multani",
        -            "Noto Sans Myanmar",
        -            "Noto Sans NKo",
        -            "Noto Sans NKo Unjoined",
        -            "Noto Sans Nabataean",
        -            "Noto Sans Nag Mundari",
        -            "Noto Sans Nandinagari",
        -            "Noto Sans New Tai Lue",
        -            "Noto Sans Newa",
        -            "Noto Sans Nushu",
        -            "Noto Sans Ogham",
        -            "Noto Sans Ol Chiki",
        -            "Noto Sans Old Hungarian",
        -            "Noto Sans Old Italic",
        -            "Noto Sans Old North Arabian",
        -            "Noto Sans Old Permic",
        -            "Noto Sans Old Persian",
        -            "Noto Sans Old Sogdian",
        -            "Noto Sans Old South Arabian",
        -            "Noto Sans Old Turkic",
        -            "Noto Sans Oriya",
        -            "Noto Sans Osage",
        -            "Noto Sans Osmanya",
        -            "Noto Sans Pahawh Hmong",
        -            "Noto Sans Palmyrene",
        -            "Noto Sans Pau Cin Hau",
        -            "Noto Sans PhagsPa",
        -            "Noto Sans Phoenician",
        -            "Noto Sans Psalter Pahlavi",
        -            "Noto Sans Rejang",
        -            "Noto Sans Runic",
        -            "Noto Sans SC",
        -            "Noto Sans Samaritan",
        -            "Noto Sans Saurashtra",
        -            "Noto Sans Sharada",
        -            "Noto Sans Shavian",
        -            "Noto Sans Siddham",
        -            "Noto Sans SignWriting",
        -            "Noto Sans Sinhala",
        -            "Noto Sans Sogdian",
        -            "Noto Sans Sora Sompeng",
        -            "Noto Sans Soyombo",
        -            "Noto Sans Sundanese",
        -            "Noto Sans Sunuwar",
        -            "Noto Sans Syloti Nagri",
        -            "Noto Sans Symbols",
        -            "Noto Sans Symbols 2",
        -            "Noto Sans Syriac",
        -            "Noto Sans Syriac Eastern",
        -            "Noto Sans Syriac Western",
        -            "Noto Sans TC",
        -            "Noto Sans Tagalog",
        -            "Noto Sans Tagbanwa",
        -            "Noto Sans Tai Le",
        -            "Noto Sans Tai Tham",
        -            "Noto Sans Tai Viet",
        -            "Noto Sans Takri",
        -            "Noto Sans Tamil",
        -            "Noto Sans Tamil Supplement",
        -            "Noto Sans Tangsa",
        -            "Noto Sans Telugu",
        -            "Noto Sans Thaana",
        -            "Noto Sans Thai",
        -            "Noto Sans Thai Looped",
        -            "Noto Sans Tifinagh",
        -            "Noto Sans Tirhuta",
        -            "Noto Sans Ugaritic",
        -            "Noto Sans Vai",
        -            "Noto Sans Vithkuqi",
        -            "Noto Sans Wancho",
        -            "Noto Sans Warang Citi",
        -            "Noto Sans Yi",
        -            "Noto Sans Zanabazar Square",
        -            "Noto Serif",
        -            "Noto Serif Ahom",
        -            "Noto Serif Armenian",
        -            "Noto Serif Balinese",
        -            "Noto Serif Bengali",
        -            "Noto Serif Devanagari",
        -            "Noto Serif Display",
        -            "Noto Serif Dives Akuru",
        -            "Noto Serif Dogra",
        -            "Noto Serif Ethiopic",
        -            "Noto Serif Georgian",
        -            "Noto Serif Grantha",
        -            "Noto Serif Gujarati",
        -            "Noto Serif Gurmukhi",
        -            "Noto Serif HK",
        -            "Noto Serif Hebrew",
        -            "Noto Serif Hentaigana",
        -            "Noto Serif JP",
        -            "Noto Serif KR",
        -            "Noto Serif Kannada",
        -            "Noto Serif Khitan Small Script",
        -            "Noto Serif Khmer",
        -            "Noto Serif Khojki",
        -            "Noto Serif Lao",
        -            "Noto Serif Makasar",
        -            "Noto Serif Malayalam",
        -            "Noto Serif Myanmar",
        -            "Noto Serif NP Hmong",
        -            "Noto Serif Old Uyghur",
        -            "Noto Serif Oriya",
        -            "Noto Serif Ottoman Siyaq",
        -            "Noto Serif SC",
        -            "Noto Serif Sinhala",
        -            "Noto Serif TC",
        -            "Noto Serif Tamil",
        -            "Noto Serif Tangut",
        -            "Noto Serif Telugu",
        -            "Noto Serif Thai",
        -            "Noto Serif Tibetan",
        -            "Noto Serif Todhri",
        -            "Noto Serif Toto",
        -            "Noto Serif Vithkuqi",
        -            "Noto Serif Yezidi",
        -            "Noto Traditional Nushu",
        -            "Noto Znamenny Musical Notation",
        -            "Nova Cut",
        -            "Nova Flat",
        -            "Nova Mono",
        -            "Nova Oval",
        -            "Nova Round",
        -            "Nova Script",
        -            "Nova Slim",
        -            "Nova Square",
        -            "Numans",
        -            "Nunito",
        -            "Nunito Sans",
        -            "Nuosu SIL",
        -            "Odibee Sans",
        -            "Odor Mean Chey",
        -            "Offside",
        -            "Oi",
        -            "Ojuju",
        -            "Old Standard TT",
        -            "Oldenburg",
        -            "Ole",
        -            "Oleo Script",
        -            "Oleo Script Swash Caps",
        -            "Onest",
        -            "Oooh Baby",
        -            "Open Sans",
        -            "Oranienbaum",
        -            "Orbit",
        -            "Orbitron",
        -            "Oregano",
        -            "Orelega One",
        -            "Orienta",
        -            "Original Surfer",
        -            "Oswald",
        -            "Outfit",
        -            "Over the Rainbow",
        -            "Overlock",
        -            "Overlock SC",
        -            "Overpass",
        -            "Overpass Mono",
        -            "Ovo",
        -            "Oxanium",
        -            "Oxygen",
        -            "Oxygen Mono",
        -            "PT Mono",
        -            "PT Sans",
        -            "PT Sans Caption",
        -            "PT Sans Narrow",
        -            "PT Serif",
        -            "PT Serif Caption",
        -            "Pacifico",
        -            "Padauk",
        -            "Padyakke Expanded One",
        -            "Palanquin",
        -            "Palanquin Dark",
        -            "Palette Mosaic",
        -            "Pangolin",
        -            "Paprika",
        -            "Parastoo",
        -            "Parisienne",
        -            "Parkinsans",
        -            "Passero One",
        -            "Passion One",
        -            "Passions Conflict",
        -            "Pathway Extreme",
        -            "Pathway Gothic One",
        -            "Patrick Hand",
        -            "Patrick Hand SC",
        -            "Pattaya",
        -            "Patua One",
        -            "Pavanam",
        -            "Paytone One",
        -            "Peddana",
        -            "Peralta",
        -            "Permanent Marker",
        -            "Petemoss",
        -            "Petit Formal Script",
        -            "Petrona",
        -            "Phetsarath",
        -            "Philosopher",
        -            "Phudu",
        -            "Piazzolla",
        -            "Piedra",
        -            "Pinyon Script",
        -            "Pirata One",
        -            "Pixelify Sans",
        -            "Plaster",
        -            "Platypi",
        -            "Play",
        -            "Playball",
        -            "Playfair",
        -            "Playfair Display",
        -            "Playfair Display SC",
        -            "Playpen Sans",
        -            "Playpen Sans Arabic",
        -            "Playpen Sans Deva",
        -            "Playpen Sans Hebrew",
        -            "Playpen Sans Thai",
        -            "Playwrite AR",
        -            "Playwrite AR Guides",
        -            "Playwrite AT",
        -            "Playwrite AT Guides",
        -            "Playwrite AU NSW",
        -            "Playwrite AU NSW Guides",
        -            "Playwrite AU QLD",
        -            "Playwrite AU QLD Guides",
        -            "Playwrite AU SA",
        -            "Playwrite AU SA Guides",
        -            "Playwrite AU TAS",
        -            "Playwrite AU TAS Guides",
        -            "Playwrite AU VIC",
        -            "Playwrite AU VIC Guides",
        -            "Playwrite BE VLG",
        -            "Playwrite BE VLG Guides",
        -            "Playwrite BE WAL",
        -            "Playwrite BE WAL Guides",
        -            "Playwrite BR",
        -            "Playwrite BR Guides",
        -            "Playwrite CA",
        -            "Playwrite CA Guides",
        -            "Playwrite CL",
        -            "Playwrite CL Guides",
        -            "Playwrite CO",
        -            "Playwrite CO Guides",
        -            "Playwrite CU",
        -            "Playwrite CU Guides",
        -            "Playwrite CZ",
        -            "Playwrite CZ Guides",
        -            "Playwrite DE Grund",
        -            "Playwrite DE Grund Guides",
        -            "Playwrite DE LA",
        -            "Playwrite DE LA Guides",
        -            "Playwrite DE SAS",
        -            "Playwrite DE SAS Guides",
        -            "Playwrite DE VA",
        -            "Playwrite DE VA Guides",
        -            "Playwrite DK Loopet",
        -            "Playwrite DK Loopet Guides",
        -            "Playwrite DK Uloopet",
        -            "Playwrite DK Uloopet Guides",
        -            "Playwrite ES",
        -            "Playwrite ES Deco",
        -            "Playwrite ES Deco Guides",
        -            "Playwrite ES Guides",
        -            "Playwrite FR Moderne",
        -            "Playwrite FR Moderne Guides",
        -            "Playwrite FR Trad",
        -            "Playwrite FR Trad Guides",
        -            "Playwrite GB J",
        -            "Playwrite GB J Guides",
        -            "Playwrite GB S",
        -            "Playwrite GB S Guides",
        -            "Playwrite HR",
        -            "Playwrite HR Guides",
        -            "Playwrite HR Lijeva",
        -            "Playwrite HR Lijeva Guides",
        -            "Playwrite HU",
        -            "Playwrite HU Guides",
        -            "Playwrite ID",
        -            "Playwrite ID Guides",
        -            "Playwrite IE",
        -            "Playwrite IE Guides",
        -            "Playwrite IN",
        -            "Playwrite IN Guides",
        -            "Playwrite IS",
        -            "Playwrite IS Guides",
        -            "Playwrite IT Moderna",
        -            "Playwrite IT Moderna Guides",
        -            "Playwrite IT Trad",
        -            "Playwrite IT Trad Guides",
        -            "Playwrite MX",
        -            "Playwrite MX Guides",
        -            "Playwrite NG Modern",
        -            "Playwrite NG Modern Guides",
        -            "Playwrite NL",
        -            "Playwrite NL Guides",
        -            "Playwrite NO",
        -            "Playwrite NO Guides",
        -            "Playwrite NZ",
        -            "Playwrite NZ Basic",
        -            "Playwrite NZ Basic Guides",
        -            "Playwrite NZ Guides",
        -            "Playwrite PE",
        -            "Playwrite PE Guides",
        -            "Playwrite PL",
        -            "Playwrite PL Guides",
        -            "Playwrite PT",
        -            "Playwrite PT Guides",
        -            "Playwrite RO",
        -            "Playwrite RO Guides",
        -            "Playwrite SK",
        -            "Playwrite SK Guides",
        -            "Playwrite TZ",
        -            "Playwrite TZ Guides",
        -            "Playwrite US Modern",
        -            "Playwrite US Modern Guides",
        -            "Playwrite US Trad",
        -            "Playwrite US Trad Guides",
        -            "Playwrite VN",
        -            "Playwrite VN Guides",
        -            "Playwrite ZA",
        -            "Playwrite ZA Guides",
        -            "Pliant",
        -            "Plus Jakarta Sans",
        -            "Pochaevsk",
        -            "Podkova",
        -            "Poetsen One",
        -            "Poiret One",
        -            "Poller One",
        -            "Poltawski Nowy",
        -            "Poly",
        -            "Pompiere",
        -            "Ponnala",
        -            "Ponomar",
        -            "Pontano Sans",
        -            "Poor Story",
        -            "Poppins",
        -            "Port Lligat Sans",
        -            "Port Lligat Slab",
        -            "Potta One",
        -            "Pragati Narrow",
        -            "Praise",
        -            "Prata",
        -            "Preahvihear",
        -            "Press Start 2P",
        -            "Pridi",
        -            "Princess Sofia",
        -            "Prociono",
        -            "Prompt",
        -            "Prosto One",
        -            "Protest Guerrilla",
        -            "Protest Revolution",
        -            "Protest Riot",
        -            "Protest Strike",
        -            "Proza Libre",
        -            "Public Sans",
        -            "Puppies Play",
        -            "Puritan",
        -            "Purple Purse",
        -            "Qahiri",
        -            "Quando",
        -            "Quantico",
        -            "Quattrocento",
        -            "Quattrocento Sans",
        -            "Questrial",
        -            "Quicksand",
        -            "Quintessential",
        -            "Qwigley",
        -            "Qwitcher Grypen",
        -            "REM",
        -            "Racing Sans One",
        -            "Radio Canada",
        -            "Radio Canada Big",
        -            "Radley",
        -            "Rajdhani",
        -            "Rakkas",
        -            "Raleway",
        -            "Raleway Dots",
        -            "Ramabhadra",
        -            "Ramaraja",
        -            "Rambla",
        -            "Rammetto One",
        -            "Rampart One",
        -            "Ramsina",
        -            "Ranchers",
        -            "Rancho",
        -            "Ranga",
        -            "Rasa",
        -            "Rationale",
        -            "Ravi Prakash",
        -            "Readex Pro",
        -            "Recursive",
        -            "Red Hat Display",
        -            "Red Hat Mono",
        -            "Red Hat Text",
        -            "Red Rose",
        -            "Redacted",
        -            "Redacted Script",
        -            "Reddit Mono",
        -            "Reddit Sans",
        -            "Reddit Sans Condensed",
        -            "Redressed",
        -            "Reem Kufi",
        -            "Reem Kufi Fun",
        -            "Reem Kufi Ink",
        -            "Reenie Beanie",
        -            "Reggae One",
        -            "Rethink Sans",
        -            "Revalia",
        -            "Rhodium Libre",
        -            "Ribeye",
        -            "Ribeye Marrow",
        -            "Righteous",
        -            "Risque",
        -            "Road Rage",
        -            "Roboto",
        -            "Roboto Condensed",
        -            "Roboto Flex",
        -            "Roboto Mono",
        -            "Roboto Serif",
        -            "Roboto Slab",
        -            "Rochester",
        -            "Rock 3D",
        -            "Rock Salt",
        -            "RocknRoll One",
        -            "Rokkitt",
        -            "Romanesco",
        -            "Ropa Sans",
        -            "Rosario",
        -            "Rosarivo",
        -            "Rouge Script",
        -            "Rowdies",
        -            "Rozha One",
        -            "Rubik",
        -            "Rubik 80s Fade",
        -            "Rubik Beastly",
        -            "Rubik Broken Fax",
        -            "Rubik Bubbles",
        -            "Rubik Burned",
        -            "Rubik Dirt",
        -            "Rubik Distressed",
        -            "Rubik Doodle Shadow",
        -            "Rubik Doodle Triangles",
        -            "Rubik Gemstones",
        -            "Rubik Glitch",
        -            "Rubik Glitch Pop",
        -            "Rubik Iso",
        -            "Rubik Lines",
        -            "Rubik Maps",
        -            "Rubik Marker Hatch",
        -            "Rubik Maze",
        -            "Rubik Microbe",
        -            "Rubik Mono One",
        -            "Rubik Moonrocks",
        -            "Rubik Pixels",
        -            "Rubik Puddles",
        -            "Rubik Scribble",
        -            "Rubik Spray Paint",
        -            "Rubik Storm",
        -            "Rubik Vinyl",
        -            "Rubik Wet Paint",
        -            "Ruda",
        -            "Rufina",
        -            "Ruge Boogie",
        -            "Ruluko",
        -            "Rum Raisin",
        -            "Ruslan Display",
        -            "Russo One",
        -            "Ruthie",
        -            "Ruwudu",
        -            "Rye",
        -            "SN Pro",
        -            "STIX Two Math",
        -            "STIX Two Text",
        -            "SUSE",
        -            "SUSE Mono",
        -            "Sacramento",
        -            "Sahitya",
        -            "Sail",
        -            "Saira",
        -            "Saira Condensed",
        -            "Saira Extra Condensed",
        -            "Saira Semi Condensed",
        -            "Saira Stencil",
        -            "Salsa",
        -            "Sanchez",
        -            "Sancreek",
        -            "Sankofa Display",
        -            "Sansation",
        -            "Sansita",
        -            "Sansita Swashed",
        -            "Sarabun",
        -            "Sarala",
        -            "Sarina",
        -            "Sarpanch",
        -            "Sassy Frass",
        -            "Satisfy",
        -            "Savate",
        -            "Sawarabi Gothic",
        -            "Sawarabi Mincho",
        -            "Scada",
        -            "Scheherazade New",
        -            "Schibsted Grotesk",
        -            "Schoolbell",
        -            "Science Gothic",
        -            "Scope One",
        -            "Seaweed Script",
        -            "Secular One",
        -            "Sedan",
        -            "Sedan SC",
        -            "Sedgwick Ave",
        -            "Sedgwick Ave Display",
        -            "Sekuya",
        -            "Sen",
        -            "Send Flowers",
        -            "Sevillana",
        -            "Seymour One",
        -            "Shadows Into Light",
        -            "Shadows Into Light Two",
        -            "Shafarik",
        -            "Shalimar",
        -            "Shantell Sans",
        -            "Shanti",
        -            "Share",
        -            "Share Tech",
        -            "Share Tech Mono",
        -            "Shippori Antique",
        -            "Shippori Antique B1",
        -            "Shippori Mincho",
        -            "Shippori Mincho B1",
        -            "Shizuru",
        -            "Shojumaru",
        -            "Short Stack",
        -            "Shrikhand",
        -            "Siemreap",
        -            "Sigmar",
        -            "Sigmar One",
        -            "Signika",
        -            "Signika Negative",
        -            "Silkscreen",
        -            "Simonetta",
        -            "Single Day",
        -            "Sintony",
        -            "Sirin Stencil",
        -            "Sirivennela",
        -            "Six Caps",
        -            "Sixtyfour",
        -            "Sixtyfour Convergence",
        -            "Skranji",
        -            "Slabo 13px",
        -            "Slabo 27px",
        -            "Slackey",
        -            "Slackside One",
        -            "Smokum",
        -            "Smooch",
        -            "Smooch Sans",
        -            "Smythe",
        -            "Sniglet",
        -            "Snippet",
        -            "Snowburst One",
        -            "Sofadi One",
        -            "Sofia",
        -            "Sofia Sans",
        -            "Sofia Sans Condensed",
        -            "Sofia Sans Extra Condensed",
        -            "Sofia Sans Semi Condensed",
        -            "Solitreo",
        -            "Solway",
        -            "Sometype Mono",
        -            "Song Myung",
        -            "Sono",
        -            "Sonsie One",
        -            "Sora",
        -            "Sorts Mill Goudy",
        -            "Sour Gummy",
        -            "Source Code Pro",
        -            "Source Sans 3",
        -            "Source Serif 4",
        -            "Space Grotesk",
        -            "Space Mono",
        -            "Special Elite",
        -            "Special Gothic",
        -            "Special Gothic Condensed One",
        -            "Special Gothic Expanded One",
        -            "Spectral",
        -            "Spectral SC",
        -            "Spicy Rice",
        -            "Spinnaker",
        -            "Spirax",
        -            "Splash",
        -            "Spline Sans",
        -            "Spline Sans Mono",
        -            "Squada One",
        -            "Square Peg",
        -            "Sree Krushnadevaraya",
        -            "Sriracha",
        -            "Srisakdi",
        -            "Staatliches",
        -            "Stack Sans Headline",
        -            "Stack Sans Notch",
        -            "Stack Sans Text",
        -            "Stalemate",
        -            "Stalinist One",
        -            "Stardos Stencil",
        -            "Stick",
        -            "Stick No Bills",
        -            "Stint Ultra Condensed",
        -            "Stint Ultra Expanded",
        -            "Stoke",
        -            "Story Script",
        -            "Strait",
        -            "Strichpunkt Sans",
        -            "Style Script",
        -            "Stylish",
        -            "Sue Ellen Francisco",
        -            "Suez One",
        -            "Sulphur Point",
        -            "Sumana",
        -            "Sunflower",
        -            "Sunshiney",
        -            "Supermercado One",
        -            "Sura",
        -            "Suranna",
        -            "Suravaram",
        -            "Suwannaphum",
        -            "Swanky and Moo Moo",
        -            "Syncopate",
        -            "Syne",
        -            "Syne Mono",
        -            "Syne Tactile",
        -            "TASA Explorer",
        -            "TASA Orbiter",
        -            "Tac One",
        -            "Tagesschrift",
        -            "Tai Heritage Pro",
        -            "Tajawal",
        -            "Tangerine",
        -            "Tapestry",
        -            "Taprom",
        -            "Tauri",
        -            "Taviraj",
        -            "Teachers",
        -            "Teko",
        -            "Tektur",
        -            "Telex",
        -            "Tenali Ramakrishna",
        -            "Tenor Sans",
        -            "Text Me One",
        -            "Texturina",
        -            "Thasadith",
        -            "The Girl Next Door",
        -            "The Nautigal",
        -            "Tienne",
        -            "TikTok Sans",
        -            "Tillana",
        -            "Tilt Neon",
        -            "Tilt Prism",
        -            "Tilt Warp",
        -            "Timmana",
        -            "Tinos",
        -            "Tiny5",
        -            "Tiro Bangla",
        -            "Tiro Devanagari Hindi",
        -            "Tiro Devanagari Marathi",
        -            "Tiro Devanagari Sanskrit",
        -            "Tiro Gurmukhi",
        -            "Tiro Kannada",
        -            "Tiro Tamil",
        -            "Tiro Telugu",
        -            "Tirra",
        -            "Titan One",
        -            "Titillium Web",
        -            "Tomorrow",
        -            "Tourney",
        -            "Trade Winds",
        -            "Train One",
        -            "Triodion",
        -            "Trirong",
        -            "Trispace",
        -            "Trocchi",
        -            "Trochut",
        -            "Truculenta",
        -            "Trykker",
        -            "Tsukimi Rounded",
        -            "Tuffy",
        -            "Tulpen One",
        -            "Turret Road",
        -            "Twinkle Star",
        -            "Ubuntu",
        -            "Ubuntu Condensed",
        -            "Ubuntu Mono",
        -            "Ubuntu Sans",
        -            "Ubuntu Sans Mono",
        -            "Uchen",
        -            "Ultra",
        -            "Unbounded",
        -            "Uncial Antiqua",
        -            "Underdog",
        -            "Unica One",
        -            "UnifrakturCook",
        -            "UnifrakturMaguntia",
        -            "Unkempt",
        -            "Unlock",
        -            "Unna",
        -            "UoqMunThenKhung",
        -            "Updock",
        -            "Urbanist",
        -            "VT323",
        -            "Vampiro One",
        -            "Varela",
        -            "Varela Round",
        -            "Varta",
        -            "Vast Shadow",
        -            "Vazirmatn",
        -            "Vend Sans",
        -            "Vesper Libre",
        -            "Viaoda Libre",
        -            "Vibes",
        -            "Vibur",
        -            "Victor Mono",
        -            "Vidaloka",
        -            "Viga",
        -            "Vina Sans",
        -            "Voces",
        -            "Volkhov",
        -            "Vollkorn",
        -            "Vollkorn SC",
        -            "Voltaire",
        -            "Vujahday Script",
        -            "WDXL Lubrifont JP N",
        -            "WDXL Lubrifont SC",
        -            "WDXL Lubrifont TC",
        -            "Waiting for the Sunrise",
        -            "Wallpoet",
        -            "Walter Turncoat",
        -            "Warnes",
        -            "Water Brush",
        -            "Waterfall",
        -            "Wavefont",
        -            "Wellfleet",
        -            "Wendy One",
        -            "Whisper",
        -            "WindSong",
        -            "Winky Rough",
        -            "Winky Sans",
        -            "Wire One",
        -            "Wittgenstein",
        -            "Wix Madefor Display",
        -            "Wix Madefor Text",
        -            "Work Sans",
        -            "Workbench",
        -            "Xanh Mono",
        -            "Yaldevi",
        -            "Yanone Kaffeesatz",
        -            "Yantramanav",
        -            "Yarndings 12",
        -            "Yarndings 12 Charted",
        -            "Yarndings 20",
        -            "Yarndings 20 Charted",
        -            "Yatra One",
        -            "Yellowtail",
        -            "Yeon Sung",
        -            "Yeseva One",
        -            "Yesteryear",
        -            "Yomogi",
        -            "Young Serif",
        -            "Yrsa",
        -            "Ysabeau",
        -            "Ysabeau Infant",
        -            "Ysabeau Office",
        -            "Ysabeau SC",
        -            "Yuji Boku",
        -            "Yuji Hentaigana Akari",
        -            "Yuji Hentaigana Akebono",
        -            "Yuji Mai",
        -            "Yuji Syuku",
        -            "Yusei Magic",
        -            "Yuyu",
        -            "Yuyu Short",
        -            "ZCOOL KuaiLe",
        -            "ZCOOL QingKe HuangYou",
        -            "ZCOOL XiaoWei",
        -            "Zain",
        -            "Zalando Sans",
        -            "Zalando Sans Expanded",
        -            "Zalando Sans SemiExpanded",
        -            "Zen Antique",
        -            "Zen Antique Soft",
        -            "Zen Dots",
        -            "Zen Kaku Gothic Antique",
        -            "Zen Kaku Gothic New",
        -            "Zen Kurenaido",
        -            "Zen Loop",
        -            "Zen Maru Gothic",
        -            "Zen Old Mincho",
        -            "Zen Tokyo Zoo",
        -            "Zeyada",
        -            "Zhi Mang Xing",
        -            "Zilla Slab",
        -            "Zilla Slab Highlight"
        -          ],
        -          "type": "string"
        -        },
        -        "pieCornerRadius": {
        -          "type": "number"
        -        },
        -        "sequentialRange": {
        -          "items": [
        -            {
        -              "type": "string"
        -            },
        -            {
        -              "type": "string"
        -            }
        -          ],
        -          "maxItems": 2,
        -          "minItems": 2,
        -          "type": "array"
        -        },
        -        "subtitleColor": {
        -          "type": "string"
        -        },
        -        "subtitleFontSize": {
        -          "type": "number"
        -        },
        -        "tickDensity": {
        -          "type": "number"
        -        },
        -        "tickLabelColor": {
        -          "type": "string"
        -        },
        -        "tickLabelFontWeight": {
        -          "type": "string"
        -        },
        -        "tickPadding": {
        -          "type": "number"
        -        },
        -        "tickSize": {
        -          "type": "number"
        -        },
        -        "titleColor": {
        -          "type": "string"
        -        },
        -        "titleFontFamily": {
        -          "enum": [
        -            "ABeeZee",
        -            "ADLaM Display",
        -            "AR One Sans",
        -            "Abel",
        -            "Abhaya Libre",
        -            "Aboreto",
        -            "Abril Fatface",
        -            "Abyssinica SIL",
        -            "Aclonica",
        -            "Acme",
        -            "Actor",
        -            "Adamina",
        -            "Advent Pro",
        -            "Afacad",
        -            "Afacad Flux",
        -            "Agbalumo",
        -            "Agdasima",
        -            "Agu Display",
        -            "Aguafina Script",
        -            "Akatab",
        -            "Akaya Kanadaka",
        -            "Akaya Telivigala",
        -            "Akronim",
        -            "Akshar",
        -            "Akt",
        -            "Aladin",
        -            "Alan Sans",
        -            "Alata",
        -            "Alatsi",
        -            "Albert Sans",
        -            "Aldrich",
        -            "Alef",
        -            "Alegreya",
        -            "Alegreya SC",
        -            "Alegreya Sans",
        -            "Alegreya Sans SC",
        -            "Aleo",
        -            "Alex Brush",
        -            "Alexandria",
        -            "Alfa Slab One",
        -            "Alice",
        -            "Alien Block",
        -            "Alike",
        -            "Alike Angular",
        -            "Alkalami",
        -            "Alkatra",
        -            "Allan",
        -            "Allerta",
        -            "Allerta Stencil",
        -            "Allison",
        -            "Allkin",
        -            "Allura",
        -            "Almarai",
        -            "Almendra",
        -            "Almendra Display",
        -            "Almendra SC",
        -            "Alumni Sans",
        -            "Alumni Sans Collegiate One",
        -            "Alumni Sans Inline One",
        -            "Alumni Sans Pinstripe",
        -            "Alumni Sans SC",
        -            "Alyamama",
        -            "Amarante",
        -            "Amaranth",
        -            "Amarna",
        -            "Amatic SC",
        -            "Amethysta",
        -            "Amiko",
        -            "Amiri",
        -            "Amiri Quran",
        -            "Amita",
        -            "Anaheim",
        -            "Ancizar Sans",
        -            "Ancizar Serif",
        -            "Andada Pro",
        -            "Andika",
        -            "Anek Bangla",
        -            "Anek Devanagari",
        -            "Anek Gujarati",
        -            "Anek Gurmukhi",
        -            "Anek Kannada",
        -            "Anek Latin",
        -            "Anek Malayalam",
        -            "Anek Odia",
        -            "Anek Tamil",
        -            "Anek Telugu",
        -            "Angkor",
        -            "Annapurna SIL",
        -            "Annie Use Your Telescope",
        -            "Anonymous Pro",
        -            "Anta",
        -            "Antic",
        -            "Antic Didone",
        -            "Antic Slab",
        -            "Anton",
        -            "Anton SC",
        -            "Antonio",
        -            "Anuphan",
        -            "Anybody",
        -            "Aoboshi One",
        -            "Arapey",
        -            "Arbutus",
        -            "Arbutus Slab",
        -            "Architects Daughter",
        -            "Archivo",
        -            "Archivo Black",
        -            "Archivo Narrow",
        -            "Are You Serious",
        -            "Aref Ruqaa",
        -            "Aref Ruqaa Ink",
        -            "Arima",
        -            "Arimo",
        -            "Arizonia",
        -            "Armata",
        -            "Arsenal",
        -            "Arsenal SC",
        -            "Artifika",
        -            "Arvo",
        -            "Arya",
        -            "Asap",
        -            "Asap Condensed",
        -            "Asar",
        -            "Asimovian",
        -            "Asset",
        -            "Assistant",
        -            "Asta Sans",
        -            "Astloch",
        -            "Asul",
        -            "Athiti",
        -            "Atkinson Hyperlegible",
        -            "Atkinson Hyperlegible Mono",
        -            "Atkinson Hyperlegible Next",
        -            "Atma",
        -            "Atomic Age",
        -            "Aubrey",
        -            "Audiowide",
        -            "Autour One",
        -            "Average",
        -            "Average Sans",
        -            "Averia Gruesa Libre",
        -            "Averia Libre",
        -            "Averia Sans Libre",
        -            "Averia Serif Libre",
        -            "Azeret Mono",
        -            "B612",
        -            "B612 Mono",
        -            "BBH Bartle",
        -            "BBH Bogle",
        -            "BBH Hegarty",
        -            "BIZ UDGothic",
        -            "BIZ UDMincho",
        -            "BIZ UDPGothic",
        -            "BIZ UDPMincho",
        -            "BJCree",
        -            "Babylonica",
        -            "Bacasime Antique",
        -            "Bad Script",
        -            "Badeen Display",
        -            "Bagel Fat One",
        -            "Bahiana",
        -            "Bahianita",
        -            "Bai Jamjuree",
        -            "Bakbak One",
        -            "Ballet",
        -            "Baloo 2",
        -            "Baloo Bhai 2",
        -            "Baloo Bhaijaan 2",
        -            "Baloo Bhaina 2",
        -            "Baloo Chettan 2",
        -            "Baloo Da 2",
        -            "Baloo Paaji 2",
        -            "Baloo Tamma 2",
        -            "Baloo Tammudu 2",
        -            "Baloo Thambi 2",
        -            "Balsamiq Sans",
        -            "Balthazar",
        -            "Bangers",
        -            "Barlow",
        -            "Barlow Condensed",
        -            "Barlow Semi Condensed",
        -            "Barriecito",
        -            "Barrio",
        -            "Basic",
        -            "Baskervville",
        -            "Baskervville SC",
        -            "Battambang",
        -            "Baumans",
        -            "Bayon",
        -            "Be Vietnam Pro",
        -            "Beau Rivage",
        -            "Bebas Neue",
        -            "Beiruti",
        -            "Belanosima",
        -            "Belgrano",
        -            "Bellefair",
        -            "Belleza",
        -            "Bellota",
        -            "Bellota Text",
        -            "BenchNine",
        -            "Benne",
        -            "Bentham",
        -            "Berkshire Swash",
        -            "Besley",
        -            "Betania Patmos",
        -            "Betania Patmos GDL",
        -            "Betania Patmos In",
        -            "Betania Patmos In GDL",
        -            "Beth Ellen",
        -            "Bevan",
        -            "BhuTuka Expanded One",
        -            "Big Shoulders",
        -            "Big Shoulders Inline",
        -            "Big Shoulders Stencil",
        -            "Bigelow Rules",
        -            "Bigshot One",
        -            "Bilbo",
        -            "Bilbo Swash Caps",
        -            "BioRhyme",
        -            "BioRhyme Expanded",
        -            "Birthstone",
        -            "Birthstone Bounce",
        -            "Biryani",
        -            "Bitcount",
        -            "Bitcount Grid Double",
        -            "Bitcount Grid Double Ink",
        -            "Bitcount Grid Single",
        -            "Bitcount Grid Single Ink",
        -            "Bitcount Ink",
        -            "Bitcount Prop Double",
        -            "Bitcount Prop Double Ink",
        -            "Bitcount Prop Single",
        -            "Bitcount Prop Single Ink",
        -            "Bitcount Single",
        -            "Bitcount Single Ink",
        -            "Bitter",
        -            "Black And White Picture",
        -            "Black Han Sans",
        -            "Black Ops One",
        -            "Blaka",
        -            "Blaka Hollow",
        -            "Blaka Ink",
        -            "Blinker",
        -            "Bodoni Moda",
        -            "Bodoni Moda SC",
        -            "Bokor",
        -            "Boldonse",
        -            "Bona Nova",
        -            "Bona Nova SC",
        -            "Bonbon",
        -            "Bonheur Royale",
        -            "Boogaloo",
        -            "Borel",
        -            "Bowlby One",
        -            "Bowlby One SC",
        -            "Bpmf Huninn",
        -            "Bpmf Iansui",
        -            "Bpmf Zihi Kai Std",
        -            "Braah One",
        -            "Brawler",
        -            "Bree Serif",
        -            "Bricolage Grotesque",
        -            "Bruno Ace",
        -            "Bruno Ace SC",
        -            "Brygada 1918",
        -            "Bubblegum Sans",
        -            "Bubbler One",
        -            "Buda",
        -            "Buenard",
        -            "Bungee",
        -            "Bungee Hairline",
        -            "Bungee Inline",
        -            "Bungee Outline",
        -            "Bungee Shade",
        -            "Bungee Spice",
        -            "Bungee Tint",
        -            "Butcherman",
        -            "Butterfly Kids",
        -            "Bytesized",
        -            "Cabin",
        -            "Cabin Condensed",
        -            "Cabin Sketch",
        -            "Cactus Classical Serif",
        -            "Caesar Dressing",
        -            "Cagliostro",
        -            "Cairo",
        -            "Cairo Play",
        -            "Cal Sans",
        -            "Caladea",
        -            "Calistoga",
        -            "Calligraffitti",
        -            "Cambay",
        -            "Cambo",
        -            "Candal",
        -            "Cantarell",
        -            "Cantata One",
        -            "Cantora One",
        -            "Caprasimo",
        -            "Capriola",
        -            "Caramel",
        -            "Carattere",
        -            "Cardo",
        -            "Carlito",
        -            "Carme",
        -            "Carrois Gothic",
        -            "Carrois Gothic SC",
        -            "Carter One",
        -            "Cascadia Code",
        -            "Cascadia Mono",
        -            "Castoro",
        -            "Castoro Titling",
        -            "Catamaran",
        -            "Caudex",
        -            "Cause",
        -            "Caveat",
        -            "Caveat Brush",
        -            "Cedarville Cursive",
        -            "Ceviche One",
        -            "Chakra Petch",
        -            "Changa",
        -            "Changa One",
        -            "Chango",
        -            "Charis SIL",
        -            "Charm",
        -            "Charmonman",
        -            "Chathura",
        -            "Chau Philomene One",
        -            "Chela One",
        -            "Chelsea Market",
        -            "Chenla",
        -            "Cherish",
        -            "Cherry Bomb One",
        -            "Cherry Cream Soda",
        -            "Cherry Swash",
        -            "Chewy",
        -            "Chicle",
        -            "Chilanka",
        -            "Chiron GoRound TC",
        -            "Chiron Hei HK",
        -            "Chiron Sung HK",
        -            "Chivo",
        -            "Chivo Mono",
        -            "Chocolate Classical Sans",
        -            "Chokokutai",
        -            "Chonburi",
        -            "Cinzel",
        -            "Cinzel Decorative",
        -            "Clicker Script",
        -            "Climate Crisis",
        -            "Coda",
        -            "Codystar",
        -            "Coiny",
        -            "Combo",
        -            "Comfortaa",
        -            "Comforter",
        -            "Comforter Brush",
        -            "Comic Neue",
        -            "Comic Relief",
        -            "Coming Soon",
        -            "Comme",
        -            "Commissioner",
        -            "Concert One",
        -            "Condiment",
        -            "Content",
        -            "Contrail One",
        -            "Convergence",
        -            "Cookie",
        -            "Copse",
        -            "Coral Pixels",
        -            "Corben",
        -            "Corinthia",
        -            "Cormorant",
        -            "Cormorant Garamond",
        -            "Cormorant Infant",
        -            "Cormorant SC",
        -            "Cormorant Unicase",
        -            "Cormorant Upright",
        -            "Cossette Texte",
        -            "Cossette Titre",
        -            "Courgette",
        -            "Courier Prime",
        -            "Cousine",
        -            "Coustard",
        -            "Covered By Your Grace",
        -            "Crafty Girls",
        -            "Creepster",
        -            "Crete Round",
        -            "Crimson Pro",
        -            "Crimson Text",
        -            "Croissant One",
        -            "Crushed",
        -            "Cuprum",
        -            "Cute Font",
        -            "Cutive",
        -            "Cutive Mono",
        -            "DM Mono",
        -            "DM Sans",
        -            "DM Serif Display",
        -            "DM Serif Text",
        -            "Dai Banna SIL",
        -            "Damion",
        -            "Dancing Script",
        -            "Danfo",
        -            "Dangrek",
        -            "Darker Grotesque",
        -            "Darumadrop One",
        -            "Datatype",
        -            "David Libre",
        -            "Dawning of a New Day",
        -            "Days One",
        -            "Dekko",
        -            "Dela Gothic One",
        -            "Delicious Handrawn",
        -            "Delius",
        -            "Delius Swash Caps",
        -            "Delius Unicase",
        -            "Della Respira",
        -            "Denk One",
        -            "Devonshire",
        -            "Dhurjati",
        -            "Didact Gothic",
        -            "Diphylleia",
        -            "Diplomata",
        -            "Diplomata SC",
        -            "Do Hyeon",
        -            "Dokdo",
        -            "Domine",
        -            "Donegal One",
        -            "Dongle",
        -            "Doppio One",
        -            "Dorsa",
        -            "Dosis",
        -            "DotGothic16",
        -            "Doto",
        -            "Dr Sugiyama",
        -            "Duru Sans",
        -            "DynaPuff",
        -            "Dynalight",
        -            "EB Garamond",
        -            "Eagle Lake",
        -            "East Sea Dokdo",
        -            "Eater",
        -            "Economica",
        -            "Eczar",
        -            "Edu AU VIC WA NT Arrows",
        -            "Edu AU VIC WA NT Dots",
        -            "Edu AU VIC WA NT Guides",
        -            "Edu AU VIC WA NT Hand",
        -            "Edu AU VIC WA NT Pre",
        -            "Edu NSW ACT Cursive",
        -            "Edu NSW ACT Foundation",
        -            "Edu NSW ACT Hand Pre",
        -            "Edu QLD Beginner",
        -            "Edu QLD Hand",
        -            "Edu SA Beginner",
        -            "Edu SA Hand",
        -            "Edu TAS Beginner",
        -            "Edu VIC WA NT Beginner",
        -            "Edu VIC WA NT Hand",
        -            "Edu VIC WA NT Hand Pre",
        -            "El Messiri",
        -            "Electrolize",
        -            "Elms Sans",
        -            "Elsie",
        -            "Elsie Swash Caps",
        -            "Emblema One",
        -            "Emilys Candy",
        -            "Encode Sans",
        -            "Encode Sans Condensed",
        -            "Encode Sans Expanded",
        -            "Encode Sans SC",
        -            "Encode Sans Semi Condensed",
        -            "Encode Sans Semi Expanded",
        -            "Engagement",
        -            "Englebert",
        -            "Enriqueta",
        -            "Ephesis",
        -            "Epilogue",
        -            "Epunda Sans",
        -            "Epunda Slab",
        -            "Erica One",
        -            "Esteban",
        -            "Estedad",
        -            "Estonia",
        -            "Euphoria Script",
        -            "Ewert",
        -            "Exile",
        -            "Exo",
        -            "Exo 2",
        -            "Expletus Sans",
        -            "Explora",
        -            "Faculty Glyphic",
        -            "Fahkwang",
        -            "Familjen Grotesk",
        -            "Fanwood Text",
        -            "Farro",
        -            "Farsan",
        -            "Fascinate",
        -            "Fascinate Inline",
        -            "Faster One",
        -            "Fasthand",
        -            "Fauna One",
        -            "Faustina",
        -            "Federant",
        -            "Federo",
        -            "Felipa",
        -            "Fenix",
        -            "Festive",
        -            "Figtree",
        -            "Finger Paint",
        -            "Finlandica Headline",
        -            "Finlandica Text",
        -            "Fira Code",
        -            "Fira Mono",
        -            "Fira Sans",
        -            "Fira Sans Condensed",
        -            "Fira Sans Extra Condensed",
        -            "Fjalla One",
        -            "Fjord One",
        -            "Flamenco",
        -            "Flavors",
        -            "Fleur De Leah",
        -            "Flow Block",
        -            "Flow Circular",
        -            "Flow Rounded",
        -            "Foldit",
        -            "Fondamento",
        -            "Fontdiner Swanky",
        -            "Forum",
        -            "Fragment Mono",
        -            "Francois One",
        -            "Frank Ruhl Libre",
        -            "Fraunces",
        -            "Freckle Face",
        -            "Fredericka the Great",
        -            "Fredoka",
        -            "Freehand",
        -            "Freeman",
        -            "Fresca",
        -            "Frijole",
        -            "Fruktur",
        -            "Fugaz One",
        -            "Fuggles",
        -            "Funnel Display",
        -            "Funnel Sans",
        -            "Fustat",
        -            "Fuzzy Bubbles",
        -            "GFS Didot",
        -            "GFS Neohellenic",
        -            "Ga Maamli",
        -            "Gabarito",
        -            "Gabriela",
        -            "Gaegu",
        -            "Gafata",
        -            "Gajraj One",
        -            "Galada",
        -            "Galdeano",
        -            "Galindo",
        -            "Gamja Flower",
        -            "Gantari",
        -            "Gasoek One",
        -            "Gayathri",
        -            "Geist",
        -            "Geist Mono",
        -            "Geist Pixel",
        -            "Gelasio",
        -            "Gemunu Libre",
        -            "Genos",
        -            "Gentium Book Plus",
        -            "Gentium Plus",
        -            "Geo",
        -            "Geologica",
        -            "Geom",
        -            "Geomini",
        -            "Georama",
        -            "Geostar",
        -            "Geostar Fill",
        -            "Germania One",
        -            "Gideon Roman",
        -            "Gidole",
        -            "Gidugu",
        -            "Gilda Display",
        -            "Girassol",
        -            "Give You Glory",
        -            "Glass Antiqua",
        -            "Glegoo",
        -            "Gloock",
        -            "Gloria Hallelujah",
        -            "Glory",
        -            "Gluten",
        -            "Goblin One",
        -            "Gochi Hand",
        -            "Goldman",
        -            "Golos Text",
        -            "Google Sans",
        -            "Google Sans Code",
        -            "Google Sans Flex",
        -            "Gorditas",
        -            "Gothic A1",
        -            "Gotu",
        -            "Goudy Bookletter 1911",
        -            "Gowun Batang",
        -            "Gowun Dodum",
        -            "Graduate",
        -            "Grand Hotel",
        -            "Grandiflora One",
        -            "Grandstander",
        -            "Grape Nuts",
        -            "Gravitas One",
        -            "Great Vibes",
        -            "Grechen Fuemen",
        -            "Grenze",
        -            "Grenze Gotisch",
        -            "Grey Qo",
        -            "Griffy",
        -            "Gruppo",
        -            "Gudea",
        -            "Gugi",
        -            "Gulzar",
        -            "Gupter",
        -            "Gurajada",
        -            "Gveret Levin",
        -            "Gwendolyn",
        -            "Habibi",
        -            "Hachi Maru Pop",
        -            "Hahmlet",
        -            "Halant",
        -            "Hammersmith One",
        -            "Hanalei",
        -            "Hanalei Fill",
        -            "Handjet",
        -            "Handlee",
        -            "Hanken Grotesk",
        -            "Hanuman",
        -            "Happy Monkey",
        -            "Harmattan",
        -            "Headland One",
        -            "Hedvig Letters Sans",
        -            "Hedvig Letters Serif",
        -            "Heebo",
        -            "Henny Penny",
        -            "Hepta Slab",
        -            "Herr Von Muellerhoff",
        -            "Hi Melody",
        -            "Hibur Mono",
        -            "Hina Mincho",
        -            "Hind",
        -            "Hind Guntur",
        -            "Hind Madurai",
        -            "Hind Mysuru",
        -            "Hind Siliguri",
        -            "Hind Vadodara",
        -            "Holtwood One SC",
        -            "Homemade Apple",
        -            "Homenaje",
        -            "Honk",
        -            "Host Grotesk",
        -            "Hubballi",
        -            "Hubot Sans",
        -            "Huninn",
        -            "Hurricane",
        -            "IBM Plex Mono",
        -            "IBM Plex Sans",
        -            "IBM Plex Sans Arabic",
        -            "IBM Plex Sans Condensed",
        -            "IBM Plex Sans Devanagari",
        -            "IBM Plex Sans Hebrew",
        -            "IBM Plex Sans JP",
        -            "IBM Plex Sans KR",
        -            "IBM Plex Sans Thai",
        -            "IBM Plex Sans Thai Looped",
        -            "IBM Plex Serif",
        -            "IM Fell DW Pica",
        -            "IM Fell DW Pica SC",
        -            "IM Fell Double Pica",
        -            "IM Fell Double Pica SC",
        -            "IM Fell English",
        -            "IM Fell English SC",
        -            "IM Fell French Canon",
        -            "IM Fell French Canon SC",
        -            "IM Fell Great Primer",
        -            "IM Fell Great Primer SC",
        -            "Iansui",
        -            "Ibarra Real Nova",
        -            "Iceberg",
        -            "Iceland",
        -            "Idiqlat",
        -            "Imbue",
        -            "Imperial Script",
        -            "Imprima",
        -            "Inclusive Sans",
        -            "Inconsolata",
        -            "Inder",
        -            "Indie Flower",
        -            "Ingrid Darling",
        -            "Inika",
        -            "Inknut Antiqua",
        -            "Inria Sans",
        -            "Inria Serif",
        -            "Inspiration",
        -            "Instrument Sans",
        -            "Instrument Serif",
        -            "Intel One Mono",
        -            "Inter",
        -            "Inter Tight",
        -            "Iosevka Charon",
        -            "Iosevka Charon Mono",
        -            "Irish Grover",
        -            "Island Moments",
        -            "Istok Web",
        -            "Italiana",
        -            "Italianno",
        -            "Itim",
        -            "Jacquard 12",
        -            "Jacquard 12 Charted",
        -            "Jacquard 24",
        -            "Jacquard 24 Charted",
        -            "Jacquarda Bastarda 9",
        -            "Jacquarda Bastarda 9 Charted",
        -            "Jacques Francois",
        -            "Jacques Francois Shadow",
        -            "Jaini",
        -            "Jaini Purva",
        -            "Jaldi",
        -            "Jaro",
        -            "Jersey 10",
        -            "Jersey 10 Charted",
        -            "Jersey 15",
        -            "Jersey 15 Charted",
        -            "Jersey 20",
        -            "Jersey 20 Charted",
        -            "Jersey 25",
        -            "Jersey 25 Charted",
        -            "JetBrains Mono",
        -            "Jim Nightshade",
        -            "Joan",
        -            "Jockey One",
        -            "Jolly Lodger",
        -            "Jomhuria",
        -            "Jomolhari",
        -            "Josefin Sans",
        -            "Josefin Slab",
        -            "Jost",
        -            "Joti One",
        -            "Jua",
        -            "Judson",
        -            "Julee",
        -            "Julius Sans One",
        -            "Junge",
        -            "Jura",
        -            "Just Another Hand",
        -            "Just Me Again Down Here",
        -            "K2D",
        -            "Kablammo",
        -            "Kadwa",
        -            "Kaisei Decol",
        -            "Kaisei HarunoUmi",
        -            "Kaisei Opti",
        -            "Kaisei Tokumin",
        -            "Kalam",
        -            "Kalnia",
        -            "Kalnia Glaze",
        -            "Kameron",
        -            "Kanchenjunga",
        -            "Kanit",
        -            "Kantumruy Pro",
        -            "Kapakana",
        -            "Karantina",
        -            "Karla",
        -            "Karla Tamil Inclined",
        -            "Karla Tamil Upright",
        -            "Karma",
        -            "Katibeh",
        -            "Kaushan Script",
        -            "Kavivanar",
        -            "Kavoon",
        -            "Kay Pho Du",
        -            "Kdam Thmor Pro",
        -            "Keania One",
        -            "Kedebideri",
        -            "Kelly Slab",
        -            "Kenia",
        -            "Khand",
        -            "Khmer",
        -            "Khula",
        -            "Kings",
        -            "Kirang Haerang",
        -            "Kite One",
        -            "Kiwi Maru",
        -            "Klee One",
        -            "Knewave",
        -            "KoHo",
        -            "Kodchasan",
        -            "Kode Mono",
        -            "Koh Santepheap",
        -            "Kolker Brush",
        -            "Konkhmer Sleokchher",
        -            "Kosugi",
        -            "Kosugi Maru",
        -            "Kotta One",
        -            "Koulen",
        -            "Kranky",
        -            "Kreon",
        -            "Kristi",
        -            "Krona One",
        -            "Krub",
        -            "Kufam",
        -            "Kulim Park",
        -            "Kumar One",
        -            "Kumar One Outline",
        -            "Kumbh Sans",
        -            "Kurale",
        -            "LINE Seed JP",
        -            "LXGW Marker Gothic",
        -            "LXGW WenKai Mono TC",
        -            "LXGW WenKai TC",
        -            "La Belle Aurore",
        -            "Labrada",
        -            "Lacquer",
        -            "Laila",
        -            "Lakki Reddy",
        -            "Lalezar",
        -            "Lancelot",
        -            "Langar",
        -            "Lateef",
        -            "Lato",
        -            "Lavishly Yours",
        -            "League Gothic",
        -            "League Script",
        -            "League Spartan",
        -            "Leckerli One",
        -            "Ledger",
        -            "Lekton",
        -            "Lemon",
        -            "Lemonada",
        -            "Lexend",
        -            "Lexend Deca",
        -            "Lexend Exa",
        -            "Lexend Giga",
        -            "Lexend Mega",
        -            "Lexend Peta",
        -            "Lexend Tera",
        -            "Lexend Zetta",
        -            "Libertinus Keyboard",
        -            "Libertinus Math",
        -            "Libertinus Mono",
        -            "Libertinus Sans",
        -            "Libertinus Serif",
        -            "Libertinus Serif Display",
        -            "Libre Barcode 128",
        -            "Libre Barcode 128 Text",
        -            "Libre Barcode 39",
        -            "Libre Barcode 39 Extended",
        -            "Libre Barcode 39 Extended Text",
        -            "Libre Barcode 39 Text",
        -            "Libre Barcode EAN13 Text",
        -            "Libre Baskerville",
        -            "Libre Bodoni",
        -            "Libre Caslon Display",
        -            "Libre Caslon Text",
        -            "Libre Franklin",
        -            "Licorice",
        -            "Life Savers",
        -            "Lilex",
        -            "Lilita One",
        -            "Lily Script One",
        -            "Limelight",
        -            "Linden Hill",
        -            "Linefont",
        -            "Lisu Bosa",
        -            "Liter",
        -            "Literata",
        -            "Liu Jian Mao Cao",
        -            "Livvic",
        -            "Lobster",
        -            "Lobster Two",
        -            "Londrina Outline",
        -            "Londrina Shadow",
        -            "Londrina Sketch",
        -            "Londrina Solid",
        -            "Long Cang",
        -            "Lora",
        -            "Love Light",
        -            "Love Ya Like A Sister",
        -            "Loved by the King",
        -            "Lovers Quarrel",
        -            "Luckiest Guy",
        -            "Lugrasimo",
        -            "Lumanosimo",
        -            "Lunasima",
        -            "Lusitana",
        -            "Lustria",
        -            "Luxurious Roman",
        -            "Luxurious Script",
        -            "M PLUS 1",
        -            "M PLUS 1 Code",
        -            "M PLUS 1p",
        -            "M PLUS 2",
        -            "M PLUS Code Latin",
        -            "M PLUS Rounded 1c",
        -            "M PLUS U",
        -            "Ma Shan Zheng",
        -            "Macondo",
        -            "Macondo Swash Caps",
        -            "Mada",
        -            "Madimi One",
        -            "Magra",
        -            "Maiden Orange",
        -            "Maitree",
        -            "Major Mono Display",
        -            "Mako",
        -            "Mali",
        -            "Mallanna",
        -            "Maname",
        -            "Mandali",
        -            "Manjari",
        -            "Manrope",
        -            "Mansalva",
        -            "Manuale",
        -            "Manufacturing Consent",
        -            "Marcellus",
        -            "Marcellus SC",
        -            "Marck Script",
        -            "Margarine",
        -            "Marhey",
        -            "Markazi Text",
        -            "Marko One",
        -            "Marmelad",
        -            "Martel",
        -            "Martel Sans",
        -            "Martian Mono",
        -            "Marvel",
        -            "Matangi",
        -            "Mate",
        -            "Mate SC",
        -            "Matemasie",
        -            "Material Icons",
        -            "Material Icons Outlined",
        -            "Material Icons Round",
        -            "Material Icons Sharp",
        -            "Material Icons Two Tone",
        -            "Material Symbols",
        -            "Material Symbols Outlined",
        -            "Material Symbols Rounded",
        -            "Material Symbols Sharp",
        -            "Maven Pro",
        -            "McLaren",
        -            "Mea Culpa",
        -            "Meddon",
        -            "MedievalSharp",
        -            "Medula One",
        -            "Meera Inimai",
        -            "Megrim",
        -            "Meie Script",
        -            "Menbere",
        -            "Meow Script",
        -            "Merienda",
        -            "Merriweather",
        -            "Merriweather Sans",
        -            "Metal",
        -            "Metal Mania",
        -            "Metamorphous",
        -            "Metrophobic",
        -            "Michroma",
        -            "Micro 5",
        -            "Micro 5 Charted",
        -            "Milonga",
        -            "Miltonian",
        -            "Miltonian Tattoo",
        -            "Mina",
        -            "Mingzat",
        -            "Miniver",
        -            "Miranda Sans",
        -            "Miriam Libre",
        -            "Mirza",
        -            "Miss Fajardose",
        -            "Mitr",
        -            "Mochiy Pop One",
        -            "Mochiy Pop P One",
        -            "Modak",
        -            "Modern Antiqua",
        -            "Moderustic",
        -            "Mogra",
        -            "Mohave",
        -            "Moirai One",
        -            "Molengo",
        -            "Molle",
        -            "Momo Signature",
        -            "Momo Trust Display",
        -            "Momo Trust Sans",
        -            "Mona Sans",
        -            "Monda",
        -            "Monofett",
        -            "Monomakh",
        -            "Monomaniac One",
        -            "Monoton",
        -            "Monsieur La Doulaise",
        -            "Montaga",
        -            "Montagu Slab",
        -            "MonteCarlo",
        -            "Montenegrin Gothic One",
        -            "Montez",
        -            "Montserrat",
        -            "Montserrat Alternates",
        -            "Montserrat Underline",
        -            "Moo Lah Lah",
        -            "Mooli",
        -            "Moon Dance",
        -            "Moul",
        -            "Moulpali",
        -            "Mountains of Christmas",
        -            "Mouse Memoirs",
        -            "Mozilla Headline",
        -            "Mozilla Text",
        -            "Mr Bedfort",
        -            "Mr Dafoe",
        -            "Mr De Haviland",
        -            "Mrs Saint Delafield",
        -            "Mrs Sheppards",
        -            "Ms Madi",
        -            "Mukta",
        -            "Mukta Mahee",
        -            "Mukta Malar",
        -            "Mukta Vaani",
        -            "Mulish",
        -            "Murecho",
        -            "MuseoModerno",
        -            "My Soul",
        -            "Mynerve",
        -            "Mystery Quest",
        -            "NTR",
        -            "Nabla",
        -            "Namdhinggo",
        -            "Nanum Brush Script",
        -            "Nanum Gothic",
        -            "Nanum Gothic Coding",
        -            "Nanum Myeongjo",
        -            "Nanum Pen Script",
        -            "Narnoor",
        -            "Nata Sans",
        -            "National Park",
        -            "Neonderthaw",
        -            "Nerko One",
        -            "Neucha",
        -            "Neuton",
        -            "New Amsterdam",
        -            "New Rocker",
        -            "New Tegomin",
        -            "News Cycle",
        -            "Newsreader",
        -            "Niconne",
        -            "Niramit",
        -            "Nixie One",
        -            "Nobile",
        -            "Nokora",
        -            "Norican",
        -            "Nosifer",
        -            "Notable",
        -            "Nothing You Could Do",
        -            "Noticia Text",
        -            "Noto Color Emoji",
        -            "Noto Emoji",
        -            "Noto Kufi Arabic",
        -            "Noto Music",
        -            "Noto Naskh Arabic",
        -            "Noto Nastaliq Urdu",
        -            "Noto Rashi Hebrew",
        -            "Noto Sans",
        -            "Noto Sans Adlam",
        -            "Noto Sans Adlam Unjoined",
        -            "Noto Sans Anatolian Hieroglyphs",
        -            "Noto Sans Arabic",
        -            "Noto Sans Armenian",
        -            "Noto Sans Avestan",
        -            "Noto Sans Balinese",
        -            "Noto Sans Bamum",
        -            "Noto Sans Bassa Vah",
        -            "Noto Sans Batak",
        -            "Noto Sans Bengali",
        -            "Noto Sans Bhaiksuki",
        -            "Noto Sans Brahmi",
        -            "Noto Sans Buginese",
        -            "Noto Sans Buhid",
        -            "Noto Sans Canadian Aboriginal",
        -            "Noto Sans Carian",
        -            "Noto Sans Caucasian Albanian",
        -            "Noto Sans Chakma",
        -            "Noto Sans Cham",
        -            "Noto Sans Cherokee",
        -            "Noto Sans Chorasmian",
        -            "Noto Sans Coptic",
        -            "Noto Sans Cuneiform",
        -            "Noto Sans Cypriot",
        -            "Noto Sans Cypro Minoan",
        -            "Noto Sans Deseret",
        -            "Noto Sans Devanagari",
        -            "Noto Sans Display",
        -            "Noto Sans Duployan",
        -            "Noto Sans Egyptian Hieroglyphs",
        -            "Noto Sans Elbasan",
        -            "Noto Sans Elymaic",
        -            "Noto Sans Ethiopic",
        -            "Noto Sans Georgian",
        -            "Noto Sans Glagolitic",
        -            "Noto Sans Gothic",
        -            "Noto Sans Grantha",
        -            "Noto Sans Gujarati",
        -            "Noto Sans Gunjala Gondi",
        -            "Noto Sans Gurmukhi",
        -            "Noto Sans HK",
        -            "Noto Sans Hanifi Rohingya",
        -            "Noto Sans Hanunoo",
        -            "Noto Sans Hatran",
        -            "Noto Sans Hebrew",
        -            "Noto Sans Imperial Aramaic",
        -            "Noto Sans Indic Siyaq Numbers",
        -            "Noto Sans Inscriptional Pahlavi",
        -            "Noto Sans Inscriptional Parthian",
        -            "Noto Sans JP",
        -            "Noto Sans Javanese",
        -            "Noto Sans KR",
        -            "Noto Sans Kaithi",
        -            "Noto Sans Kannada",
        -            "Noto Sans Kawi",
        -            "Noto Sans Kayah Li",
        -            "Noto Sans Kharoshthi",
        -            "Noto Sans Khmer",
        -            "Noto Sans Khojki",
        -            "Noto Sans Khudawadi",
        -            "Noto Sans Lao",
        -            "Noto Sans Lao Looped",
        -            "Noto Sans Lepcha",
        -            "Noto Sans Limbu",
        -            "Noto Sans Linear A",
        -            "Noto Sans Linear B",
        -            "Noto Sans Lisu",
        -            "Noto Sans Lycian",
        -            "Noto Sans Lydian",
        -            "Noto Sans Mahajani",
        -            "Noto Sans Malayalam",
        -            "Noto Sans Mandaic",
        -            "Noto Sans Manichaean",
        -            "Noto Sans Marchen",
        -            "Noto Sans Masaram Gondi",
        -            "Noto Sans Math",
        -            "Noto Sans Mayan Numerals",
        -            "Noto Sans Medefaidrin",
        -            "Noto Sans Meetei Mayek",
        -            "Noto Sans Mende Kikakui",
        -            "Noto Sans Meroitic",
        -            "Noto Sans Miao",
        -            "Noto Sans Modi",
        -            "Noto Sans Mongolian",
        -            "Noto Sans Mono",
        -            "Noto Sans Mro",
        -            "Noto Sans Multani",
        -            "Noto Sans Myanmar",
        -            "Noto Sans NKo",
        -            "Noto Sans NKo Unjoined",
        -            "Noto Sans Nabataean",
        -            "Noto Sans Nag Mundari",
        -            "Noto Sans Nandinagari",
        -            "Noto Sans New Tai Lue",
        -            "Noto Sans Newa",
        -            "Noto Sans Nushu",
        -            "Noto Sans Ogham",
        -            "Noto Sans Ol Chiki",
        -            "Noto Sans Old Hungarian",
        -            "Noto Sans Old Italic",
        -            "Noto Sans Old North Arabian",
        -            "Noto Sans Old Permic",
        -            "Noto Sans Old Persian",
        -            "Noto Sans Old Sogdian",
        -            "Noto Sans Old South Arabian",
        -            "Noto Sans Old Turkic",
        -            "Noto Sans Oriya",
        -            "Noto Sans Osage",
        -            "Noto Sans Osmanya",
        -            "Noto Sans Pahawh Hmong",
        -            "Noto Sans Palmyrene",
        -            "Noto Sans Pau Cin Hau",
        -            "Noto Sans PhagsPa",
        -            "Noto Sans Phoenician",
        -            "Noto Sans Psalter Pahlavi",
        -            "Noto Sans Rejang",
        -            "Noto Sans Runic",
        -            "Noto Sans SC",
        -            "Noto Sans Samaritan",
        -            "Noto Sans Saurashtra",
        -            "Noto Sans Sharada",
        -            "Noto Sans Shavian",
        -            "Noto Sans Siddham",
        -            "Noto Sans SignWriting",
        -            "Noto Sans Sinhala",
        -            "Noto Sans Sogdian",
        -            "Noto Sans Sora Sompeng",
        -            "Noto Sans Soyombo",
        -            "Noto Sans Sundanese",
        -            "Noto Sans Sunuwar",
        -            "Noto Sans Syloti Nagri",
        -            "Noto Sans Symbols",
        -            "Noto Sans Symbols 2",
        -            "Noto Sans Syriac",
        -            "Noto Sans Syriac Eastern",
        -            "Noto Sans Syriac Western",
        -            "Noto Sans TC",
        -            "Noto Sans Tagalog",
        -            "Noto Sans Tagbanwa",
        -            "Noto Sans Tai Le",
        -            "Noto Sans Tai Tham",
        -            "Noto Sans Tai Viet",
        -            "Noto Sans Takri",
        -            "Noto Sans Tamil",
        -            "Noto Sans Tamil Supplement",
        -            "Noto Sans Tangsa",
        -            "Noto Sans Telugu",
        -            "Noto Sans Thaana",
        -            "Noto Sans Thai",
        -            "Noto Sans Thai Looped",
        -            "Noto Sans Tifinagh",
        -            "Noto Sans Tirhuta",
        -            "Noto Sans Ugaritic",
        -            "Noto Sans Vai",
        -            "Noto Sans Vithkuqi",
        -            "Noto Sans Wancho",
        -            "Noto Sans Warang Citi",
        -            "Noto Sans Yi",
        -            "Noto Sans Zanabazar Square",
        -            "Noto Serif",
        -            "Noto Serif Ahom",
        -            "Noto Serif Armenian",
        -            "Noto Serif Balinese",
        -            "Noto Serif Bengali",
        -            "Noto Serif Devanagari",
        -            "Noto Serif Display",
        -            "Noto Serif Dives Akuru",
        -            "Noto Serif Dogra",
        -            "Noto Serif Ethiopic",
        -            "Noto Serif Georgian",
        -            "Noto Serif Grantha",
        -            "Noto Serif Gujarati",
        -            "Noto Serif Gurmukhi",
        -            "Noto Serif HK",
        -            "Noto Serif Hebrew",
        -            "Noto Serif Hentaigana",
        -            "Noto Serif JP",
        -            "Noto Serif KR",
        -            "Noto Serif Kannada",
        -            "Noto Serif Khitan Small Script",
        -            "Noto Serif Khmer",
        -            "Noto Serif Khojki",
        -            "Noto Serif Lao",
        -            "Noto Serif Makasar",
        -            "Noto Serif Malayalam",
        -            "Noto Serif Myanmar",
        -            "Noto Serif NP Hmong",
        -            "Noto Serif Old Uyghur",
        -            "Noto Serif Oriya",
        -            "Noto Serif Ottoman Siyaq",
        -            "Noto Serif SC",
        -            "Noto Serif Sinhala",
        -            "Noto Serif TC",
        -            "Noto Serif Tamil",
        -            "Noto Serif Tangut",
        -            "Noto Serif Telugu",
        -            "Noto Serif Thai",
        -            "Noto Serif Tibetan",
        -            "Noto Serif Todhri",
        -            "Noto Serif Toto",
        -            "Noto Serif Vithkuqi",
        -            "Noto Serif Yezidi",
        -            "Noto Traditional Nushu",
        -            "Noto Znamenny Musical Notation",
        -            "Nova Cut",
        -            "Nova Flat",
        -            "Nova Mono",
        -            "Nova Oval",
        -            "Nova Round",
        -            "Nova Script",
        -            "Nova Slim",
        -            "Nova Square",
        -            "Numans",
        -            "Nunito",
        -            "Nunito Sans",
        -            "Nuosu SIL",
        -            "Odibee Sans",
        -            "Odor Mean Chey",
        -            "Offside",
        -            "Oi",
        -            "Ojuju",
        -            "Old Standard TT",
        -            "Oldenburg",
        -            "Ole",
        -            "Oleo Script",
        -            "Oleo Script Swash Caps",
        -            "Onest",
        -            "Oooh Baby",
        -            "Open Sans",
        -            "Oranienbaum",
        -            "Orbit",
        -            "Orbitron",
        -            "Oregano",
        -            "Orelega One",
        -            "Orienta",
        -            "Original Surfer",
        -            "Oswald",
        -            "Outfit",
        -            "Over the Rainbow",
        -            "Overlock",
        -            "Overlock SC",
        -            "Overpass",
        -            "Overpass Mono",
        -            "Ovo",
        -            "Oxanium",
        -            "Oxygen",
        -            "Oxygen Mono",
        -            "PT Mono",
        -            "PT Sans",
        -            "PT Sans Caption",
        -            "PT Sans Narrow",
        -            "PT Serif",
        -            "PT Serif Caption",
        -            "Pacifico",
        -            "Padauk",
        -            "Padyakke Expanded One",
        -            "Palanquin",
        -            "Palanquin Dark",
        -            "Palette Mosaic",
        -            "Pangolin",
        -            "Paprika",
        -            "Parastoo",
        -            "Parisienne",
        -            "Parkinsans",
        -            "Passero One",
        -            "Passion One",
        -            "Passions Conflict",
        -            "Pathway Extreme",
        -            "Pathway Gothic One",
        -            "Patrick Hand",
        -            "Patrick Hand SC",
        -            "Pattaya",
        -            "Patua One",
        -            "Pavanam",
        -            "Paytone One",
        -            "Peddana",
        -            "Peralta",
        -            "Permanent Marker",
        -            "Petemoss",
        -            "Petit Formal Script",
        -            "Petrona",
        -            "Phetsarath",
        -            "Philosopher",
        -            "Phudu",
        -            "Piazzolla",
        -            "Piedra",
        -            "Pinyon Script",
        -            "Pirata One",
        -            "Pixelify Sans",
        -            "Plaster",
        -            "Platypi",
        -            "Play",
        -            "Playball",
        -            "Playfair",
        -            "Playfair Display",
        -            "Playfair Display SC",
        -            "Playpen Sans",
        -            "Playpen Sans Arabic",
        -            "Playpen Sans Deva",
        -            "Playpen Sans Hebrew",
        -            "Playpen Sans Thai",
        -            "Playwrite AR",
        -            "Playwrite AR Guides",
        -            "Playwrite AT",
        -            "Playwrite AT Guides",
        -            "Playwrite AU NSW",
        -            "Playwrite AU NSW Guides",
        -            "Playwrite AU QLD",
        -            "Playwrite AU QLD Guides",
        -            "Playwrite AU SA",
        -            "Playwrite AU SA Guides",
        -            "Playwrite AU TAS",
        -            "Playwrite AU TAS Guides",
        -            "Playwrite AU VIC",
        -            "Playwrite AU VIC Guides",
        -            "Playwrite BE VLG",
        -            "Playwrite BE VLG Guides",
        -            "Playwrite BE WAL",
        -            "Playwrite BE WAL Guides",
        -            "Playwrite BR",
        -            "Playwrite BR Guides",
        -            "Playwrite CA",
        -            "Playwrite CA Guides",
        -            "Playwrite CL",
        -            "Playwrite CL Guides",
        -            "Playwrite CO",
        -            "Playwrite CO Guides",
        -            "Playwrite CU",
        -            "Playwrite CU Guides",
        -            "Playwrite CZ",
        -            "Playwrite CZ Guides",
        -            "Playwrite DE Grund",
        -            "Playwrite DE Grund Guides",
        -            "Playwrite DE LA",
        -            "Playwrite DE LA Guides",
        -            "Playwrite DE SAS",
        -            "Playwrite DE SAS Guides",
        -            "Playwrite DE VA",
        -            "Playwrite DE VA Guides",
        -            "Playwrite DK Loopet",
        -            "Playwrite DK Loopet Guides",
        -            "Playwrite DK Uloopet",
        -            "Playwrite DK Uloopet Guides",
        -            "Playwrite ES",
        -            "Playwrite ES Deco",
        -            "Playwrite ES Deco Guides",
        -            "Playwrite ES Guides",
        -            "Playwrite FR Moderne",
        -            "Playwrite FR Moderne Guides",
        -            "Playwrite FR Trad",
        -            "Playwrite FR Trad Guides",
        -            "Playwrite GB J",
        -            "Playwrite GB J Guides",
        -            "Playwrite GB S",
        -            "Playwrite GB S Guides",
        -            "Playwrite HR",
        -            "Playwrite HR Guides",
        -            "Playwrite HR Lijeva",
        -            "Playwrite HR Lijeva Guides",
        -            "Playwrite HU",
        -            "Playwrite HU Guides",
        -            "Playwrite ID",
        -            "Playwrite ID Guides",
        -            "Playwrite IE",
        -            "Playwrite IE Guides",
        -            "Playwrite IN",
        -            "Playwrite IN Guides",
        -            "Playwrite IS",
        -            "Playwrite IS Guides",
        -            "Playwrite IT Moderna",
        -            "Playwrite IT Moderna Guides",
        -            "Playwrite IT Trad",
        -            "Playwrite IT Trad Guides",
        -            "Playwrite MX",
        -            "Playwrite MX Guides",
        -            "Playwrite NG Modern",
        -            "Playwrite NG Modern Guides",
        -            "Playwrite NL",
        -            "Playwrite NL Guides",
        -            "Playwrite NO",
        -            "Playwrite NO Guides",
        -            "Playwrite NZ",
        -            "Playwrite NZ Basic",
        -            "Playwrite NZ Basic Guides",
        -            "Playwrite NZ Guides",
        -            "Playwrite PE",
        -            "Playwrite PE Guides",
        -            "Playwrite PL",
        -            "Playwrite PL Guides",
        -            "Playwrite PT",
        -            "Playwrite PT Guides",
        -            "Playwrite RO",
        -            "Playwrite RO Guides",
        -            "Playwrite SK",
        -            "Playwrite SK Guides",
        -            "Playwrite TZ",
        -            "Playwrite TZ Guides",
        -            "Playwrite US Modern",
        -            "Playwrite US Modern Guides",
        -            "Playwrite US Trad",
        -            "Playwrite US Trad Guides",
        -            "Playwrite VN",
        -            "Playwrite VN Guides",
        -            "Playwrite ZA",
        -            "Playwrite ZA Guides",
        -            "Pliant",
        -            "Plus Jakarta Sans",
        -            "Pochaevsk",
        -            "Podkova",
        -            "Poetsen One",
        -            "Poiret One",
        -            "Poller One",
        -            "Poltawski Nowy",
        -            "Poly",
        -            "Pompiere",
        -            "Ponnala",
        -            "Ponomar",
        -            "Pontano Sans",
        -            "Poor Story",
        -            "Poppins",
        -            "Port Lligat Sans",
        -            "Port Lligat Slab",
        -            "Potta One",
        -            "Pragati Narrow",
        -            "Praise",
        -            "Prata",
        -            "Preahvihear",
        -            "Press Start 2P",
        -            "Pridi",
        -            "Princess Sofia",
        -            "Prociono",
        -            "Prompt",
        -            "Prosto One",
        -            "Protest Guerrilla",
        -            "Protest Revolution",
        -            "Protest Riot",
        -            "Protest Strike",
        -            "Proza Libre",
        -            "Public Sans",
        -            "Puppies Play",
        -            "Puritan",
        -            "Purple Purse",
        -            "Qahiri",
        -            "Quando",
        -            "Quantico",
        -            "Quattrocento",
        -            "Quattrocento Sans",
        -            "Questrial",
        -            "Quicksand",
        -            "Quintessential",
        -            "Qwigley",
        -            "Qwitcher Grypen",
        -            "REM",
        -            "Racing Sans One",
        -            "Radio Canada",
        -            "Radio Canada Big",
        -            "Radley",
        -            "Rajdhani",
        -            "Rakkas",
        -            "Raleway",
        -            "Raleway Dots",
        -            "Ramabhadra",
        -            "Ramaraja",
        -            "Rambla",
        -            "Rammetto One",
        -            "Rampart One",
        -            "Ramsina",
        -            "Ranchers",
        -            "Rancho",
        -            "Ranga",
        -            "Rasa",
        -            "Rationale",
        -            "Ravi Prakash",
        -            "Readex Pro",
        -            "Recursive",
        -            "Red Hat Display",
        -            "Red Hat Mono",
        -            "Red Hat Text",
        -            "Red Rose",
        -            "Redacted",
        -            "Redacted Script",
        -            "Reddit Mono",
        -            "Reddit Sans",
        -            "Reddit Sans Condensed",
        -            "Redressed",
        -            "Reem Kufi",
        -            "Reem Kufi Fun",
        -            "Reem Kufi Ink",
        -            "Reenie Beanie",
        -            "Reggae One",
        -            "Rethink Sans",
        -            "Revalia",
        -            "Rhodium Libre",
        -            "Ribeye",
        -            "Ribeye Marrow",
        -            "Righteous",
        -            "Risque",
        -            "Road Rage",
        -            "Roboto",
        -            "Roboto Condensed",
        -            "Roboto Flex",
        -            "Roboto Mono",
        -            "Roboto Serif",
        -            "Roboto Slab",
        -            "Rochester",
        -            "Rock 3D",
        -            "Rock Salt",
        -            "RocknRoll One",
        -            "Rokkitt",
        -            "Romanesco",
        -            "Ropa Sans",
        -            "Rosario",
        -            "Rosarivo",
        -            "Rouge Script",
        -            "Rowdies",
        -            "Rozha One",
        -            "Rubik",
        -            "Rubik 80s Fade",
        -            "Rubik Beastly",
        -            "Rubik Broken Fax",
        -            "Rubik Bubbles",
        -            "Rubik Burned",
        -            "Rubik Dirt",
        -            "Rubik Distressed",
        -            "Rubik Doodle Shadow",
        -            "Rubik Doodle Triangles",
        -            "Rubik Gemstones",
        -            "Rubik Glitch",
        -            "Rubik Glitch Pop",
        -            "Rubik Iso",
        -            "Rubik Lines",
        -            "Rubik Maps",
        -            "Rubik Marker Hatch",
        -            "Rubik Maze",
        -            "Rubik Microbe",
        -            "Rubik Mono One",
        -            "Rubik Moonrocks",
        -            "Rubik Pixels",
        -            "Rubik Puddles",
        -            "Rubik Scribble",
        -            "Rubik Spray Paint",
        -            "Rubik Storm",
        -            "Rubik Vinyl",
        -            "Rubik Wet Paint",
        -            "Ruda",
        -            "Rufina",
        -            "Ruge Boogie",
        -            "Ruluko",
        -            "Rum Raisin",
        -            "Ruslan Display",
        -            "Russo One",
        -            "Ruthie",
        -            "Ruwudu",
        -            "Rye",
        -            "SN Pro",
        -            "STIX Two Math",
        -            "STIX Two Text",
        -            "SUSE",
        -            "SUSE Mono",
        -            "Sacramento",
        -            "Sahitya",
        -            "Sail",
        -            "Saira",
        -            "Saira Condensed",
        -            "Saira Extra Condensed",
        -            "Saira Semi Condensed",
        -            "Saira Stencil",
        -            "Salsa",
        -            "Sanchez",
        -            "Sancreek",
        -            "Sankofa Display",
        -            "Sansation",
        -            "Sansita",
        -            "Sansita Swashed",
        -            "Sarabun",
        -            "Sarala",
        -            "Sarina",
        -            "Sarpanch",
        -            "Sassy Frass",
        -            "Satisfy",
        -            "Savate",
        -            "Sawarabi Gothic",
        -            "Sawarabi Mincho",
        -            "Scada",
        -            "Scheherazade New",
        -            "Schibsted Grotesk",
        -            "Schoolbell",
        -            "Science Gothic",
        -            "Scope One",
        -            "Seaweed Script",
        -            "Secular One",
        -            "Sedan",
        -            "Sedan SC",
        -            "Sedgwick Ave",
        -            "Sedgwick Ave Display",
        -            "Sekuya",
        -            "Sen",
        -            "Send Flowers",
        -            "Sevillana",
        -            "Seymour One",
        -            "Shadows Into Light",
        -            "Shadows Into Light Two",
        -            "Shafarik",
        -            "Shalimar",
        -            "Shantell Sans",
        -            "Shanti",
        -            "Share",
        -            "Share Tech",
        -            "Share Tech Mono",
        -            "Shippori Antique",
        -            "Shippori Antique B1",
        -            "Shippori Mincho",
        -            "Shippori Mincho B1",
        -            "Shizuru",
        -            "Shojumaru",
        -            "Short Stack",
        -            "Shrikhand",
        -            "Siemreap",
        -            "Sigmar",
        -            "Sigmar One",
        -            "Signika",
        -            "Signika Negative",
        -            "Silkscreen",
        -            "Simonetta",
        -            "Single Day",
        -            "Sintony",
        -            "Sirin Stencil",
        -            "Sirivennela",
        -            "Six Caps",
        -            "Sixtyfour",
        -            "Sixtyfour Convergence",
        -            "Skranji",
        -            "Slabo 13px",
        -            "Slabo 27px",
        -            "Slackey",
        -            "Slackside One",
        -            "Smokum",
        -            "Smooch",
        -            "Smooch Sans",
        -            "Smythe",
        -            "Sniglet",
        -            "Snippet",
        -            "Snowburst One",
        -            "Sofadi One",
        -            "Sofia",
        -            "Sofia Sans",
        -            "Sofia Sans Condensed",
        -            "Sofia Sans Extra Condensed",
        -            "Sofia Sans Semi Condensed",
        -            "Solitreo",
        -            "Solway",
        -            "Sometype Mono",
        -            "Song Myung",
        -            "Sono",
        -            "Sonsie One",
        -            "Sora",
        -            "Sorts Mill Goudy",
        -            "Sour Gummy",
        -            "Source Code Pro",
        -            "Source Sans 3",
        -            "Source Serif 4",
        -            "Space Grotesk",
        -            "Space Mono",
        -            "Special Elite",
        -            "Special Gothic",
        -            "Special Gothic Condensed One",
        -            "Special Gothic Expanded One",
        -            "Spectral",
        -            "Spectral SC",
        -            "Spicy Rice",
        -            "Spinnaker",
        -            "Spirax",
        -            "Splash",
        -            "Spline Sans",
        -            "Spline Sans Mono",
        -            "Squada One",
        -            "Square Peg",
        -            "Sree Krushnadevaraya",
        -            "Sriracha",
        -            "Srisakdi",
        -            "Staatliches",
        -            "Stack Sans Headline",
        -            "Stack Sans Notch",
        -            "Stack Sans Text",
        -            "Stalemate",
        -            "Stalinist One",
        -            "Stardos Stencil",
        -            "Stick",
        -            "Stick No Bills",
        -            "Stint Ultra Condensed",
        -            "Stint Ultra Expanded",
        -            "Stoke",
        -            "Story Script",
        -            "Strait",
        -            "Strichpunkt Sans",
        -            "Style Script",
        -            "Stylish",
        -            "Sue Ellen Francisco",
        -            "Suez One",
        -            "Sulphur Point",
        -            "Sumana",
        -            "Sunflower",
        -            "Sunshiney",
        -            "Supermercado One",
        -            "Sura",
        -            "Suranna",
        -            "Suravaram",
        -            "Suwannaphum",
        -            "Swanky and Moo Moo",
        -            "Syncopate",
        -            "Syne",
        -            "Syne Mono",
        -            "Syne Tactile",
        -            "TASA Explorer",
        -            "TASA Orbiter",
        -            "Tac One",
        -            "Tagesschrift",
        -            "Tai Heritage Pro",
        -            "Tajawal",
        -            "Tangerine",
        -            "Tapestry",
        -            "Taprom",
        -            "Tauri",
        -            "Taviraj",
        -            "Teachers",
        -            "Teko",
        -            "Tektur",
        -            "Telex",
        -            "Tenali Ramakrishna",
        -            "Tenor Sans",
        -            "Text Me One",
        -            "Texturina",
        -            "Thasadith",
        -            "The Girl Next Door",
        -            "The Nautigal",
        -            "Tienne",
        -            "TikTok Sans",
        -            "Tillana",
        -            "Tilt Neon",
        -            "Tilt Prism",
        -            "Tilt Warp",
        -            "Timmana",
        -            "Tinos",
        -            "Tiny5",
        -            "Tiro Bangla",
        -            "Tiro Devanagari Hindi",
        -            "Tiro Devanagari Marathi",
        -            "Tiro Devanagari Sanskrit",
        -            "Tiro Gurmukhi",
        -            "Tiro Kannada",
        -            "Tiro Tamil",
        -            "Tiro Telugu",
        -            "Tirra",
        -            "Titan One",
        -            "Titillium Web",
        -            "Tomorrow",
        -            "Tourney",
        -            "Trade Winds",
        -            "Train One",
        -            "Triodion",
        -            "Trirong",
        -            "Trispace",
        -            "Trocchi",
        -            "Trochut",
        -            "Truculenta",
        -            "Trykker",
        -            "Tsukimi Rounded",
        -            "Tuffy",
        -            "Tulpen One",
        -            "Turret Road",
        -            "Twinkle Star",
        -            "Ubuntu",
        -            "Ubuntu Condensed",
        -            "Ubuntu Mono",
        -            "Ubuntu Sans",
        -            "Ubuntu Sans Mono",
        -            "Uchen",
        -            "Ultra",
        -            "Unbounded",
        -            "Uncial Antiqua",
        -            "Underdog",
        -            "Unica One",
        -            "UnifrakturCook",
        -            "UnifrakturMaguntia",
        -            "Unkempt",
        -            "Unlock",
        -            "Unna",
        -            "UoqMunThenKhung",
        -            "Updock",
        -            "Urbanist",
        -            "VT323",
        -            "Vampiro One",
        -            "Varela",
        -            "Varela Round",
        -            "Varta",
        -            "Vast Shadow",
        -            "Vazirmatn",
        -            "Vend Sans",
        -            "Vesper Libre",
        -            "Viaoda Libre",
        -            "Vibes",
        -            "Vibur",
        -            "Victor Mono",
        -            "Vidaloka",
        -            "Viga",
        -            "Vina Sans",
        -            "Voces",
        -            "Volkhov",
        -            "Vollkorn",
        -            "Vollkorn SC",
        -            "Voltaire",
        -            "Vujahday Script",
        -            "WDXL Lubrifont JP N",
        -            "WDXL Lubrifont SC",
        -            "WDXL Lubrifont TC",
        -            "Waiting for the Sunrise",
        -            "Wallpoet",
        -            "Walter Turncoat",
        -            "Warnes",
        -            "Water Brush",
        -            "Waterfall",
        -            "Wavefont",
        -            "Wellfleet",
        -            "Wendy One",
        -            "Whisper",
        -            "WindSong",
        -            "Winky Rough",
        -            "Winky Sans",
        -            "Wire One",
        -            "Wittgenstein",
        -            "Wix Madefor Display",
        -            "Wix Madefor Text",
        -            "Work Sans",
        -            "Workbench",
        -            "Xanh Mono",
        -            "Yaldevi",
        -            "Yanone Kaffeesatz",
        -            "Yantramanav",
        -            "Yarndings 12",
        -            "Yarndings 12 Charted",
        -            "Yarndings 20",
        -            "Yarndings 20 Charted",
        -            "Yatra One",
        -            "Yellowtail",
        -            "Yeon Sung",
        -            "Yeseva One",
        -            "Yesteryear",
        -            "Yomogi",
        -            "Young Serif",
        -            "Yrsa",
        -            "Ysabeau",
        -            "Ysabeau Infant",
        -            "Ysabeau Office",
        -            "Ysabeau SC",
        -            "Yuji Boku",
        -            "Yuji Hentaigana Akari",
        -            "Yuji Hentaigana Akebono",
        -            "Yuji Mai",
        -            "Yuji Syuku",
        -            "Yusei Magic",
        -            "Yuyu",
        -            "Yuyu Short",
        -            "ZCOOL KuaiLe",
        -            "ZCOOL QingKe HuangYou",
        -            "ZCOOL XiaoWei",
        -            "Zain",
        -            "Zalando Sans",
        -            "Zalando Sans Expanded",
        -            "Zalando Sans SemiExpanded",
        -            "Zen Antique",
        -            "Zen Antique Soft",
        -            "Zen Dots",
        -            "Zen Kaku Gothic Antique",
        -            "Zen Kaku Gothic New",
        -            "Zen Kurenaido",
        -            "Zen Loop",
        -            "Zen Maru Gothic",
        -            "Zen Old Mincho",
        -            "Zen Tokyo Zoo",
        -            "Zeyada",
        -            "Zhi Mang Xing",
        -            "Zilla Slab",
        -            "Zilla Slab Highlight"
        -          ],
        -          "type": "string"
        -        },
        -        "titleFontSize": {
        -          "type": "number"
        -        },
        -        "titleFontWeight": {
        -          "type": "string"
        -        },
        -        "titleSubtitleGap": {
        -          "type": "number"
        -        }
        -      },
        -      "type": "object"
        -    },
        -    "title": {
        -      "type": "string"
        -    },
        -    "version": {
        -      "const": "2026-03-20",
        -      "type": "string"
        -    },
        -    "width": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "x": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "display": {
        -          "default": true,
        -          "type": "boolean"
        -        },
        -        "domain": {
        -          "anyOf": [
        -            {
        -              "items": [
        -                {
        -                  "type": "number"
        -                },
        -                {
        -                  "type": "number"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            }
        -          ]
        -        },
        -        "label": {
        -          "type": "string"
        -        },
        -        "nice": {
        -          "type": "boolean"
        -        },
        -        "tickFormat": {
        -          "type": "string"
        -        },
        -        "type": {
        -          "enum": [
        -            "linear",
        -            "log",
        -            "utc",
        -            "band"
        -          ],
        -          "type": "string"
        -        }
        -      },
        -      "type": "object"
        -    },
        -    "y": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "display": {
        -          "default": true,
        -          "type": "boolean"
        -        },
        -        "domain": {
        -          "anyOf": [
        -            {
        -              "items": [
        -                {
        -                  "type": "number"
        -                },
        -                {
        -                  "type": "number"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            }
        -          ]
        -        },
        -        "label": {
        -          "type": "string"
        -        },
        -        "nice": {
        -          "type": "boolean"
        -        },
        -        "tickFormat": {
        -          "type": "string"
        -        },
        -        "type": {
        -          "enum": [
        -            "linear",
        -            "log",
        -            "utc",
        -            "band"
        -          ],
        -          "type": "string"
        -        }
        -      },
        -      "type": "object"
        -    }
        -  },
        -  "required": [
        -    "version",
        -    "format",
        -    "marks"
        -  ],
        -  "title": "Szum Chart Configuration",
        -  "type": "object"
        -}
      • addedOutput schema / properties / validation / properties / suggestedDocument
        Added value: +{
        +  "$ref": "#/$defs/szumSchema88"
        +}
      • changedOutput schema / properties / validation / required
        Previous value: -[
        -  "valid",
        -  "message",
        -  "errors",
        -  "diagnostics"
        -]New value: +[
        +  "valid",
        +  "diagnostics"
        +]
      • changedOutput schema / required
        Previous value: -[
        -  "view",
        -  "title",
        -  "imageUrl",
        -  "format",
        -  "mimeType",
        -  "expiresAt",
        -  "validation"
        -]New value: +[
        +  "view",
        +  "title",
        +  "imageUrl",
        +  "format",
        +  "mimeType",
        +  "expiresAt",
        +  "validation",
        +  "durableInput"
        +]
    • Changedsave_chart20 fields changed
      • addedInput schema / properties / acceptLosses
        Added value: +{
        +  "description": "Compatibility loss codes explicitly accepted by the user for this save",
        +  "items": {
        +    "type": "string"
        +  },
        +  "type": "array"
        +}
      • changedInput schema / properties / acknowledgeWarnings / description
        Previous value: -"Set true only after the user explicitly approves every warning returned for this exact config"New value: +"Set true only after the user explicitly approves every warning returned for this exact document"
      • removedInput schema / properties / config
        Removed value: -{
        -  "description": "Complete chart config JSON. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Bar and area value axes stay linear and include zero. Explicit base-10 log scales require positive finite values and domains; use line or dot. Configure scales with top-level x/y; hide with display: false. Put shared data at chart level; use mark data for distinct rows. When rows share a bar position, map a series field to fill or stroke before setting group or aggregate.",
        -  "type": "string"
        -}
      • addedInput schema / properties / document
        Added value: +{
        +  "description": "Complete current ChartDocument JSON with version, config, and data, plus optional presentation, size, and output. Use the same document for validation, rendering, and saving; version must match config.version. Semantic field roles must match row keys. Chronological annual values use YYYY strings on an explicit UTC scale. Column and bar charts with long, wide, or count values, and all area charts, use linear value scales. Their inferred domains include zero, while an explicit domain excluding zero produces a warning. Base-10 log roles and explicit log domains require positive finite values; use line, scatter, or ranged columns and bars.",
        +  "type": "string"
        +}
      • changedInput schema / properties / idempotencyKey / description
        Previous value: -"Stable retry key of at most 255 characters; reuse only for the exact same config"New value: +"Stable retry key of at most 255 characters; reuse only for the exact same document"
      • changedInput schema / required
        Previous value: -[
        -  "config"
        -]New value: +[
        +  "document"
        +]
      • addedOutput schema / $defs
        Added value: +{
        +  "AnnotationBoxAnchor": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "x": {
        +        "enum": [
        +          "start",
        +          "center",
        +          "end"
        +        ],
        +        "type": "string"
        +      },
        +      "y": {
        +        "enum": [
        +          "top",
        +          "middle",
        +          "bottom"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "x",
        +      "y"
        +    ],
        +    "title": "AnnotationBoxAnchor",
        +    "type": "object"
        +  },
        +  "AnnotationOffset": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "x": {
        +        "type": "number"
        +      },
        +      "y": {
        +        "type": "number"
        +      }
        +    },
        +    "title": "AnnotationOffset",
        +    "type": "object"
        +  },
        +  "AnnotationPlacement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "align": {
        +        "enum": [
        +          "start",
        +          "center",
        +          "end"
        +        ],
        +        "type": "string"
        +      },
        +      "gap": {
        +        "minimum": 0,
        +        "type": "number"
        +      },
        +      "side": {
        +        "enum": [
        +          "above",
        +          "right",
        +          "below",
        +          "left"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "side"
        +    ],
        +    "title": "AnnotationPlacement",
        +    "type": "object"
        +  },
        +  "AnnotationTextStyle": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "background": {
        +        "type": "boolean"
        +      },
        +      "color": {
        +        "$ref": "#/$defs/Color"
        +      },
        +      "fontSize": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      },
        +      "fontWeight": {
        +        "anyOf": [
        +          {
        +            "const": 100,
        +            "type": "number"
        +          },
        +          {
        +            "const": 200,
        +            "type": "number"
        +          },
        +          {
        +            "const": 300,
        +            "type": "number"
        +          },
        +          {
        +            "const": 400,
        +            "type": "number"
        +          },
        +          {
        +            "const": 500,
        +            "type": "number"
        +          },
        +          {
        +            "const": 600,
        +            "type": "number"
        +          },
        +          {
        +            "const": 700,
        +            "type": "number"
        +          },
        +          {
        +            "const": 800,
        +            "type": "number"
        +          },
        +          {
        +            "const": 900,
        +            "type": "number"
        +          }
        +        ]
        +      }
        +    },
        +    "title": "AnnotationTextStyle",
        +    "type": "object"
        +  },
        +  "AreaLabels": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "points": {
        +        "$ref": "#/$defs/ConnectedPointLabels"
        +      },
        +      "series": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "content": {
        +            "items": {
        +              "enum": [
        +                "series",
        +                "value",
        +                "percent"
        +              ],
        +              "type": "string"
        +            },
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          }
        +        },
        +        "required": [
        +          "content"
        +        ],
        +        "type": "object"
        +      }
        +    },
        +    "title": "AreaLabels",
        +    "type": "object"
        +  },
        +  "AxisOptions": {
        +    "anyOf": [
        +      {
        +        "type": "boolean"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "grid": {
        +            "type": "boolean"
        +          },
        +          "line": {
        +            "type": "boolean"
        +          },
        +          "title": {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        },
        +        "type": "object"
        +      }
        +    ],
        +    "title": "AxisOptions"
        +  },
        +  "BandScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "band",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "BandScale",
        +    "type": "object"
        +  },
        +  "BarCategoryRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "oneOf": [
        +          {
        +            "$ref": "#/$defs/BandScale"
        +          },
        +          {
        +            "$ref": "#/$defs/UtcScale"
        +          }
        +        ],
        +        "title": "BarCategoryScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "BarCategoryRole",
        +    "type": "object"
        +  },
        +  "BarSpacingPreference": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "category": {
        +        "exclusiveMaximum": 1,
        +        "minimum": 0,
        +        "type": "number"
        +      },
        +      "series": {
        +        "exclusiveMaximum": 1,
        +        "minimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "BarSpacingPreference",
        +    "type": "object"
        +  },
        +  "CartesianAnnotations": {
        +    "items": {
        +      "additionalProperties": false,
        +      "properties": {
        +        "align": {
        +          "enum": [
        +            "start",
        +            "center",
        +            "end"
        +          ],
        +          "type": "string"
        +        },
        +        "anchor": {
        +          "oneOf": [
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "category": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "category",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "category"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "category": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "series": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "datum",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "category"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "category": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "coordinate",
        +                  "type": "string"
        +                },
        +                "value": {
        +                  "type": "number"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "category",
        +                "value"
        +              ],
        +              "type": "object"
        +            }
        +          ],
        +          "title": "CartesianAnnotationAnchor"
        +        },
        +        "boxAnchor": {
        +          "$ref": "#/$defs/AnnotationBoxAnchor"
        +        },
        +        "connector": {
        +          "enum": [
        +            "none",
        +            "line",
        +            "arrow"
        +          ],
        +          "type": "string"
        +        },
        +        "offset": {
        +          "$ref": "#/$defs/AnnotationOffset"
        +        },
        +        "placement": {
        +          "$ref": "#/$defs/AnnotationPlacement"
        +        },
        +        "reserveSpace": {
        +          "$ref": "#/$defs/ReserveSpace"
        +        },
        +        "style": {
        +          "$ref": "#/$defs/AnnotationTextStyle"
        +        },
        +        "text": {
        +          "type": "string"
        +        },
        +        "visible": {
        +          "type": "boolean"
        +        },
        +        "width": {
        +          "anyOf": [
        +            {
        +              "exclusiveMinimum": 0,
        +              "type": "number"
        +            },
        +            {
        +              "const": "shape",
        +              "type": "string"
        +            }
        +          ]
        +        }
        +      },
        +      "required": [
        +        "text",
        +        "anchor"
        +      ],
        +      "title": "CartesianAnnotation",
        +      "type": "object"
        +    },
        +    "minItems": 1,
        +    "title": "CartesianAnnotations",
        +    "type": "array"
        +  },
        +  "CategoricalColor": {
        +    "anyOf": [
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "$ref": "#/$defs/CategoricalColorMapping"
        +      }
        +    ],
        +    "title": "CategoricalColor"
        +  },
        +  "CategoricalColorMapping": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "domain": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "legend": {
        +        "$ref": "#/$defs/LegendOptions"
        +      },
        +      "range": {
        +        "$ref": "#/$defs/ColorRange"
        +      }
        +    },
        +    "title": "CategoricalColorMapping",
        +    "type": "object"
        +  },
        +  "CategoricalReferences": {
        +    "items": {
        +      "anyOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "const": "category",
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "value": {
        +              "type": [
        +                "string",
        +                "number"
        +              ]
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "value"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "value": {
        +              "type": "number"
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "value"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "statistic": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "basis": {
        +                  "enum": [
        +                    "values",
        +                    "categoryTotals"
        +                  ],
        +                  "type": "string"
        +                },
        +                "operation": {
        +                  "enum": [
        +                    "average",
        +                    "median",
        +                    "min",
        +                    "max"
        +                  ],
        +                  "type": "string"
        +                },
        +                "scope": {
        +                  "enum": [
        +                    "visible",
        +                    "all"
        +                  ],
        +                  "type": "string"
        +                },
        +                "series": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                }
        +              },
        +              "required": [
        +                "operation",
        +                "scope"
        +              ],
        +              "title": "CategoricalReferenceStatistic",
        +              "type": "object"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "statistic",
        +              "type": "string"
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "statistic"
        +          ],
        +          "type": "object"
        +        }
        +      ],
        +      "title": "CategoricalReference"
        +    },
        +    "minItems": 1,
        +    "title": "CategoricalReferences",
        +    "type": "array"
        +  },
        +  "CategoryOrder": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "direction": {
        +            "enum": [
        +              "ascending",
        +              "descending"
        +            ],
        +            "type": "string"
        +          },
        +          "type": {
        +            "enum": [
        +              "category",
        +              "value"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "direction"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "$ref": "#/$defs/ExplicitCategoryOrder"
        +      }
        +    ],
        +    "title": "CategoryOrder"
        +  },
        +  "CategoryRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/CategoryScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "CategoryRole",
        +    "type": "object"
        +  },
        +  "CategoryScale": {
        +    "oneOf": [
        +      {
        +        "$ref": "#/$defs/BandScale"
        +      },
        +      {
        +        "$ref": "#/$defs/LinearScale"
        +      },
        +      {
        +        "$ref": "#/$defs/LogScale"
        +      },
        +      {
        +        "$ref": "#/$defs/UtcScale"
        +      }
        +    ],
        +    "title": "CategoryScale"
        +  },
        +  "CategorySpacing": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "category": {
        +        "exclusiveMaximum": 1,
        +        "minimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "required": [
        +      "category"
        +    ],
        +    "title": "CategorySpacing",
        +    "type": "object"
        +  },
        +  "Color": {
        +    "anyOf": [
        +      {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      {
        +        "anyOf": [
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "dark": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "light": {
        +                "minLength": 1,
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "light"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "dark": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "light": {
        +                "minLength": 1,
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "dark"
        +            ],
        +            "type": "object"
        +          }
        +        ]
        +      }
        +    ],
        +    "title": "Color"
        +  },
        +  "ColorRange": {
        +    "items": {
        +      "$ref": "#/$defs/Color"
        +    },
        +    "minItems": 1,
        +    "title": "ColorRange",
        +    "type": "array"
        +  },
        +  "ConnectedPointLabels": {
        +    "anyOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "at": {
        +            "enum": [
        +              "extrema",
        +              "all",
        +              "ends"
        +            ],
        +            "type": "string"
        +          },
        +          "content": {
        +            "items": {
        +              "enum": [
        +                "category",
        +                "value"
        +              ],
        +              "type": "string"
        +            },
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "position": {
        +            "enum": [
        +              "above",
        +              "side"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "at",
        +          "content"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "at": {
        +            "enum": [
        +              "extrema",
        +              "all",
        +              "ends"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "position": {
        +            "enum": [
        +              "above",
        +              "side"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "at",
        +          "field"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "ConnectedPointLabels"
        +  },
        +  "ContinuousScale": {
        +    "oneOf": [
        +      {
        +        "$ref": "#/$defs/LinearScale"
        +      },
        +      {
        +        "$ref": "#/$defs/LogScale"
        +      },
        +      {
        +        "$ref": "#/$defs/UtcScale"
        +      }
        +    ],
        +    "title": "ContinuousScale"
        +  },
        +  "ExplicitCategoryOrder": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "categories": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "type": {
        +        "const": "explicit",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "categories"
        +    ],
        +    "title": "ExplicitCategoryOrder",
        +    "type": "object"
        +  },
        +  "FieldRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "FieldRole",
        +    "type": "object"
        +  },
        +  "GoogleFontFamily": {
        +    "enum": [
        +      "ABeeZee",
        +      "ADLaM Display",
        +      "AR One Sans",
        +      "Abel",
        +      "Abhaya Libre",
        +      "Aboreto",
        +      "Abril Fatface",
        +      "Abyssinica SIL",
        +      "Aclonica",
        +      "Acme",
        +      "Actor",
        +      "Adamina",
        +      "Advent Pro",
        +      "Afacad",
        +      "Afacad Flux",
        +      "Agbalumo",
        +      "Agdasima",
        +      "Agu Display",
        +      "Aguafina Script",
        +      "Akatab",
        +      "Akaya Kanadaka",
        +      "Akaya Telivigala",
        +      "Akronim",
        +      "Akshar",
        +      "Akt",
        +      "Aladin",
        +      "Alan Sans",
        +      "Alata",
        +      "Alatsi",
        +      "Albert Sans",
        +      "Aldrich",
        +      "Alef",
        +      "Alegreya",
        +      "Alegreya SC",
        +      "Alegreya Sans",
        +      "Alegreya Sans SC",
        +      "Aleo",
        +      "Alex Brush",
        +      "Alexandria",
        +      "Alfa Slab One",
        +      "Alice",
        +      "Alien Block",
        +      "Alike",
        +      "Alike Angular",
        +      "Alkalami",
        +      "Alkatra",
        +      "Allan",
        +      "Allerta",
        +      "Allerta Stencil",
        +      "Allison",
        +      "Allkin",
        +      "Allura",
        +      "Almarai",
        +      "Almendra",
        +      "Almendra Display",
        +      "Almendra SC",
        +      "Alumni Sans",
        +      "Alumni Sans Collegiate One",
        +      "Alumni Sans Inline One",
        +      "Alumni Sans Pinstripe",
        +      "Alumni Sans SC",
        +      "Alyamama",
        +      "Amarante",
        +      "Amaranth",
        +      "Amarna",
        +      "Amatic SC",
        +      "Amethysta",
        +      "Amiko",
        +      "Amiri",
        +      "Amiri Quran",
        +      "Amita",
        +      "Anaheim",
        +      "Ancizar Sans",
        +      "Ancizar Serif",
        +      "Andada Pro",
        +      "Andika",
        +      "Anek Bangla",
        +      "Anek Devanagari",
        +      "Anek Gujarati",
        +      "Anek Gurmukhi",
        +      "Anek Kannada",
        +      "Anek Latin",
        +      "Anek Malayalam",
        +      "Anek Odia",
        +      "Anek Tamil",
        +      "Anek Telugu",
        +      "Angkor",
        +      "Annapurna SIL",
        +      "Annie Use Your Telescope",
        +      "Anonymous Pro",
        +      "Anta",
        +      "Antic",
        +      "Antic Didone",
        +      "Antic Slab",
        +      "Anton",
        +      "Anton SC",
        +      "Antonio",
        +      "Anuphan",
        +      "Anybody",
        +      "Aoboshi One",
        +      "Arapey",
        +      "Arbutus",
        +      "Arbutus Slab",
        +      "Architects Daughter",
        +      "Archivo",
        +      "Archivo Black",
        +      "Archivo Narrow",
        +      "Are You Serious",
        +      "Aref Ruqaa",
        +      "Aref Ruqaa Ink",
        +      "Arima",
        +      "Arimo",
        +      "Arizonia",
        +      "Armata",
        +      "Arsenal",
        +      "Arsenal SC",
        +      "Artifika",
        +      "Arvo",
        +      "Arya",
        +      "Asap",
        +      "Asap Condensed",
        +      "Asar",
        +      "Asimovian",
        +      "Asset",
        +      "Assistant",
        +      "Asta Sans",
        +      "Astloch",
        +      "Asul",
        +      "Athiti",
        +      "Atkinson Hyperlegible",
        +      "Atkinson Hyperlegible Mono",
        +      "Atkinson Hyperlegible Next",
        +      "Atma",
        +      "Atomic Age",
        +      "Aubrey",
        +      "Audiowide",
        +      "Autour One",
        +      "Average",
        +      "Average Sans",
        +      "Averia Gruesa Libre",
        +      "Averia Libre",
        +      "Averia Sans Libre",
        +      "Averia Serif Libre",
        +      "Azeret Mono",
        +      "B612",
        +      "B612 Mono",
        +      "BBH Bartle",
        +      "BBH Bogle",
        +      "BBH Hegarty",
        +      "BIZ UDGothic",
        +      "BIZ UDMincho",
        +      "BIZ UDPGothic",
        +      "BIZ UDPMincho",
        +      "BJCree",
        +      "Babylonica",
        +      "Bacasime Antique",
        +      "Bad Script",
        +      "Badeen Display",
        +      "Bagel Fat One",
        +      "Bahiana",
        +      "Bahianita",
        +      "Bai Jamjuree",
        +      "Bakbak One",
        +      "Ballet",
        +      "Baloo 2",
        +      "Baloo Bhai 2",
        +      "Baloo Bhaijaan 2",
        +      "Baloo Bhaina 2",
        +      "Baloo Chettan 2",
        +      "Baloo Da 2",
        +      "Baloo Paaji 2",
        +      "Baloo Tamma 2",
        +      "Baloo Tammudu 2",
        +      "Baloo Thambi 2",
        +      "Balsamiq Sans",
        +      "Balthazar",
        +      "Bangers",
        +      "Barlow",
        +      "Barlow Condensed",
        +      "Barlow Semi Condensed",
        +      "Barriecito",
        +      "Barrio",
        +      "Basic",
        +      "Baskervville",
        +      "Baskervville SC",
        +      "Battambang",
        +      "Baumans",
        +      "Bayon",
        +      "Be Vietnam Pro",
        +      "Beau Rivage",
        +      "Bebas Neue",
        +      "Beiruti",
        +      "Belanosima",
        +      "Belgrano",
        +      "Bellefair",
        +      "Belleza",
        +      "Bellota",
        +      "Bellota Text",
        +      "BenchNine",
        +      "Benne",
        +      "Bentham",
        +      "Berkshire Swash",
        +      "Besley",
        +      "Betania Patmos",
        +      "Betania Patmos GDL",
        +      "Betania Patmos In",
        +      "Betania Patmos In GDL",
        +      "Beth Ellen",
        +      "Bevan",
        +      "BhuTuka Expanded One",
        +      "Big Shoulders",
        +      "Big Shoulders Inline",
        +      "Big Shoulders Stencil",
        +      "Bigelow Rules",
        +      "Bigshot One",
        +      "Bilbo",
        +      "Bilbo Swash Caps",
        +      "BioRhyme",
        +      "BioRhyme Expanded",
        +      "Birthstone",
        +      "Birthstone Bounce",
        +      "Biryani",
        +      "Bitcount",
        +      "Bitcount Grid Double",
        +      "Bitcount Grid Double Ink",
        +      "Bitcount Grid Single",
        +      "Bitcount Grid Single Ink",
        +      "Bitcount Ink",
        +      "Bitcount Prop Double",
        +      "Bitcount Prop Double Ink",
        +      "Bitcount Prop Single",
        +      "Bitcount Prop Single Ink",
        +      "Bitcount Single",
        +      "Bitcount Single Ink",
        +      "Bitter",
        +      "Black And White Picture",
        +      "Black Han Sans",
        +      "Black Ops One",
        +      "Blaka",
        +      "Blaka Hollow",
        +      "Blaka Ink",
        +      "Blinker",
        +      "Bodoni Moda",
        +      "Bodoni Moda SC",
        +      "Bokor",
        +      "Boldonse",
        +      "Bona Nova",
        +      "Bona Nova SC",
        +      "Bonbon",
        +      "Bonheur Royale",
        +      "Boogaloo",
        +      "Borel",
        +      "Bowlby One",
        +      "Bowlby One SC",
        +      "Bpmf Huninn",
        +      "Bpmf Iansui",
        +      "Bpmf Zihi Kai Std",
        +      "Braah One",
        +      "Brawler",
        +      "Bree Serif",
        +      "Bricolage Grotesque",
        +      "Bruno Ace",
        +      "Bruno Ace SC",
        +      "Brygada 1918",
        +      "Bubblegum Sans",
        +      "Bubbler One",
        +      "Buda",
        +      "Buenard",
        +      "Bungee",
        +      "Bungee Hairline",
        +      "Bungee Inline",
        +      "Bungee Outline",
        +      "Bungee Shade",
        +      "Bungee Spice",
        +      "Bungee Tint",
        +      "Butcherman",
        +      "Butterfly Kids",
        +      "Bytesized",
        +      "Cabin",
        +      "Cabin Condensed",
        +      "Cabin Sketch",
        +      "Cactus Classical Serif",
        +      "Caesar Dressing",
        +      "Cagliostro",
        +      "Cairo",
        +      "Cairo Play",
        +      "Cal Sans",
        +      "Caladea",
        +      "Calistoga",
        +      "Calligraffitti",
        +      "Cambay",
        +      "Cambo",
        +      "Candal",
        +      "Cantarell",
        +      "Cantata One",
        +      "Cantora One",
        +      "Caprasimo",
        +      "Capriola",
        +      "Caramel",
        +      "Carattere",
        +      "Cardo",
        +      "Carlito",
        +      "Carme",
        +      "Carrois Gothic",
        +      "Carrois Gothic SC",
        +      "Carter One",
        +      "Cascadia Code",
        +      "Cascadia Mono",
        +      "Castoro",
        +      "Castoro Titling",
        +      "Catamaran",
        +      "Caudex",
        +      "Cause",
        +      "Caveat",
        +      "Caveat Brush",
        +      "Cedarville Cursive",
        +      "Ceviche One",
        +      "Chakra Petch",
        +      "Changa",
        +      "Changa One",
        +      "Chango",
        +      "Charis SIL",
        +      "Charm",
        +      "Charmonman",
        +      "Chathura",
        +      "Chau Philomene One",
        +      "Chela One",
        +      "Chelsea Market",
        +      "Chenla",
        +      "Cherish",
        +      "Cherry Bomb One",
        +      "Cherry Cream Soda",
        +      "Cherry Swash",
        +      "Chewy",
        +      "Chicle",
        +      "Chilanka",
        +      "Chiron GoRound TC",
        +      "Chiron Hei HK",
        +      "Chiron Sung HK",
        +      "Chivo",
        +      "Chivo Mono",
        +      "Chocolate Classical Sans",
        +      "Chokokutai",
        +      "Chonburi",
        +      "Cinzel",
        +      "Cinzel Decorative",
        +      "Clicker Script",
        +      "Climate Crisis",
        +      "Coda",
        +      "Codystar",
        +      "Coiny",
        +      "Combo",
        +      "Comfortaa",
        +      "Comforter",
        +      "Comforter Brush",
        +      "Comic Neue",
        +      "Comic Relief",
        +      "Coming Soon",
        +      "Comme",
        +      "Commissioner",
        +      "Concert One",
        +      "Condiment",
        +      "Content",
        +      "Contrail One",
        +      "Convergence",
        +      "Cookie",
        +      "Copse",
        +      "Coral Pixels",
        +      "Corben",
        +      "Corinthia",
        +      "Cormorant",
        +      "Cormorant Garamond",
        +      "Cormorant Infant",
        +      "Cormorant SC",
        +      "Cormorant Unicase",
        +      "Cormorant Upright",
        +      "Cossette Texte",
        +      "Cossette Titre",
        +      "Courgette",
        +      "Courier Prime",
        +      "Cousine",
        +      "Coustard",
        +      "Covered By Your Grace",
        +      "Crafty Girls",
        +      "Creepster",
        +      "Crete Round",
        +      "Crimson Pro",
        +      "Crimson Text",
        +      "Croissant One",
        +      "Crushed",
        +      "Cuprum",
        +      "Cute Font",
        +      "Cutive",
        +      "Cutive Mono",
        +      "DM Mono",
        +      "DM Sans",
        +      "DM Serif Display",
        +      "DM Serif Text",
        +      "Dai Banna SIL",
        +      "Damion",
        +      "Dancing Script",
        +      "Danfo",
        +      "Dangrek",
        +      "Darker Grotesque",
        +      "Darumadrop One",
        +      "Datatype",
        +      "David Libre",
        +      "Dawning of a New Day",
        +      "Days One",
        +      "Dekko",
        +      "Dela Gothic One",
        +      "Delicious Handrawn",
        +      "Delius",
        +      "Delius Swash Caps",
        +      "Delius Unicase",
        +      "Della Respira",
        +      "Denk One",
        +      "Devonshire",
        +      "Dhurjati",
        +      "Didact Gothic",
        +      "Diphylleia",
        +      "Diplomata",
        +      "Diplomata SC",
        +      "Do Hyeon",
        +      "Dokdo",
        +      "Domine",
        +      "Donegal One",
        +      "Dongle",
        +      "Doppio One",
        +      "Dorsa",
        +      "Dosis",
        +      "DotGothic16",
        +      "Doto",
        +      "Dr Sugiyama",
        +      "Duru Sans",
        +      "DynaPuff",
        +      "Dynalight",
        +      "EB Garamond",
        +      "Eagle Lake",
        +      "East Sea Dokdo",
        +      "Eater",
        +      "Economica",
        +      "Eczar",
        +      "Edu AU VIC WA NT Arrows",
        +      "Edu AU VIC WA NT Dots",
        +      "Edu AU VIC WA NT Guides",
        +      "Edu AU VIC WA NT Hand",
        +      "Edu AU VIC WA NT Pre",
        +      "Edu NSW ACT Cursive",
        +      "Edu NSW ACT Foundation",
        +      "Edu NSW ACT Hand Pre",
        +      "Edu QLD Beginner",
        +      "Edu QLD Hand",
        +      "Edu SA Beginner",
        +      "Edu SA Hand",
        +      "Edu TAS Beginner",
        +      "Edu VIC WA NT Beginner",
        +      "Edu VIC WA NT Hand",
        +      "Edu VIC WA NT Hand Pre",
        +      "El Messiri",
        +      "Electrolize",
        +      "Elms Sans",
        +      "Elsie",
        +      "Elsie Swash Caps",
        +      "Emblema One",
        +      "Emilys Candy",
        +      "Encode Sans",
        +      "Encode Sans Condensed",
        +      "Encode Sans Expanded",
        +      "Encode Sans SC",
        +      "Encode Sans Semi Condensed",
        +      "Encode Sans Semi Expanded",
        +      "Engagement",
        +      "Englebert",
        +      "Enriqueta",
        +      "Ephesis",
        +      "Epilogue",
        +      "Epunda Sans",
        +      "Epunda Slab",
        +      "Erica One",
        +      "Esteban",
        +      "Estedad",
        +      "Estonia",
        +      "Euphoria Script",
        +      "Ewert",
        +      "Exile",
        +      "Exo",
        +      "Exo 2",
        +      "Expletus Sans",
        +      "Explora",
        +      "Faculty Glyphic",
        +      "Fahkwang",
        +      "Familjen Grotesk",
        +      "Fanwood Text",
        +      "Farro",
        +      "Farsan",
        +      "Fascinate",
        +      "Fascinate Inline",
        +      "Faster One",
        +      "Fasthand",
        +      "Fauna One",
        +      "Faustina",
        +      "Federant",
        +      "Federo",
        +      "Felipa",
        +      "Fenix",
        +      "Festive",
        +      "Figtree",
        +      "Finger Paint",
        +      "Finlandica Headline",
        +      "Finlandica Text",
        +      "Fira Code",
        +      "Fira Mono",
        +      "Fira Sans",
        +      "Fira Sans Condensed",
        +      "Fira Sans Extra Condensed",
        +      "Fjalla One",
        +      "Fjord One",
        +      "Flamenco",
        +      "Flavors",
        +      "Fleur De Leah",
        +      "Flow Block",
        +      "Flow Circular",
        +      "Flow Rounded",
        +      "Foldit",
        +      "Fondamento",
        +      "Fontdiner Swanky",
        +      "Forum",
        +      "Fragment Mono",
        +      "Francois One",
        +      "Frank Ruhl Libre",
        +      "Fraunces",
        +      "Freckle Face",
        +      "Fredericka the Great",
        +      "Fredoka",
        +      "Freehand",
        +      "Freeman",
        +      "Fresca",
        +      "Frijole",
        +      "Fruktur",
        +      "Fugaz One",
        +      "Fuggles",
        +      "Funnel Display",
        +      "Funnel Sans",
        +      "Fustat",
        +      "Fuzzy Bubbles",
        +      "GFS Didot",
        +      "GFS Neohellenic",
        +      "Ga Maamli",
        +      "Gabarito",
        +      "Gabriela",
        +      "Gaegu",
        +      "Gafata",
        +      "Gajraj One",
        +      "Galada",
        +      "Galdeano",
        +      "Galindo",
        +      "Gamja Flower",
        +      "Gantari",
        +      "Gasoek One",
        +      "Gayathri",
        +      "Geist",
        +      "Geist Mono",
        +      "Geist Pixel",
        +      "Gelasio",
        +      "Gemunu Libre",
        +      "Genos",
        +      "Gentium Book Plus",
        +      "Gentium Plus",
        +      "Geo",
        +      "Geologica",
        +      "Geom",
        +      "Geomini",
        +      "Georama",
        +      "Geostar",
        +      "Geostar Fill",
        +      "Germania One",
        +      "Gideon Roman",
        +      "Gidole",
        +      "Gidugu",
        +      "Gilda Display",
        +      "Girassol",
        +      "Give You Glory",
        +      "Glass Antiqua",
        +      "Glegoo",
        +      "Gloock",
        +      "Gloria Hallelujah",
        +      "Glory",
        +      "Gluten",
        +      "Goblin One",
        +      "Gochi Hand",
        +      "Goldman",
        +      "Golos Text",
        +      "Google Sans",
        +      "Google Sans Code",
        +      "Google Sans Flex",
        +      "Gorditas",
        +      "Gothic A1",
        +      "Gotu",
        +      "Goudy Bookletter 1911",
        +      "Gowun Batang",
        +      "Gowun Dodum",
        +      "Graduate",
        +      "Grand Hotel",
        +      "Grandiflora One",
        +      "Grandstander",
        +      "Grape Nuts",
        +      "Gravitas One",
        +      "Great Vibes",
        +      "Grechen Fuemen",
        +      "Grenze",
        +      "Grenze Gotisch",
        +      "Grey Qo",
        +      "Griffy",
        +      "Gruppo",
        +      "Gudea",
        +      "Gugi",
        +      "Gulzar",
        +      "Gupter",
        +      "Gurajada",
        +      "Gveret Levin",
        +      "Gwendolyn",
        +      "Habibi",
        +      "Hachi Maru Pop",
        +      "Hahmlet",
        +      "Halant",
        +      "Hammersmith One",
        +      "Hanalei",
        +      "Hanalei Fill",
        +      "Handjet",
        +      "Handlee",
        +      "Hanken Grotesk",
        +      "Hanuman",
        +      "Happy Monkey",
        +      "Harmattan",
        +      "Headland One",
        +      "Hedvig Letters Sans",
        +      "Hedvig Letters Serif",
        +      "Heebo",
        +      "Henny Penny",
        +      "Hepta Slab",
        +      "Herr Von Muellerhoff",
        +      "Hi Melody",
        +      "Hibur Mono",
        +      "Hina Mincho",
        +      "Hind",
        +      "Hind Guntur",
        +      "Hind Madurai",
        +      "Hind Mysuru",
        +      "Hind Siliguri",
        +      "Hind Vadodara",
        +      "Holtwood One SC",
        +      "Homemade Apple",
        +      "Homenaje",
        +      "Honk",
        +      "Host Grotesk",
        +      "Hubballi",
        +      "Hubot Sans",
        +      "Huninn",
        +      "Hurricane",
        +      "IBM Plex Mono",
        +      "IBM Plex Sans",
        +      "IBM Plex Sans Arabic",
        +      "IBM Plex Sans Condensed",
        +      "IBM Plex Sans Devanagari",
        +      "IBM Plex Sans Hebrew",
        +      "IBM Plex Sans JP",
        +      "IBM Plex Sans KR",
        +      "IBM Plex Sans Thai",
        +      "IBM Plex Sans Thai Looped",
        +      "IBM Plex Serif",
        +      "IM Fell DW Pica",
        +      "IM Fell DW Pica SC",
        +      "IM Fell Double Pica",
        +      "IM Fell Double Pica SC",
        +      "IM Fell English",
        +      "IM Fell English SC",
        +      "IM Fell French Canon",
        +      "IM Fell French Canon SC",
        +      "IM Fell Great Primer",
        +      "IM Fell Great Primer SC",
        +      "Iansui",
        +      "Ibarra Real Nova",
        +      "Iceberg",
        +      "Iceland",
        +      "Idiqlat",
        +      "Imbue",
        +      "Imperial Script",
        +      "Imprima",
        +      "Inclusive Sans",
        +      "Inconsolata",
        +      "Inder",
        +      "Indie Flower",
        +      "Ingrid Darling",
        +      "Inika",
        +      "Inknut Antiqua",
        +      "Inria Sans",
        +      "Inria Serif",
        +      "Inspiration",
        +      "Instrument Sans",
        +      "Instrument Serif",
        +      "Intel One Mono",
        +      "Inter",
        +      "Inter Tight",
        +      "Iosevka Charon",
        +      "Iosevka Charon Mono",
        +      "Irish Grover",
        +      "Island Moments",
        +      "Istok Web",
        +      "Italiana",
        +      "Italianno",
        +      "Itim",
        +      "Jacquard 12",
        +      "Jacquard 12 Charted",
        +      "Jacquard 24",
        +      "Jacquard 24 Charted",
        +      "Jacquarda Bastarda 9",
        +      "Jacquarda Bastarda 9 Charted",
        +      "Jacques Francois",
        +      "Jacques Francois Shadow",
        +      "Jaini",
        +      "Jaini Purva",
        +      "Jaldi",
        +      "Jaro",
        +      "Jersey 10",
        +      "Jersey 10 Charted",
        +      "Jersey 15",
        +      "Jersey 15 Charted",
        +      "Jersey 20",
        +      "Jersey 20 Charted",
        +      "Jersey 25",
        +      "Jersey 25 Charted",
        +      "JetBrains Mono",
        +      "Jim Nightshade",
        +      "Joan",
        +      "Jockey One",
        +      "Jolly Lodger",
        +      "Jomhuria",
        +      "Jomolhari",
        +      "Josefin Sans",
        +      "Josefin Slab",
        +      "Jost",
        +      "Joti One",
        +      "Jua",
        +      "Judson",
        +      "Julee",
        +      "Julius Sans One",
        +      "Junge",
        +      "Jura",
        +      "Just Another Hand",
        +      "Just Me Again Down Here",
        +      "K2D",
        +      "Kablammo",
        +      "Kadwa",
        +      "Kaisei Decol",
        +      "Kaisei HarunoUmi",
        +      "Kaisei Opti",
        +      "Kaisei Tokumin",
        +      "Kalam",
        +      "Kalnia",
        +      "Kalnia Glaze",
        +      "Kameron",
        +      "Kanchenjunga",
        +      "Kanit",
        +      "Kantumruy Pro",
        +      "Kapakana",
        +      "Karantina",
        +      "Karla",
        +      "Karla Tamil Inclined",
        +      "Karla Tamil Upright",
        +      "Karma",
        +      "Katibeh",
        +      "Kaushan Script",
        +      "Kavivanar",
        +      "Kavoon",
        +      "Kay Pho Du",
        +      "Kdam Thmor Pro",
        +      "Keania One",
        +      "Kedebideri",
        +      "Kelly Slab",
        +      "Kenia",
        +      "Khand",
        +      "Khmer",
        +      "Khula",
        +      "Kings",
        +      "Kirang Haerang",
        +      "Kite One",
        +      "Kiwi Maru",
        +      "Klee One",
        +      "Knewave",
        +      "KoHo",
        +      "Kodchasan",
        +      "Kode Mono",
        +      "Koh Santepheap",
        +      "Kolker Brush",
        +      "Konkhmer Sleokchher",
        +      "Kosugi",
        +      "Kosugi Maru",
        +      "Kotta One",
        +      "Koulen",
        +      "Kranky",
        +      "Kreon",
        +      "Kristi",
        +      "Krona One",
        +      "Krub",
        +      "Kufam",
        +      "Kulim Park",
        +      "Kumar One",
        +      "Kumar One Outline",
        +      "Kumbh Sans",
        +      "Kurale",
        +      "LINE Seed JP",
        +      "LXGW Marker Gothic",
        +      "LXGW WenKai Mono TC",
        +      "LXGW WenKai TC",
        +      "La Belle Aurore",
        +      "Labrada",
        +      "Lacquer",
        +      "Laila",
        +      "Lakki Reddy",
        +      "Lalezar",
        +      "Lancelot",
        +      "Langar",
        +      "Lateef",
        +      "Lato",
        +      "Lavishly Yours",
        +      "League Gothic",
        +      "League Script",
        +      "League Spartan",
        +      "Leckerli One",
        +      "Ledger",
        +      "Lekton",
        +      "Lemon",
        +      "Lemonada",
        +      "Lexend",
        +      "Lexend Deca",
        +      "Lexend Exa",
        +      "Lexend Giga",
        +      "Lexend Mega",
        +      "Lexend Peta",
        +      "Lexend Tera",
        +      "Lexend Zetta",
        +      "Libertinus Keyboard",
        +      "Libertinus Math",
        +      "Libertinus Mono",
        +      "Libertinus Sans",
        +      "Libertinus Serif",
        +      "Libertinus Serif Display",
        +      "Libre Barcode 128",
        +      "Libre Barcode 128 Text",
        +      "Libre Barcode 39",
        +      "Libre Barcode 39 Extended",
        +      "Libre Barcode 39 Extended Text",
        +      "Libre Barcode 39 Text",
        +      "Libre Barcode EAN13 Text",
        +      "Libre Baskerville",
        +      "Libre Bodoni",
        +      "Libre Caslon Display",
        +      "Libre Caslon Text",
        +      "Libre Franklin",
        +      "Licorice",
        +      "Life Savers",
        +      "Lilex",
        +      "Lilita One",
        +      "Lily Script One",
        +      "Limelight",
        +      "Linden Hill",
        +      "Linefont",
        +      "Lisu Bosa",
        +      "Liter",
        +      "Literata",
        +      "Liu Jian Mao Cao",
        +      "Livvic",
        +      "Lobster",
        +      "Lobster Two",
        +      "Londrina Outline",
        +      "Londrina Shadow",
        +      "Londrina Sketch",
        +      "Londrina Solid",
        +      "Long Cang",
        +      "Lora",
        +      "Love Light",
        +      "Love Ya Like A Sister",
        +      "Loved by the King",
        +      "Lovers Quarrel",
        +      "Luckiest Guy",
        +      "Lugrasimo",
        +      "Lumanosimo",
        +      "Lunasima",
        +      "Lusitana",
        +      "Lustria",
        +      "Luxurious Roman",
        +      "Luxurious Script",
        +      "M PLUS 1",
        +      "M PLUS 1 Code",
        +      "M PLUS 1p",
        +      "M PLUS 2",
        +      "M PLUS Code Latin",
        +      "M PLUS Rounded 1c",
        +      "M PLUS U",
        +      "Ma Shan Zheng",
        +      "Macondo",
        +      "Macondo Swash Caps",
        +      "Mada",
        +      "Madimi One",
        +      "Magra",
        +      "Maiden Orange",
        +      "Maitree",
        +      "Major Mono Display",
        +      "Mako",
        +      "Mali",
        +      "Mallanna",
        +      "Maname",
        +      "Mandali",
        +      "Manjari",
        +      "Manrope",
        +      "Mansalva",
        +      "Manuale",
        +      "Manufacturing Consent",
        +      "Marcellus",
        +      "Marcellus SC",
        +      "Marck Script",
        +      "Margarine",
        +      "Marhey",
        +      "Markazi Text",
        +      "Marko One",
        +      "Marmelad",
        +      "Martel",
        +      "Martel Sans",
        +      "Martian Mono",
        +      "Marvel",
        +      "Matangi",
        +      "Mate",
        +      "Mate SC",
        +      "Matemasie",
        +      "Material Icons",
        +      "Material Icons Outlined",
        +      "Material Icons Round",
        +      "Material Icons Sharp",
        +      "Material Icons Two Tone",
        +      "Material Symbols",
        +      "Material Symbols Outlined",
        +      "Material Symbols Rounded",
        +      "Material Symbols Sharp",
        +      "Maven Pro",
        +      "McLaren",
        +      "Mea Culpa",
        +      "Meddon",
        +      "MedievalSharp",
        +      "Medula One",
        +      "Meera Inimai",
        +      "Megrim",
        +      "Meie Script",
        +      "Menbere",
        +      "Meow Script",
        +      "Merienda",
        +      "Merriweather",
        +      "Merriweather Sans",
        +      "Metal",
        +      "Metal Mania",
        +      "Metamorphous",
        +      "Metrophobic",
        +      "Michroma",
        +      "Micro 5",
        +      "Micro 5 Charted",
        +      "Milonga",
        +      "Miltonian",
        +      "Miltonian Tattoo",
        +      "Mina",
        +      "Mingzat",
        +      "Miniver",
        +      "Miranda Sans",
        +      "Miriam Libre",
        +      "Mirza",
        +      "Miss Fajardose",
        +      "Mitr",
        +      "Mochiy Pop One",
        +      "Mochiy Pop P One",
        +      "Modak",
        +      "Modern Antiqua",
        +      "Moderustic",
        +      "Mogra",
        +      "Mohave",
        +      "Moirai One",
        +      "Molengo",
        +      "Molle",
        +      "Momo Signature",
        +      "Momo Trust Display",
        +      "Momo Trust Sans",
        +      "Mona Sans",
        +      "Monda",
        +      "Monofett",
        +      "Monomakh",
        +      "Monomaniac One",
        +      "Monoton",
        +      "Monsieur La Doulaise",
        +      "Montaga",
        +      "Montagu Slab",
        +      "MonteCarlo",
        +      "Montenegrin Gothic One",
        +      "Montez",
        +      "Montserrat",
        +      "Montserrat Alternates",
        +      "Montserrat Underline",
        +      "Moo Lah Lah",
        +      "Mooli",
        +      "Moon Dance",
        +      "Moul",
        +      "Moulpali",
        +      "Mountains of Christmas",
        +      "Mouse Memoirs",
        +      "Mozilla Headline",
        +      "Mozilla Text",
        +      "Mr Bedfort",
        +      "Mr Dafoe",
        +      "Mr De Haviland",
        +      "Mrs Saint Delafield",
        +      "Mrs Sheppards",
        +      "Ms Madi",
        +      "Mukta",
        +      "Mukta Mahee",
        +      "Mukta Malar",
        +      "Mukta Vaani",
        +      "Mulish",
        +      "Murecho",
        +      "MuseoModerno",
        +      "My Soul",
        +      "Mynerve",
        +      "Mystery Quest",
        +      "NTR",
        +      "Nabla",
        +      "Namdhinggo",
        +      "Nanum Brush Script",
        +      "Nanum Gothic",
        +      "Nanum Gothic Coding",
        +      "Nanum Myeongjo",
        +      "Nanum Pen Script",
        +      "Narnoor",
        +      "Nata Sans",
        +      "National Park",
        +      "Neonderthaw",
        +      "Nerko One",
        +      "Neucha",
        +      "Neuton",
        +      "New Amsterdam",
        +      "New Rocker",
        +      "New Tegomin",
        +      "News Cycle",
        +      "Newsreader",
        +      "Niconne",
        +      "Niramit",
        +      "Nixie One",
        +      "Nobile",
        +      "Nokora",
        +      "Norican",
        +      "Nosifer",
        +      "Notable",
        +      "Nothing You Could Do",
        +      "Noticia Text",
        +      "Noto Color Emoji",
        +      "Noto Emoji",
        +      "Noto Kufi Arabic",
        +      "Noto Music",
        +      "Noto Naskh Arabic",
        +      "Noto Nastaliq Urdu",
        +      "Noto Rashi Hebrew",
        +      "Noto Sans",
        +      "Noto Sans Adlam",
        +      "Noto Sans Adlam Unjoined",
        +      "Noto Sans Anatolian Hieroglyphs",
        +      "Noto Sans Arabic",
        +      "Noto Sans Armenian",
        +      "Noto Sans Avestan",
        +      "Noto Sans Balinese",
        +      "Noto Sans Bamum",
        +      "Noto Sans Bassa Vah",
        +      "Noto Sans Batak",
        +      "Noto Sans Bengali",
        +      "Noto Sans Bhaiksuki",
        +      "Noto Sans Brahmi",
        +      "Noto Sans Buginese",
        +      "Noto Sans Buhid",
        +      "Noto Sans Canadian Aboriginal",
        +      "Noto Sans Carian",
        +      "Noto Sans Caucasian Albanian",
        +      "Noto Sans Chakma",
        +      "Noto Sans Cham",
        +      "Noto Sans Cherokee",
        +      "Noto Sans Chorasmian",
        +      "Noto Sans Coptic",
        +      "Noto Sans Cuneiform",
        +      "Noto Sans Cypriot",
        +      "Noto Sans Cypro Minoan",
        +      "Noto Sans Deseret",
        +      "Noto Sans Devanagari",
        +      "Noto Sans Display",
        +      "Noto Sans Duployan",
        +      "Noto Sans Egyptian Hieroglyphs",
        +      "Noto Sans Elbasan",
        +      "Noto Sans Elymaic",
        +      "Noto Sans Ethiopic",
        +      "Noto Sans Georgian",
        +      "Noto Sans Glagolitic",
        +      "Noto Sans Gothic",
        +      "Noto Sans Grantha",
        +      "Noto Sans Gujarati",
        +      "Noto Sans Gunjala Gondi",
        +      "Noto Sans Gurmukhi",
        +      "Noto Sans HK",
        +      "Noto Sans Hanifi Rohingya",
        +      "Noto Sans Hanunoo",
        +      "Noto Sans Hatran",
        +      "Noto Sans Hebrew",
        +      "Noto Sans Imperial Aramaic",
        +      "Noto Sans Indic Siyaq Numbers",
        +      "Noto Sans Inscriptional Pahlavi",
        +      "Noto Sans Inscriptional Parthian",
        +      "Noto Sans JP",
        +      "Noto Sans Javanese",
        +      "Noto Sans KR",
        +      "Noto Sans Kaithi",
        +      "Noto Sans Kannada",
        +      "Noto Sans Kawi",
        +      "Noto Sans Kayah Li",
        +      "Noto Sans Kharoshthi",
        +      "Noto Sans Khmer",
        +      "Noto Sans Khojki",
        +      "Noto Sans Khudawadi",
        +      "Noto Sans Lao",
        +      "Noto Sans Lao Looped",
        +      "Noto Sans Lepcha",
        +      "Noto Sans Limbu",
        +      "Noto Sans Linear A",
        +      "Noto Sans Linear B",
        +      "Noto Sans Lisu",
        +      "Noto Sans Lycian",
        +      "Noto Sans Lydian",
        +      "Noto Sans Mahajani",
        +      "Noto Sans Malayalam",
        +      "Noto Sans Mandaic",
        +      "Noto Sans Manichaean",
        +      "Noto Sans Marchen",
        +      "Noto Sans Masaram Gondi",
        +      "Noto Sans Math",
        +      "Noto Sans Mayan Numerals",
        +      "Noto Sans Medefaidrin",
        +      "Noto Sans Meetei Mayek",
        +      "Noto Sans Mende Kikakui",
        +      "Noto Sans Meroitic",
        +      "Noto Sans Miao",
        +      "Noto Sans Modi",
        +      "Noto Sans Mongolian",
        +      "Noto Sans Mono",
        +      "Noto Sans Mro",
        +      "Noto Sans Multani",
        +      "Noto Sans Myanmar",
        +      "Noto Sans NKo",
        +      "Noto Sans NKo Unjoined",
        +      "Noto Sans Nabataean",
        +      "Noto Sans Nag Mundari",
        +      "Noto Sans Nandinagari",
        +      "Noto Sans New Tai Lue",
        +      "Noto Sans Newa",
        +      "Noto Sans Nushu",
        +      "Noto Sans Ogham",
        +      "Noto Sans Ol Chiki",
        +      "Noto Sans Old Hungarian",
        +      "Noto Sans Old Italic",
        +      "Noto Sans Old North Arabian",
        +      "Noto Sans Old Permic",
        +      "Noto Sans Old Persian",
        +      "Noto Sans Old Sogdian",
        +      "Noto Sans Old South Arabian",
        +      "Noto Sans Old Turkic",
        +      "Noto Sans Oriya",
        +      "Noto Sans Osage",
        +      "Noto Sans Osmanya",
        +      "Noto Sans Pahawh Hmong",
        +      "Noto Sans Palmyrene",
        +      "Noto Sans Pau Cin Hau",
        +      "Noto Sans PhagsPa",
        +      "Noto Sans Phoenician",
        +      "Noto Sans Psalter Pahlavi",
        +      "Noto Sans Rejang",
        +      "Noto Sans Runic",
        +      "Noto Sans SC",
        +      "Noto Sans Samaritan",
        +      "Noto Sans Saurashtra",
        +      "Noto Sans Sharada",
        +      "Noto Sans Shavian",
        +      "Noto Sans Siddham",
        +      "Noto Sans SignWriting",
        +      "Noto Sans Sinhala",
        +      "Noto Sans Sogdian",
        +      "Noto Sans Sora Sompeng",
        +      "Noto Sans Soyombo",
        +      "Noto Sans Sundanese",
        +      "Noto Sans Sunuwar",
        +      "Noto Sans Syloti Nagri",
        +      "Noto Sans Symbols",
        +      "Noto Sans Symbols 2",
        +      "Noto Sans Syriac",
        +      "Noto Sans Syriac Eastern",
        +      "Noto Sans Syriac Western",
        +      "Noto Sans TC",
        +      "Noto Sans Tagalog",
        +      "Noto Sans Tagbanwa",
        +      "Noto Sans Tai Le",
        +      "Noto Sans Tai Tham",
        +      "Noto Sans Tai Viet",
        +      "Noto Sans Takri",
        +      "Noto Sans Tamil",
        +      "Noto Sans Tamil Supplement",
        +      "Noto Sans Tangsa",
        +      "Noto Sans Telugu",
        +      "Noto Sans Thaana",
        +      "Noto Sans Thai",
        +      "Noto Sans Thai Looped",
        +      "Noto Sans Tifinagh",
        +      "Noto Sans Tirhuta",
        +      "Noto Sans Ugaritic",
        +      "Noto Sans Vai",
        +      "Noto Sans Vithkuqi",
        +      "Noto Sans Wancho",
        +      "Noto Sans Warang Citi",
        +      "Noto Sans Yi",
        +      "Noto Sans Zanabazar Square",
        +      "Noto Serif",
        +      "Noto Serif Ahom",
        +      "Noto Serif Armenian",
        +      "Noto Serif Balinese",
        +      "Noto Serif Bengali",
        +      "Noto Serif Devanagari",
        +      "Noto Serif Display",
        +      "Noto Serif Dives Akuru",
        +      "Noto Serif Dogra",
        +      "Noto Serif Ethiopic",
        +      "Noto Serif Georgian",
        +      "Noto Serif Grantha",
        +      "Noto Serif Gujarati",
        +      "Noto Serif Gurmukhi",
        +      "Noto Serif HK",
        +      "Noto Serif Hebrew",
        +      "Noto Serif Hentaigana",
        +      "Noto Serif JP",
        +      "Noto Serif KR",
        +      "Noto Serif Kannada",
        +      "Noto Serif Khitan Small Script",
        +      "Noto Serif Khmer",
        +      "Noto Serif Khojki",
        +      "Noto Serif Lao",
        +      "Noto Serif Makasar",
        +      "Noto Serif Malayalam",
        +      "Noto Serif Myanmar",
        +      "Noto Serif NP Hmong",
        +      "Noto Serif Old Uyghur",
        +      "Noto Serif Oriya",
        +      "Noto Serif Ottoman Siyaq",
        +      "Noto Serif SC",
        +      "Noto Serif Sinhala",
        +      "Noto Serif TC",
        +      "Noto Serif Tamil",
        +      "Noto Serif Tangut",
        +      "Noto Serif Telugu",
        +      "Noto Serif Thai",
        +      "Noto Serif Tibetan",
        +      "Noto Serif Todhri",
        +      "Noto Serif Toto",
        +      "Noto Serif Vithkuqi",
        +      "Noto Serif Yezidi",
        +      "Noto Traditional Nushu",
        +      "Noto Znamenny Musical Notation",
        +      "Nova Cut",
        +      "Nova Flat",
        +      "Nova Mono",
        +      "Nova Oval",
        +      "Nova Round",
        +      "Nova Script",
        +      "Nova Slim",
        +      "Nova Square",
        +      "Numans",
        +      "Nunito",
        +      "Nunito Sans",
        +      "Nuosu SIL",
        +      "Odibee Sans",
        +      "Odor Mean Chey",
        +      "Offside",
        +      "Oi",
        +      "Ojuju",
        +      "Old Standard TT",
        +      "Oldenburg",
        +      "Ole",
        +      "Oleo Script",
        +      "Oleo Script Swash Caps",
        +      "Onest",
        +      "Oooh Baby",
        +      "Open Sans",
        +      "Oranienbaum",
        +      "Orbit",
        +      "Orbitron",
        +      "Oregano",
        +      "Orelega One",
        +      "Orienta",
        +      "Original Surfer",
        +      "Oswald",
        +      "Outfit",
        +      "Over the Rainbow",
        +      "Overlock",
        +      "Overlock SC",
        +      "Overpass",
        +      "Overpass Mono",
        +      "Ovo",
        +      "Oxanium",
        +      "Oxygen",
        +      "Oxygen Mono",
        +      "PT Mono",
        +      "PT Sans",
        +      "PT Sans Caption",
        +      "PT Sans Narrow",
        +      "PT Serif",
        +      "PT Serif Caption",
        +      "Pacifico",
        +      "Padauk",
        +      "Padyakke Expanded One",
        +      "Palanquin",
        +      "Palanquin Dark",
        +      "Palette Mosaic",
        +      "Pangolin",
        +      "Paprika",
        +      "Parastoo",
        +      "Parisienne",
        +      "Parkinsans",
        +      "Passero One",
        +      "Passion One",
        +      "Passions Conflict",
        +      "Pathway Extreme",
        +      "Pathway Gothic One",
        +      "Patrick Hand",
        +      "Patrick Hand SC",
        +      "Pattaya",
        +      "Patua One",
        +      "Pavanam",
        +      "Paytone One",
        +      "Peddana",
        +      "Peralta",
        +      "Permanent Marker",
        +      "Petemoss",
        +      "Petit Formal Script",
        +      "Petrona",
        +      "Phetsarath",
        +      "Philosopher",
        +      "Phudu",
        +      "Piazzolla",
        +      "Piedra",
        +      "Pinyon Script",
        +      "Pirata One",
        +      "Pixelify Sans",
        +      "Plaster",
        +      "Platypi",
        +      "Play",
        +      "Playball",
        +      "Playfair",
        +      "Playfair Display",
        +      "Playfair Display SC",
        +      "Playpen Sans",
        +      "Playpen Sans Arabic",
        +      "Playpen Sans Deva",
        +      "Playpen Sans Hebrew",
        +      "Playpen Sans Thai",
        +      "Playwrite AR",
        +      "Playwrite AR Guides",
        +      "Playwrite AT",
        +      "Playwrite AT Guides",
        +      "Playwrite AU NSW",
        +      "Playwrite AU NSW Guides",
        +      "Playwrite AU QLD",
        +      "Playwrite AU QLD Guides",
        +      "Playwrite AU SA",
        +      "Playwrite AU SA Guides",
        +      "Playwrite AU TAS",
        +      "Playwrite AU TAS Guides",
        +      "Playwrite AU VIC",
        +      "Playwrite AU VIC Guides",
        +      "Playwrite BE VLG",
        +      "Playwrite BE VLG Guides",
        +      "Playwrite BE WAL",
        +      "Playwrite BE WAL Guides",
        +      "Playwrite BR",
        +      "Playwrite BR Guides",
        +      "Playwrite CA",
        +      "Playwrite CA Guides",
        +      "Playwrite CL",
        +      "Playwrite CL Guides",
        +      "Playwrite CO",
        +      "Playwrite CO Guides",
        +      "Playwrite CU",
        +      "Playwrite CU Guides",
        +      "Playwrite CZ",
        +      "Playwrite CZ Guides",
        +      "Playwrite DE Grund",
        +      "Playwrite DE Grund Guides",
        +      "Playwrite DE LA",
        +      "Playwrite DE LA Guides",
        +      "Playwrite DE SAS",
        +      "Playwrite DE SAS Guides",
        +      "Playwrite DE VA",
        +      "Playwrite DE VA Guides",
        +      "Playwrite DK Loopet",
        +      "Playwrite DK Loopet Guides",
        +      "Playwrite DK Uloopet",
        +      "Playwrite DK Uloopet Guides",
        +      "Playwrite ES",
        +      "Playwrite ES Deco",
        +      "Playwrite ES Deco Guides",
        +      "Playwrite ES Guides",
        +      "Playwrite FR Moderne",
        +      "Playwrite FR Moderne Guides",
        +      "Playwrite FR Trad",
        +      "Playwrite FR Trad Guides",
        +      "Playwrite GB J",
        +      "Playwrite GB J Guides",
        +      "Playwrite GB S",
        +      "Playwrite GB S Guides",
        +      "Playwrite HR",
        +      "Playwrite HR Guides",
        +      "Playwrite HR Lijeva",
        +      "Playwrite HR Lijeva Guides",
        +      "Playwrite HU",
        +      "Playwrite HU Guides",
        +      "Playwrite ID",
        +      "Playwrite ID Guides",
        +      "Playwrite IE",
        +      "Playwrite IE Guides",
        +      "Playwrite IN",
        +      "Playwrite IN Guides",
        +      "Playwrite IS",
        +      "Playwrite IS Guides",
        +      "Playwrite IT Moderna",
        +      "Playwrite IT Moderna Guides",
        +      "Playwrite IT Trad",
        +      "Playwrite IT Trad Guides",
        +      "Playwrite MX",
        +      "Playwrite MX Guides",
        +      "Playwrite NG Modern",
        +      "Playwrite NG Modern Guides",
        +      "Playwrite NL",
        +      "Playwrite NL Guides",
        +      "Playwrite NO",
        +      "Playwrite NO Guides",
        +      "Playwrite NZ",
        +      "Playwrite NZ Basic",
        +      "Playwrite NZ Basic Guides",
        +      "Playwrite NZ Guides",
        +      "Playwrite PE",
        +      "Playwrite PE Guides",
        +      "Playwrite PL",
        +      "Playwrite PL Guides",
        +      "Playwrite PT",
        +      "Playwrite PT Guides",
        +      "Playwrite RO",
        +      "Playwrite RO Guides",
        +      "Playwrite SK",
        +      "Playwrite SK Guides",
        +      "Playwrite TZ",
        +      "Playwrite TZ Guides",
        +      "Playwrite US Modern",
        +      "Playwrite US Modern Guides",
        +      "Playwrite US Trad",
        +      "Playwrite US Trad Guides",
        +      "Playwrite VN",
        +      "Playwrite VN Guides",
        +      "Playwrite ZA",
        +      "Playwrite ZA Guides",
        +      "Pliant",
        +      "Plus Jakarta Sans",
        +      "Pochaevsk",
        +      "Podkova",
        +      "Poetsen One",
        +      "Poiret One",
        +      "Poller One",
        +      "Poltawski Nowy",
        +      "Poly",
        +      "Pompiere",
        +      "Ponnala",
        +      "Ponomar",
        +      "Pontano Sans",
        +      "Poor Story",
        +      "Poppins",
        +      "Port Lligat Sans",
        +      "Port Lligat Slab",
        +      "Potta One",
        +      "Pragati Narrow",
        +      "Praise",
        +      "Prata",
        +      "Preahvihear",
        +      "Press Start 2P",
        +      "Pridi",
        +      "Princess Sofia",
        +      "Prociono",
        +      "Prompt",
        +      "Prosto One",
        +      "Protest Guerrilla",
        +      "Protest Revolution",
        +      "Protest Riot",
        +      "Protest Strike",
        +      "Proza Libre",
        +      "Public Sans",
        +      "Puppies Play",
        +      "Puritan",
        +      "Purple Purse",
        +      "Qahiri",
        +      "Quando",
        +      "Quantico",
        +      "Quattrocento",
        +      "Quattrocento Sans",
        +      "Questrial",
        +      "Quicksand",
        +      "Quintessential",
        +      "Qwigley",
        +      "Qwitcher Grypen",
        +      "REM",
        +      "Racing Sans One",
        +      "Radio Canada",
        +      "Radio Canada Big",
        +      "Radley",
        +      "Rajdhani",
        +      "Rakkas",
        +      "Raleway",
        +      "Raleway Dots",
        +      "Ramabhadra",
        +      "Ramaraja",
        +      "Rambla",
        +      "Rammetto One",
        +      "Rampart One",
        +      "Ramsina",
        +      "Ranchers",
        +      "Rancho",
        +      "Ranga",
        +      "Rasa",
        +      "Rationale",
        +      "Ravi Prakash",
        +      "Readex Pro",
        +      "Recursive",
        +      "Red Hat Display",
        +      "Red Hat Mono",
        +      "Red Hat Text",
        +      "Red Rose",
        +      "Redacted",
        +      "Redacted Script",
        +      "Reddit Mono",
        +      "Reddit Sans",
        +      "Reddit Sans Condensed",
        +      "Redressed",
        +      "Reem Kufi",
        +      "Reem Kufi Fun",
        +      "Reem Kufi Ink",
        +      "Reenie Beanie",
        +      "Reggae One",
        +      "Rethink Sans",
        +      "Revalia",
        +      "Rhodium Libre",
        +      "Ribeye",
        +      "Ribeye Marrow",
        +      "Righteous",
        +      "Risque",
        +      "Road Rage",
        +      "Roboto",
        +      "Roboto Condensed",
        +      "Roboto Flex",
        +      "Roboto Mono",
        +      "Roboto Serif",
        +      "Roboto Slab",
        +      "Rochester",
        +      "Rock 3D",
        +      "Rock Salt",
        +      "RocknRoll One",
        +      "Rokkitt",
        +      "Romanesco",
        +      "Ropa Sans",
        +      "Rosario",
        +      "Rosarivo",
        +      "Rouge Script",
        +      "Rowdies",
        +      "Rozha One",
        +      "Rubik",
        +      "Rubik 80s Fade",
        +      "Rubik Beastly",
        +      "Rubik Broken Fax",
        +      "Rubik Bubbles",
        +      "Rubik Burned",
        +      "Rubik Dirt",
        +      "Rubik Distressed",
        +      "Rubik Doodle Shadow",
        +      "Rubik Doodle Triangles",
        +      "Rubik Gemstones",
        +      "Rubik Glitch",
        +      "Rubik Glitch Pop",
        +      "Rubik Iso",
        +      "Rubik Lines",
        +      "Rubik Maps",
        +      "Rubik Marker Hatch",
        +      "Rubik Maze",
        +      "Rubik Microbe",
        +      "Rubik Mono One",
        +      "Rubik Moonrocks",
        +      "Rubik Pixels",
        +      "Rubik Puddles",
        +      "Rubik Scribble",
        +      "Rubik Spray Paint",
        +      "Rubik Storm",
        +      "Rubik Vinyl",
        +      "Rubik Wet Paint",
        +      "Ruda",
        +      "Rufina",
        +      "Ruge Boogie",
        +      "Ruluko",
        +      "Rum Raisin",
        +      "Ruslan Display",
        +      "Russo One",
        +      "Ruthie",
        +      "Ruwudu",
        +      "Rye",
        +      "SN Pro",
        +      "STIX Two Math",
        +      "STIX Two Text",
        +      "SUSE",
        +      "SUSE Mono",
        +      "Sacramento",
        +      "Sahitya",
        +      "Sail",
        +      "Saira",
        +      "Saira Condensed",
        +      "Saira Extra Condensed",
        +      "Saira Semi Condensed",
        +      "Saira Stencil",
        +      "Salsa",
        +      "Sanchez",
        +      "Sancreek",
        +      "Sankofa Display",
        +      "Sansation",
        +      "Sansita",
        +      "Sansita Swashed",
        +      "Sarabun",
        +      "Sarala",
        +      "Sarina",
        +      "Sarpanch",
        +      "Sassy Frass",
        +      "Satisfy",
        +      "Savate",
        +      "Sawarabi Gothic",
        +      "Sawarabi Mincho",
        +      "Scada",
        +      "Scheherazade New",
        +      "Schibsted Grotesk",
        +      "Schoolbell",
        +      "Science Gothic",
        +      "Scope One",
        +      "Seaweed Script",
        +      "Secular One",
        +      "Sedan",
        +      "Sedan SC",
        +      "Sedgwick Ave",
        +      "Sedgwick Ave Display",
        +      "Sekuya",
        +      "Sen",
        +      "Send Flowers",
        +      "Sevillana",
        +      "Seymour One",
        +      "Shadows Into Light",
        +      "Shadows Into Light Two",
        +      "Shafarik",
        +      "Shalimar",
        +      "Shantell Sans",
        +      "Shanti",
        +      "Share",
        +      "Share Tech",
        +      "Share Tech Mono",
        +      "Shippori Antique",
        +      "Shippori Antique B1",
        +      "Shippori Mincho",
        +      "Shippori Mincho B1",
        +      "Shizuru",
        +      "Shojumaru",
        +      "Short Stack",
        +      "Shrikhand",
        +      "Siemreap",
        +      "Sigmar",
        +      "Sigmar One",
        +      "Signika",
        +      "Signika Negative",
        +      "Silkscreen",
        +      "Simonetta",
        +      "Single Day",
        +      "Sintony",
        +      "Sirin Stencil",
        +      "Sirivennela",
        +      "Six Caps",
        +      "Sixtyfour",
        +      "Sixtyfour Convergence",
        +      "Skranji",
        +      "Slabo 13px",
        +      "Slabo 27px",
        +      "Slackey",
        +      "Slackside One",
        +      "Smokum",
        +      "Smooch",
        +      "Smooch Sans",
        +      "Smythe",
        +      "Sniglet",
        +      "Snippet",
        +      "Snowburst One",
        +      "Sofadi One",
        +      "Sofia",
        +      "Sofia Sans",
        +      "Sofia Sans Condensed",
        +      "Sofia Sans Extra Condensed",
        +      "Sofia Sans Semi Condensed",
        +      "Solitreo",
        +      "Solway",
        +      "Sometype Mono",
        +      "Song Myung",
        +      "Sono",
        +      "Sonsie One",
        +      "Sora",
        +      "Sorts Mill Goudy",
        +      "Sour Gummy",
        +      "Source Code Pro",
        +      "Source Sans 3",
        +      "Source Serif 4",
        +      "Space Grotesk",
        +      "Space Mono",
        +      "Special Elite",
        +      "Special Gothic",
        +      "Special Gothic Condensed One",
        +      "Special Gothic Expanded One",
        +      "Spectral",
        +      "Spectral SC",
        +      "Spicy Rice",
        +      "Spinnaker",
        +      "Spirax",
        +      "Splash",
        +      "Spline Sans",
        +      "Spline Sans Mono",
        +      "Squada One",
        +      "Square Peg",
        +      "Sree Krushnadevaraya",
        +      "Sriracha",
        +      "Srisakdi",
        +      "Staatliches",
        +      "Stack Sans Headline",
        +      "Stack Sans Notch",
        +      "Stack Sans Text",
        +      "Stalemate",
        +      "Stalinist One",
        +      "Stardos Stencil",
        +      "Stick",
        +      "Stick No Bills",
        +      "Stint Ultra Condensed",
        +      "Stint Ultra Expanded",
        +      "Stoke",
        +      "Story Script",
        +      "Strait",
        +      "Strichpunkt Sans",
        +      "Style Script",
        +      "Stylish",
        +      "Sue Ellen Francisco",
        +      "Suez One",
        +      "Sulphur Point",
        +      "Sumana",
        +      "Sunflower",
        +      "Sunshiney",
        +      "Supermercado One",
        +      "Sura",
        +      "Suranna",
        +      "Suravaram",
        +      "Suwannaphum",
        +      "Swanky and Moo Moo",
        +      "Syncopate",
        +      "Syne",
        +      "Syne Mono",
        +      "Syne Tactile",
        +      "TASA Explorer",
        +      "TASA Orbiter",
        +      "Tac One",
        +      "Tagesschrift",
        +      "Tai Heritage Pro",
        +      "Tajawal",
        +      "Tangerine",
        +      "Tapestry",
        +      "Taprom",
        +      "Tauri",
        +      "Taviraj",
        +      "Teachers",
        +      "Teko",
        +      "Tektur",
        +      "Telex",
        +      "Tenali Ramakrishna",
        +      "Tenor Sans",
        +      "Text Me One",
        +      "Texturina",
        +      "Thasadith",
        +      "The Girl Next Door",
        +      "The Nautigal",
        +      "Tienne",
        +      "TikTok Sans",
        +      "Tillana",
        +      "Tilt Neon",
        +      "Tilt Prism",
        +      "Tilt Warp",
        +      "Timmana",
        +      "Tinos",
        +      "Tiny5",
        +      "Tiro Bangla",
        +      "Tiro Devanagari Hindi",
        +      "Tiro Devanagari Marathi",
        +      "Tiro Devanagari Sanskrit",
        +      "Tiro Gurmukhi",
        +      "Tiro Kannada",
        +      "Tiro Tamil",
        +      "Tiro Telugu",
        +      "Tirra",
        +      "Titan One",
        +      "Titillium Web",
        +      "Tomorrow",
        +      "Tourney",
        +      "Trade Winds",
        +      "Train One",
        +      "Triodion",
        +      "Trirong",
        +      "Trispace",
        +      "Trocchi",
        +      "Trochut",
        +      "Truculenta",
        +      "Trykker",
        +      "Tsukimi Rounded",
        +      "Tuffy",
        +      "Tulpen One",
        +      "Turret Road",
        +      "Twinkle Star",
        +      "Ubuntu",
        +      "Ubuntu Condensed",
        +      "Ubuntu Mono",
        +      "Ubuntu Sans",
        +      "Ubuntu Sans Mono",
        +      "Uchen",
        +      "Ultra",
        +      "Unbounded",
        +      "Uncial Antiqua",
        +      "Underdog",
        +      "Unica One",
        +      "UnifrakturCook",
        +      "UnifrakturMaguntia",
        +      "Unkempt",
        +      "Unlock",
        +      "Unna",
        +      "UoqMunThenKhung",
        +      "Updock",
        +      "Urbanist",
        +      "VT323",
        +      "Vampiro One",
        +      "Varela",
        +      "Varela Round",
        +      "Varta",
        +      "Vast Shadow",
        +      "Vazirmatn",
        +      "Vend Sans",
        +      "Vesper Libre",
        +      "Viaoda Libre",
        +      "Vibes",
        +      "Vibur",
        +      "Victor Mono",
        +      "Vidaloka",
        +      "Viga",
        +      "Vina Sans",
        +      "Voces",
        +      "Volkhov",
        +      "Vollkorn",
        +      "Vollkorn SC",
        +      "Voltaire",
        +      "Vujahday Script",
        +      "WDXL Lubrifont JP N",
        +      "WDXL Lubrifont SC",
        +      "WDXL Lubrifont TC",
        +      "Waiting for the Sunrise",
        +      "Wallpoet",
        +      "Walter Turncoat",
        +      "Warnes",
        +      "Water Brush",
        +      "Waterfall",
        +      "Wavefont",
        +      "Wellfleet",
        +      "Wendy One",
        +      "Whisper",
        +      "WindSong",
        +      "Winky Rough",
        +      "Winky Sans",
        +      "Wire One",
        +      "Wittgenstein",
        +      "Wix Madefor Display",
        +      "Wix Madefor Text",
        +      "Work Sans",
        +      "Workbench",
        +      "Xanh Mono",
        +      "Yaldevi",
        +      "Yanone Kaffeesatz",
        +      "Yantramanav",
        +      "Yarndings 12",
        +      "Yarndings 12 Charted",
        +      "Yarndings 20",
        +      "Yarndings 20 Charted",
        +      "Yatra One",
        +      "Yellowtail",
        +      "Yeon Sung",
        +      "Yeseva One",
        +      "Yesteryear",
        +      "Yomogi",
        +      "Young Serif",
        +      "Yrsa",
        +      "Ysabeau",
        +      "Ysabeau Infant",
        +      "Ysabeau Office",
        +      "Ysabeau SC",
        +      "Yuji Boku",
        +      "Yuji Hentaigana Akari",
        +      "Yuji Hentaigana Akebono",
        +      "Yuji Mai",
        +      "Yuji Syuku",
        +      "Yusei Magic",
        +      "Yuyu",
        +      "Yuyu Short",
        +      "ZCOOL KuaiLe",
        +      "ZCOOL QingKe HuangYou",
        +      "ZCOOL XiaoWei",
        +      "Zain",
        +      "Zalando Sans",
        +      "Zalando Sans Expanded",
        +      "Zalando Sans SemiExpanded",
        +      "Zen Antique",
        +      "Zen Antique Soft",
        +      "Zen Dots",
        +      "Zen Kaku Gothic Antique",
        +      "Zen Kaku Gothic New",
        +      "Zen Kurenaido",
        +      "Zen Loop",
        +      "Zen Maru Gothic",
        +      "Zen Old Mincho",
        +      "Zen Tokyo Zoo",
        +      "Zeyada",
        +      "Zhi Mang Xing",
        +      "Zilla Slab",
        +      "Zilla Slab Highlight"
        +    ],
        +    "type": "string"
        +  },
        +  "GroupedArrangement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "type": {
        +        "const": "grouped",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "GroupedArrangement",
        +    "type": "object"
        +  },
        +  "LegendOptions": {
        +    "anyOf": [
        +      {
        +        "type": "boolean"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "title": {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        },
        +        "type": "object"
        +      }
        +    ],
        +    "title": "LegendOptions"
        +  },
        +  "LineLabels": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "points": {
        +        "$ref": "#/$defs/ConnectedPointLabels"
        +      },
        +      "series": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "content": {
        +            "items": {
        +              "enum": [
        +                "series",
        +                "value"
        +              ],
        +              "type": "string"
        +            },
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          }
        +        },
        +        "required": [
        +          "content"
        +        ],
        +        "type": "object"
        +      }
        +    },
        +    "title": "LineLabels",
        +    "type": "object"
        +  },
        +  "LineStroke": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "LineStroke",
        +    "type": "object"
        +  },
        +  "LinearScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": [
        +          {
        +            "type": "number"
        +          },
        +          {
        +            "type": "number"
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "linear",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "LinearScale",
        +    "type": "object"
        +  },
        +  "LogScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": [
        +          {
        +            "exclusiveMinimum": 0,
        +            "type": "number"
        +          },
        +          {
        +            "exclusiveMinimum": 0,
        +            "type": "number"
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "log",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "LogScale",
        +    "type": "object"
        +  },
        +  "NormalizedArrangement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "normalization": {
        +        "enum": [
        +          "percent"
        +        ],
        +        "type": "string"
        +      },
        +      "type": {
        +        "const": "stacked",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "normalization"
        +    ],
        +    "title": "NormalizedArrangement",
        +    "type": "object"
        +  },
        +  "PositionableBarLabels": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "content": {
        +        "items": {
        +          "enum": [
        +            "value",
        +            "percent",
        +            "category",
        +            "series"
        +          ],
        +          "type": "string"
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "position": {
        +        "enum": [
        +          "auto",
        +          "outside",
        +          "inside"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "content"
        +    ],
        +    "title": "PositionableBarLabels",
        +    "type": "object"
        +  },
        +  "PromotedLine": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "curve": {
        +        "enum": [
        +          "linear",
        +          "monotone",
        +          "step"
        +        ],
        +        "type": "string"
        +      },
        +      "labels": {
        +        "$ref": "#/$defs/LineLabels"
        +      },
        +      "points": {
        +        "anyOf": [
        +          {
        +            "type": "boolean"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "fill": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "radius": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              }
        +            },
        +            "type": "object"
        +          }
        +        ]
        +      },
        +      "series": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "stroke": {
        +        "$ref": "#/$defs/LineStroke"
        +      }
        +    },
        +    "required": [
        +      "series"
        +    ],
        +    "title": "PromotedLine",
        +    "type": "object"
        +  },
        +  "RangeCategoryOrder": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "direction": {
        +            "enum": [
        +              "ascending",
        +              "descending"
        +            ],
        +            "type": "string"
        +          },
        +          "type": {
        +            "const": "category",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "direction"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "$ref": "#/$defs/ExplicitCategoryOrder"
        +      }
        +    ],
        +    "title": "RangeCategoryOrder"
        +  },
        +  "RangeCategoryRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/BandScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "RangeCategoryRole",
        +    "type": "object"
        +  },
        +  "RangeValuesRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "end": {
        +        "$ref": "#/$defs/FieldRole"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/ContinuousScale"
        +      },
        +      "start": {
        +        "$ref": "#/$defs/FieldRole"
        +      },
        +      "type": {
        +        "const": "range",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "start",
        +      "end"
        +    ],
        +    "title": "RangeValuesRole",
        +    "type": "object"
        +  },
        +  "ReferenceLabel": {
        +    "additionalProperties": false,
        +    "description": "Omit for no label. content is an ordered array of text and/or value, without duplicates. text is required when text is included. Values follow the reference's statistic scope and formatting.",
        +    "properties": {
        +      "align": {
        +        "enum": [
        +          "start",
        +          "center",
        +          "end"
        +        ],
        +        "type": "string"
        +      },
        +      "content": {
        +        "items": {
        +          "enum": [
        +            "text",
        +            "value"
        +          ],
        +          "type": "string"
        +        },
        +        "maxItems": 2,
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "position": {
        +        "enum": [
        +          "before",
        +          "after",
        +          "outside-start",
        +          "outside-end"
        +        ],
        +        "type": "string"
        +      },
        +      "text": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "required": [
        +      "content"
        +    ],
        +    "title": "ReferenceLabel",
        +    "type": "object"
        +  },
        +  "ReferenceStroke": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "color": {
        +        "$ref": "#/$defs/Color"
        +      },
        +      "style": {
        +        "enum": [
        +          "solid",
        +          "dashed",
        +          "dotted"
        +        ],
        +        "type": "string"
        +      },
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "ReferenceStroke",
        +    "type": "object"
        +  },
        +  "ReserveSpace": {
        +    "anyOf": [
        +      {
        +        "type": "boolean"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "x": {
        +            "type": "boolean"
        +          },
        +          "y": {
        +            "type": "boolean"
        +          }
        +        },
        +        "required": [
        +          "x",
        +          "y"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "ReserveSpace"
        +  },
        +  "ScatterAnnotations": {
        +    "items": {
        +      "additionalProperties": false,
        +      "properties": {
        +        "align": {
        +          "enum": [
        +            "start",
        +            "center",
        +            "end"
        +          ],
        +          "type": "string"
        +        },
        +        "anchor": {
        +          "oneOf": [
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "id": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "datum",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "id"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "type": {
        +                  "const": "coordinate",
        +                  "type": "string"
        +                },
        +                "x": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "y": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "x",
        +                "y"
        +              ],
        +              "type": "object"
        +            }
        +          ],
        +          "title": "ScatterAnnotationAnchor"
        +        },
        +        "boxAnchor": {
        +          "$ref": "#/$defs/AnnotationBoxAnchor"
        +        },
        +        "connector": {
        +          "enum": [
        +            "none",
        +            "line",
        +            "arrow"
        +          ],
        +          "type": "string"
        +        },
        +        "offset": {
        +          "$ref": "#/$defs/AnnotationOffset"
        +        },
        +        "placement": {
        +          "$ref": "#/$defs/AnnotationPlacement"
        +        },
        +        "reserveSpace": {
        +          "$ref": "#/$defs/ReserveSpace"
        +        },
        +        "style": {
        +          "$ref": "#/$defs/AnnotationTextStyle"
        +        },
        +        "text": {
        +          "type": "string"
        +        },
        +        "visible": {
        +          "type": "boolean"
        +        },
        +        "width": {
        +          "anyOf": [
        +            {
        +              "exclusiveMinimum": 0,
        +              "type": "number"
        +            },
        +            {
        +              "const": "shape",
        +              "type": "string"
        +            }
        +          ]
        +        }
        +      },
        +      "required": [
        +        "text",
        +        "anchor"
        +      ],
        +      "title": "ScatterAnnotation",
        +      "type": "object"
        +    },
        +    "minItems": 1,
        +    "title": "ScatterAnnotations",
        +    "type": "array"
        +  },
        +  "ScatterColor": {
        +    "anyOf": [
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "oneOf": [
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "domain": {
        +                "items": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "minItems": 1,
        +                "type": "array",
        +                "uniqueItems": true
        +              },
        +              "field": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "legend": {
        +                "$ref": "#/$defs/LegendOptions"
        +              },
        +              "range": {
        +                "$ref": "#/$defs/ColorRange"
        +              },
        +              "type": {
        +                "const": "categorical",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type",
        +              "field"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "domain": {
        +                "items": [
        +                  {
        +                    "type": "number"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ],
        +                "maxItems": 2,
        +                "minItems": 2,
        +                "type": "array"
        +              },
        +              "field": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "format": {
        +                "type": "string"
        +              },
        +              "legend": {
        +                "$ref": "#/$defs/LegendOptions"
        +              },
        +              "range": {
        +                "anyOf": [
        +                  {
        +                    "items": [
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      }
        +                    ],
        +                    "maxItems": 2,
        +                    "minItems": 2,
        +                    "type": "array"
        +                  },
        +                  {
        +                    "$ref": "#/$defs/ThreeColorRange"
        +                  }
        +                ],
        +                "title": "SequentialColorRange"
        +              },
        +              "type": {
        +                "const": "sequential",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type",
        +              "field"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "domain": {
        +                "items": [
        +                  {
        +                    "type": "number"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ],
        +                "maxItems": 2,
        +                "minItems": 2,
        +                "type": "array"
        +              },
        +              "field": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "format": {
        +                "type": "string"
        +              },
        +              "legend": {
        +                "$ref": "#/$defs/LegendOptions"
        +              },
        +              "midpoint": {
        +                "type": "number"
        +              },
        +              "range": {
        +                "anyOf": [
        +                  {
        +                    "$ref": "#/$defs/ThreeColorRange"
        +                  },
        +                  {
        +                    "items": [
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      }
        +                    ],
        +                    "maxItems": 5,
        +                    "minItems": 5,
        +                    "type": "array"
        +                  }
        +                ],
        +                "title": "DivergingColorRange"
        +              },
        +              "type": {
        +                "const": "diverging",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type",
        +              "field",
        +              "domain",
        +              "midpoint"
        +            ],
        +            "type": "object"
        +          }
        +        ]
        +      }
        +    ],
        +    "title": "ScatterColor"
        +  },
        +  "ScatterInterval": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "axis": {
        +        "enum": [
        +          "x",
        +          "y"
        +        ],
        +        "type": "string"
        +      },
        +      "lower": {
        +        "$ref": "#/$defs/FieldRole"
        +      },
        +      "stroke": {
        +        "$ref": "#/$defs/Stroke"
        +      },
        +      "upper": {
        +        "$ref": "#/$defs/FieldRole"
        +      }
        +    },
        +    "required": [
        +      "axis",
        +      "lower",
        +      "upper"
        +    ],
        +    "title": "ScatterInterval",
        +    "type": "object"
        +  },
        +  "ScatterLabels": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "position": {
        +        "enum": [
        +          "above",
        +          "side"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "ScatterLabels",
        +    "type": "object"
        +  },
        +  "ScatterReferences": {
        +    "items": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "enum": [
        +                "x",
        +                "y"
        +              ],
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "value": {
        +              "type": [
        +                "string",
        +                "number"
        +              ]
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "value"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "enum": [
        +                "x",
        +                "y"
        +              ],
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "statistic": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "operation": {
        +                  "enum": [
        +                    "average",
        +                    "median",
        +                    "min",
        +                    "max"
        +                  ],
        +                  "type": "string"
        +                },
        +                "scope": {
        +                  "enum": [
        +                    "visible",
        +                    "all"
        +                  ],
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "operation",
        +                "scope"
        +              ],
        +              "title": "ReferenceStatistic",
        +              "type": "object"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "statistic",
        +              "type": "string"
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "statistic"
        +          ],
        +          "type": "object"
        +        }
        +      ],
        +      "title": "ScatterReference"
        +    },
        +    "minItems": 1,
        +    "title": "ScatterReferences",
        +    "type": "array"
        +  },
        +  "ScatterRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/CategoryScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "ScatterRole",
        +    "type": "object"
        +  },
        +  "SeriesLinearValuesRole": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "long",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "field",
        +          "series"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "minItems": 2,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "wide",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "fields"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "count",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "series"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "SeriesLinearValuesRole"
        +  },
        +  "SeriesLinearValuesRoleWithPercent": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "percentFormat": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "long",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "field",
        +          "series"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "minItems": 2,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "percentFormat": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "wide",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "fields"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "percentFormat": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "count",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "series"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "SeriesLinearValuesRoleWithPercent"
        +  },
        +  "SeriesRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "SeriesRole",
        +    "type": "object"
        +  },
        +  "SimpleBarValuesRole": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "long",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "field"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": [
        +              {
        +                "minLength": 1,
        +                "type": "string"
        +              }
        +            ],
        +            "maxItems": 1,
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "wide",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "fields"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "count",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "SimpleBarValuesRole"
        +  },
        +  "StackedArrangement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "type": {
        +        "const": "stacked",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "StackedArrangement",
        +    "type": "object"
        +  },
        +  "StackedBarLabels": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "content": {
        +        "items": {
        +          "enum": [
        +            "value",
        +            "percent",
        +            "category",
        +            "series"
        +          ],
        +          "type": "string"
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      }
        +    },
        +    "required": [
        +      "content"
        +    ],
        +    "title": "StackedBarLabels",
        +    "type": "object"
        +  },
        +  "Stroke": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "color": {
        +        "$ref": "#/$defs/Color"
        +      },
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "Stroke",
        +    "type": "object"
        +  },
        +  "ThemeCategoricalPalette": {
        +    "items": {
        +      "minLength": 1,
        +      "type": "string"
        +    },
        +    "minItems": 1,
        +    "title": "ThemeCategoricalPalette",
        +    "type": "array"
        +  },
        +  "ThemeDivergingRange": {
        +    "anyOf": [
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 3,
        +        "minItems": 3,
        +        "type": "array"
        +      },
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 5,
        +        "minItems": 5,
        +        "type": "array"
        +      }
        +    ],
        +    "title": "ThemeDivergingRange"
        +  },
        +  "ThemeName": {
        +    "enum": [
        +      "editorial",
        +      "clean",
        +      "noir",
        +      "loud",
        +      "soft",
        +      "technical"
        +    ],
        +    "title": "ThemeName",
        +    "type": "string"
        +  },
        +  "ThemeOverrides": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "axes": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "gridLineWidth": {
        +            "minimum": 0,
        +            "type": "number"
        +          },
        +          "lineWidth": {
        +            "minimum": 0,
        +            "type": "number"
        +          },
        +          "tickPadding": {
        +            "minimum": 0,
        +            "type": "number"
        +          },
        +          "tickSize": {
        +            "minimum": 0,
        +            "type": "number"
        +          }
        +        },
        +        "title": "ThemeAxisOverrides",
        +        "type": "object"
        +      },
        +      "colors": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "axes": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "grid": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "line": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "tickLabel": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "title": {
        +                "$ref": "#/$defs/Color"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "background": {
        +            "$ref": "#/$defs/Color"
        +          },
        +          "caption": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "color": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "linkColor": {
        +                "$ref": "#/$defs/Color"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "categorical": {
        +            "anyOf": [
        +              {
        +                "$ref": "#/$defs/ThemeCategoricalPalette"
        +              },
        +              {
        +                "anyOf": [
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      }
        +                    },
        +                    "required": [
        +                      "light"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      }
        +                    },
        +                    "required": [
        +                      "dark"
        +                    ],
        +                    "type": "object"
        +                  }
        +                ]
        +              }
        +            ],
        +            "title": "ThemeCategoricalColors"
        +          },
        +          "diverging": {
        +            "anyOf": [
        +              {
        +                "$ref": "#/$defs/ThemeDivergingRange"
        +              },
        +              {
        +                "anyOf": [
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "light"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "dark"
        +                    ],
        +                    "type": "object"
        +                  }
        +                ]
        +              }
        +            ],
        +            "title": "ThemeDivergingColors"
        +          },
        +          "label": {
        +            "$ref": "#/$defs/Color"
        +          },
        +          "sequential": {
        +            "anyOf": [
        +              {
        +                "$ref": "#/$defs/ThemeSequentialRange"
        +              },
        +              {
        +                "anyOf": [
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "light"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "dark"
        +                    ],
        +                    "type": "object"
        +                  }
        +                ]
        +              }
        +            ],
        +            "title": "ThemeSequentialColors"
        +          },
        +          "subtitle": {
        +            "$ref": "#/$defs/Color"
        +          },
        +          "title": {
        +            "$ref": "#/$defs/Color"
        +          }
        +        },
        +        "title": "ThemeColorOverrides",
        +        "type": "object"
        +      },
        +      "fonts": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "body": {
        +            "$ref": "#/$defs/GoogleFontFamily"
        +          },
        +          "numeric": {
        +            "$ref": "#/$defs/GoogleFontFamily"
        +          },
        +          "title": {
        +            "$ref": "#/$defs/GoogleFontFamily"
        +          }
        +        },
        +        "title": "ThemeFontOverrides",
        +        "type": "object"
        +      },
        +      "typography": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "axisTitle": {
        +            "$ref": "#/$defs/WeightTypography"
        +          },
        +          "baseSize": {
        +            "exclusiveMinimum": 0,
        +            "type": "number"
        +          },
        +          "caption": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "gap": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "header": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "gap": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "titleSubtitleGap": {
        +                "minimum": 0,
        +                "type": "number"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "label": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "haloWidth": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "mutedOpacity": {
        +                "maximum": 1,
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "mutedWeight": {
        +                "anyOf": [
        +                  {
        +                    "const": 100,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 200,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 300,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 400,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 500,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 600,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 700,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 800,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 900,
        +                    "type": "number"
        +                  }
        +                ]
        +              },
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              },
        +              "weight": {
        +                "anyOf": [
        +                  {
        +                    "const": 100,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 200,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 300,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 400,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 500,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 600,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 700,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 800,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 900,
        +                    "type": "number"
        +                  }
        +                ]
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "subtitle": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "tickLabel": {
        +            "$ref": "#/$defs/WeightTypography"
        +          },
        +          "title": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              },
        +              "weight": {
        +                "anyOf": [
        +                  {
        +                    "const": 100,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 200,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 300,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 400,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 500,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 600,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 700,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 800,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 900,
        +                    "type": "number"
        +                  }
        +                ]
        +              }
        +            },
        +            "type": "object"
        +          }
        +        },
        +        "title": "ThemeTypographyOverrides",
        +        "type": "object"
        +      }
        +    },
        +    "title": "ThemeOverrides",
        +    "type": "object"
        +  },
        +  "ThemeSequentialRange": {
        +    "anyOf": [
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 3,
        +        "minItems": 3,
        +        "type": "array"
        +      }
        +    ],
        +    "title": "ThemeSequentialRange"
        +  },
        +  "ThreeColorRange": {
        +    "items": [
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "$ref": "#/$defs/Color"
        +      }
        +    ],
        +    "maxItems": 3,
        +    "minItems": 3,
        +    "title": "ThreeColorRange",
        +    "type": "array"
        +  },
        +  "UtcScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": [
        +          {
        +            "type": [
        +              "string",
        +              "number"
        +            ]
        +          },
        +          {
        +            "type": [
        +              "string",
        +              "number"
        +            ]
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "utc",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "UtcScale",
        +    "type": "object"
        +  },
        +  "WeightTypography": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "weight": {
        +        "anyOf": [
        +          {
        +            "const": 100,
        +            "type": "number"
        +          },
        +          {
        +            "const": 200,
        +            "type": "number"
        +          },
        +          {
        +            "const": 300,
        +            "type": "number"
        +          },
        +          {
        +            "const": 400,
        +            "type": "number"
        +          },
        +          {
        +            "const": 500,
        +            "type": "number"
        +          },
        +          {
        +            "const": 600,
        +            "type": "number"
        +          },
        +          {
        +            "const": 700,
        +            "type": "number"
        +          },
        +          {
        +            "const": 800,
        +            "type": "number"
        +          },
        +          {
        +            "const": 900,
        +            "type": "number"
        +          }
        +        ]
        +      }
        +    },
        +    "title": "WeightTypography",
        +    "type": "object"
        +  }
        +}
      • addedOutput schema / properties / id / description
        Added value: +"Opaque 32-character saved-chart id"
      • addedOutput schema / properties / id / pattern
        Added value: +"^[0-9a-f]{32}$"
      • addedOutput schema / properties / validation / properties / compatibility
        Added value: +{
        +  "oneOf": [
        +    {
        +      "additionalProperties": false,
        +      "properties": {
        +        "classification": {
        +          "enum": [
        +            "exact",
        +            "normalized"
        +          ],
        +          "type": "string"
        +        },
        +        "lossCodes": {
        +          "maxItems": 0,
        +          "minItems": 0,
        +          "type": "array"
        +        }
        +      },
        +      "required": [
        +        "classification",
        +        "lossCodes"
        +      ],
        +      "type": "object"
        +    },
        +    {
        +      "additionalProperties": false,
        +      "properties": {
        +        "classification": {
        +          "const": "lossy",
        +          "type": "string"
        +        },
        +        "lossCodes": {
        +          "items": {
        +            "type": "string"
        +          },
        +          "minItems": 1,
        +          "type": "array"
        +        }
        +      },
        +      "required": [
        +        "classification",
        +        "lossCodes"
        +      ],
        +      "type": "object"
        +    },
        +    {
        +      "additionalProperties": false,
        +      "properties": {
        +        "classification": {
        +          "const": "unsupported",
        +          "type": "string"
        +        },
        +        "lossCodes": {
        +          "maxItems": 0,
        +          "minItems": 0,
        +          "type": "array"
        +        },
        +        "unsupportedCode": {
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "classification",
        +        "lossCodes",
        +        "unsupportedCode"
        +      ],
        +      "type": "object"
        +    }
        +  ]
        +}
      • removedOutput schema / properties / validation / properties / diagnostics / items / additionalProperties
        Removed value: -false
      • addedOutput schema / properties / validation / properties / diagnostics / items / oneOf
        Added value: +[
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "invalid_structure",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "actualBytes": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "maxBytes": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "reason": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "invalid_preference",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "actualItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "fields": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "maximum": {
        +            "type": "number"
        +          },
        +          "minimum": {
        +            "type": "number"
        +          },
        +          "minimumItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "parts": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "property": {
        +            "type": "string"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "requiredItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "role": {
        +            "type": "string"
        +          },
        +          "samplePaths": {
        +            "items": {
        +              "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "sampleValues": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "syntax": {
        +            "enum": [
        +              "percent",
        +              "semantic"
        +            ],
        +            "type": "string"
        +          },
        +          "type": {
        +            "type": "string"
        +          },
        +          "value": {
        +            "type": [
        +              "string",
        +              "number"
        +            ]
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "incompatible_data",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "affectedCategories": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "affectedRows": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "aggregation": {
        +            "type": "string"
        +          },
        +          "axis": {
        +            "enum": [
        +              "x",
        +              "y"
        +            ],
        +            "type": "string"
        +          },
        +          "categoryField": {
        +            "type": "string"
        +          },
        +          "expected": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "field": {
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "omission": {
        +            "enum": [
        +              "incompatible",
        +              "missing"
        +            ],
        +            "type": "string"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "roles": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "rowCount": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "samplePaths": {
        +            "items": {
        +              "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "sampleValues": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "valueField": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "incompatible_scale",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "actualItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "affectedValues": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "axis": {
        +            "enum": [
        +              "x",
        +              "y"
        +            ],
        +            "type": "string"
        +          },
        +          "domain": {
        +            "items": [
        +              {
        +                "type": "number"
        +              },
        +              {
        +                "type": "number"
        +              }
        +            ],
        +            "maxItems": 2,
        +            "minItems": 2,
        +            "type": "array"
        +          },
        +          "expectedItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "markTypes": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "samplePaths": {
        +            "items": {
        +              "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "sampleValues": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "supportedTypes": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "type": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "duplicate_identity",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "affectedRows": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "categoryField": {
        +            "type": "string"
        +          },
        +          "field": {
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "samplePaths": {
        +            "items": {
        +              "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "seriesField": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "unresolved_decoration",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "annotationIndex": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "axis": {
        +            "enum": [
        +              "x",
        +              "y"
        +            ],
        +            "type": "string"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "referenceIndex": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "statistic": {
        +            "type": "string"
        +          },
        +          "value": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "render_adjustment",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "affectedCount": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "labelRoles": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "reason": {
        +            "const": "label_collision_suppressed",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason",
        +          "affectedCount",
        +          "labelRoles"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  }
        +]
      • removedOutput schema / properties / validation / properties / diagnostics / items / properties
        Removed value: -{
        -  "code": {
        -    "type": "string"
        -  },
        -  "details": {
        -    "additionalProperties": {},
        -    "propertyNames": {
        -      "type": "string"
        -    },
        -    "type": "object"
        -  },
        -  "message": {
        -    "type": "string"
        -  },
        -  "path": {
        -    "items": {
        -      "anyOf": [
        -        {
        -          "type": "string"
        -        },
        -        {
        -          "type": "number"
        -        }
        -      ]
        -    },
        -    "type": "array"
        -  },
        -  "relatedPaths": {
        -    "items": {
        -      "items": {
        -        "anyOf": [
        -          {
        -            "type": "string"
        -          },
        -          {
        -            "type": "number"
        -          }
        -        ]
        -      },
        -      "type": "array"
        -    },
        -    "type": "array"
        -  },
        -  "severity": {
        -    "enum": [
        -      "error",
        -      "warning",
        -      "suggestion"
        -    ],
        -    "type": "string"
        -  }
        -}
      • removedOutput schema / properties / validation / properties / diagnostics / items / required
        Removed value: -[
        -  "code",
        -  "severity",
        -  "path",
        -  "message",
        -  "details"
        -]
      • removedOutput schema / properties / validation / properties / diagnostics / items / type
        Removed value: -"object"
      • removedOutput schema / properties / validation / properties / errors
        Removed value: -{
        -  "items": {
        -    "additionalProperties": false,
        -    "properties": {
        -      "code": {
        -        "type": "string"
        -      },
        -      "details": {
        -        "additionalProperties": {},
        -        "propertyNames": {
        -          "type": "string"
        -        },
        -        "type": "object"
        -      },
        -      "message": {
        -        "type": "string"
        -      },
        -      "path": {
        -        "items": {
        -          "anyOf": [
        -            {
        -              "type": "string"
        -            },
        -            {
        -              "type": "number"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "relatedPaths": {
        -        "items": {
        -          "items": {
        -            "anyOf": [
        -              {
        -                "type": "string"
        -              },
        -              {
        -                "type": "number"
        -              }
        -            ]
        -          },
        -          "type": "array"
        -        },
        -        "type": "array"
        -      },
        -      "severity": {
        -        "enum": [
        -          "error",
        -          "warning",
        -          "suggestion"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "code",
        -      "severity",
        -      "path",
        -      "message",
        -      "details"
        -    ],
        -    "type": "object"
        -  },
        -  "type": "array"
        -}
      • removedOutput schema / properties / validation / properties / message
        Removed value: -{
        -  "type": "string"
        -}
      • removedOutput schema / properties / validation / properties / suggestedConfig
        Removed value: -{
        -  "additionalProperties": {},
        -  "description": "Schema version 2026-03-20. Send this JSON to POST https://szum.io/validate to validate it or POST https://szum.io/chart to render a chart image.",
        -  "properties": {
        -    "attribution": {
        -      "description": "Show a small \"Made with Szum\" credit in the bottom-right. Always on for free and keyless renders; Creator and Pro omit it by default and set true to opt in.",
        -      "type": "boolean"
        -    },
        -    "color": {
        -      "anyOf": [
        -        {
        -          "additionalProperties": {},
        -          "properties": {
        -            "domain": {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            },
        -            "label": {
        -              "type": "string"
        -            },
        -            "range": {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            },
        -            "type": {
        -              "const": "categorical",
        -              "type": "string"
        -            }
        -          },
        -          "required": [
        -            "type"
        -          ],
        -          "type": "object"
        -        },
        -        {
        -          "additionalProperties": {},
        -          "properties": {
        -            "domain": {
        -              "items": [
        -                {
        -                  "type": "number"
        -                },
        -                {
        -                  "type": "number"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            "label": {
        -              "type": "string"
        -            },
        -            "range": {
        -              "items": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "string"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            "type": {
        -              "const": "sequential",
        -              "type": "string"
        -            }
        -          },
        -          "required": [
        -            "type"
        -          ],
        -          "type": "object"
        -        },
        -        {
        -          "additionalProperties": false,
        -          "properties": {
        -            "label": {
        -              "type": "string"
        -            }
        -          },
        -          "type": "object"
        -        }
        -      ]
        -    },
        -    "data": {
        -      "items": {
        -        "additionalProperties": {
        -          "anyOf": [
        -            {
        -              "type": "string"
        -            },
        -            {
        -              "type": "number"
        -            }
        -          ]
        -        },
        -        "propertyNames": {
        -          "type": "string"
        -        },
        -        "type": "object"
        -      },
        -      "type": "array"
        -    },
        -    "footer": {
        -      "description": "Caption below the chart (a source line, methodology note, date). URLs, bare domains, and [label](url) links in it are auto-detected and rendered as inline links on every surface.",
        -      "type": "string"
        -    },
        -    "format": {
        -      "enum": [
        -        "svg",
        -        "png"
        -      ],
        -      "type": "string"
        -    },
        -    "headerAlign": {
        -      "enum": [
        -        "left",
        -        "center",
        -        "right"
        -      ],
        -      "type": "string"
        -    },
        -    "height": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "locale": {
        -      "description": "Locale identifier accepted by JavaScript Intl and associated with the chart content, such as en, pl, or zh-Hant.",
        -      "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        -      "type": "string"
        -    },
        -    "margin": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "bottom": {
        -          "type": "number"
        -        },
        -        "left": {
        -          "type": "number"
        -        },
        -        "right": {
        -          "type": "number"
        -        },
        -        "top": {
        -          "type": "number"
        -        }
        -      },
        -      "type": "object"
        -    },
        -    "marks": {
        -      "items": {
        -        "oneOf": [
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "label": {
        -                "additionalProperties": {},
        -                "properties": {
        -                  "field": {
        -                    "type": "string"
        -                  },
        -                  "format": {
        -                    "type": "string"
        -                  }
        -                },
        -                "required": [
        -                  "field"
        -                ],
        -                "type": "object"
        -              },
        -              "r": {
        -                "type": "number"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "dot",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "curve": {
        -                "enum": [
        -                  "linear",
        -                  "monotone",
        -                  "step"
        -                ],
        -                "type": "string"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "end": {
        -                        "anyOf": [
        -                          {
        -                            "type": "boolean"
        -                          },
        -                          {
        -                            "items": {
        -                              "enum": [
        -                                "category",
        -                                "value"
        -                              ],
        -                              "type": "string"
        -                            },
        -                            "type": "array"
        -                          }
        -                        ],
        -                        "default": [
        -                          "category"
        -                        ]
        -                      },
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "points": {
        -                        "anyOf": [
        -                          {
        -                            "enum": [
        -                              "extrema",
        -                              "all",
        -                              "ends"
        -                            ],
        -                            "type": "string"
        -                          },
        -                          {
        -                            "const": false,
        -                            "type": "boolean"
        -                          },
        -                          {
        -                            "additionalProperties": {},
        -                            "properties": {
        -                              "at": {
        -                                "enum": [
        -                                  "extrema",
        -                                  "all",
        -                                  "ends"
        -                                ],
        -                                "type": "string"
        -                              },
        -                              "show": {
        -                                "default": [
        -                                  "value"
        -                                ],
        -                                "items": {
        -                                  "enum": [
        -                                    "value",
        -                                    "category"
        -                                  ],
        -                                  "type": "string"
        -                                },
        -                                "type": "array"
        -                              }
        -                            },
        -                            "required": [
        -                              "at"
        -                            ],
        -                            "type": "object"
        -                          }
        -                        ],
        -                        "default": false
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "line",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "cornerRadius": {
        -                "type": "number"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "group": {
        -                "default": "stack",
        -                "enum": [
        -                  "stack",
        -                  "dodge"
        -                ],
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "position": {
        -                        "default": "outside",
        -                        "enum": [
        -                          "auto",
        -                          "outside",
        -                          "inside"
        -                        ],
        -                        "type": "string"
        -                      },
        -                      "show": {
        -                        "default": [
        -                          "value"
        -                        ],
        -                        "items": {
        -                          "enum": [
        -                            "value",
        -                            "percent",
        -                            "category",
        -                            "total"
        -                          ],
        -                          "type": "string"
        -                        },
        -                        "type": "array"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "barY",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "cornerRadius": {
        -                "type": "number"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "group": {
        -                "default": "stack",
        -                "enum": [
        -                  "stack",
        -                  "dodge"
        -                ],
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "position": {
        -                        "default": "outside",
        -                        "enum": [
        -                          "auto",
        -                          "outside",
        -                          "inside"
        -                        ],
        -                        "type": "string"
        -                      },
        -                      "show": {
        -                        "default": [
        -                          "value"
        -                        ],
        -                        "items": {
        -                          "enum": [
        -                            "value",
        -                            "percent",
        -                            "category",
        -                            "total"
        -                          ],
        -                          "type": "string"
        -                        },
        -                        "type": "array"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "barX",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "curve": {
        -                "enum": [
        -                  "linear",
        -                  "monotone",
        -                  "step"
        -                ],
        -                "type": "string"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "end": {
        -                        "anyOf": [
        -                          {
        -                            "type": "boolean"
        -                          },
        -                          {
        -                            "items": {
        -                              "enum": [
        -                                "category",
        -                                "value",
        -                                "percent"
        -                              ],
        -                              "type": "string"
        -                            },
        -                            "type": "array"
        -                          }
        -                        ],
        -                        "default": [
        -                          "category"
        -                        ]
        -                      },
        -                      "format": {
        -                        "type": "string"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "areaY",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "curve": {
        -                "enum": [
        -                  "linear",
        -                  "monotone",
        -                  "step"
        -                ],
        -                "type": "string"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "areaX",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "cornerRadius": {
        -                "type": "number"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "innerRadius": {
        -                "default": 0,
        -                "maximum": 1,
        -                "minimum": 0,
        -                "type": "number"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "position": {
        -                        "default": "auto",
        -                        "enum": [
        -                          "auto",
        -                          "inside",
        -                          "outside"
        -                        ],
        -                        "type": "string"
        -                      },
        -                      "show": {
        -                        "default": [
        -                          "category",
        -                          "percent"
        -                        ],
        -                        "items": {
        -                          "enum": [
        -                            "value",
        -                            "percent",
        -                            "category"
        -                          ],
        -                          "type": "string"
        -                        },
        -                        "type": "array"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "pie",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "dx": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "dy": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "fontSize": {
        -                "type": "number"
        -              },
        -              "fontWeight": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "text": {
        -                "default": "text",
        -                "type": "string"
        -              },
        -              "textAnchor": {
        -                "default": "center",
        -                "enum": [
        -                  "start",
        -                  "center",
        -                  "end"
        -                ],
        -                "type": "string"
        -              },
        -              "type": {
        -                "const": "text",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "ruleX",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "ruleY",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          }
        -        ]
        -      },
        -      "minItems": 1,
        -      "type": "array"
        -    },
        -    "plotHeight": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "plotWidth": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "scale": {
        -      "maximum": 4,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "subtitle": {
        -      "type": "string"
        -    },
        -    "theme": {
        -      "default": "editorial",
        -      "enum": [
        -        "editorial",
        -        "clean",
        -        "noir",
        -        "loud",
        -        "soft",
        -        "technical"
        -      ],
        -      "type": "string"
        -    },
        -    "themeOverrides": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "axisColor": {
        -          "type": "string"
        -        },
        -        "axisFrame": {
        -          "enum": [
        -            "none",
        -            "baseline",
        -            "lShape",
        -            "full"
        -          ],
        -          "type": "string"
        -        },
        -        "axisLabelColor": {
        -          "type": "string"
        -        },
        -        "axisLabelFontWeight": {
        -          "type": "string"
        -        },
        -        "axisLineWidth": {
        -          "type": "number"
        -        },
        -        "backgroundColor": {
        -          "type": "string"
        -        },
        -        "barCornerRadius": {
        -          "type": "number"
        -        },
        -        "barPadding": {
        -          "type": "number"
        -        },
        -        "colors": {
        -          "items": {
        -            "type": "string"
        -          },
        -          "type": "array"
        -        },
        -        "curve": {
        -          "enum": [
        -            "linear",
        -            "monotone",
        -            "step"
        -          ],
        -          "type": "string"
        -        },
        -        "dotRadius": {
        -          "type": "number"
        -        },
        -        "fontFamily": {
        -          "enum": [
        -            "ABeeZee",
        -            "ADLaM Display",
        -            "AR One Sans",
        -            "Abel",
        -            "Abhaya Libre",
        -            "Aboreto",
        -            "Abril Fatface",
        -            "Abyssinica SIL",
        -            "Aclonica",
        -            "Acme",
        -            "Actor",
        -            "Adamina",
        -            "Advent Pro",
        -            "Afacad",
        -            "Afacad Flux",
        -            "Agbalumo",
        -            "Agdasima",
        -            "Agu Display",
        -            "Aguafina Script",
        -            "Akatab",
        -            "Akaya Kanadaka",
        -            "Akaya Telivigala",
        -            "Akronim",
        -            "Akshar",
        -            "Akt",
        -            "Aladin",
        -            "Alan Sans",
        -            "Alata",
        -            "Alatsi",
        -            "Albert Sans",
        -            "Aldrich",
        -            "Alef",
        -            "Alegreya",
        -            "Alegreya SC",
        -            "Alegreya Sans",
        -            "Alegreya Sans SC",
        -            "Aleo",
        -            "Alex Brush",
        -            "Alexandria",
        -            "Alfa Slab One",
        -            "Alice",
        -            "Alien Block",
        -            "Alike",
        -            "Alike Angular",
        -            "Alkalami",
        -            "Alkatra",
        -            "Allan",
        -            "Allerta",
        -            "Allerta Stencil",
        -            "Allison",
        -            "Allkin",
        -            "Allura",
        -            "Almarai",
        -            "Almendra",
        -            "Almendra Display",
        -            "Almendra SC",
        -            "Alumni Sans",
        -            "Alumni Sans Collegiate One",
        -            "Alumni Sans Inline One",
        -            "Alumni Sans Pinstripe",
        -            "Alumni Sans SC",
        -            "Alyamama",
        -            "Amarante",
        -            "Amaranth",
        -            "Amarna",
        -            "Amatic SC",
        -            "Amethysta",
        -            "Amiko",
        -            "Amiri",
        -            "Amiri Quran",
        -            "Amita",
        -            "Anaheim",
        -            "Ancizar Sans",
        -            "Ancizar Serif",
        -            "Andada Pro",
        -            "Andika",
        -            "Anek Bangla",
        -            "Anek Devanagari",
        -            "Anek Gujarati",
        -            "Anek Gurmukhi",
        -            "Anek Kannada",
        -            "Anek Latin",
        -            "Anek Malayalam",
        -            "Anek Odia",
        -            "Anek Tamil",
        -            "Anek Telugu",
        -            "Angkor",
        -            "Annapurna SIL",
        -            "Annie Use Your Telescope",
        -            "Anonymous Pro",
        -            "Anta",
        -            "Antic",
        -            "Antic Didone",
        -            "Antic Slab",
        -            "Anton",
        -            "Anton SC",
        -            "Antonio",
        -            "Anuphan",
        -            "Anybody",
        -            "Aoboshi One",
        -            "Arapey",
        -            "Arbutus",
        -            "Arbutus Slab",
        -            "Architects Daughter",
        -            "Archivo",
        -            "Archivo Black",
        -            "Archivo Narrow",
        -            "Are You Serious",
        -            "Aref Ruqaa",
        -            "Aref Ruqaa Ink",
        -            "Arima",
        -            "Arimo",
        -            "Arizonia",
        -            "Armata",
        -            "Arsenal",
        -            "Arsenal SC",
        -            "Artifika",
        -            "Arvo",
        -            "Arya",
        -            "Asap",
        -            "Asap Condensed",
        -            "Asar",
        -            "Asimovian",
        -            "Asset",
        -            "Assistant",
        -            "Asta Sans",
        -            "Astloch",
        -            "Asul",
        -            "Athiti",
        -            "Atkinson Hyperlegible",
        -            "Atkinson Hyperlegible Mono",
        -            "Atkinson Hyperlegible Next",
        -            "Atma",
        -            "Atomic Age",
        -            "Aubrey",
        -            "Audiowide",
        -            "Autour One",
        -            "Average",
        -            "Average Sans",
        -            "Averia Gruesa Libre",
        -            "Averia Libre",
        -            "Averia Sans Libre",
        -            "Averia Serif Libre",
        -            "Azeret Mono",
        -            "B612",
        -            "B612 Mono",
        -            "BBH Bartle",
        -            "BBH Bogle",
        -            "BBH Hegarty",
        -            "BIZ UDGothic",
        -            "BIZ UDMincho",
        -            "BIZ UDPGothic",
        -            "BIZ UDPMincho",
        -            "BJCree",
        -            "Babylonica",
        -            "Bacasime Antique",
        -            "Bad Script",
        -            "Badeen Display",
        -            "Bagel Fat One",
        -            "Bahiana",
        -            "Bahianita",
        -            "Bai Jamjuree",
        -            "Bakbak One",
        -            "Ballet",
        -            "Baloo 2",
        -            "Baloo Bhai 2",
        -            "Baloo Bhaijaan 2",
        -            "Baloo Bhaina 2",
        -            "Baloo Chettan 2",
        -            "Baloo Da 2",
        -            "Baloo Paaji 2",
        -            "Baloo Tamma 2",
        -            "Baloo Tammudu 2",
        -            "Baloo Thambi 2",
        -            "Balsamiq Sans",
        -            "Balthazar",
        -            "Bangers",
        -            "Barlow",
        -            "Barlow Condensed",
        -            "Barlow Semi Condensed",
        -            "Barriecito",
        -            "Barrio",
        -            "Basic",
        -            "Baskervville",
        -            "Baskervville SC",
        -            "Battambang",
        -            "Baumans",
        -            "Bayon",
        -            "Be Vietnam Pro",
        -            "Beau Rivage",
        -            "Bebas Neue",
        -            "Beiruti",
        -            "Belanosima",
        -            "Belgrano",
        -            "Bellefair",
        -            "Belleza",
        -            "Bellota",
        -            "Bellota Text",
        -            "BenchNine",
        -            "Benne",
        -            "Bentham",
        -            "Berkshire Swash",
        -            "Besley",
        -            "Betania Patmos",
        -            "Betania Patmos GDL",
        -            "Betania Patmos In",
        -            "Betania Patmos In GDL",
        -            "Beth Ellen",
        -            "Bevan",
        -            "BhuTuka Expanded One",
        -            "Big Shoulders",
        -            "Big Shoulders Inline",
        -            "Big Shoulders Stencil",
        -            "Bigelow Rules",
        -            "Bigshot One",
        -            "Bilbo",
        -            "Bilbo Swash Caps",
        -            "BioRhyme",
        -            "BioRhyme Expanded",
        -            "Birthstone",
        -            "Birthstone Bounce",
        -            "Biryani",
        -            "Bitcount",
        -            "Bitcount Grid Double",
        -            "Bitcount Grid Double Ink",
        -            "Bitcount Grid Single",
        -            "Bitcount Grid Single Ink",
        -            "Bitcount Ink",
        -            "Bitcount Prop Double",
        -            "Bitcount Prop Double Ink",
        -            "Bitcount Prop Single",
        -            "Bitcount Prop Single Ink",
        -            "Bitcount Single",
        -            "Bitcount Single Ink",
        -            "Bitter",
        -            "Black And White Picture",
        -            "Black Han Sans",
        -            "Black Ops One",
        -            "Blaka",
        -            "Blaka Hollow",
        -            "Blaka Ink",
        -            "Blinker",
        -            "Bodoni Moda",
        -            "Bodoni Moda SC",
        -            "Bokor",
        -            "Boldonse",
        -            "Bona Nova",
        -            "Bona Nova SC",
        -            "Bonbon",
        -            "Bonheur Royale",
        -            "Boogaloo",
        -            "Borel",
        -            "Bowlby One",
        -            "Bowlby One SC",
        -            "Bpmf Huninn",
        -            "Bpmf Iansui",
        -            "Bpmf Zihi Kai Std",
        -            "Braah One",
        -            "Brawler",
        -            "Bree Serif",
        -            "Bricolage Grotesque",
        -            "Bruno Ace",
        -            "Bruno Ace SC",
        -            "Brygada 1918",
        -            "Bubblegum Sans",
        -            "Bubbler One",
        -            "Buda",
        -            "Buenard",
        -            "Bungee",
        -            "Bungee Hairline",
        -            "Bungee Inline",
        -            "Bungee Outline",
        -            "Bungee Shade",
        -            "Bungee Spice",
        -            "Bungee Tint",
        -            "Butcherman",
        -            "Butterfly Kids",
        -            "Bytesized",
        -            "Cabin",
        -            "Cabin Condensed",
        -            "Cabin Sketch",
        -            "Cactus Classical Serif",
        -            "Caesar Dressing",
        -            "Cagliostro",
        -            "Cairo",
        -            "Cairo Play",
        -            "Cal Sans",
        -            "Caladea",
        -            "Calistoga",
        -            "Calligraffitti",
        -            "Cambay",
        -            "Cambo",
        -            "Candal",
        -            "Cantarell",
        -            "Cantata One",
        -            "Cantora One",
        -            "Caprasimo",
        -            "Capriola",
        -            "Caramel",
        -            "Carattere",
        -            "Cardo",
        -            "Carlito",
        -            "Carme",
        -            "Carrois Gothic",
        -            "Carrois Gothic SC",
        -            "Carter One",
        -            "Cascadia Code",
        -            "Cascadia Mono",
        -            "Castoro",
        -            "Castoro Titling",
        -            "Catamaran",
        -            "Caudex",
        -            "Cause",
        -            "Caveat",
        -            "Caveat Brush",
        -            "Cedarville Cursive",
        -            "Ceviche One",
        -            "Chakra Petch",
        -            "Changa",
        -            "Changa One",
        -            "Chango",
        -            "Charis SIL",
        -            "Charm",
        -            "Charmonman",
        -            "Chathura",
        -            "Chau Philomene One",
        -            "Chela One",
        -            "Chelsea Market",
        -            "Chenla",
        -            "Cherish",
        -            "Cherry Bomb One",
        -            "Cherry Cream Soda",
        -            "Cherry Swash",
        -            "Chewy",
        -            "Chicle",
        -            "Chilanka",
        -            "Chiron GoRound TC",
        -            "Chiron Hei HK",
        -            "Chiron Sung HK",
        -            "Chivo",
        -            "Chivo Mono",
        -            "Chocolate Classical Sans",
        -            "Chokokutai",
        -            "Chonburi",
        -            "Cinzel",
        -            "Cinzel Decorative",
        -            "Clicker Script",
        -            "Climate Crisis",
        -            "Coda",
        -            "Codystar",
        -            "Coiny",
        -            "Combo",
        -            "Comfortaa",
        -            "Comforter",
        -            "Comforter Brush",
        -            "Comic Neue",
        -            "Comic Relief",
        -            "Coming Soon",
        -            "Comme",
        -            "Commissioner",
        -            "Concert One",
        -            "Condiment",
        -            "Content",
        -            "Contrail One",
        -            "Convergence",
        -            "Cookie",
        -            "Copse",
        -            "Coral Pixels",
        -            "Corben",
        -            "Corinthia",
        -            "Cormorant",
        -            "Cormorant Garamond",
        -            "Cormorant Infant",
        -            "Cormorant SC",
        -            "Cormorant Unicase",
        -            "Cormorant Upright",
        -            "Cossette Texte",
        -            "Cossette Titre",
        -            "Courgette",
        -            "Courier Prime",
        -            "Cousine",
        -            "Coustard",
        -            "Covered By Your Grace",
        -            "Crafty Girls",
        -            "Creepster",
        -            "Crete Round",
        -            "Crimson Pro",
        -            "Crimson Text",
        -            "Croissant One",
        -            "Crushed",
        -            "Cuprum",
        -            "Cute Font",
        -            "Cutive",
        -            "Cutive Mono",
        -            "DM Mono",
        -            "DM Sans",
        -            "DM Serif Display",
        -            "DM Serif Text",
        -            "Dai Banna SIL",
        -            "Damion",
        -            "Dancing Script",
        -            "Danfo",
        -            "Dangrek",
        -            "Darker Grotesque",
        -            "Darumadrop One",
        -            "Datatype",
        -            "David Libre",
        -            "Dawning of a New Day",
        -            "Days One",
        -            "Dekko",
        -            "Dela Gothic One",
        -            "Delicious Handrawn",
        -            "Delius",
        -            "Delius Swash Caps",
        -            "Delius Unicase",
        -            "Della Respira",
        -            "Denk One",
        -            "Devonshire",
        -            "Dhurjati",
        -            "Didact Gothic",
        -            "Diphylleia",
        -            "Diplomata",
        -            "Diplomata SC",
        -            "Do Hyeon",
        -            "Dokdo",
        -            "Domine",
        -            "Donegal One",
        -            "Dongle",
        -            "Doppio One",
        -            "Dorsa",
        -            "Dosis",
        -            "DotGothic16",
        -            "Doto",
        -            "Dr Sugiyama",
        -            "Duru Sans",
        -            "DynaPuff",
        -            "Dynalight",
        -            "EB Garamond",
        -            "Eagle Lake",
        -            "East Sea Dokdo",
        -            "Eater",
        -            "Economica",
        -            "Eczar",
        -            "Edu AU VIC WA NT Arrows",
        -            "Edu AU VIC WA NT Dots",
        -            "Edu AU VIC WA NT Guides",
        -            "Edu AU VIC WA NT Hand",
        -            "Edu AU VIC WA NT Pre",
        -            "Edu NSW ACT Cursive",
        -            "Edu NSW ACT Foundation",
        -            "Edu NSW ACT Hand Pre",
        -            "Edu QLD Beginner",
        -            "Edu QLD Hand",
        -            "Edu SA Beginner",
        -            "Edu SA Hand",
        -            "Edu TAS Beginner",
        -            "Edu VIC WA NT Beginner",
        -            "Edu VIC WA NT Hand",
        -            "Edu VIC WA NT Hand Pre",
        -            "El Messiri",
        -            "Electrolize",
        -            "Elms Sans",
        -            "Elsie",
        -            "Elsie Swash Caps",
        -            "Emblema One",
        -            "Emilys Candy",
        -            "Encode Sans",
        -            "Encode Sans Condensed",
        -            "Encode Sans Expanded",
        -            "Encode Sans SC",
        -            "Encode Sans Semi Condensed",
        -            "Encode Sans Semi Expanded",
        -            "Engagement",
        -            "Englebert",
        -            "Enriqueta",
        -            "Ephesis",
        -            "Epilogue",
        -            "Epunda Sans",
        -            "Epunda Slab",
        -            "Erica One",
        -            "Esteban",
        -            "Estedad",
        -            "Estonia",
        -            "Euphoria Script",
        -            "Ewert",
        -            "Exile",
        -            "Exo",
        -            "Exo 2",
        -            "Expletus Sans",
        -            "Explora",
        -            "Faculty Glyphic",
        -            "Fahkwang",
        -            "Familjen Grotesk",
        -            "Fanwood Text",
        -            "Farro",
        -            "Farsan",
        -            "Fascinate",
        -            "Fascinate Inline",
        -            "Faster One",
        -            "Fasthand",
        -            "Fauna One",
        -            "Faustina",
        -            "Federant",
        -            "Federo",
        -            "Felipa",
        -            "Fenix",
        -            "Festive",
        -            "Figtree",
        -            "Finger Paint",
        -            "Finlandica Headline",
        -            "Finlandica Text",
        -            "Fira Code",
        -            "Fira Mono",
        -            "Fira Sans",
        -            "Fira Sans Condensed",
        -            "Fira Sans Extra Condensed",
        -            "Fjalla One",
        -            "Fjord One",
        -            "Flamenco",
        -            "Flavors",
        -            "Fleur De Leah",
        -            "Flow Block",
        -            "Flow Circular",
        -            "Flow Rounded",
        -            "Foldit",
        -            "Fondamento",
        -            "Fontdiner Swanky",
        -            "Forum",
        -            "Fragment Mono",
        -            "Francois One",
        -            "Frank Ruhl Libre",
        -            "Fraunces",
        -            "Freckle Face",
        -            "Fredericka the Great",
        -            "Fredoka",
        -            "Freehand",
        -            "Freeman",
        -            "Fresca",
        -            "Frijole",
        -            "Fruktur",
        -            "Fugaz One",
        -            "Fuggles",
        -            "Funnel Display",
        -            "Funnel Sans",
        -            "Fustat",
        -            "Fuzzy Bubbles",
        -            "GFS Didot",
        -            "GFS Neohellenic",
        -            "Ga Maamli",
        -            "Gabarito",
        -            "Gabriela",
        -            "Gaegu",
        -            "Gafata",
        -            "Gajraj One",
        -            "Galada",
        -            "Galdeano",
        -            "Galindo",
        -            "Gamja Flower",
        -            "Gantari",
        -            "Gasoek One",
        -            "Gayathri",
        -            "Geist",
        -            "Geist Mono",
        -            "Geist Pixel",
        -            "Gelasio",
        -            "Gemunu Libre",
        -            "Genos",
        -            "Gentium Book Plus",
        -            "Gentium Plus",
        -            "Geo",
        -            "Geologica",
        -            "Geom",
        -            "Geomini",
        -            "Georama",
        -            "Geostar",
        -            "Geostar Fill",
        -            "Germania One",
        -            "Gideon Roman",
        -            "Gidole",
        -            "Gidugu",
        -            "Gilda Display",
        -            "Girassol",
        -            "Give You Glory",
        -            "Glass Antiqua",
        -            "Glegoo",
        -            "Gloock",
        -            "Gloria Hallelujah",
        -            "Glory",
        -            "Gluten",
        -            "Goblin One",
        -            "Gochi Hand",
        -            "Goldman",
        -            "Golos Text",
        -            "Google Sans",
        -            "Google Sans Code",
        -            "Google Sans Flex",
        -            "Gorditas",
        -            "Gothic A1",
        -            "Gotu",
        -            "Goudy Bookletter 1911",
        -            "Gowun Batang",
        -            "Gowun Dodum",
        -            "Graduate",
        -            "Grand Hotel",
        -            "Grandiflora One",
        -            "Grandstander",
        -            "Grape Nuts",
        -            "Gravitas One",
        -            "Great Vibes",
        -            "Grechen Fuemen",
        -            "Grenze",
        -            "Grenze Gotisch",
        -            "Grey Qo",
        -            "Griffy",
        -            "Gruppo",
        -            "Gudea",
        -            "Gugi",
        -            "Gulzar",
        -            "Gupter",
        -            "Gurajada",
        -            "Gveret Levin",
        -            "Gwendolyn",
        -            "Habibi",
        -            "Hachi Maru Pop",
        -            "Hahmlet",
        -            "Halant",
        -            "Hammersmith One",
        -            "Hanalei",
        -            "Hanalei Fill",
        -            "Handjet",
        -            "Handlee",
        -            "Hanken Grotesk",
        -            "Hanuman",
        -            "Happy Monkey",
        -            "Harmattan",
        -            "Headland One",
        -            "Hedvig Letters Sans",
        -            "Hedvig Letters Serif",
        -            "Heebo",
        -            "Henny Penny",
        -            "Hepta Slab",
        -            "Herr Von Muellerhoff",
        -            "Hi Melody",
        -            "Hibur Mono",
        -            "Hina Mincho",
        -            "Hind",
        -            "Hind Guntur",
        -            "Hind Madurai",
        -            "Hind Mysuru",
        -            "Hind Siliguri",
        -            "Hind Vadodara",
        -            "Holtwood One SC",
        -            "Homemade Apple",
        -            "Homenaje",
        -            "Honk",
        -            "Host Grotesk",
        -            "Hubballi",
        -            "Hubot Sans",
        -            "Huninn",
        -            "Hurricane",
        -            "IBM Plex Mono",
        -            "IBM Plex Sans",
        -            "IBM Plex Sans Arabic",
        -            "IBM Plex Sans Condensed",
        -            "IBM Plex Sans Devanagari",
        -            "IBM Plex Sans Hebrew",
        -            "IBM Plex Sans JP",
        -            "IBM Plex Sans KR",
        -            "IBM Plex Sans Thai",
        -            "IBM Plex Sans Thai Looped",
        -            "IBM Plex Serif",
        -            "IM Fell DW Pica",
        -            "IM Fell DW Pica SC",
        -            "IM Fell Double Pica",
        -            "IM Fell Double Pica SC",
        -            "IM Fell English",
        -            "IM Fell English SC",
        -            "IM Fell French Canon",
        -            "IM Fell French Canon SC",
        -            "IM Fell Great Primer",
        -            "IM Fell Great Primer SC",
        -            "Iansui",
        -            "Ibarra Real Nova",
        -            "Iceberg",
        -            "Iceland",
        -            "Idiqlat",
        -            "Imbue",
        -            "Imperial Script",
        -            "Imprima",
        -            "Inclusive Sans",
        -            "Inconsolata",
        -            "Inder",
        -            "Indie Flower",
        -            "Ingrid Darling",
        -            "Inika",
        -            "Inknut Antiqua",
        -            "Inria Sans",
        -            "Inria Serif",
        -            "Inspiration",
        -            "Instrument Sans",
        -            "Instrument Serif",
        -            "Intel One Mono",
        -            "Inter",
        -            "Inter Tight",
        -            "Iosevka Charon",
        -            "Iosevka Charon Mono",
        -            "Irish Grover",
        -            "Island Moments",
        -            "Istok Web",
        -            "Italiana",
        -            "Italianno",
        -            "Itim",
        -            "Jacquard 12",
        -            "Jacquard 12 Charted",
        -            "Jacquard 24",
        -            "Jacquard 24 Charted",
        -            "Jacquarda Bastarda 9",
        -            "Jacquarda Bastarda 9 Charted",
        -            "Jacques Francois",
        -            "Jacques Francois Shadow",
        -            "Jaini",
        -            "Jaini Purva",
        -            "Jaldi",
        -            "Jaro",
        -            "Jersey 10",
        -            "Jersey 10 Charted",
        -            "Jersey 15",
        -            "Jersey 15 Charted",
        -            "Jersey 20",
        -            "Jersey 20 Charted",
        -            "Jersey 25",
        -            "Jersey 25 Charted",
        -            "JetBrains Mono",
        -            "Jim Nightshade",
        -            "Joan",
        -            "Jockey One",
        -            "Jolly Lodger",
        -            "Jomhuria",
        -            "Jomolhari",
        -            "Josefin Sans",
        -            "Josefin Slab",
        -            "Jost",
        -            "Joti One",
        -            "Jua",
        -            "Judson",
        -            "Julee",
        -            "Julius Sans One",
        -            "Junge",
        -            "Jura",
        -            "Just Another Hand",
        -            "Just Me Again Down Here",
        -            "K2D",
        -            "Kablammo",
        -            "Kadwa",
        -            "Kaisei Decol",
        -            "Kaisei HarunoUmi",
        -            "Kaisei Opti",
        -            "Kaisei Tokumin",
        -            "Kalam",
        -            "Kalnia",
        -            "Kalnia Glaze",
        -            "Kameron",
        -            "Kanchenjunga",
        -            "Kanit",
        -            "Kantumruy Pro",
        -            "Kapakana",
        -            "Karantina",
        -            "Karla",
        -            "Karla Tamil Inclined",
        -            "Karla Tamil Upright",
        -            "Karma",
        -            "Katibeh",
        -            "Kaushan Script",
        -            "Kavivanar",
        -            "Kavoon",
        -            "Kay Pho Du",
        -            "Kdam Thmor Pro",
        -            "Keania One",
        -            "Kedebideri",
        -            "Kelly Slab",
        -            "Kenia",
        -            "Khand",
        -            "Khmer",
        -            "Khula",
        -            "Kings",
        -            "Kirang Haerang",
        -            "Kite One",
        -            "Kiwi Maru",
        -            "Klee One",
        -            "Knewave",
        -            "KoHo",
        -            "Kodchasan",
        -            "Kode Mono",
        -            "Koh Santepheap",
        -            "Kolker Brush",
        -            "Konkhmer Sleokchher",
        -            "Kosugi",
        -            "Kosugi Maru",
        -            "Kotta One",
        -            "Koulen",
        -            "Kranky",
        -            "Kreon",
        -            "Kristi",
        -            "Krona One",
        -            "Krub",
        -            "Kufam",
        -            "Kulim Park",
        -            "Kumar One",
        -            "Kumar One Outline",
        -            "Kumbh Sans",
        -            "Kurale",
        -            "LINE Seed JP",
        -            "LXGW Marker Gothic",
        -            "LXGW WenKai Mono TC",
        -            "LXGW WenKai TC",
        -            "La Belle Aurore",
        -            "Labrada",
        -            "Lacquer",
        -            "Laila",
        -            "Lakki Reddy",
        -            "Lalezar",
        -            "Lancelot",
        -            "Langar",
        -            "Lateef",
        -            "Lato",
        -            "Lavishly Yours",
        -            "League Gothic",
        -            "League Script",
        -            "League Spartan",
        -            "Leckerli One",
        -            "Ledger",
        -            "Lekton",
        -            "Lemon",
        -            "Lemonada",
        -            "Lexend",
        -            "Lexend Deca",
        -            "Lexend Exa",
        -            "Lexend Giga",
        -            "Lexend Mega",
        -            "Lexend Peta",
        -            "Lexend Tera",
        -            "Lexend Zetta",
        -            "Libertinus Keyboard",
        -            "Libertinus Math",
        -            "Libertinus Mono",
        -            "Libertinus Sans",
        -            "Libertinus Serif",
        -            "Libertinus Serif Display",
        -            "Libre Barcode 128",
        -            "Libre Barcode 128 Text",
        -            "Libre Barcode 39",
        -            "Libre Barcode 39 Extended",
        -            "Libre Barcode 39 Extended Text",
        -            "Libre Barcode 39 Text",
        -            "Libre Barcode EAN13 Text",
        -            "Libre Baskerville",
        -            "Libre Bodoni",
        -            "Libre Caslon Display",
        -            "Libre Caslon Text",
        -            "Libre Franklin",
        -            "Licorice",
        -            "Life Savers",
        -            "Lilex",
        -            "Lilita One",
        -            "Lily Script One",
        -            "Limelight",
        -            "Linden Hill",
        -            "Linefont",
        -            "Lisu Bosa",
        -            "Liter",
        -            "Literata",
        -            "Liu Jian Mao Cao",
        -            "Livvic",
        -            "Lobster",
        -            "Lobster Two",
        -            "Londrina Outline",
        -            "Londrina Shadow",
        -            "Londrina Sketch",
        -            "Londrina Solid",
        -            "Long Cang",
        -            "Lora",
        -            "Love Light",
        -            "Love Ya Like A Sister",
        -            "Loved by the King",
        -            "Lovers Quarrel",
        -            "Luckiest Guy",
        -            "Lugrasimo",
        -            "Lumanosimo",
        -            "Lunasima",
        -            "Lusitana",
        -            "Lustria",
        -            "Luxurious Roman",
        -            "Luxurious Script",
        -            "M PLUS 1",
        -            "M PLUS 1 Code",
        -            "M PLUS 1p",
        -            "M PLUS 2",
        -            "M PLUS Code Latin",
        -            "M PLUS Rounded 1c",
        -            "M PLUS U",
        -            "Ma Shan Zheng",
        -            "Macondo",
        -            "Macondo Swash Caps",
        -            "Mada",
        -            "Madimi One",
        -            "Magra",
        -            "Maiden Orange",
        -            "Maitree",
        -            "Major Mono Display",
        -            "Mako",
        -            "Mali",
        -            "Mallanna",
        -            "Maname",
        -            "Mandali",
        -            "Manjari",
        -            "Manrope",
        -            "Mansalva",
        -            "Manuale",
        -            "Manufacturing Consent",
        -            "Marcellus",
        -            "Marcellus SC",
        -            "Marck Script",
        -            "Margarine",
        -            "Marhey",
        -            "Markazi Text",
        -            "Marko One",
        -            "Marmelad",
        -            "Martel",
        -            "Martel Sans",
        -            "Martian Mono",
        -            "Marvel",
        -            "Matangi",
        -            "Mate",
        -            "Mate SC",
        -            "Matemasie",
        -            "Material Icons",
        -            "Material Icons Outlined",
        -            "Material Icons Round",
        -            "Material Icons Sharp",
        -            "Material Icons Two Tone",
        -            "Material Symbols",
        -            "Material Symbols Outlined",
        -            "Material Symbols Rounded",
        -            "Material Symbols Sharp",
        -            "Maven Pro",
        -            "McLaren",
        -            "Mea Culpa",
        -            "Meddon",
        -            "MedievalSharp",
        -            "Medula One",
        -            "Meera Inimai",
        -            "Megrim",
        -            "Meie Script",
        -            "Menbere",
        -            "Meow Script",
        -            "Merienda",
        -            "Merriweather",
        -            "Merriweather Sans",
        -            "Metal",
        -            "Metal Mania",
        -            "Metamorphous",
        -            "Metrophobic",
        -            "Michroma",
        -            "Micro 5",
        -            "Micro 5 Charted",
        -            "Milonga",
        -            "Miltonian",
        -            "Miltonian Tattoo",
        -            "Mina",
        -            "Mingzat",
        -            "Miniver",
        -            "Miranda Sans",
        -            "Miriam Libre",
        -            "Mirza",
        -            "Miss Fajardose",
        -            "Mitr",
        -            "Mochiy Pop One",
        -            "Mochiy Pop P One",
        -            "Modak",
        -            "Modern Antiqua",
        -            "Moderustic",
        -            "Mogra",
        -            "Mohave",
        -            "Moirai One",
        -            "Molengo",
        -            "Molle",
        -            "Momo Signature",
        -            "Momo Trust Display",
        -            "Momo Trust Sans",
        -            "Mona Sans",
        -            "Monda",
        -            "Monofett",
        -            "Monomakh",
        -            "Monomaniac One",
        -            "Monoton",
        -            "Monsieur La Doulaise",
        -            "Montaga",
        -            "Montagu Slab",
        -            "MonteCarlo",
        -            "Montenegrin Gothic One",
        -            "Montez",
        -            "Montserrat",
        -            "Montserrat Alternates",
        -            "Montserrat Underline",
        -            "Moo Lah Lah",
        -            "Mooli",
        -            "Moon Dance",
        -            "Moul",
        -            "Moulpali",
        -            "Mountains of Christmas",
        -            "Mouse Memoirs",
        -            "Mozilla Headline",
        -            "Mozilla Text",
        -            "Mr Bedfort",
        -            "Mr Dafoe",
        -            "Mr De Haviland",
        -            "Mrs Saint Delafield",
        -            "Mrs Sheppards",
        -            "Ms Madi",
        -            "Mukta",
        -            "Mukta Mahee",
        -            "Mukta Malar",
        -            "Mukta Vaani",
        -            "Mulish",
        -            "Murecho",
        -            "MuseoModerno",
        -            "My Soul",
        -            "Mynerve",
        -            "Mystery Quest",
        -            "NTR",
        -            "Nabla",
        -            "Namdhinggo",
        -            "Nanum Brush Script",
        -            "Nanum Gothic",
        -            "Nanum Gothic Coding",
        -            "Nanum Myeongjo",
        -            "Nanum Pen Script",
        -            "Narnoor",
        -            "Nata Sans",
        -            "National Park",
        -            "Neonderthaw",
        -            "Nerko One",
        -            "Neucha",
        -            "Neuton",
        -            "New Amsterdam",
        -            "New Rocker",
        -            "New Tegomin",
        -            "News Cycle",
        -            "Newsreader",
        -            "Niconne",
        -            "Niramit",
        -            "Nixie One",
        -            "Nobile",
        -            "Nokora",
        -            "Norican",
        -            "Nosifer",
        -            "Notable",
        -            "Nothing You Could Do",
        -            "Noticia Text",
        -            "Noto Color Emoji",
        -            "Noto Emoji",
        -            "Noto Kufi Arabic",
        -            "Noto Music",
        -            "Noto Naskh Arabic",
        -            "Noto Nastaliq Urdu",
        -            "Noto Rashi Hebrew",
        -            "Noto Sans",
        -            "Noto Sans Adlam",
        -            "Noto Sans Adlam Unjoined",
        -            "Noto Sans Anatolian Hieroglyphs",
        -            "Noto Sans Arabic",
        -            "Noto Sans Armenian",
        -            "Noto Sans Avestan",
        -            "Noto Sans Balinese",
        -            "Noto Sans Bamum",
        -            "Noto Sans Bassa Vah",
        -            "Noto Sans Batak",
        -            "Noto Sans Bengali",
        -            "Noto Sans Bhaiksuki",
        -            "Noto Sans Brahmi",
        -            "Noto Sans Buginese",
        -            "Noto Sans Buhid",
        -            "Noto Sans Canadian Aboriginal",
        -            "Noto Sans Carian",
        -            "Noto Sans Caucasian Albanian",
        -            "Noto Sans Chakma",
        -            "Noto Sans Cham",
        -            "Noto Sans Cherokee",
        -            "Noto Sans Chorasmian",
        -            "Noto Sans Coptic",
        -            "Noto Sans Cuneiform",
        -            "Noto Sans Cypriot",
        -            "Noto Sans Cypro Minoan",
        -            "Noto Sans Deseret",
        -            "Noto Sans Devanagari",
        -            "Noto Sans Display",
        -            "Noto Sans Duployan",
        -            "Noto Sans Egyptian Hieroglyphs",
        -            "Noto Sans Elbasan",
        -            "Noto Sans Elymaic",
        -            "Noto Sans Ethiopic",
        -            "Noto Sans Georgian",
        -            "Noto Sans Glagolitic",
        -            "Noto Sans Gothic",
        -            "Noto Sans Grantha",
        -            "Noto Sans Gujarati",
        -            "Noto Sans Gunjala Gondi",
        -            "Noto Sans Gurmukhi",
        -            "Noto Sans HK",
        -            "Noto Sans Hanifi Rohingya",
        -            "Noto Sans Hanunoo",
        -            "Noto Sans Hatran",
        -            "Noto Sans Hebrew",
        -            "Noto Sans Imperial Aramaic",
        -            "Noto Sans Indic Siyaq Numbers",
        -            "Noto Sans Inscriptional Pahlavi",
        -            "Noto Sans Inscriptional Parthian",
        -            "Noto Sans JP",
        -            "Noto Sans Javanese",
        -            "Noto Sans KR",
        -            "Noto Sans Kaithi",
        -            "Noto Sans Kannada",
        -            "Noto Sans Kawi",
        -            "Noto Sans Kayah Li",
        -            "Noto Sans Kharoshthi",
        -            "Noto Sans Khmer",
        -            "Noto Sans Khojki",
        -            "Noto Sans Khudawadi",
        -            "Noto Sans Lao",
        -            "Noto Sans Lao Looped",
        -            "Noto Sans Lepcha",
        -            "Noto Sans Limbu",
        -            "Noto Sans Linear A",
        -            "Noto Sans Linear B",
        -            "Noto Sans Lisu",
        -            "Noto Sans Lycian",
        -            "Noto Sans Lydian",
        -            "Noto Sans Mahajani",
        -            "Noto Sans Malayalam",
        -            "Noto Sans Mandaic",
        -            "Noto Sans Manichaean",
        -            "Noto Sans Marchen",
        -            "Noto Sans Masaram Gondi",
        -            "Noto Sans Math",
        -            "Noto Sans Mayan Numerals",
        -            "Noto Sans Medefaidrin",
        -            "Noto Sans Meetei Mayek",
        -            "Noto Sans Mende Kikakui",
        -            "Noto Sans Meroitic",
        -            "Noto Sans Miao",
        -            "Noto Sans Modi",
        -            "Noto Sans Mongolian",
        -            "Noto Sans Mono",
        -            "Noto Sans Mro",
        -            "Noto Sans Multani",
        -            "Noto Sans Myanmar",
        -            "Noto Sans NKo",
        -            "Noto Sans NKo Unjoined",
        -            "Noto Sans Nabataean",
        -            "Noto Sans Nag Mundari",
        -            "Noto Sans Nandinagari",
        -            "Noto Sans New Tai Lue",
        -            "Noto Sans Newa",
        -            "Noto Sans Nushu",
        -            "Noto Sans Ogham",
        -            "Noto Sans Ol Chiki",
        -            "Noto Sans Old Hungarian",
        -            "Noto Sans Old Italic",
        -            "Noto Sans Old North Arabian",
        -            "Noto Sans Old Permic",
        -            "Noto Sans Old Persian",
        -            "Noto Sans Old Sogdian",
        -            "Noto Sans Old South Arabian",
        -            "Noto Sans Old Turkic",
        -            "Noto Sans Oriya",
        -            "Noto Sans Osage",
        -            "Noto Sans Osmanya",
        -            "Noto Sans Pahawh Hmong",
        -            "Noto Sans Palmyrene",
        -            "Noto Sans Pau Cin Hau",
        -            "Noto Sans PhagsPa",
        -            "Noto Sans Phoenician",
        -            "Noto Sans Psalter Pahlavi",
        -            "Noto Sans Rejang",
        -            "Noto Sans Runic",
        -            "Noto Sans SC",
        -            "Noto Sans Samaritan",
        -            "Noto Sans Saurashtra",
        -            "Noto Sans Sharada",
        -            "Noto Sans Shavian",
        -            "Noto Sans Siddham",
        -            "Noto Sans SignWriting",
        -            "Noto Sans Sinhala",
        -            "Noto Sans Sogdian",
        -            "Noto Sans Sora Sompeng",
        -            "Noto Sans Soyombo",
        -            "Noto Sans Sundanese",
        -            "Noto Sans Sunuwar",
        -            "Noto Sans Syloti Nagri",
        -            "Noto Sans Symbols",
        -            "Noto Sans Symbols 2",
        -            "Noto Sans Syriac",
        -            "Noto Sans Syriac Eastern",
        -            "Noto Sans Syriac Western",
        -            "Noto Sans TC",
        -            "Noto Sans Tagalog",
        -            "Noto Sans Tagbanwa",
        -            "Noto Sans Tai Le",
        -            "Noto Sans Tai Tham",
        -            "Noto Sans Tai Viet",
        -            "Noto Sans Takri",
        -            "Noto Sans Tamil",
        -            "Noto Sans Tamil Supplement",
        -            "Noto Sans Tangsa",
        -            "Noto Sans Telugu",
        -            "Noto Sans Thaana",
        -            "Noto Sans Thai",
        -            "Noto Sans Thai Looped",
        -            "Noto Sans Tifinagh",
        -            "Noto Sans Tirhuta",
        -            "Noto Sans Ugaritic",
        -            "Noto Sans Vai",
        -            "Noto Sans Vithkuqi",
        -            "Noto Sans Wancho",
        -            "Noto Sans Warang Citi",
        -            "Noto Sans Yi",
        -            "Noto Sans Zanabazar Square",
        -            "Noto Serif",
        -            "Noto Serif Ahom",
        -            "Noto Serif Armenian",
        -            "Noto Serif Balinese",
        -            "Noto Serif Bengali",
        -            "Noto Serif Devanagari",
        -            "Noto Serif Display",
        -            "Noto Serif Dives Akuru",
        -            "Noto Serif Dogra",
        -            "Noto Serif Ethiopic",
        -            "Noto Serif Georgian",
        -            "Noto Serif Grantha",
        -            "Noto Serif Gujarati",
        -            "Noto Serif Gurmukhi",
        -            "Noto Serif HK",
        -            "Noto Serif Hebrew",
        -            "Noto Serif Hentaigana",
        -            "Noto Serif JP",
        -            "Noto Serif KR",
        -            "Noto Serif Kannada",
        -            "Noto Serif Khitan Small Script",
        -            "Noto Serif Khmer",
        -            "Noto Serif Khojki",
        -            "Noto Serif Lao",
        -            "Noto Serif Makasar",
        -            "Noto Serif Malayalam",
        -            "Noto Serif Myanmar",
        -            "Noto Serif NP Hmong",
        -            "Noto Serif Old Uyghur",
        -            "Noto Serif Oriya",
        -            "Noto Serif Ottoman Siyaq",
        -            "Noto Serif SC",
        -            "Noto Serif Sinhala",
        -            "Noto Serif TC",
        -            "Noto Serif Tamil",
        -            "Noto Serif Tangut",
        -            "Noto Serif Telugu",
        -            "Noto Serif Thai",
        -            "Noto Serif Tibetan",
        -            "Noto Serif Todhri",
        -            "Noto Serif Toto",
        -            "Noto Serif Vithkuqi",
        -            "Noto Serif Yezidi",
        -            "Noto Traditional Nushu",
        -            "Noto Znamenny Musical Notation",
        -            "Nova Cut",
        -            "Nova Flat",
        -            "Nova Mono",
        -            "Nova Oval",
        -            "Nova Round",
        -            "Nova Script",
        -            "Nova Slim",
        -            "Nova Square",
        -            "Numans",
        -            "Nunito",
        -            "Nunito Sans",
        -            "Nuosu SIL",
        -            "Odibee Sans",
        -            "Odor Mean Chey",
        -            "Offside",
        -            "Oi",
        -            "Ojuju",
        -            "Old Standard TT",
        -            "Oldenburg",
        -            "Ole",
        -            "Oleo Script",
        -            "Oleo Script Swash Caps",
        -            "Onest",
        -            "Oooh Baby",
        -            "Open Sans",
        -            "Oranienbaum",
        -            "Orbit",
        -            "Orbitron",
        -            "Oregano",
        -            "Orelega One",
        -            "Orienta",
        -            "Original Surfer",
        -            "Oswald",
        -            "Outfit",
        -            "Over the Rainbow",
        -            "Overlock",
        -            "Overlock SC",
        -            "Overpass",
        -            "Overpass Mono",
        -            "Ovo",
        -            "Oxanium",
        -            "Oxygen",
        -            "Oxygen Mono",
        -            "PT Mono",
        -            "PT Sans",
        -            "PT Sans Caption",
        -            "PT Sans Narrow",
        -            "PT Serif",
        -            "PT Serif Caption",
        -            "Pacifico",
        -            "Padauk",
        -            "Padyakke Expanded One",
        -            "Palanquin",
        -            "Palanquin Dark",
        -            "Palette Mosaic",
        -            "Pangolin",
        -            "Paprika",
        -            "Parastoo",
        -            "Parisienne",
        -            "Parkinsans",
        -            "Passero One",
        -            "Passion One",
        -            "Passions Conflict",
        -            "Pathway Extreme",
        -            "Pathway Gothic One",
        -            "Patrick Hand",
        -            "Patrick Hand SC",
        -            "Pattaya",
        -            "Patua One",
        -            "Pavanam",
        -            "Paytone One",
        -            "Peddana",
        -            "Peralta",
        -            "Permanent Marker",
        -            "Petemoss",
        -            "Petit Formal Script",
        -            "Petrona",
        -            "Phetsarath",
        -            "Philosopher",
        -            "Phudu",
        -            "Piazzolla",
        -            "Piedra",
        -            "Pinyon Script",
        -            "Pirata One",
        -            "Pixelify Sans",
        -            "Plaster",
        -            "Platypi",
        -            "Play",
        -            "Playball",
        -            "Playfair",
        -            "Playfair Display",
        -            "Playfair Display SC",
        -            "Playpen Sans",
        -            "Playpen Sans Arabic",
        -            "Playpen Sans Deva",
        -            "Playpen Sans Hebrew",
        -            "Playpen Sans Thai",
        -            "Playwrite AR",
        -            "Playwrite AR Guides",
        -            "Playwrite AT",
        -            "Playwrite AT Guides",
        -            "Playwrite AU NSW",
        -            "Playwrite AU NSW Guides",
        -            "Playwrite AU QLD",
        -            "Playwrite AU QLD Guides",
        -            "Playwrite AU SA",
        -            "Playwrite AU SA Guides",
        -            "Playwrite AU TAS",
        -            "Playwrite AU TAS Guides",
        -            "Playwrite AU VIC",
        -            "Playwrite AU VIC Guides",
        -            "Playwrite BE VLG",
        -            "Playwrite BE VLG Guides",
        -            "Playwrite BE WAL",
        -            "Playwrite BE WAL Guides",
        -            "Playwrite BR",
        -            "Playwrite BR Guides",
        -            "Playwrite CA",
        -            "Playwrite CA Guides",
        -            "Playwrite CL",
        -            "Playwrite CL Guides",
        -            "Playwrite CO",
        -            "Playwrite CO Guides",
        -            "Playwrite CU",
        -            "Playwrite CU Guides",
        -            "Playwrite CZ",
        -            "Playwrite CZ Guides",
        -            "Playwrite DE Grund",
        -            "Playwrite DE Grund Guides",
        -            "Playwrite DE LA",
        -            "Playwrite DE LA Guides",
        -            "Playwrite DE SAS",
        -            "Playwrite DE SAS Guides",
        -            "Playwrite DE VA",
        -            "Playwrite DE VA Guides",
        -            "Playwrite DK Loopet",
        -            "Playwrite DK Loopet Guides",
        -            "Playwrite DK Uloopet",
        -            "Playwrite DK Uloopet Guides",
        -            "Playwrite ES",
        -            "Playwrite ES Deco",
        -            "Playwrite ES Deco Guides",
        -            "Playwrite ES Guides",
        -            "Playwrite FR Moderne",
        -            "Playwrite FR Moderne Guides",
        -            "Playwrite FR Trad",
        -            "Playwrite FR Trad Guides",
        -            "Playwrite GB J",
        -            "Playwrite GB J Guides",
        -            "Playwrite GB S",
        -            "Playwrite GB S Guides",
        -            "Playwrite HR",
        -            "Playwrite HR Guides",
        -            "Playwrite HR Lijeva",
        -            "Playwrite HR Lijeva Guides",
        -            "Playwrite HU",
        -            "Playwrite HU Guides",
        -            "Playwrite ID",
        -            "Playwrite ID Guides",
        -            "Playwrite IE",
        -            "Playwrite IE Guides",
        -            "Playwrite IN",
        -            "Playwrite IN Guides",
        -            "Playwrite IS",
        -            "Playwrite IS Guides",
        -            "Playwrite IT Moderna",
        -            "Playwrite IT Moderna Guides",
        -            "Playwrite IT Trad",
        -            "Playwrite IT Trad Guides",
        -            "Playwrite MX",
        -            "Playwrite MX Guides",
        -            "Playwrite NG Modern",
        -            "Playwrite NG Modern Guides",
        -            "Playwrite NL",
        -            "Playwrite NL Guides",
        -            "Playwrite NO",
        -            "Playwrite NO Guides",
        -            "Playwrite NZ",
        -            "Playwrite NZ Basic",
        -            "Playwrite NZ Basic Guides",
        -            "Playwrite NZ Guides",
        -            "Playwrite PE",
        -            "Playwrite PE Guides",
        -            "Playwrite PL",
        -            "Playwrite PL Guides",
        -            "Playwrite PT",
        -            "Playwrite PT Guides",
        -            "Playwrite RO",
        -            "Playwrite RO Guides",
        -            "Playwrite SK",
        -            "Playwrite SK Guides",
        -            "Playwrite TZ",
        -            "Playwrite TZ Guides",
        -            "Playwrite US Modern",
        -            "Playwrite US Modern Guides",
        -            "Playwrite US Trad",
        -            "Playwrite US Trad Guides",
        -            "Playwrite VN",
        -            "Playwrite VN Guides",
        -            "Playwrite ZA",
        -            "Playwrite ZA Guides",
        -            "Pliant",
        -            "Plus Jakarta Sans",
        -            "Pochaevsk",
        -            "Podkova",
        -            "Poetsen One",
        -            "Poiret One",
        -            "Poller One",
        -            "Poltawski Nowy",
        -            "Poly",
        -            "Pompiere",
        -            "Ponnala",
        -            "Ponomar",
        -            "Pontano Sans",
        -            "Poor Story",
        -            "Poppins",
        -            "Port Lligat Sans",
        -            "Port Lligat Slab",
        -            "Potta One",
        -            "Pragati Narrow",
        -            "Praise",
        -            "Prata",
        -            "Preahvihear",
        -            "Press Start 2P",
        -            "Pridi",
        -            "Princess Sofia",
        -            "Prociono",
        -            "Prompt",
        -            "Prosto One",
        -            "Protest Guerrilla",
        -            "Protest Revolution",
        -            "Protest Riot",
        -            "Protest Strike",
        -            "Proza Libre",
        -            "Public Sans",
        -            "Puppies Play",
        -            "Puritan",
        -            "Purple Purse",
        -            "Qahiri",
        -            "Quando",
        -            "Quantico",
        -            "Quattrocento",
        -            "Quattrocento Sans",
        -            "Questrial",
        -            "Quicksand",
        -            "Quintessential",
        -            "Qwigley",
        -            "Qwitcher Grypen",
        -            "REM",
        -            "Racing Sans One",
        -            "Radio Canada",
        -            "Radio Canada Big",
        -            "Radley",
        -            "Rajdhani",
        -            "Rakkas",
        -            "Raleway",
        -            "Raleway Dots",
        -            "Ramabhadra",
        -            "Ramaraja",
        -            "Rambla",
        -            "Rammetto One",
        -            "Rampart One",
        -            "Ramsina",
        -            "Ranchers",
        -            "Rancho",
        -            "Ranga",
        -            "Rasa",
        -            "Rationale",
        -            "Ravi Prakash",
        -            "Readex Pro",
        -            "Recursive",
        -            "Red Hat Display",
        -            "Red Hat Mono",
        -            "Red Hat Text",
        -            "Red Rose",
        -            "Redacted",
        -            "Redacted Script",
        -            "Reddit Mono",
        -            "Reddit Sans",
        -            "Reddit Sans Condensed",
        -            "Redressed",
        -            "Reem Kufi",
        -            "Reem Kufi Fun",
        -            "Reem Kufi Ink",
        -            "Reenie Beanie",
        -            "Reggae One",
        -            "Rethink Sans",
        -            "Revalia",
        -            "Rhodium Libre",
        -            "Ribeye",
        -            "Ribeye Marrow",
        -            "Righteous",
        -            "Risque",
        -            "Road Rage",
        -            "Roboto",
        -            "Roboto Condensed",
        -            "Roboto Flex",
        -            "Roboto Mono",
        -            "Roboto Serif",
        -            "Roboto Slab",
        -            "Rochester",
        -            "Rock 3D",
        -            "Rock Salt",
        -            "RocknRoll One",
        -            "Rokkitt",
        -            "Romanesco",
        -            "Ropa Sans",
        -            "Rosario",
        -            "Rosarivo",
        -            "Rouge Script",
        -            "Rowdies",
        -            "Rozha One",
        -            "Rubik",
        -            "Rubik 80s Fade",
        -            "Rubik Beastly",
        -            "Rubik Broken Fax",
        -            "Rubik Bubbles",
        -            "Rubik Burned",
        -            "Rubik Dirt",
        -            "Rubik Distressed",
        -            "Rubik Doodle Shadow",
        -            "Rubik Doodle Triangles",
        -            "Rubik Gemstones",
        -            "Rubik Glitch",
        -            "Rubik Glitch Pop",
        -            "Rubik Iso",
        -            "Rubik Lines",
        -            "Rubik Maps",
        -            "Rubik Marker Hatch",
        -            "Rubik Maze",
        -            "Rubik Microbe",
        -            "Rubik Mono One",
        -            "Rubik Moonrocks",
        -            "Rubik Pixels",
        -            "Rubik Puddles",
        -            "Rubik Scribble",
        -            "Rubik Spray Paint",
        -            "Rubik Storm",
        -            "Rubik Vinyl",
        -            "Rubik Wet Paint",
        -            "Ruda",
        -            "Rufina",
        -            "Ruge Boogie",
        -            "Ruluko",
        -            "Rum Raisin",
        -            "Ruslan Display",
        -            "Russo One",
        -            "Ruthie",
        -            "Ruwudu",
        -            "Rye",
        -            "SN Pro",
        -            "STIX Two Math",
        -            "STIX Two Text",
        -            "SUSE",
        -            "SUSE Mono",
        -            "Sacramento",
        -            "Sahitya",
        -            "Sail",
        -            "Saira",
        -            "Saira Condensed",
        -            "Saira Extra Condensed",
        -            "Saira Semi Condensed",
        -            "Saira Stencil",
        -            "Salsa",
        -            "Sanchez",
        -            "Sancreek",
        -            "Sankofa Display",
        -            "Sansation",
        -            "Sansita",
        -            "Sansita Swashed",
        -            "Sarabun",
        -            "Sarala",
        -            "Sarina",
        -            "Sarpanch",
        -            "Sassy Frass",
        -            "Satisfy",
        -            "Savate",
        -            "Sawarabi Gothic",
        -            "Sawarabi Mincho",
        -            "Scada",
        -            "Scheherazade New",
        -            "Schibsted Grotesk",
        -            "Schoolbell",
        -            "Science Gothic",
        -            "Scope One",
        -            "Seaweed Script",
        -            "Secular One",
        -            "Sedan",
        -            "Sedan SC",
        -            "Sedgwick Ave",
        -            "Sedgwick Ave Display",
        -            "Sekuya",
        -            "Sen",
        -            "Send Flowers",
        -            "Sevillana",
        -            "Seymour One",
        -            "Shadows Into Light",
        -            "Shadows Into Light Two",
        -            "Shafarik",
        -            "Shalimar",
        -            "Shantell Sans",
        -            "Shanti",
        -            "Share",
        -            "Share Tech",
        -            "Share Tech Mono",
        -            "Shippori Antique",
        -            "Shippori Antique B1",
        -            "Shippori Mincho",
        -            "Shippori Mincho B1",
        -            "Shizuru",
        -            "Shojumaru",
        -            "Short Stack",
        -            "Shrikhand",
        -            "Siemreap",
        -            "Sigmar",
        -            "Sigmar One",
        -            "Signika",
        -            "Signika Negative",
        -            "Silkscreen",
        -            "Simonetta",
        -            "Single Day",
        -            "Sintony",
        -            "Sirin Stencil",
        -            "Sirivennela",
        -            "Six Caps",
        -            "Sixtyfour",
        -            "Sixtyfour Convergence",
        -            "Skranji",
        -            "Slabo 13px",
        -            "Slabo 27px",
        -            "Slackey",
        -            "Slackside One",
        -            "Smokum",
        -            "Smooch",
        -            "Smooch Sans",
        -            "Smythe",
        -            "Sniglet",
        -            "Snippet",
        -            "Snowburst One",
        -            "Sofadi One",
        -            "Sofia",
        -            "Sofia Sans",
        -            "Sofia Sans Condensed",
        -            "Sofia Sans Extra Condensed",
        -            "Sofia Sans Semi Condensed",
        -            "Solitreo",
        -            "Solway",
        -            "Sometype Mono",
        -            "Song Myung",
        -            "Sono",
        -            "Sonsie One",
        -            "Sora",
        -            "Sorts Mill Goudy",
        -            "Sour Gummy",
        -            "Source Code Pro",
        -            "Source Sans 3",
        -            "Source Serif 4",
        -            "Space Grotesk",
        -            "Space Mono",
        -            "Special Elite",
        -            "Special Gothic",
        -            "Special Gothic Condensed One",
        -            "Special Gothic Expanded One",
        -            "Spectral",
        -            "Spectral SC",
        -            "Spicy Rice",
        -            "Spinnaker",
        -            "Spirax",
        -            "Splash",
        -            "Spline Sans",
        -            "Spline Sans Mono",
        -            "Squada One",
        -            "Square Peg",
        -            "Sree Krushnadevaraya",
        -            "Sriracha",
        -            "Srisakdi",
        -            "Staatliches",
        -            "Stack Sans Headline",
        -            "Stack Sans Notch",
        -            "Stack Sans Text",
        -            "Stalemate",
        -            "Stalinist One",
        -            "Stardos Stencil",
        -            "Stick",
        -            "Stick No Bills",
        -            "Stint Ultra Condensed",
        -            "Stint Ultra Expanded",
        -            "Stoke",
        -            "Story Script",
        -            "Strait",
        -            "Strichpunkt Sans",
        -            "Style Script",
        -            "Stylish",
        -            "Sue Ellen Francisco",
        -            "Suez One",
        -            "Sulphur Point",
        -            "Sumana",
        -            "Sunflower",
        -            "Sunshiney",
        -            "Supermercado One",
        -            "Sura",
        -            "Suranna",
        -            "Suravaram",
        -            "Suwannaphum",
        -            "Swanky and Moo Moo",
        -            "Syncopate",
        -            "Syne",
        -            "Syne Mono",
        -            "Syne Tactile",
        -            "TASA Explorer",
        -            "TASA Orbiter",
        -            "Tac One",
        -            "Tagesschrift",
        -            "Tai Heritage Pro",
        -            "Tajawal",
        -            "Tangerine",
        -            "Tapestry",
        -            "Taprom",
        -            "Tauri",
        -            "Taviraj",
        -            "Teachers",
        -            "Teko",
        -            "Tektur",
        -            "Telex",
        -            "Tenali Ramakrishna",
        -            "Tenor Sans",
        -            "Text Me One",
        -            "Texturina",
        -            "Thasadith",
        -            "The Girl Next Door",
        -            "The Nautigal",
        -            "Tienne",
        -            "TikTok Sans",
        -            "Tillana",
        -            "Tilt Neon",
        -            "Tilt Prism",
        -            "Tilt Warp",
        -            "Timmana",
        -            "Tinos",
        -            "Tiny5",
        -            "Tiro Bangla",
        -            "Tiro Devanagari Hindi",
        -            "Tiro Devanagari Marathi",
        -            "Tiro Devanagari Sanskrit",
        -            "Tiro Gurmukhi",
        -            "Tiro Kannada",
        -            "Tiro Tamil",
        -            "Tiro Telugu",
        -            "Tirra",
        -            "Titan One",
        -            "Titillium Web",
        -            "Tomorrow",
        -            "Tourney",
        -            "Trade Winds",
        -            "Train One",
        -            "Triodion",
        -            "Trirong",
        -            "Trispace",
        -            "Trocchi",
        -            "Trochut",
        -            "Truculenta",
        -            "Trykker",
        -            "Tsukimi Rounded",
        -            "Tuffy",
        -            "Tulpen One",
        -            "Turret Road",
        -            "Twinkle Star",
        -            "Ubuntu",
        -            "Ubuntu Condensed",
        -            "Ubuntu Mono",
        -            "Ubuntu Sans",
        -            "Ubuntu Sans Mono",
        -            "Uchen",
        -            "Ultra",
        -            "Unbounded",
        -            "Uncial Antiqua",
        -            "Underdog",
        -            "Unica One",
        -            "UnifrakturCook",
        -            "UnifrakturMaguntia",
        -            "Unkempt",
        -            "Unlock",
        -            "Unna",
        -            "UoqMunThenKhung",
        -            "Updock",
        -            "Urbanist",
        -            "VT323",
        -            "Vampiro One",
        -            "Varela",
        -            "Varela Round",
        -            "Varta",
        -            "Vast Shadow",
        -            "Vazirmatn",
        -            "Vend Sans",
        -            "Vesper Libre",
        -            "Viaoda Libre",
        -            "Vibes",
        -            "Vibur",
        -            "Victor Mono",
        -            "Vidaloka",
        -            "Viga",
        -            "Vina Sans",
        -            "Voces",
        -            "Volkhov",
        -            "Vollkorn",
        -            "Vollkorn SC",
        -            "Voltaire",
        -            "Vujahday Script",
        -            "WDXL Lubrifont JP N",
        -            "WDXL Lubrifont SC",
        -            "WDXL Lubrifont TC",
        -            "Waiting for the Sunrise",
        -            "Wallpoet",
        -            "Walter Turncoat",
        -            "Warnes",
        -            "Water Brush",
        -            "Waterfall",
        -            "Wavefont",
        -            "Wellfleet",
        -            "Wendy One",
        -            "Whisper",
        -            "WindSong",
        -            "Winky Rough",
        -            "Winky Sans",
        -            "Wire One",
        -            "Wittgenstein",
        -            "Wix Madefor Display",
        -            "Wix Madefor Text",
        -            "Work Sans",
        -            "Workbench",
        -            "Xanh Mono",
        -            "Yaldevi",
        -            "Yanone Kaffeesatz",
        -            "Yantramanav",
        -            "Yarndings 12",
        -            "Yarndings 12 Charted",
        -            "Yarndings 20",
        -            "Yarndings 20 Charted",
        -            "Yatra One",
        -            "Yellowtail",
        -            "Yeon Sung",
        -            "Yeseva One",
        -            "Yesteryear",
        -            "Yomogi",
        -            "Young Serif",
        -            "Yrsa",
        -            "Ysabeau",
        -            "Ysabeau Infant",
        -            "Ysabeau Office",
        -            "Ysabeau SC",
        -            "Yuji Boku",
        -            "Yuji Hentaigana Akari",
        -            "Yuji Hentaigana Akebono",
        -            "Yuji Mai",
        -            "Yuji Syuku",
        -            "Yusei Magic",
        -            "Yuyu",
        -            "Yuyu Short",
        -            "ZCOOL KuaiLe",
        -            "ZCOOL QingKe HuangYou",
        -            "ZCOOL XiaoWei",
        -            "Zain",
        -            "Zalando Sans",
        -            "Zalando Sans Expanded",
        -            "Zalando Sans SemiExpanded",
        -            "Zen Antique",
        -            "Zen Antique Soft",
        -            "Zen Dots",
        -            "Zen Kaku Gothic Antique",
        -            "Zen Kaku Gothic New",
        -            "Zen Kurenaido",
        -            "Zen Loop",
        -            "Zen Maru Gothic",
        -            "Zen Old Mincho",
        -            "Zen Tokyo Zoo",
        -            "Zeyada",
        -            "Zhi Mang Xing",
        -            "Zilla Slab",
        -            "Zilla Slab Highlight"
        -          ],
        -          "type": "string"
        -        },
        -        "fontSize": {
        -          "type": "number"
        -        },
        -        "footerColor": {
        -          "type": "string"
        -        },
        -        "footerFontSize": {
        -          "type": "number"
        -        },
        -        "footerGap": {
        -          "type": "number"
        -        },
        -        "footerLinkColor": {
        -          "type": "string"
        -        },
        -        "gridColor": {
        -          "type": "string"
        -        },
        -        "gridLineWidth": {
        -          "type": "number"
        -        },
        -        "gridLines": {
        -          "enum": [
        -            "none",
        -            "value",
        -            "both"
        -          ],
        -          "type": "string"
        -        },
        -        "headerGap": {
        -          "type": "number"
        -        },
        -        "labelColor": {
        -          "type": "string"
        -        },
        -        "labelFontSize": {
        -          "type": "number"
        -        },
        -        "labelFontWeight": {
        -          "type": "string"
        -        },
        -        "labelHaloWidth": {
        -          "type": "number"
        -        },
        -        "labelMutedFontWeight": {
        -          "type": "string"
        -        },
        -        "labelMutedOpacity": {
        -          "type": "number"
        -        },
        -        "lineStrokeWidth": {
        -          "type": "number"
        -        },
        -        "numericFontFamily": {
        -          "enum": [
        -            "ABeeZee",
        -            "ADLaM Display",
        -            "AR One Sans",
        -            "Abel",
        -            "Abhaya Libre",
        -            "Aboreto",
        -            "Abril Fatface",
        -            "Abyssinica SIL",
        -            "Aclonica",
        -            "Acme",
        -            "Actor",
        -            "Adamina",
        -            "Advent Pro",
        -            "Afacad",
        -            "Afacad Flux",
        -            "Agbalumo",
        -            "Agdasima",
        -            "Agu Display",
        -            "Aguafina Script",
        -            "Akatab",
        -            "Akaya Kanadaka",
        -            "Akaya Telivigala",
        -            "Akronim",
        -            "Akshar",
        -            "Akt",
        -            "Aladin",
        -            "Alan Sans",
        -            "Alata",
        -            "Alatsi",
        -            "Albert Sans",
        -            "Aldrich",
        -            "Alef",
        -            "Alegreya",
        -            "Alegreya SC",
        -            "Alegreya Sans",
        -            "Alegreya Sans SC",
        -            "Aleo",
        -            "Alex Brush",
        -            "Alexandria",
        -            "Alfa Slab One",
        -            "Alice",
        -            "Alien Block",
        -            "Alike",
        -            "Alike Angular",
        -            "Alkalami",
        -            "Alkatra",
        -            "Allan",
        -            "Allerta",
        -            "Allerta Stencil",
        -            "Allison",
        -            "Allkin",
        -            "Allura",
        -            "Almarai",
        -            "Almendra",
        -            "Almendra Display",
        -            "Almendra SC",
        -            "Alumni Sans",
        -            "Alumni Sans Collegiate One",
        -            "Alumni Sans Inline One",
        -            "Alumni Sans Pinstripe",
        -            "Alumni Sans SC",
        -            "Alyamama",
        -            "Amarante",
        -            "Amaranth",
        -            "Amarna",
        -            "Amatic SC",
        -            "Amethysta",
        -            "Amiko",
        -            "Amiri",
        -            "Amiri Quran",
        -            "Amita",
        -            "Anaheim",
        -            "Ancizar Sans",
        -            "Ancizar Serif",
        -            "Andada Pro",
        -            "Andika",
        -            "Anek Bangla",
        -            "Anek Devanagari",
        -            "Anek Gujarati",
        -            "Anek Gurmukhi",
        -            "Anek Kannada",
        -            "Anek Latin",
        -            "Anek Malayalam",
        -            "Anek Odia",
        -            "Anek Tamil",
        -            "Anek Telugu",
        -            "Angkor",
        -            "Annapurna SIL",
        -            "Annie Use Your Telescope",
        -            "Anonymous Pro",
        -            "Anta",
        -            "Antic",
        -            "Antic Didone",
        -            "Antic Slab",
        -            "Anton",
        -            "Anton SC",
        -            "Antonio",
        -            "Anuphan",
        -            "Anybody",
        -            "Aoboshi One",
        -            "Arapey",
        -            "Arbutus",
        -            "Arbutus Slab",
        -            "Architects Daughter",
        -            "Archivo",
        -            "Archivo Black",
        -            "Archivo Narrow",
        -            "Are You Serious",
        -            "Aref Ruqaa",
        -            "Aref Ruqaa Ink",
        -            "Arima",
        -            "Arimo",
        -            "Arizonia",
        -            "Armata",
        -            "Arsenal",
        -            "Arsenal SC",
        -            "Artifika",
        -            "Arvo",
        -            "Arya",
        -            "Asap",
        -            "Asap Condensed",
        -            "Asar",
        -            "Asimovian",
        -            "Asset",
        -            "Assistant",
        -            "Asta Sans",
        -            "Astloch",
        -            "Asul",
        -            "Athiti",
        -            "Atkinson Hyperlegible",
        -            "Atkinson Hyperlegible Mono",
        -            "Atkinson Hyperlegible Next",
        -            "Atma",
        -            "Atomic Age",
        -            "Aubrey",
        -            "Audiowide",
        -            "Autour One",
        -            "Average",
        -            "Average Sans",
        -            "Averia Gruesa Libre",
        -            "Averia Libre",
        -            "Averia Sans Libre",
        -            "Averia Serif Libre",
        -            "Azeret Mono",
        -            "B612",
        -            "B612 Mono",
        -            "BBH Bartle",
        -            "BBH Bogle",
        -            "BBH Hegarty",
        -            "BIZ UDGothic",
        -            "BIZ UDMincho",
        -            "BIZ UDPGothic",
        -            "BIZ UDPMincho",
        -            "BJCree",
        -            "Babylonica",
        -            "Bacasime Antique",
        -            "Bad Script",
        -            "Badeen Display",
        -            "Bagel Fat One",
        -            "Bahiana",
        -            "Bahianita",
        -            "Bai Jamjuree",
        -            "Bakbak One",
        -            "Ballet",
        -            "Baloo 2",
        -            "Baloo Bhai 2",
        -            "Baloo Bhaijaan 2",
        -            "Baloo Bhaina 2",
        -            "Baloo Chettan 2",
        -            "Baloo Da 2",
        -            "Baloo Paaji 2",
        -            "Baloo Tamma 2",
        -            "Baloo Tammudu 2",
        -            "Baloo Thambi 2",
        -            "Balsamiq Sans",
        -            "Balthazar",
        -            "Bangers",
        -            "Barlow",
        -            "Barlow Condensed",
        -            "Barlow Semi Condensed",
        -            "Barriecito",
        -            "Barrio",
        -            "Basic",
        -            "Baskervville",
        -            "Baskervville SC",
        -            "Battambang",
        -            "Baumans",
        -            "Bayon",
        -            "Be Vietnam Pro",
        -            "Beau Rivage",
        -            "Bebas Neue",
        -            "Beiruti",
        -            "Belanosima",
        -            "Belgrano",
        -            "Bellefair",
        -            "Belleza",
        -            "Bellota",
        -            "Bellota Text",
        -            "BenchNine",
        -            "Benne",
        -            "Bentham",
        -            "Berkshire Swash",
        -            "Besley",
        -            "Betania Patmos",
        -            "Betania Patmos GDL",
        -            "Betania Patmos In",
        -            "Betania Patmos In GDL",
        -            "Beth Ellen",
        -            "Bevan",
        -            "BhuTuka Expanded One",
        -            "Big Shoulders",
        -            "Big Shoulders Inline",
        -            "Big Shoulders Stencil",
        -            "Bigelow Rules",
        -            "Bigshot One",
        -            "Bilbo",
        -            "Bilbo Swash Caps",
        -            "BioRhyme",
        -            "BioRhyme Expanded",
        -            "Birthstone",
        -            "Birthstone Bounce",
        -            "Biryani",
        -            "Bitcount",
        -            "Bitcount Grid Double",
        -            "Bitcount Grid Double Ink",
        -            "Bitcount Grid Single",
        -            "Bitcount Grid Single Ink",
        -            "Bitcount Ink",
        -            "Bitcount Prop Double",
        -            "Bitcount Prop Double Ink",
        -            "Bitcount Prop Single",
        -            "Bitcount Prop Single Ink",
        -            "Bitcount Single",
        -            "Bitcount Single Ink",
        -            "Bitter",
        -            "Black And White Picture",
        -            "Black Han Sans",
        -            "Black Ops One",
        -            "Blaka",
        -            "Blaka Hollow",
        -            "Blaka Ink",
        -            "Blinker",
        -            "Bodoni Moda",
        -            "Bodoni Moda SC",
        -            "Bokor",
        -            "Boldonse",
        -            "Bona Nova",
        -            "Bona Nova SC",
        -            "Bonbon",
        -            "Bonheur Royale",
        -            "Boogaloo",
        -            "Borel",
        -            "Bowlby One",
        -            "Bowlby One SC",
        -            "Bpmf Huninn",
        -            "Bpmf Iansui",
        -            "Bpmf Zihi Kai Std",
        -            "Braah One",
        -            "Brawler",
        -            "Bree Serif",
        -            "Bricolage Grotesque",
        -            "Bruno Ace",
        -            "Bruno Ace SC",
        -            "Brygada 1918",
        -            "Bubblegum Sans",
        -            "Bubbler One",
        -            "Buda",
        -            "Buenard",
        -            "Bungee",
        -            "Bungee Hairline",
        -            "Bungee Inline",
        -            "Bungee Outline",
        -            "Bungee Shade",
        -            "Bungee Spice",
        -            "Bungee Tint",
        -            "Butcherman",
        -            "Butterfly Kids",
        -            "Bytesized",
        -            "Cabin",
        -            "Cabin Condensed",
        -            "Cabin Sketch",
        -            "Cactus Classical Serif",
        -            "Caesar Dressing",
        -            "Cagliostro",
        -            "Cairo",
        -            "Cairo Play",
        -            "Cal Sans",
        -            "Caladea",
        -            "Calistoga",
        -            "Calligraffitti",
        -            "Cambay",
        -            "Cambo",
        -            "Candal",
        -            "Cantarell",
        -            "Cantata One",
        -            "Cantora One",
        -            "Caprasimo",
        -            "Capriola",
        -            "Caramel",
        -            "Carattere",
        -            "Cardo",
        -            "Carlito",
        -            "Carme",
        -            "Carrois Gothic",
        -            "Carrois Gothic SC",
        -            "Carter One",
        -            "Cascadia Code",
        -            "Cascadia Mono",
        -            "Castoro",
        -            "Castoro Titling",
        -            "Catamaran",
        -            "Caudex",
        -            "Cause",
        -            "Caveat",
        -            "Caveat Brush",
        -            "Cedarville Cursive",
        -            "Ceviche One",
        -            "Chakra Petch",
        -            "Changa",
        -            "Changa One",
        -            "Chango",
        -            "Charis SIL",
        -            "Charm",
        -            "Charmonman",
        -            "Chathura",
        -            "Chau Philomene One",
        -            "Chela One",
        -            "Chelsea Market",
        -            "Chenla",
        -            "Cherish",
        -            "Cherry Bomb One",
        -            "Cherry Cream Soda",
        -            "Cherry Swash",
        -            "Chewy",
        -            "Chicle",
        -            "Chilanka",
        -            "Chiron GoRound TC",
        -            "Chiron Hei HK",
        -            "Chiron Sung HK",
        -            "Chivo",
        -            "Chivo Mono",
        -            "Chocolate Classical Sans",
        -            "Chokokutai",
        -            "Chonburi",
        -            "Cinzel",
        -            "Cinzel Decorative",
        -            "Clicker Script",
        -            "Climate Crisis",
        -            "Coda",
        -            "Codystar",
        -            "Coiny",
        -            "Combo",
        -            "Comfortaa",
        -            "Comforter",
        -            "Comforter Brush",
        -            "Comic Neue",
        -            "Comic Relief",
        -            "Coming Soon",
        -            "Comme",
        -            "Commissioner",
        -            "Concert One",
        -            "Condiment",
        -            "Content",
        -            "Contrail One",
        -            "Convergence",
        -            "Cookie",
        -            "Copse",
        -            "Coral Pixels",
        -            "Corben",
        -            "Corinthia",
        -            "Cormorant",
        -            "Cormorant Garamond",
        -            "Cormorant Infant",
        -            "Cormorant SC",
        -            "Cormorant Unicase",
        -            "Cormorant Upright",
        -            "Cossette Texte",
        -            "Cossette Titre",
        -            "Courgette",
        -            "Courier Prime",
        -            "Cousine",
        -            "Coustard",
        -            "Covered By Your Grace",
        -            "Crafty Girls",
        -            "Creepster",
        -            "Crete Round",
        -            "Crimson Pro",
        -            "Crimson Text",
        -            "Croissant One",
        -            "Crushed",
        -            "Cuprum",
        -            "Cute Font",
        -            "Cutive",
        -            "Cutive Mono",
        -            "DM Mono",
        -            "DM Sans",
        -            "DM Serif Display",
        -            "DM Serif Text",
        -            "Dai Banna SIL",
        -            "Damion",
        -            "Dancing Script",
        -            "Danfo",
        -            "Dangrek",
        -            "Darker Grotesque",
        -            "Darumadrop One",
        -            "Datatype",
        -            "David Libre",
        -            "Dawning of a New Day",
        -            "Days One",
        -            "Dekko",
        -            "Dela Gothic One",
        -            "Delicious Handrawn",
        -            "Delius",
        -            "Delius Swash Caps",
        -            "Delius Unicase",
        -            "Della Respira",
        -            "Denk One",
        -            "Devonshire",
        -            "Dhurjati",
        -            "Didact Gothic",
        -            "Diphylleia",
        -            "Diplomata",
        -            "Diplomata SC",
        -            "Do Hyeon",
        -            "Dokdo",
        -            "Domine",
        -            "Donegal One",
        -            "Dongle",
        -            "Doppio One",
        -            "Dorsa",
        -            "Dosis",
        -            "DotGothic16",
        -            "Doto",
        -            "Dr Sugiyama",
        -            "Duru Sans",
        -            "DynaPuff",
        -            "Dynalight",
        -            "EB Garamond",
        -            "Eagle Lake",
        -            "East Sea Dokdo",
        -            "Eater",
        -            "Economica",
        -            "Eczar",
        -            "Edu AU VIC WA NT Arrows",
        -            "Edu AU VIC WA NT Dots",
        -            "Edu AU VIC WA NT Guides",
        -            "Edu AU VIC WA NT Hand",
        -            "Edu AU VIC WA NT Pre",
        -            "Edu NSW ACT Cursive",
        -            "Edu NSW ACT Foundation",
        -            "Edu NSW ACT Hand Pre",
        -            "Edu QLD Beginner",
        -            "Edu QLD Hand",
        -            "Edu SA Beginner",
        -            "Edu SA Hand",
        -            "Edu TAS Beginner",
        -            "Edu VIC WA NT Beginner",
        -            "Edu VIC WA NT Hand",
        -            "Edu VIC WA NT Hand Pre",
        -            "El Messiri",
        -            "Electrolize",
        -            "Elms Sans",
        -            "Elsie",
        -            "Elsie Swash Caps",
        -            "Emblema One",
        -            "Emilys Candy",
        -            "Encode Sans",
        -            "Encode Sans Condensed",
        -            "Encode Sans Expanded",
        -            "Encode Sans SC",
        -            "Encode Sans Semi Condensed",
        -            "Encode Sans Semi Expanded",
        -            "Engagement",
        -            "Englebert",
        -            "Enriqueta",
        -            "Ephesis",
        -            "Epilogue",
        -            "Epunda Sans",
        -            "Epunda Slab",
        -            "Erica One",
        -            "Esteban",
        -            "Estedad",
        -            "Estonia",
        -            "Euphoria Script",
        -            "Ewert",
        -            "Exile",
        -            "Exo",
        -            "Exo 2",
        -            "Expletus Sans",
        -            "Explora",
        -            "Faculty Glyphic",
        -            "Fahkwang",
        -            "Familjen Grotesk",
        -            "Fanwood Text",
        -            "Farro",
        -            "Farsan",
        -            "Fascinate",
        -            "Fascinate Inline",
        -            "Faster One",
        -            "Fasthand",
        -            "Fauna One",
        -            "Faustina",
        -            "Federant",
        -            "Federo",
        -            "Felipa",
        -            "Fenix",
        -            "Festive",
        -            "Figtree",
        -            "Finger Paint",
        -            "Finlandica Headline",
        -            "Finlandica Text",
        -            "Fira Code",
        -            "Fira Mono",
        -            "Fira Sans",
        -            "Fira Sans Condensed",
        -            "Fira Sans Extra Condensed",
        -            "Fjalla One",
        -            "Fjord One",
        -            "Flamenco",
        -            "Flavors",
        -            "Fleur De Leah",
        -            "Flow Block",
        -            "Flow Circular",
        -            "Flow Rounded",
        -            "Foldit",
        -            "Fondamento",
        -            "Fontdiner Swanky",
        -            "Forum",
        -            "Fragment Mono",
        -            "Francois One",
        -            "Frank Ruhl Libre",
        -            "Fraunces",
        -            "Freckle Face",
        -            "Fredericka the Great",
        -            "Fredoka",
        -            "Freehand",
        -            "Freeman",
        -            "Fresca",
        -            "Frijole",
        -            "Fruktur",
        -            "Fugaz One",
        -            "Fuggles",
        -            "Funnel Display",
        -            "Funnel Sans",
        -            "Fustat",
        -            "Fuzzy Bubbles",
        -            "GFS Didot",
        -            "GFS Neohellenic",
        -            "Ga Maamli",
        -            "Gabarito",
        -            "Gabriela",
        -            "Gaegu",
        -            "Gafata",
        -            "Gajraj One",
        -            "Galada",
        -            "Galdeano",
        -            "Galindo",
        -            "Gamja Flower",
        -            "Gantari",
        -            "Gasoek One",
        -            "Gayathri",
        -            "Geist",
        -            "Geist Mono",
        -            "Geist Pixel",
        -            "Gelasio",
        -            "Gemunu Libre",
        -            "Genos",
        -            "Gentium Book Plus",
        -            "Gentium Plus",
        -            "Geo",
        -            "Geologica",
        -            "Geom",
        -            "Geomini",
        -            "Georama",
        -            "Geostar",
        -            "Geostar Fill",
        -            "Germania One",
        -            "Gideon Roman",
        -            "Gidole",
        -            "Gidugu",
        -            "Gilda Display",
        -            "Girassol",
        -            "Give You Glory",
        -            "Glass Antiqua",
        -            "Glegoo",
        -            "Gloock",
        -            "Gloria Hallelujah",
        -            "Glory",
        -            "Gluten",
        -            "Goblin One",
        -            "Gochi Hand",
        -            "Goldman",
        -            "Golos Text",
        -            "Google Sans",
        -            "Google Sans Code",
        -            "Google Sans Flex",
        -            "Gorditas",
        -            "Gothic A1",
        -            "Gotu",
        -            "Goudy Bookletter 1911",
        -            "Gowun Batang",
        -            "Gowun Dodum",
        -            "Graduate",
        -            "Grand Hotel",
        -            "Grandiflora One",
        -            "Grandstander",
        -            "Grape Nuts",
        -            "Gravitas One",
        -            "Great Vibes",
        -            "Grechen Fuemen",
        -            "Grenze",
        -            "Grenze Gotisch",
        -            "Grey Qo",
        -            "Griffy",
        -            "Gruppo",
        -            "Gudea",
        -            "Gugi",
        -            "Gulzar",
        -            "Gupter",
        -            "Gurajada",
        -            "Gveret Levin",
        -            "Gwendolyn",
        -            "Habibi",
        -            "Hachi Maru Pop",
        -            "Hahmlet",
        -            "Halant",
        -            "Hammersmith One",
        -            "Hanalei",
        -            "Hanalei Fill",
        -            "Handjet",
        -            "Handlee",
        -            "Hanken Grotesk",
        -            "Hanuman",
        -            "Happy Monkey",
        -            "Harmattan",
        -            "Headland One",
        -            "Hedvig Letters Sans",
        -            "Hedvig Letters Serif",
        -            "Heebo",
        -            "Henny Penny",
        -            "Hepta Slab",
        -            "Herr Von Muellerhoff",
        -            "Hi Melody",
        -            "Hibur Mono",
        -            "Hina Mincho",
        -            "Hind",
        -            "Hind Guntur",
        -            "Hind Madurai",
        -            "Hind Mysuru",
        -            "Hind Siliguri",
        -            "Hind Vadodara",
        -            "Holtwood One SC",
        -            "Homemade Apple",
        -            "Homenaje",
        -            "Honk",
        -            "Host Grotesk",
        -            "Hubballi",
        -            "Hubot Sans",
        -            "Huninn",
        -            "Hurricane",
        -            "IBM Plex Mono",
        -            "IBM Plex Sans",
        -            "IBM Plex Sans Arabic",
        -            "IBM Plex Sans Condensed",
        -            "IBM Plex Sans Devanagari",
        -            "IBM Plex Sans Hebrew",
        -            "IBM Plex Sans JP",
        -            "IBM Plex Sans KR",
        -            "IBM Plex Sans Thai",
        -            "IBM Plex Sans Thai Looped",
        -            "IBM Plex Serif",
        -            "IM Fell DW Pica",
        -            "IM Fell DW Pica SC",
        -            "IM Fell Double Pica",
        -            "IM Fell Double Pica SC",
        -            "IM Fell English",
        -            "IM Fell English SC",
        -            "IM Fell French Canon",
        -            "IM Fell French Canon SC",
        -            "IM Fell Great Primer",
        -            "IM Fell Great Primer SC",
        -            "Iansui",
        -            "Ibarra Real Nova",
        -            "Iceberg",
        -            "Iceland",
        -            "Idiqlat",
        -            "Imbue",
        -            "Imperial Script",
        -            "Imprima",
        -            "Inclusive Sans",
        -            "Inconsolata",
        -            "Inder",
        -            "Indie Flower",
        -            "Ingrid Darling",
        -            "Inika",
        -            "Inknut Antiqua",
        -            "Inria Sans",
        -            "Inria Serif",
        -            "Inspiration",
        -            "Instrument Sans",
        -            "Instrument Serif",
        -            "Intel One Mono",
        -            "Inter",
        -            "Inter Tight",
        -            "Iosevka Charon",
        -            "Iosevka Charon Mono",
        -            "Irish Grover",
        -            "Island Moments",
        -            "Istok Web",
        -            "Italiana",
        -            "Italianno",
        -            "Itim",
        -            "Jacquard 12",
        -            "Jacquard 12 Charted",
        -            "Jacquard 24",
        -            "Jacquard 24 Charted",
        -            "Jacquarda Bastarda 9",
        -            "Jacquarda Bastarda 9 Charted",
        -            "Jacques Francois",
        -            "Jacques Francois Shadow",
        -            "Jaini",
        -            "Jaini Purva",
        -            "Jaldi",
        -            "Jaro",
        -            "Jersey 10",
        -            "Jersey 10 Charted",
        -            "Jersey 15",
        -            "Jersey 15 Charted",
        -            "Jersey 20",
        -            "Jersey 20 Charted",
        -            "Jersey 25",
        -            "Jersey 25 Charted",
        -            "JetBrains Mono",
        -            "Jim Nightshade",
        -            "Joan",
        -            "Jockey One",
        -            "Jolly Lodger",
        -            "Jomhuria",
        -            "Jomolhari",
        -            "Josefin Sans",
        -            "Josefin Slab",
        -            "Jost",
        -            "Joti One",
        -            "Jua",
        -            "Judson",
        -            "Julee",
        -            "Julius Sans One",
        -            "Junge",
        -            "Jura",
        -            "Just Another Hand",
        -            "Just Me Again Down Here",
        -            "K2D",
        -            "Kablammo",
        -            "Kadwa",
        -            "Kaisei Decol",
        -            "Kaisei HarunoUmi",
        -            "Kaisei Opti",
        -            "Kaisei Tokumin",
        -            "Kalam",
        -            "Kalnia",
        -            "Kalnia Glaze",
        -            "Kameron",
        -            "Kanchenjunga",
        -            "Kanit",
        -            "Kantumruy Pro",
        -            "Kapakana",
        -            "Karantina",
        -            "Karla",
        -            "Karla Tamil Inclined",
        -            "Karla Tamil Upright",
        -            "Karma",
        -            "Katibeh",
        -            "Kaushan Script",
        -            "Kavivanar",
        -            "Kavoon",
        -            "Kay Pho Du",
        -            "Kdam Thmor Pro",
        -            "Keania One",
        -            "Kedebideri",
        -            "Kelly Slab",
        -            "Kenia",
        -            "Khand",
        -            "Khmer",
        -            "Khula",
        -            "Kings",
        -            "Kirang Haerang",
        -            "Kite One",
        -            "Kiwi Maru",
        -            "Klee One",
        -            "Knewave",
        -            "KoHo",
        -            "Kodchasan",
        -            "Kode Mono",
        -            "Koh Santepheap",
        -            "Kolker Brush",
        -            "Konkhmer Sleokchher",
        -            "Kosugi",
        -            "Kosugi Maru",
        -            "Kotta One",
        -            "Koulen",
        -            "Kranky",
        -            "Kreon",
        -            "Kristi",
        -            "Krona One",
        -            "Krub",
        -            "Kufam",
        -            "Kulim Park",
        -            "Kumar One",
        -            "Kumar One Outline",
        -            "Kumbh Sans",
        -            "Kurale",
        -            "LINE Seed JP",
        -            "LXGW Marker Gothic",
        -            "LXGW WenKai Mono TC",
        -            "LXGW WenKai TC",
        -            "La Belle Aurore",
        -            "Labrada",
        -            "Lacquer",
        -            "Laila",
        -            "Lakki Reddy",
        -            "Lalezar",
        -            "Lancelot",
        -            "Langar",
        -            "Lateef",
        -            "Lato",
        -            "Lavishly Yours",
        -            "League Gothic",
        -            "League Script",
        -            "League Spartan",
        -            "Leckerli One",
        -            "Ledger",
        -            "Lekton",
        -            "Lemon",
        -            "Lemonada",
        -            "Lexend",
        -            "Lexend Deca",
        -            "Lexend Exa",
        -            "Lexend Giga",
        -            "Lexend Mega",
        -            "Lexend Peta",
        -            "Lexend Tera",
        -            "Lexend Zetta",
        -            "Libertinus Keyboard",
        -            "Libertinus Math",
        -            "Libertinus Mono",
        -            "Libertinus Sans",
        -            "Libertinus Serif",
        -            "Libertinus Serif Display",
        -            "Libre Barcode 128",
        -            "Libre Barcode 128 Text",
        -            "Libre Barcode 39",
        -            "Libre Barcode 39 Extended",
        -            "Libre Barcode 39 Extended Text",
        -            "Libre Barcode 39 Text",
        -            "Libre Barcode EAN13 Text",
        -            "Libre Baskerville",
        -            "Libre Bodoni",
        -            "Libre Caslon Display",
        -            "Libre Caslon Text",
        -            "Libre Franklin",
        -            "Licorice",
        -            "Life Savers",
        -            "Lilex",
        -            "Lilita One",
        -            "Lily Script One",
        -            "Limelight",
        -            "Linden Hill",
        -            "Linefont",
        -            "Lisu Bosa",
        -            "Liter",
        -            "Literata",
        -            "Liu Jian Mao Cao",
        -            "Livvic",
        -            "Lobster",
        -            "Lobster Two",
        -            "Londrina Outline",
        -            "Londrina Shadow",
        -            "Londrina Sketch",
        -            "Londrina Solid",
        -            "Long Cang",
        -            "Lora",
        -            "Love Light",
        -            "Love Ya Like A Sister",
        -            "Loved by the King",
        -            "Lovers Quarrel",
        -            "Luckiest Guy",
        -            "Lugrasimo",
        -            "Lumanosimo",
        -            "Lunasima",
        -            "Lusitana",
        -            "Lustria",
        -            "Luxurious Roman",
        -            "Luxurious Script",
        -            "M PLUS 1",
        -            "M PLUS 1 Code",
        -            "M PLUS 1p",
        -            "M PLUS 2",
        -            "M PLUS Code Latin",
        -            "M PLUS Rounded 1c",
        -            "M PLUS U",
        -            "Ma Shan Zheng",
        -            "Macondo",
        -            "Macondo Swash Caps",
        -            "Mada",
        -            "Madimi One",
        -            "Magra",
        -            "Maiden Orange",
        -            "Maitree",
        -            "Major Mono Display",
        -            "Mako",
        -            "Mali",
        -            "Mallanna",
        -            "Maname",
        -            "Mandali",
        -            "Manjari",
        -            "Manrope",
        -            "Mansalva",
        -            "Manuale",
        -            "Manufacturing Consent",
        -            "Marcellus",
        -            "Marcellus SC",
        -            "Marck Script",
        -            "Margarine",
        -            "Marhey",
        -            "Markazi Text",
        -            "Marko One",
        -            "Marmelad",
        -            "Martel",
        -            "Martel Sans",
        -            "Martian Mono",
        -            "Marvel",
        -            "Matangi",
        -            "Mate",
        -            "Mate SC",
        -            "Matemasie",
        -            "Material Icons",
        -            "Material Icons Outlined",
        -            "Material Icons Round",
        -            "Material Icons Sharp",
        -            "Material Icons Two Tone",
        -            "Material Symbols",
        -            "Material Symbols Outlined",
        -            "Material Symbols Rounded",
        -            "Material Symbols Sharp",
        -            "Maven Pro",
        -            "McLaren",
        -            "Mea Culpa",
        -            "Meddon",
        -            "MedievalSharp",
        -            "Medula One",
        -            "Meera Inimai",
        -            "Megrim",
        -            "Meie Script",
        -            "Menbere",
        -            "Meow Script",
        -            "Merienda",
        -            "Merriweather",
        -            "Merriweather Sans",
        -            "Metal",
        -            "Metal Mania",
        -            "Metamorphous",
        -            "Metrophobic",
        -            "Michroma",
        -            "Micro 5",
        -            "Micro 5 Charted",
        -            "Milonga",
        -            "Miltonian",
        -            "Miltonian Tattoo",
        -            "Mina",
        -            "Mingzat",
        -            "Miniver",
        -            "Miranda Sans",
        -            "Miriam Libre",
        -            "Mirza",
        -            "Miss Fajardose",
        -            "Mitr",
        -            "Mochiy Pop One",
        -            "Mochiy Pop P One",
        -            "Modak",
        -            "Modern Antiqua",
        -            "Moderustic",
        -            "Mogra",
        -            "Mohave",
        -            "Moirai One",
        -            "Molengo",
        -            "Molle",
        -            "Momo Signature",
        -            "Momo Trust Display",
        -            "Momo Trust Sans",
        -            "Mona Sans",
        -            "Monda",
        -            "Monofett",
        -            "Monomakh",
        -            "Monomaniac One",
        -            "Monoton",
        -            "Monsieur La Doulaise",
        -            "Montaga",
        -            "Montagu Slab",
        -            "MonteCarlo",
        -            "Montenegrin Gothic One",
        -            "Montez",
        -            "Montserrat",
        -            "Montserrat Alternates",
        -            "Montserrat Underline",
        -            "Moo Lah Lah",
        -            "Mooli",
        -            "Moon Dance",
        -            "Moul",
        -            "Moulpali",
        -            "Mountains of Christmas",
        -            "Mouse Memoirs",
        -            "Mozilla Headline",
        -            "Mozilla Text",
        -            "Mr Bedfort",
        -            "Mr Dafoe",
        -            "Mr De Haviland",
        -            "Mrs Saint Delafield",
        -            "Mrs Sheppards",
        -            "Ms Madi",
        -            "Mukta",
        -            "Mukta Mahee",
        -            "Mukta Malar",
        -            "Mukta Vaani",
        -            "Mulish",
        -            "Murecho",
        -            "MuseoModerno",
        -            "My Soul",
        -            "Mynerve",
        -            "Mystery Quest",
        -            "NTR",
        -            "Nabla",
        -            "Namdhinggo",
        -            "Nanum Brush Script",
        -            "Nanum Gothic",
        -            "Nanum Gothic Coding",
        -            "Nanum Myeongjo",
        -            "Nanum Pen Script",
        -            "Narnoor",
        -            "Nata Sans",
        -            "National Park",
        -            "Neonderthaw",
        -            "Nerko One",
        -            "Neucha",
        -            "Neuton",
        -            "New Amsterdam",
        -            "New Rocker",
        -            "New Tegomin",
        -            "News Cycle",
        -            "Newsreader",
        -            "Niconne",
        -            "Niramit",
        -            "Nixie One",
        -            "Nobile",
        -            "Nokora",
        -            "Norican",
        -            "Nosifer",
        -            "Notable",
        -            "Nothing You Could Do",
        -            "Noticia Text",
        -            "Noto Color Emoji",
        -            "Noto Emoji",
        -            "Noto Kufi Arabic",
        -            "Noto Music",
        -            "Noto Naskh Arabic",
        -            "Noto Nastaliq Urdu",
        -            "Noto Rashi Hebrew",
        -            "Noto Sans",
        -            "Noto Sans Adlam",
        -            "Noto Sans Adlam Unjoined",
        -            "Noto Sans Anatolian Hieroglyphs",
        -            "Noto Sans Arabic",
        -            "Noto Sans Armenian",
        -            "Noto Sans Avestan",
        -            "Noto Sans Balinese",
        -            "Noto Sans Bamum",
        -            "Noto Sans Bassa Vah",
        -            "Noto Sans Batak",
        -            "Noto Sans Bengali",
        -            "Noto Sans Bhaiksuki",
        -            "Noto Sans Brahmi",
        -            "Noto Sans Buginese",
        -            "Noto Sans Buhid",
        -            "Noto Sans Canadian Aboriginal",
        -            "Noto Sans Carian",
        -            "Noto Sans Caucasian Albanian",
        -            "Noto Sans Chakma",
        -            "Noto Sans Cham",
        -            "Noto Sans Cherokee",
        -            "Noto Sans Chorasmian",
        -            "Noto Sans Coptic",
        -            "Noto Sans Cuneiform",
        -            "Noto Sans Cypriot",
        -            "Noto Sans Cypro Minoan",
        -            "Noto Sans Deseret",
        -            "Noto Sans Devanagari",
        -            "Noto Sans Display",
        -            "Noto Sans Duployan",
        -            "Noto Sans Egyptian Hieroglyphs",
        -            "Noto Sans Elbasan",
        -            "Noto Sans Elymaic",
        -            "Noto Sans Ethiopic",
        -            "Noto Sans Georgian",
        -            "Noto Sans Glagolitic",
        -            "Noto Sans Gothic",
        -            "Noto Sans Grantha",
        -            "Noto Sans Gujarati",
        -            "Noto Sans Gunjala Gondi",
        -            "Noto Sans Gurmukhi",
        -            "Noto Sans HK",
        -            "Noto Sans Hanifi Rohingya",
        -            "Noto Sans Hanunoo",
        -            "Noto Sans Hatran",
        -            "Noto Sans Hebrew",
        -            "Noto Sans Imperial Aramaic",
        -            "Noto Sans Indic Siyaq Numbers",
        -            "Noto Sans Inscriptional Pahlavi",
        -            "Noto Sans Inscriptional Parthian",
        -            "Noto Sans JP",
        -            "Noto Sans Javanese",
        -            "Noto Sans KR",
        -            "Noto Sans Kaithi",
        -            "Noto Sans Kannada",
        -            "Noto Sans Kawi",
        -            "Noto Sans Kayah Li",
        -            "Noto Sans Kharoshthi",
        -            "Noto Sans Khmer",
        -            "Noto Sans Khojki",
        -            "Noto Sans Khudawadi",
        -            "Noto Sans Lao",
        -            "Noto Sans Lao Looped",
        -            "Noto Sans Lepcha",
        -            "Noto Sans Limbu",
        -            "Noto Sans Linear A",
        -            "Noto Sans Linear B",
        -            "Noto Sans Lisu",
        -            "Noto Sans Lycian",
        -            "Noto Sans Lydian",
        -            "Noto Sans Mahajani",
        -            "Noto Sans Malayalam",
        -            "Noto Sans Mandaic",
        -            "Noto Sans Manichaean",
        -            "Noto Sans Marchen",
        -            "Noto Sans Masaram Gondi",
        -            "Noto Sans Math",
        -            "Noto Sans Mayan Numerals",
        -            "Noto Sans Medefaidrin",
        -            "Noto Sans Meetei Mayek",
        -            "Noto Sans Mende Kikakui",
        -            "Noto Sans Meroitic",
        -            "Noto Sans Miao",
        -            "Noto Sans Modi",
        -            "Noto Sans Mongolian",
        -            "Noto Sans Mono",
        -            "Noto Sans Mro",
        -            "Noto Sans Multani",
        -            "Noto Sans Myanmar",
        -            "Noto Sans NKo",
        -            "Noto Sans NKo Unjoined",
        -            "Noto Sans Nabataean",
        -            "Noto Sans Nag Mundari",
        -            "Noto Sans Nandinagari",
        -            "Noto Sans New Tai Lue",
        -            "Noto Sans Newa",
        -            "Noto Sans Nushu",
        -            "Noto Sans Ogham",
        -            "Noto Sans Ol Chiki",
        -            "Noto Sans Old Hungarian",
        -            "Noto Sans Old Italic",
        -            "Noto Sans Old North Arabian",
        -            "Noto Sans Old Permic",
        -            "Noto Sans Old Persian",
        -            "Noto Sans Old Sogdian",
        -            "Noto Sans Old South Arabian",
        -            "Noto Sans Old Turkic",
        -            "Noto Sans Oriya",
        -            "Noto Sans Osage",
        -            "Noto Sans Osmanya",
        -            "Noto Sans Pahawh Hmong",
        -            "Noto Sans Palmyrene",
        -            "Noto Sans Pau Cin Hau",
        -            "Noto Sans PhagsPa",
        -            "Noto Sans Phoenician",
        -            "Noto Sans Psalter Pahlavi",
        -            "Noto Sans Rejang",
        -            "Noto Sans Runic",
        -            "Noto Sans SC",
        -            "Noto Sans Samaritan",
        -            "Noto Sans Saurashtra",
        -            "Noto Sans Sharada",
        -            "Noto Sans Shavian",
        -            "Noto Sans Siddham",
        -            "Noto Sans SignWriting",
        -            "Noto Sans Sinhala",
        -            "Noto Sans Sogdian",
        -            "Noto Sans Sora Sompeng",
        -            "Noto Sans Soyombo",
        -            "Noto Sans Sundanese",
        -            "Noto Sans Sunuwar",
        -            "Noto Sans Syloti Nagri",
        -            "Noto Sans Symbols",
        -            "Noto Sans Symbols 2",
        -            "Noto Sans Syriac",
        -            "Noto Sans Syriac Eastern",
        -            "Noto Sans Syriac Western",
        -            "Noto Sans TC",
        -            "Noto Sans Tagalog",
        -            "Noto Sans Tagbanwa",
        -            "Noto Sans Tai Le",
        -            "Noto Sans Tai Tham",
        -            "Noto Sans Tai Viet",
        -            "Noto Sans Takri",
        -            "Noto Sans Tamil",
        -            "Noto Sans Tamil Supplement",
        -            "Noto Sans Tangsa",
        -            "Noto Sans Telugu",
        -            "Noto Sans Thaana",
        -            "Noto Sans Thai",
        -            "Noto Sans Thai Looped",
        -            "Noto Sans Tifinagh",
        -            "Noto Sans Tirhuta",
        -            "Noto Sans Ugaritic",
        -            "Noto Sans Vai",
        -            "Noto Sans Vithkuqi",
        -            "Noto Sans Wancho",
        -            "Noto Sans Warang Citi",
        -            "Noto Sans Yi",
        -            "Noto Sans Zanabazar Square",
        -            "Noto Serif",
        -            "Noto Serif Ahom",
        -            "Noto Serif Armenian",
        -            "Noto Serif Balinese",
        -            "Noto Serif Bengali",
        -            "Noto Serif Devanagari",
        -            "Noto Serif Display",
        -            "Noto Serif Dives Akuru",
        -            "Noto Serif Dogra",
        -            "Noto Serif Ethiopic",
        -            "Noto Serif Georgian",
        -            "Noto Serif Grantha",
        -            "Noto Serif Gujarati",
        -            "Noto Serif Gurmukhi",
        -            "Noto Serif HK",
        -            "Noto Serif Hebrew",
        -            "Noto Serif Hentaigana",
        -            "Noto Serif JP",
        -            "Noto Serif KR",
        -            "Noto Serif Kannada",
        -            "Noto Serif Khitan Small Script",
        -            "Noto Serif Khmer",
        -            "Noto Serif Khojki",
        -            "Noto Serif Lao",
        -            "Noto Serif Makasar",
        -            "Noto Serif Malayalam",
        -            "Noto Serif Myanmar",
        -            "Noto Serif NP Hmong",
        -            "Noto Serif Old Uyghur",
        -            "Noto Serif Oriya",
        -            "Noto Serif Ottoman Siyaq",
        -            "Noto Serif SC",
        -            "Noto Serif Sinhala",
        -            "Noto Serif TC",
        -            "Noto Serif Tamil",
        -            "Noto Serif Tangut",
        -            "Noto Serif Telugu",
        -            "Noto Serif Thai",
        -            "Noto Serif Tibetan",
        -            "Noto Serif Todhri",
        -            "Noto Serif Toto",
        -            "Noto Serif Vithkuqi",
        -            "Noto Serif Yezidi",
        -            "Noto Traditional Nushu",
        -            "Noto Znamenny Musical Notation",
        -            "Nova Cut",
        -            "Nova Flat",
        -            "Nova Mono",
        -            "Nova Oval",
        -            "Nova Round",
        -            "Nova Script",
        -            "Nova Slim",
        -            "Nova Square",
        -            "Numans",
        -            "Nunito",
        -            "Nunito Sans",
        -            "Nuosu SIL",
        -            "Odibee Sans",
        -            "Odor Mean Chey",
        -            "Offside",
        -            "Oi",
        -            "Ojuju",
        -            "Old Standard TT",
        -            "Oldenburg",
        -            "Ole",
        -            "Oleo Script",
        -            "Oleo Script Swash Caps",
        -            "Onest",
        -            "Oooh Baby",
        -            "Open Sans",
        -            "Oranienbaum",
        -            "Orbit",
        -            "Orbitron",
        -            "Oregano",
        -            "Orelega One",
        -            "Orienta",
        -            "Original Surfer",
        -            "Oswald",
        -            "Outfit",
        -            "Over the Rainbow",
        -            "Overlock",
        -            "Overlock SC",
        -            "Overpass",
        -            "Overpass Mono",
        -            "Ovo",
        -            "Oxanium",
        -            "Oxygen",
        -            "Oxygen Mono",
        -            "PT Mono",
        -            "PT Sans",
        -            "PT Sans Caption",
        -            "PT Sans Narrow",
        -            "PT Serif",
        -            "PT Serif Caption",
        -            "Pacifico",
        -            "Padauk",
        -            "Padyakke Expanded One",
        -            "Palanquin",
        -            "Palanquin Dark",
        -            "Palette Mosaic",
        -            "Pangolin",
        -            "Paprika",
        -            "Parastoo",
        -            "Parisienne",
        -            "Parkinsans",
        -            "Passero One",
        -            "Passion One",
        -            "Passions Conflict",
        -            "Pathway Extreme",
        -            "Pathway Gothic One",
        -            "Patrick Hand",
        -            "Patrick Hand SC",
        -            "Pattaya",
        -            "Patua One",
        -            "Pavanam",
        -            "Paytone One",
        -            "Peddana",
        -            "Peralta",
        -            "Permanent Marker",
        -            "Petemoss",
        -            "Petit Formal Script",
        -            "Petrona",
        -            "Phetsarath",
        -            "Philosopher",
        -            "Phudu",
        -            "Piazzolla",
        -            "Piedra",
        -            "Pinyon Script",
        -            "Pirata One",
        -            "Pixelify Sans",
        -            "Plaster",
        -            "Platypi",
        -            "Play",
        -            "Playball",
        -            "Playfair",
        -            "Playfair Display",
        -            "Playfair Display SC",
        -            "Playpen Sans",
        -            "Playpen Sans Arabic",
        -            "Playpen Sans Deva",
        -            "Playpen Sans Hebrew",
        -            "Playpen Sans Thai",
        -            "Playwrite AR",
        -            "Playwrite AR Guides",
        -            "Playwrite AT",
        -            "Playwrite AT Guides",
        -            "Playwrite AU NSW",
        -            "Playwrite AU NSW Guides",
        -            "Playwrite AU QLD",
        -            "Playwrite AU QLD Guides",
        -            "Playwrite AU SA",
        -            "Playwrite AU SA Guides",
        -            "Playwrite AU TAS",
        -            "Playwrite AU TAS Guides",
        -            "Playwrite AU VIC",
        -            "Playwrite AU VIC Guides",
        -            "Playwrite BE VLG",
        -            "Playwrite BE VLG Guides",
        -            "Playwrite BE WAL",
        -            "Playwrite BE WAL Guides",
        -            "Playwrite BR",
        -            "Playwrite BR Guides",
        -            "Playwrite CA",
        -            "Playwrite CA Guides",
        -            "Playwrite CL",
        -            "Playwrite CL Guides",
        -            "Playwrite CO",
        -            "Playwrite CO Guides",
        -            "Playwrite CU",
        -            "Playwrite CU Guides",
        -            "Playwrite CZ",
        -            "Playwrite CZ Guides",
        -            "Playwrite DE Grund",
        -            "Playwrite DE Grund Guides",
        -            "Playwrite DE LA",
        -            "Playwrite DE LA Guides",
        -            "Playwrite DE SAS",
        -            "Playwrite DE SAS Guides",
        -            "Playwrite DE VA",
        -            "Playwrite DE VA Guides",
        -            "Playwrite DK Loopet",
        -            "Playwrite DK Loopet Guides",
        -            "Playwrite DK Uloopet",
        -            "Playwrite DK Uloopet Guides",
        -            "Playwrite ES",
        -            "Playwrite ES Deco",
        -            "Playwrite ES Deco Guides",
        -            "Playwrite ES Guides",
        -            "Playwrite FR Moderne",
        -            "Playwrite FR Moderne Guides",
        -            "Playwrite FR Trad",
        -            "Playwrite FR Trad Guides",
        -            "Playwrite GB J",
        -            "Playwrite GB J Guides",
        -            "Playwrite GB S",
        -            "Playwrite GB S Guides",
        -            "Playwrite HR",
        -            "Playwrite HR Guides",
        -            "Playwrite HR Lijeva",
        -            "Playwrite HR Lijeva Guides",
        -            "Playwrite HU",
        -            "Playwrite HU Guides",
        -            "Playwrite ID",
        -            "Playwrite ID Guides",
        -            "Playwrite IE",
        -            "Playwrite IE Guides",
        -            "Playwrite IN",
        -            "Playwrite IN Guides",
        -            "Playwrite IS",
        -            "Playwrite IS Guides",
        -            "Playwrite IT Moderna",
        -            "Playwrite IT Moderna Guides",
        -            "Playwrite IT Trad",
        -            "Playwrite IT Trad Guides",
        -            "Playwrite MX",
        -            "Playwrite MX Guides",
        -            "Playwrite NG Modern",
        -            "Playwrite NG Modern Guides",
        -            "Playwrite NL",
        -            "Playwrite NL Guides",
        -            "Playwrite NO",
        -            "Playwrite NO Guides",
        -            "Playwrite NZ",
        -            "Playwrite NZ Basic",
        -            "Playwrite NZ Basic Guides",
        -            "Playwrite NZ Guides",
        -            "Playwrite PE",
        -            "Playwrite PE Guides",
        -            "Playwrite PL",
        -            "Playwrite PL Guides",
        -            "Playwrite PT",
        -            "Playwrite PT Guides",
        -            "Playwrite RO",
        -            "Playwrite RO Guides",
        -            "Playwrite SK",
        -            "Playwrite SK Guides",
        -            "Playwrite TZ",
        -            "Playwrite TZ Guides",
        -            "Playwrite US Modern",
        -            "Playwrite US Modern Guides",
        -            "Playwrite US Trad",
        -            "Playwrite US Trad Guides",
        -            "Playwrite VN",
        -            "Playwrite VN Guides",
        -            "Playwrite ZA",
        -            "Playwrite ZA Guides",
        -            "Pliant",
        -            "Plus Jakarta Sans",
        -            "Pochaevsk",
        -            "Podkova",
        -            "Poetsen One",
        -            "Poiret One",
        -            "Poller One",
        -            "Poltawski Nowy",
        -            "Poly",
        -            "Pompiere",
        -            "Ponnala",
        -            "Ponomar",
        -            "Pontano Sans",
        -            "Poor Story",
        -            "Poppins",
        -            "Port Lligat Sans",
        -            "Port Lligat Slab",
        -            "Potta One",
        -            "Pragati Narrow",
        -            "Praise",
        -            "Prata",
        -            "Preahvihear",
        -            "Press Start 2P",
        -            "Pridi",
        -            "Princess Sofia",
        -            "Prociono",
        -            "Prompt",
        -            "Prosto One",
        -            "Protest Guerrilla",
        -            "Protest Revolution",
        -            "Protest Riot",
        -            "Protest Strike",
        -            "Proza Libre",
        -            "Public Sans",
        -            "Puppies Play",
        -            "Puritan",
        -            "Purple Purse",
        -            "Qahiri",
        -            "Quando",
        -            "Quantico",
        -            "Quattrocento",
        -            "Quattrocento Sans",
        -            "Questrial",
        -            "Quicksand",
        -            "Quintessential",
        -            "Qwigley",
        -            "Qwitcher Grypen",
        -            "REM",
        -            "Racing Sans One",
        -            "Radio Canada",
        -            "Radio Canada Big",
        -            "Radley",
        -            "Rajdhani",
        -            "Rakkas",
        -            "Raleway",
        -            "Raleway Dots",
        -            "Ramabhadra",
        -            "Ramaraja",
        -            "Rambla",
        -            "Rammetto One",
        -            "Rampart One",
        -            "Ramsina",
        -            "Ranchers",
        -            "Rancho",
        -            "Ranga",
        -            "Rasa",
        -            "Rationale",
        -            "Ravi Prakash",
        -            "Readex Pro",
        -            "Recursive",
        -            "Red Hat Display",
        -            "Red Hat Mono",
        -            "Red Hat Text",
        -            "Red Rose",
        -            "Redacted",
        -            "Redacted Script",
        -            "Reddit Mono",
        -            "Reddit Sans",
        -            "Reddit Sans Condensed",
        -            "Redressed",
        -            "Reem Kufi",
        -            "Reem Kufi Fun",
        -            "Reem Kufi Ink",
        -            "Reenie Beanie",
        -            "Reggae One",
        -            "Rethink Sans",
        -            "Revalia",
        -            "Rhodium Libre",
        -            "Ribeye",
        -            "Ribeye Marrow",
        -            "Righteous",
        -            "Risque",
        -            "Road Rage",
        -            "Roboto",
        -            "Roboto Condensed",
        -            "Roboto Flex",
        -            "Roboto Mono",
        -            "Roboto Serif",
        -            "Roboto Slab",
        -            "Rochester",
        -            "Rock 3D",
        -            "Rock Salt",
        -            "RocknRoll One",
        -            "Rokkitt",
        -            "Romanesco",
        -            "Ropa Sans",
        -            "Rosario",
        -            "Rosarivo",
        -            "Rouge Script",
        -            "Rowdies",
        -            "Rozha One",
        -            "Rubik",
        -            "Rubik 80s Fade",
        -            "Rubik Beastly",
        -            "Rubik Broken Fax",
        -            "Rubik Bubbles",
        -            "Rubik Burned",
        -            "Rubik Dirt",
        -            "Rubik Distressed",
        -            "Rubik Doodle Shadow",
        -            "Rubik Doodle Triangles",
        -            "Rubik Gemstones",
        -            "Rubik Glitch",
        -            "Rubik Glitch Pop",
        -            "Rubik Iso",
        -            "Rubik Lines",
        -            "Rubik Maps",
        -            "Rubik Marker Hatch",
        -            "Rubik Maze",
        -            "Rubik Microbe",
        -            "Rubik Mono One",
        -            "Rubik Moonrocks",
        -            "Rubik Pixels",
        -            "Rubik Puddles",
        -            "Rubik Scribble",
        -            "Rubik Spray Paint",
        -            "Rubik Storm",
        -            "Rubik Vinyl",
        -            "Rubik Wet Paint",
        -            "Ruda",
        -            "Rufina",
        -            "Ruge Boogie",
        -            "Ruluko",
        -            "Rum Raisin",
        -            "Ruslan Display",
        -            "Russo One",
        -            "Ruthie",
        -            "Ruwudu",
        -            "Rye",
        -            "SN Pro",
        -            "STIX Two Math",
        -            "STIX Two Text",
        -            "SUSE",
        -            "SUSE Mono",
        -            "Sacramento",
        -            "Sahitya",
        -            "Sail",
        -            "Saira",
        -            "Saira Condensed",
        -            "Saira Extra Condensed",
        -            "Saira Semi Condensed",
        -            "Saira Stencil",
        -            "Salsa",
        -            "Sanchez",
        -            "Sancreek",
        -            "Sankofa Display",
        -            "Sansation",
        -            "Sansita",
        -            "Sansita Swashed",
        -            "Sarabun",
        -            "Sarala",
        -            "Sarina",
        -            "Sarpanch",
        -            "Sassy Frass",
        -            "Satisfy",
        -            "Savate",
        -            "Sawarabi Gothic",
        -            "Sawarabi Mincho",
        -            "Scada",
        -            "Scheherazade New",
        -            "Schibsted Grotesk",
        -            "Schoolbell",
        -            "Science Gothic",
        -            "Scope One",
        -            "Seaweed Script",
        -            "Secular One",
        -            "Sedan",
        -            "Sedan SC",
        -            "Sedgwick Ave",
        -            "Sedgwick Ave Display",
        -            "Sekuya",
        -            "Sen",
        -            "Send Flowers",
        -            "Sevillana",
        -            "Seymour One",
        -            "Shadows Into Light",
        -            "Shadows Into Light Two",
        -            "Shafarik",
        -            "Shalimar",
        -            "Shantell Sans",
        -            "Shanti",
        -            "Share",
        -            "Share Tech",
        -            "Share Tech Mono",
        -            "Shippori Antique",
        -            "Shippori Antique B1",
        -            "Shippori Mincho",
        -            "Shippori Mincho B1",
        -            "Shizuru",
        -            "Shojumaru",
        -            "Short Stack",
        -            "Shrikhand",
        -            "Siemreap",
        -            "Sigmar",
        -            "Sigmar One",
        -            "Signika",
        -            "Signika Negative",
        -            "Silkscreen",
        -            "Simonetta",
        -            "Single Day",
        -            "Sintony",
        -            "Sirin Stencil",
        -            "Sirivennela",
        -            "Six Caps",
        -            "Sixtyfour",
        -            "Sixtyfour Convergence",
        -            "Skranji",
        -            "Slabo 13px",
        -            "Slabo 27px",
        -            "Slackey",
        -            "Slackside One",
        -            "Smokum",
        -            "Smooch",
        -            "Smooch Sans",
        -            "Smythe",
        -            "Sniglet",
        -            "Snippet",
        -            "Snowburst One",
        -            "Sofadi One",
        -            "Sofia",
        -            "Sofia Sans",
        -            "Sofia Sans Condensed",
        -            "Sofia Sans Extra Condensed",
        -            "Sofia Sans Semi Condensed",
        -            "Solitreo",
        -            "Solway",
        -            "Sometype Mono",
        -            "Song Myung",
        -            "Sono",
        -            "Sonsie One",
        -            "Sora",
        -            "Sorts Mill Goudy",
        -            "Sour Gummy",
        -            "Source Code Pro",
        -            "Source Sans 3",
        -            "Source Serif 4",
        -            "Space Grotesk",
        -            "Space Mono",
        -            "Special Elite",
        -            "Special Gothic",
        -            "Special Gothic Condensed One",
        -            "Special Gothic Expanded One",
        -            "Spectral",
        -            "Spectral SC",
        -            "Spicy Rice",
        -            "Spinnaker",
        -            "Spirax",
        -            "Splash",
        -            "Spline Sans",
        -            "Spline Sans Mono",
        -            "Squada One",
        -            "Square Peg",
        -            "Sree Krushnadevaraya",
        -            "Sriracha",
        -            "Srisakdi",
        -            "Staatliches",
        -            "Stack Sans Headline",
        -            "Stack Sans Notch",
        -            "Stack Sans Text",
        -            "Stalemate",
        -            "Stalinist One",
        -            "Stardos Stencil",
        -            "Stick",
        -            "Stick No Bills",
        -            "Stint Ultra Condensed",
        -            "Stint Ultra Expanded",
        -            "Stoke",
        -            "Story Script",
        -            "Strait",
        -            "Strichpunkt Sans",
        -            "Style Script",
        -            "Stylish",
        -            "Sue Ellen Francisco",
        -            "Suez One",
        -            "Sulphur Point",
        -            "Sumana",
        -            "Sunflower",
        -            "Sunshiney",
        -            "Supermercado One",
        -            "Sura",
        -            "Suranna",
        -            "Suravaram",
        -            "Suwannaphum",
        -            "Swanky and Moo Moo",
        -            "Syncopate",
        -            "Syne",
        -            "Syne Mono",
        -            "Syne Tactile",
        -            "TASA Explorer",
        -            "TASA Orbiter",
        -            "Tac One",
        -            "Tagesschrift",
        -            "Tai Heritage Pro",
        -            "Tajawal",
        -            "Tangerine",
        -            "Tapestry",
        -            "Taprom",
        -            "Tauri",
        -            "Taviraj",
        -            "Teachers",
        -            "Teko",
        -            "Tektur",
        -            "Telex",
        -            "Tenali Ramakrishna",
        -            "Tenor Sans",
        -            "Text Me One",
        -            "Texturina",
        -            "Thasadith",
        -            "The Girl Next Door",
        -            "The Nautigal",
        -            "Tienne",
        -            "TikTok Sans",
        -            "Tillana",
        -            "Tilt Neon",
        -            "Tilt Prism",
        -            "Tilt Warp",
        -            "Timmana",
        -            "Tinos",
        -            "Tiny5",
        -            "Tiro Bangla",
        -            "Tiro Devanagari Hindi",
        -            "Tiro Devanagari Marathi",
        -            "Tiro Devanagari Sanskrit",
        -            "Tiro Gurmukhi",
        -            "Tiro Kannada",
        -            "Tiro Tamil",
        -            "Tiro Telugu",
        -            "Tirra",
        -            "Titan One",
        -            "Titillium Web",
        -            "Tomorrow",
        -            "Tourney",
        -            "Trade Winds",
        -            "Train One",
        -            "Triodion",
        -            "Trirong",
        -            "Trispace",
        -            "Trocchi",
        -            "Trochut",
        -            "Truculenta",
        -            "Trykker",
        -            "Tsukimi Rounded",
        -            "Tuffy",
        -            "Tulpen One",
        -            "Turret Road",
        -            "Twinkle Star",
        -            "Ubuntu",
        -            "Ubuntu Condensed",
        -            "Ubuntu Mono",
        -            "Ubuntu Sans",
        -            "Ubuntu Sans Mono",
        -            "Uchen",
        -            "Ultra",
        -            "Unbounded",
        -            "Uncial Antiqua",
        -            "Underdog",
        -            "Unica One",
        -            "UnifrakturCook",
        -            "UnifrakturMaguntia",
        -            "Unkempt",
        -            "Unlock",
        -            "Unna",
        -            "UoqMunThenKhung",
        -            "Updock",
        -            "Urbanist",
        -            "VT323",
        -            "Vampiro One",
        -            "Varela",
        -            "Varela Round",
        -            "Varta",
        -            "Vast Shadow",
        -            "Vazirmatn",
        -            "Vend Sans",
        -            "Vesper Libre",
        -            "Viaoda Libre",
        -            "Vibes",
        -            "Vibur",
        -            "Victor Mono",
        -            "Vidaloka",
        -            "Viga",
        -            "Vina Sans",
        -            "Voces",
        -            "Volkhov",
        -            "Vollkorn",
        -            "Vollkorn SC",
        -            "Voltaire",
        -            "Vujahday Script",
        -            "WDXL Lubrifont JP N",
        -            "WDXL Lubrifont SC",
        -            "WDXL Lubrifont TC",
        -            "Waiting for the Sunrise",
        -            "Wallpoet",
        -            "Walter Turncoat",
        -            "Warnes",
        -            "Water Brush",
        -            "Waterfall",
        -            "Wavefont",
        -            "Wellfleet",
        -            "Wendy One",
        -            "Whisper",
        -            "WindSong",
        -            "Winky Rough",
        -            "Winky Sans",
        -            "Wire One",
        -            "Wittgenstein",
        -            "Wix Madefor Display",
        -            "Wix Madefor Text",
        -            "Work Sans",
        -            "Workbench",
        -            "Xanh Mono",
        -            "Yaldevi",
        -            "Yanone Kaffeesatz",
        -            "Yantramanav",
        -            "Yarndings 12",
        -            "Yarndings 12 Charted",
        -            "Yarndings 20",
        -            "Yarndings 20 Charted",
        -            "Yatra One",
        -            "Yellowtail",
        -            "Yeon Sung",
        -            "Yeseva One",
        -            "Yesteryear",
        -            "Yomogi",
        -            "Young Serif",
        -            "Yrsa",
        -            "Ysabeau",
        -            "Ysabeau Infant",
        -            "Ysabeau Office",
        -            "Ysabeau SC",
        -            "Yuji Boku",
        -            "Yuji Hentaigana Akari",
        -            "Yuji Hentaigana Akebono",
        -            "Yuji Mai",
        -            "Yuji Syuku",
        -            "Yusei Magic",
        -            "Yuyu",
        -            "Yuyu Short",
        -            "ZCOOL KuaiLe",
        -            "ZCOOL QingKe HuangYou",
        -            "ZCOOL XiaoWei",
        -            "Zain",
        -            "Zalando Sans",
        -            "Zalando Sans Expanded",
        -            "Zalando Sans SemiExpanded",
        -            "Zen Antique",
        -            "Zen Antique Soft",
        -            "Zen Dots",
        -            "Zen Kaku Gothic Antique",
        -            "Zen Kaku Gothic New",
        -            "Zen Kurenaido",
        -            "Zen Loop",
        -            "Zen Maru Gothic",
        -            "Zen Old Mincho",
        -            "Zen Tokyo Zoo",
        -            "Zeyada",
        -            "Zhi Mang Xing",
        -            "Zilla Slab",
        -            "Zilla Slab Highlight"
        -          ],
        -          "type": "string"
        -        },
        -        "pieCornerRadius": {
        -          "type": "number"
        -        },
        -        "sequentialRange": {
        -          "items": [
        -            {
        -              "type": "string"
        -            },
        -            {
        -              "type": "string"
        -            }
        -          ],
        -          "maxItems": 2,
        -          "minItems": 2,
        -          "type": "array"
        -        },
        -        "subtitleColor": {
        -          "type": "string"
        -        },
        -        "subtitleFontSize": {
        -          "type": "number"
        -        },
        -        "tickDensity": {
        -          "type": "number"
        -        },
        -        "tickLabelColor": {
        -          "type": "string"
        -        },
        -        "tickLabelFontWeight": {
        -          "type": "string"
        -        },
        -        "tickPadding": {
        -          "type": "number"
        -        },
        -        "tickSize": {
        -          "type": "number"
        -        },
        -        "titleColor": {
        -          "type": "string"
        -        },
        -        "titleFontFamily": {
        -          "enum": [
        -            "ABeeZee",
        -            "ADLaM Display",
        -            "AR One Sans",
        -            "Abel",
        -            "Abhaya Libre",
        -            "Aboreto",
        -            "Abril Fatface",
        -            "Abyssinica SIL",
        -            "Aclonica",
        -            "Acme",
        -            "Actor",
        -            "Adamina",
        -            "Advent Pro",
        -            "Afacad",
        -            "Afacad Flux",
        -            "Agbalumo",
        -            "Agdasima",
        -            "Agu Display",
        -            "Aguafina Script",
        -            "Akatab",
        -            "Akaya Kanadaka",
        -            "Akaya Telivigala",
        -            "Akronim",
        -            "Akshar",
        -            "Akt",
        -            "Aladin",
        -            "Alan Sans",
        -            "Alata",
        -            "Alatsi",
        -            "Albert Sans",
        -            "Aldrich",
        -            "Alef",
        -            "Alegreya",
        -            "Alegreya SC",
        -            "Alegreya Sans",
        -            "Alegreya Sans SC",
        -            "Aleo",
        -            "Alex Brush",
        -            "Alexandria",
        -            "Alfa Slab One",
        -            "Alice",
        -            "Alien Block",
        -            "Alike",
        -            "Alike Angular",
        -            "Alkalami",
        -            "Alkatra",
        -            "Allan",
        -            "Allerta",
        -            "Allerta Stencil",
        -            "Allison",
        -            "Allkin",
        -            "Allura",
        -            "Almarai",
        -            "Almendra",
        -            "Almendra Display",
        -            "Almendra SC",
        -            "Alumni Sans",
        -            "Alumni Sans Collegiate One",
        -            "Alumni Sans Inline One",
        -            "Alumni Sans Pinstripe",
        -            "Alumni Sans SC",
        -            "Alyamama",
        -            "Amarante",
        -            "Amaranth",
        -            "Amarna",
        -            "Amatic SC",
        -            "Amethysta",
        -            "Amiko",
        -            "Amiri",
        -            "Amiri Quran",
        -            "Amita",
        -            "Anaheim",
        -            "Ancizar Sans",
        -            "Ancizar Serif",
        -            "Andada Pro",
        -            "Andika",
        -            "Anek Bangla",
        -            "Anek Devanagari",
        -            "Anek Gujarati",
        -            "Anek Gurmukhi",
        -            "Anek Kannada",
        -            "Anek Latin",
        -            "Anek Malayalam",
        -            "Anek Odia",
        -            "Anek Tamil",
        -            "Anek Telugu",
        -            "Angkor",
        -            "Annapurna SIL",
        -            "Annie Use Your Telescope",
        -            "Anonymous Pro",
        -            "Anta",
        -            "Antic",
        -            "Antic Didone",
        -            "Antic Slab",
        -            "Anton",
        -            "Anton SC",
        -            "Antonio",
        -            "Anuphan",
        -            "Anybody",
        -            "Aoboshi One",
        -            "Arapey",
        -            "Arbutus",
        -            "Arbutus Slab",
        -            "Architects Daughter",
        -            "Archivo",
        -            "Archivo Black",
        -            "Archivo Narrow",
        -            "Are You Serious",
        -            "Aref Ruqaa",
        -            "Aref Ruqaa Ink",
        -            "Arima",
        -            "Arimo",
        -            "Arizonia",
        -            "Armata",
        -            "Arsenal",
        -            "Arsenal SC",
        -            "Artifika",
        -            "Arvo",
        -            "Arya",
        -            "Asap",
        -            "Asap Condensed",
        -            "Asar",
        -            "Asimovian",
        -            "Asset",
        -            "Assistant",
        -            "Asta Sans",
        -            "Astloch",
        -            "Asul",
        -            "Athiti",
        -            "Atkinson Hyperlegible",
        -            "Atkinson Hyperlegible Mono",
        -            "Atkinson Hyperlegible Next",
        -            "Atma",
        -            "Atomic Age",
        -            "Aubrey",
        -            "Audiowide",
        -            "Autour One",
        -            "Average",
        -            "Average Sans",
        -            "Averia Gruesa Libre",
        -            "Averia Libre",
        -            "Averia Sans Libre",
        -            "Averia Serif Libre",
        -            "Azeret Mono",
        -            "B612",
        -            "B612 Mono",
        -            "BBH Bartle",
        -            "BBH Bogle",
        -            "BBH Hegarty",
        -            "BIZ UDGothic",
        -            "BIZ UDMincho",
        -            "BIZ UDPGothic",
        -            "BIZ UDPMincho",
        -            "BJCree",
        -            "Babylonica",
        -            "Bacasime Antique",
        -            "Bad Script",
        -            "Badeen Display",
        -            "Bagel Fat One",
        -            "Bahiana",
        -            "Bahianita",
        -            "Bai Jamjuree",
        -            "Bakbak One",
        -            "Ballet",
        -            "Baloo 2",
        -            "Baloo Bhai 2",
        -            "Baloo Bhaijaan 2",
        -            "Baloo Bhaina 2",
        -            "Baloo Chettan 2",
        -            "Baloo Da 2",
        -            "Baloo Paaji 2",
        -            "Baloo Tamma 2",
        -            "Baloo Tammudu 2",
        -            "Baloo Thambi 2",
        -            "Balsamiq Sans",
        -            "Balthazar",
        -            "Bangers",
        -            "Barlow",
        -            "Barlow Condensed",
        -            "Barlow Semi Condensed",
        -            "Barriecito",
        -            "Barrio",
        -            "Basic",
        -            "Baskervville",
        -            "Baskervville SC",
        -            "Battambang",
        -            "Baumans",
        -            "Bayon",
        -            "Be Vietnam Pro",
        -            "Beau Rivage",
        -            "Bebas Neue",
        -            "Beiruti",
        -            "Belanosima",
        -            "Belgrano",
        -            "Bellefair",
        -            "Belleza",
        -            "Bellota",
        -            "Bellota Text",
        -            "BenchNine",
        -            "Benne",
        -            "Bentham",
        -            "Berkshire Swash",
        -            "Besley",
        -            "Betania Patmos",
        -            "Betania Patmos GDL",
        -            "Betania Patmos In",
        -            "Betania Patmos In GDL",
        -            "Beth Ellen",
        -            "Bevan",
        -            "BhuTuka Expanded One",
        -            "Big Shoulders",
        -            "Big Shoulders Inline",
        -            "Big Shoulders Stencil",
        -            "Bigelow Rules",
        -            "Bigshot One",
        -            "Bilbo",
        -            "Bilbo Swash Caps",
        -            "BioRhyme",
        -            "BioRhyme Expanded",
        -            "Birthstone",
        -            "Birthstone Bounce",
        -            "Biryani",
        -            "Bitcount",
        -            "Bitcount Grid Double",
        -            "Bitcount Grid Double Ink",
        -            "Bitcount Grid Single",
        -            "Bitcount Grid Single Ink",
        -            "Bitcount Ink",
        -            "Bitcount Prop Double",
        -            "Bitcount Prop Double Ink",
        -            "Bitcount Prop Single",
        -            "Bitcount Prop Single Ink",
        -            "Bitcount Single",
        -            "Bitcount Single Ink",
        -            "Bitter",
        -            "Black And White Picture",
        -            "Black Han Sans",
        -            "Black Ops One",
        -            "Blaka",
        -            "Blaka Hollow",
        -            "Blaka Ink",
        -            "Blinker",
        -            "Bodoni Moda",
        -            "Bodoni Moda SC",
        -            "Bokor",
        -            "Boldonse",
        -            "Bona Nova",
        -            "Bona Nova SC",
        -            "Bonbon",
        -            "Bonheur Royale",
        -            "Boogaloo",
        -            "Borel",
        -            "Bowlby One",
        -            "Bowlby One SC",
        -            "Bpmf Huninn",
        -            "Bpmf Iansui",
        -            "Bpmf Zihi Kai Std",
        -            "Braah One",
        -            "Brawler",
        -            "Bree Serif",
        -            "Bricolage Grotesque",
        -            "Bruno Ace",
        -            "Bruno Ace SC",
        -            "Brygada 1918",
        -            "Bubblegum Sans",
        -            "Bubbler One",
        -            "Buda",
        -            "Buenard",
        -            "Bungee",
        -            "Bungee Hairline",
        -            "Bungee Inline",
        -            "Bungee Outline",
        -            "Bungee Shade",
        -            "Bungee Spice",
        -            "Bungee Tint",
        -            "Butcherman",
        -            "Butterfly Kids",
        -            "Bytesized",
        -            "Cabin",
        -            "Cabin Condensed",
        -            "Cabin Sketch",
        -            "Cactus Classical Serif",
        -            "Caesar Dressing",
        -            "Cagliostro",
        -            "Cairo",
        -            "Cairo Play",
        -            "Cal Sans",
        -            "Caladea",
        -            "Calistoga",
        -            "Calligraffitti",
        -            "Cambay",
        -            "Cambo",
        -            "Candal",
        -            "Cantarell",
        -            "Cantata One",
        -            "Cantora One",
        -            "Caprasimo",
        -            "Capriola",
        -            "Caramel",
        -            "Carattere",
        -            "Cardo",
        -            "Carlito",
        -            "Carme",
        -            "Carrois Gothic",
        -            "Carrois Gothic SC",
        -            "Carter One",
        -            "Cascadia Code",
        -            "Cascadia Mono",
        -            "Castoro",
        -            "Castoro Titling",
        -            "Catamaran",
        -            "Caudex",
        -            "Cause",
        -            "Caveat",
        -            "Caveat Brush",
        -            "Cedarville Cursive",
        -            "Ceviche One",
        -            "Chakra Petch",
        -            "Changa",
        -            "Changa One",
        -            "Chango",
        -            "Charis SIL",
        -            "Charm",
        -            "Charmonman",
        -            "Chathura",
        -            "Chau Philomene One",
        -            "Chela One",
        -            "Chelsea Market",
        -            "Chenla",
        -            "Cherish",
        -            "Cherry Bomb One",
        -            "Cherry Cream Soda",
        -            "Cherry Swash",
        -            "Chewy",
        -            "Chicle",
        -            "Chilanka",
        -            "Chiron GoRound TC",
        -            "Chiron Hei HK",
        -            "Chiron Sung HK",
        -            "Chivo",
        -            "Chivo Mono",
        -            "Chocolate Classical Sans",
        -            "Chokokutai",
        -            "Chonburi",
        -            "Cinzel",
        -            "Cinzel Decorative",
        -            "Clicker Script",
        -            "Climate Crisis",
        -            "Coda",
        -            "Codystar",
        -            "Coiny",
        -            "Combo",
        -            "Comfortaa",
        -            "Comforter",
        -            "Comforter Brush",
        -            "Comic Neue",
        -            "Comic Relief",
        -            "Coming Soon",
        -            "Comme",
        -            "Commissioner",
        -            "Concert One",
        -            "Condiment",
        -            "Content",
        -            "Contrail One",
        -            "Convergence",
        -            "Cookie",
        -            "Copse",
        -            "Coral Pixels",
        -            "Corben",
        -            "Corinthia",
        -            "Cormorant",
        -            "Cormorant Garamond",
        -            "Cormorant Infant",
        -            "Cormorant SC",
        -            "Cormorant Unicase",
        -            "Cormorant Upright",
        -            "Cossette Texte",
        -            "Cossette Titre",
        -            "Courgette",
        -            "Courier Prime",
        -            "Cousine",
        -            "Coustard",
        -            "Covered By Your Grace",
        -            "Crafty Girls",
        -            "Creepster",
        -            "Crete Round",
        -            "Crimson Pro",
        -            "Crimson Text",
        -            "Croissant One",
        -            "Crushed",
        -            "Cuprum",
        -            "Cute Font",
        -            "Cutive",
        -            "Cutive Mono",
        -            "DM Mono",
        -            "DM Sans",
        -            "DM Serif Display",
        -            "DM Serif Text",
        -            "Dai Banna SIL",
        -            "Damion",
        -            "Dancing Script",
        -            "Danfo",
        -            "Dangrek",
        -            "Darker Grotesque",
        -            "Darumadrop One",
        -            "Datatype",
        -            "David Libre",
        -            "Dawning of a New Day",
        -            "Days One",
        -            "Dekko",
        -            "Dela Gothic One",
        -            "Delicious Handrawn",
        -            "Delius",
        -            "Delius Swash Caps",
        -            "Delius Unicase",
        -            "Della Respira",
        -            "Denk One",
        -            "Devonshire",
        -            "Dhurjati",
        -            "Didact Gothic",
        -            "Diphylleia",
        -            "Diplomata",
        -            "Diplomata SC",
        -            "Do Hyeon",
        -            "Dokdo",
        -            "Domine",
        -            "Donegal One",
        -            "Dongle",
        -            "Doppio One",
        -            "Dorsa",
        -            "Dosis",
        -            "DotGothic16",
        -            "Doto",
        -            "Dr Sugiyama",
        -            "Duru Sans",
        -            "DynaPuff",
        -            "Dynalight",
        -            "EB Garamond",
        -            "Eagle Lake",
        -            "East Sea Dokdo",
        -            "Eater",
        -            "Economica",
        -            "Eczar",
        -            "Edu AU VIC WA NT Arrows",
        -            "Edu AU VIC WA NT Dots",
        -            "Edu AU VIC WA NT Guides",
        -            "Edu AU VIC WA NT Hand",
        -            "Edu AU VIC WA NT Pre",
        -            "Edu NSW ACT Cursive",
        -            "Edu NSW ACT Foundation",
        -            "Edu NSW ACT Hand Pre",
        -            "Edu QLD Beginner",
        -            "Edu QLD Hand",
        -            "Edu SA Beginner",
        -            "Edu SA Hand",
        -            "Edu TAS Beginner",
        -            "Edu VIC WA NT Beginner",
        -            "Edu VIC WA NT Hand",
        -            "Edu VIC WA NT Hand Pre",
        -            "El Messiri",
        -            "Electrolize",
        -            "Elms Sans",
        -            "Elsie",
        -            "Elsie Swash Caps",
        -            "Emblema One",
        -            "Emilys Candy",
        -            "Encode Sans",
        -            "Encode Sans Condensed",
        -            "Encode Sans Expanded",
        -            "Encode Sans SC",
        -            "Encode Sans Semi Condensed",
        -            "Encode Sans Semi Expanded",
        -            "Engagement",
        -            "Englebert",
        -            "Enriqueta",
        -            "Ephesis",
        -            "Epilogue",
        -            "Epunda Sans",
        -            "Epunda Slab",
        -            "Erica One",
        -            "Esteban",
        -            "Estedad",
        -            "Estonia",
        -            "Euphoria Script",
        -            "Ewert",
        -            "Exile",
        -            "Exo",
        -            "Exo 2",
        -            "Expletus Sans",
        -            "Explora",
        -            "Faculty Glyphic",
        -            "Fahkwang",
        -            "Familjen Grotesk",
        -            "Fanwood Text",
        -            "Farro",
        -            "Farsan",
        -            "Fascinate",
        -            "Fascinate Inline",
        -            "Faster One",
        -            "Fasthand",
        -            "Fauna One",
        -            "Faustina",
        -            "Federant",
        -            "Federo",
        -            "Felipa",
        -            "Fenix",
        -            "Festive",
        -            "Figtree",
        -            "Finger Paint",
        -            "Finlandica Headline",
        -            "Finlandica Text",
        -            "Fira Code",
        -            "Fira Mono",
        -            "Fira Sans",
        -            "Fira Sans Condensed",
        -            "Fira Sans Extra Condensed",
        -            "Fjalla One",
        -            "Fjord One",
        -            "Flamenco",
        -            "Flavors",
        -            "Fleur De Leah",
        -            "Flow Block",
        -            "Flow Circular",
        -            "Flow Rounded",
        -            "Foldit",
        -            "Fondamento",
        -            "Fontdiner Swanky",
        -            "Forum",
        -            "Fragment Mono",
        -            "Francois One",
        -            "Frank Ruhl Libre",
        -            "Fraunces",
        -            "Freckle Face",
        -            "Fredericka the Great",
        -            "Fredoka",
        -            "Freehand",
        -            "Freeman",
        -            "Fresca",
        -            "Frijole",
        -            "Fruktur",
        -            "Fugaz One",
        -            "Fuggles",
        -            "Funnel Display",
        -            "Funnel Sans",
        -            "Fustat",
        -            "Fuzzy Bubbles",
        -            "GFS Didot",
        -            "GFS Neohellenic",
        -            "Ga Maamli",
        -            "Gabarito",
        -            "Gabriela",
        -            "Gaegu",
        -            "Gafata",
        -            "Gajraj One",
        -            "Galada",
        -            "Galdeano",
        -            "Galindo",
        -            "Gamja Flower",
        -            "Gantari",
        -            "Gasoek One",
        -            "Gayathri",
        -            "Geist",
        -            "Geist Mono",
        -            "Geist Pixel",
        -            "Gelasio",
        -            "Gemunu Libre",
        -            "Genos",
        -            "Gentium Book Plus",
        -            "Gentium Plus",
        -            "Geo",
        -            "Geologica",
        -            "Geom",
        -            "Geomini",
        -            "Georama",
        -            "Geostar",
        -            "Geostar Fill",
        -            "Germania One",
        -            "Gideon Roman",
        -            "Gidole",
        -            "Gidugu",
        -            "Gilda Display",
        -            "Girassol",
        -            "Give You Glory",
        -            "Glass Antiqua",
        -            "Glegoo",
        -            "Gloock",
        -            "Gloria Hallelujah",
        -            "Glory",
        -            "Gluten",
        -            "Goblin One",
        -            "Gochi Hand",
        -            "Goldman",
        -            "Golos Text",
        -            "Google Sans",
        -            "Google Sans Code",
        -            "Google Sans Flex",
        -            "Gorditas",
        -            "Gothic A1",
        -            "Gotu",
        -            "Goudy Bookletter 1911",
        -            "Gowun Batang",
        -            "Gowun Dodum",
        -            "Graduate",
        -            "Grand Hotel",
        -            "Grandiflora One",
        -            "Grandstander",
        -            "Grape Nuts",
        -            "Gravitas One",
        -            "Great Vibes",
        -            "Grechen Fuemen",
        -            "Grenze",
        -            "Grenze Gotisch",
        -            "Grey Qo",
        -            "Griffy",
        -            "Gruppo",
        -            "Gudea",
        -            "Gugi",
        -            "Gulzar",
        -            "Gupter",
        -            "Gurajada",
        -            "Gveret Levin",
        -            "Gwendolyn",
        -            "Habibi",
        -            "Hachi Maru Pop",
        -            "Hahmlet",
        -            "Halant",
        -            "Hammersmith One",
        -            "Hanalei",
        -            "Hanalei Fill",
        -            "Handjet",
        -            "Handlee",
        -            "Hanken Grotesk",
        -            "Hanuman",
        -            "Happy Monkey",
        -            "Harmattan",
        -            "Headland One",
        -            "Hedvig Letters Sans",
        -            "Hedvig Letters Serif",
        -            "Heebo",
        -            "Henny Penny",
        -            "Hepta Slab",
        -            "Herr Von Muellerhoff",
        -            "Hi Melody",
        -            "Hibur Mono",
        -            "Hina Mincho",
        -            "Hind",
        -            "Hind Guntur",
        -            "Hind Madurai",
        -            "Hind Mysuru",
        -            "Hind Siliguri",
        -            "Hind Vadodara",
        -            "Holtwood One SC",
        -            "Homemade Apple",
        -            "Homenaje",
        -            "Honk",
        -            "Host Grotesk",
        -            "Hubballi",
        -            "Hubot Sans",
        -            "Huninn",
        -            "Hurricane",
        -            "IBM Plex Mono",
        -            "IBM Plex Sans",
        -            "IBM Plex Sans Arabic",
        -            "IBM Plex Sans Condensed",
        -            "IBM Plex Sans Devanagari",
        -            "IBM Plex Sans Hebrew",
        -            "IBM Plex Sans JP",
        -            "IBM Plex Sans KR",
        -            "IBM Plex Sans Thai",
        -            "IBM Plex Sans Thai Looped",
        -            "IBM Plex Serif",
        -            "IM Fell DW Pica",
        -            "IM Fell DW Pica SC",
        -            "IM Fell Double Pica",
        -            "IM Fell Double Pica SC",
        -            "IM Fell English",
        -            "IM Fell English SC",
        -            "IM Fell French Canon",
        -            "IM Fell French Canon SC",
        -            "IM Fell Great Primer",
        -            "IM Fell Great Primer SC",
        -            "Iansui",
        -            "Ibarra Real Nova",
        -            "Iceberg",
        -            "Iceland",
        -            "Idiqlat",
        -            "Imbue",
        -            "Imperial Script",
        -            "Imprima",
        -            "Inclusive Sans",
        -            "Inconsolata",
        -            "Inder",
        -            "Indie Flower",
        -            "Ingrid Darling",
        -            "Inika",
        -            "Inknut Antiqua",
        -            "Inria Sans",
        -            "Inria Serif",
        -            "Inspiration",
        -            "Instrument Sans",
        -            "Instrument Serif",
        -            "Intel One Mono",
        -            "Inter",
        -            "Inter Tight",
        -            "Iosevka Charon",
        -            "Iosevka Charon Mono",
        -            "Irish Grover",
        -            "Island Moments",
        -            "Istok Web",
        -            "Italiana",
        -            "Italianno",
        -            "Itim",
        -            "Jacquard 12",
        -            "Jacquard 12 Charted",
        -            "Jacquard 24",
        -            "Jacquard 24 Charted",
        -            "Jacquarda Bastarda 9",
        -            "Jacquarda Bastarda 9 Charted",
        -            "Jacques Francois",
        -            "Jacques Francois Shadow",
        -            "Jaini",
        -            "Jaini Purva",
        -            "Jaldi",
        -            "Jaro",
        -            "Jersey 10",
        -            "Jersey 10 Charted",
        -            "Jersey 15",
        -            "Jersey 15 Charted",
        -            "Jersey 20",
        -            "Jersey 20 Charted",
        -            "Jersey 25",
        -            "Jersey 25 Charted",
        -            "JetBrains Mono",
        -            "Jim Nightshade",
        -            "Joan",
        -            "Jockey One",
        -            "Jolly Lodger",
        -            "Jomhuria",
        -            "Jomolhari",
        -            "Josefin Sans",
        -            "Josefin Slab",
        -            "Jost",
        -            "Joti One",
        -            "Jua",
        -            "Judson",
        -            "Julee",
        -            "Julius Sans One",
        -            "Junge",
        -            "Jura",
        -            "Just Another Hand",
        -            "Just Me Again Down Here",
        -            "K2D",
        -            "Kablammo",
        -            "Kadwa",
        -            "Kaisei Decol",
        -            "Kaisei HarunoUmi",
        -            "Kaisei Opti",
        -            "Kaisei Tokumin",
        -            "Kalam",
        -            "Kalnia",
        -            "Kalnia Glaze",
        -            "Kameron",
        -            "Kanchenjunga",
        -            "Kanit",
        -            "Kantumruy Pro",
        -            "Kapakana",
        -            "Karantina",
        -            "Karla",
        -            "Karla Tamil Inclined",
        -            "Karla Tamil Upright",
        -            "Karma",
        -            "Katibeh",
        -            "Kaushan Script",
        -            "Kavivanar",
        -            "Kavoon",
        -            "Kay Pho Du",
        -            "Kdam Thmor Pro",
        -            "Keania One",
        -            "Kedebideri",
        -            "Kelly Slab",
        -            "Kenia",
        -            "Khand",
        -            "Khmer",
        -            "Khula",
        -            "Kings",
        -            "Kirang Haerang",
        -            "Kite One",
        -            "Kiwi Maru",
        -            "Klee One",
        -            "Knewave",
        -            "KoHo",
        -            "Kodchasan",
        -            "Kode Mono",
        -            "Koh Santepheap",
        -            "Kolker Brush",
        -            "Konkhmer Sleokchher",
        -            "Kosugi",
        -            "Kosugi Maru",
        -            "Kotta One",
        -            "Koulen",
        -            "Kranky",
        -            "Kreon",
        -            "Kristi",
        -            "Krona One",
        -            "Krub",
        -            "Kufam",
        -            "Kulim Park",
        -            "Kumar One",
        -            "Kumar One Outline",
        -            "Kumbh Sans",
        -            "Kurale",
        -            "LINE Seed JP",
        -            "LXGW Marker Gothic",
        -            "LXGW WenKai Mono TC",
        -            "LXGW WenKai TC",
        -            "La Belle Aurore",
        -            "Labrada",
        -            "Lacquer",
        -            "Laila",
        -            "Lakki Reddy",
        -            "Lalezar",
        -            "Lancelot",
        -            "Langar",
        -            "Lateef",
        -            "Lato",
        -            "Lavishly Yours",
        -            "League Gothic",
        -            "League Script",
        -            "League Spartan",
        -            "Leckerli One",
        -            "Ledger",
        -            "Lekton",
        -            "Lemon",
        -            "Lemonada",
        -            "Lexend",
        -            "Lexend Deca",
        -            "Lexend Exa",
        -            "Lexend Giga",
        -            "Lexend Mega",
        -            "Lexend Peta",
        -            "Lexend Tera",
        -            "Lexend Zetta",
        -            "Libertinus Keyboard",
        -            "Libertinus Math",
        -            "Libertinus Mono",
        -            "Libertinus Sans",
        -            "Libertinus Serif",
        -            "Libertinus Serif Display",
        -            "Libre Barcode 128",
        -            "Libre Barcode 128 Text",
        -            "Libre Barcode 39",
        -            "Libre Barcode 39 Extended",
        -            "Libre Barcode 39 Extended Text",
        -            "Libre Barcode 39 Text",
        -            "Libre Barcode EAN13 Text",
        -            "Libre Baskerville",
        -            "Libre Bodoni",
        -            "Libre Caslon Display",
        -            "Libre Caslon Text",
        -            "Libre Franklin",
        -            "Licorice",
        -            "Life Savers",
        -            "Lilex",
        -            "Lilita One",
        -            "Lily Script One",
        -            "Limelight",
        -            "Linden Hill",
        -            "Linefont",
        -            "Lisu Bosa",
        -            "Liter",
        -            "Literata",
        -            "Liu Jian Mao Cao",
        -            "Livvic",
        -            "Lobster",
        -            "Lobster Two",
        -            "Londrina Outline",
        -            "Londrina Shadow",
        -            "Londrina Sketch",
        -            "Londrina Solid",
        -            "Long Cang",
        -            "Lora",
        -            "Love Light",
        -            "Love Ya Like A Sister",
        -            "Loved by the King",
        -            "Lovers Quarrel",
        -            "Luckiest Guy",
        -            "Lugrasimo",
        -            "Lumanosimo",
        -            "Lunasima",
        -            "Lusitana",
        -            "Lustria",
        -            "Luxurious Roman",
        -            "Luxurious Script",
        -            "M PLUS 1",
        -            "M PLUS 1 Code",
        -            "M PLUS 1p",
        -            "M PLUS 2",
        -            "M PLUS Code Latin",
        -            "M PLUS Rounded 1c",
        -            "M PLUS U",
        -            "Ma Shan Zheng",
        -            "Macondo",
        -            "Macondo Swash Caps",
        -            "Mada",
        -            "Madimi One",
        -            "Magra",
        -            "Maiden Orange",
        -            "Maitree",
        -            "Major Mono Display",
        -            "Mako",
        -            "Mali",
        -            "Mallanna",
        -            "Maname",
        -            "Mandali",
        -            "Manjari",
        -            "Manrope",
        -            "Mansalva",
        -            "Manuale",
        -            "Manufacturing Consent",
        -            "Marcellus",
        -            "Marcellus SC",
        -            "Marck Script",
        -            "Margarine",
        -            "Marhey",
        -            "Markazi Text",
        -            "Marko One",
        -            "Marmelad",
        -            "Martel",
        -            "Martel Sans",
        -            "Martian Mono",
        -            "Marvel",
        -            "Matangi",
        -            "Mate",
        -            "Mate SC",
        -            "Matemasie",
        -            "Material Icons",
        -            "Material Icons Outlined",
        -            "Material Icons Round",
        -            "Material Icons Sharp",
        -            "Material Icons Two Tone",
        -            "Material Symbols",
        -            "Material Symbols Outlined",
        -            "Material Symbols Rounded",
        -            "Material Symbols Sharp",
        -            "Maven Pro",
        -            "McLaren",
        -            "Mea Culpa",
        -            "Meddon",
        -            "MedievalSharp",
        -            "Medula One",
        -            "Meera Inimai",
        -            "Megrim",
        -            "Meie Script",
        -            "Menbere",
        -            "Meow Script",
        -            "Merienda",
        -            "Merriweather",
        -            "Merriweather Sans",
        -            "Metal",
        -            "Metal Mania",
        -            "Metamorphous",
        -            "Metrophobic",
        -            "Michroma",
        -            "Micro 5",
        -            "Micro 5 Charted",
        -            "Milonga",
        -            "Miltonian",
        -            "Miltonian Tattoo",
        -            "Mina",
        -            "Mingzat",
        -            "Miniver",
        -            "Miranda Sans",
        -            "Miriam Libre",
        -            "Mirza",
        -            "Miss Fajardose",
        -            "Mitr",
        -            "Mochiy Pop One",
        -            "Mochiy Pop P One",
        -            "Modak",
        -            "Modern Antiqua",
        -            "Moderustic",
        -            "Mogra",
        -            "Mohave",
        -            "Moirai One",
        -            "Molengo",
        -            "Molle",
        -            "Momo Signature",
        -            "Momo Trust Display",
        -            "Momo Trust Sans",
        -            "Mona Sans",
        -            "Monda",
        -            "Monofett",
        -            "Monomakh",
        -            "Monomaniac One",
        -            "Monoton",
        -            "Monsieur La Doulaise",
        -            "Montaga",
        -            "Montagu Slab",
        -            "MonteCarlo",
        -            "Montenegrin Gothic One",
        -            "Montez",
        -            "Montserrat",
        -            "Montserrat Alternates",
        -            "Montserrat Underline",
        -            "Moo Lah Lah",
        -            "Mooli",
        -            "Moon Dance",
        -            "Moul",
        -            "Moulpali",
        -            "Mountains of Christmas",
        -            "Mouse Memoirs",
        -            "Mozilla Headline",
        -            "Mozilla Text",
        -            "Mr Bedfort",
        -            "Mr Dafoe",
        -            "Mr De Haviland",
        -            "Mrs Saint Delafield",
        -            "Mrs Sheppards",
        -            "Ms Madi",
        -            "Mukta",
        -            "Mukta Mahee",
        -            "Mukta Malar",
        -            "Mukta Vaani",
        -            "Mulish",
        -            "Murecho",
        -            "MuseoModerno",
        -            "My Soul",
        -            "Mynerve",
        -            "Mystery Quest",
        -            "NTR",
        -            "Nabla",
        -            "Namdhinggo",
        -            "Nanum Brush Script",
        -            "Nanum Gothic",
        -            "Nanum Gothic Coding",
        -            "Nanum Myeongjo",
        -            "Nanum Pen Script",
        -            "Narnoor",
        -            "Nata Sans",
        -            "National Park",
        -            "Neonderthaw",
        -            "Nerko One",
        -            "Neucha",
        -            "Neuton",
        -            "New Amsterdam",
        -            "New Rocker",
        -            "New Tegomin",
        -            "News Cycle",
        -            "Newsreader",
        -            "Niconne",
        -            "Niramit",
        -            "Nixie One",
        -            "Nobile",
        -            "Nokora",
        -            "Norican",
        -            "Nosifer",
        -            "Notable",
        -            "Nothing You Could Do",
        -            "Noticia Text",
        -            "Noto Color Emoji",
        -            "Noto Emoji",
        -            "Noto Kufi Arabic",
        -            "Noto Music",
        -            "Noto Naskh Arabic",
        -            "Noto Nastaliq Urdu",
        -            "Noto Rashi Hebrew",
        -            "Noto Sans",
        -            "Noto Sans Adlam",
        -            "Noto Sans Adlam Unjoined",
        -            "Noto Sans Anatolian Hieroglyphs",
        -            "Noto Sans Arabic",
        -            "Noto Sans Armenian",
        -            "Noto Sans Avestan",
        -            "Noto Sans Balinese",
        -            "Noto Sans Bamum",
        -            "Noto Sans Bassa Vah",
        -            "Noto Sans Batak",
        -            "Noto Sans Bengali",
        -            "Noto Sans Bhaiksuki",
        -            "Noto Sans Brahmi",
        -            "Noto Sans Buginese",
        -            "Noto Sans Buhid",
        -            "Noto Sans Canadian Aboriginal",
        -            "Noto Sans Carian",
        -            "Noto Sans Caucasian Albanian",
        -            "Noto Sans Chakma",
        -            "Noto Sans Cham",
        -            "Noto Sans Cherokee",
        -            "Noto Sans Chorasmian",
        -            "Noto Sans Coptic",
        -            "Noto Sans Cuneiform",
        -            "Noto Sans Cypriot",
        -            "Noto Sans Cypro Minoan",
        -            "Noto Sans Deseret",
        -            "Noto Sans Devanagari",
        -            "Noto Sans Display",
        -            "Noto Sans Duployan",
        -            "Noto Sans Egyptian Hieroglyphs",
        -            "Noto Sans Elbasan",
        -            "Noto Sans Elymaic",
        -            "Noto Sans Ethiopic",
        -            "Noto Sans Georgian",
        -            "Noto Sans Glagolitic",
        -            "Noto Sans Gothic",
        -            "Noto Sans Grantha",
        -            "Noto Sans Gujarati",
        -            "Noto Sans Gunjala Gondi",
        -            "Noto Sans Gurmukhi",
        -            "Noto Sans HK",
        -            "Noto Sans Hanifi Rohingya",
        -            "Noto Sans Hanunoo",
        -            "Noto Sans Hatran",
        -            "Noto Sans Hebrew",
        -            "Noto Sans Imperial Aramaic",
        -            "Noto Sans Indic Siyaq Numbers",
        -            "Noto Sans Inscriptional Pahlavi",
        -            "Noto Sans Inscriptional Parthian",
        -            "Noto Sans JP",
        -            "Noto Sans Javanese",
        -            "Noto Sans KR",
        -            "Noto Sans Kaithi",
        -            "Noto Sans Kannada",
        -            "Noto Sans Kawi",
        -            "Noto Sans Kayah Li",
        -            "Noto Sans Kharoshthi",
        -            "Noto Sans Khmer",
        -            "Noto Sans Khojki",
        -            "Noto Sans Khudawadi",
        -            "Noto Sans Lao",
        -            "Noto Sans Lao Looped",
        -            "Noto Sans Lepcha",
        -            "Noto Sans Limbu",
        -            "Noto Sans Linear A",
        -            "Noto Sans Linear B",
        -            "Noto Sans Lisu",
        -            "Noto Sans Lycian",
        -            "Noto Sans Lydian",
        -            "Noto Sans Mahajani",
        -            "Noto Sans Malayalam",
        -            "Noto Sans Mandaic",
        -            "Noto Sans Manichaean",
        -            "Noto Sans Marchen",
        -            "Noto Sans Masaram Gondi",
        -            "Noto Sans Math",
        -            "Noto Sans Mayan Numerals",
        -            "Noto Sans Medefaidrin",
        -            "Noto Sans Meetei Mayek",
        -            "Noto Sans Mende Kikakui",
        -            "Noto Sans Meroitic",
        -            "Noto Sans Miao",
        -            "Noto Sans Modi",
        -            "Noto Sans Mongolian",
        -            "Noto Sans Mono",
        -            "Noto Sans Mro",
        -            "Noto Sans Multani",
        -            "Noto Sans Myanmar",
        -            "Noto Sans NKo",
        -            "Noto Sans NKo Unjoined",
        -            "Noto Sans Nabataean",
        -            "Noto Sans Nag Mundari",
        -            "Noto Sans Nandinagari",
        -            "Noto Sans New Tai Lue",
        -            "Noto Sans Newa",
        -            "Noto Sans Nushu",
        -            "Noto Sans Ogham",
        -            "Noto Sans Ol Chiki",
        -            "Noto Sans Old Hungarian",
        -            "Noto Sans Old Italic",
        -            "Noto Sans Old North Arabian",
        -            "Noto Sans Old Permic",
        -            "Noto Sans Old Persian",
        -            "Noto Sans Old Sogdian",
        -            "Noto Sans Old South Arabian",
        -            "Noto Sans Old Turkic",
        -            "Noto Sans Oriya",
        -            "Noto Sans Osage",
        -            "Noto Sans Osmanya",
        -            "Noto Sans Pahawh Hmong",
        -            "Noto Sans Palmyrene",
        -            "Noto Sans Pau Cin Hau",
        -            "Noto Sans PhagsPa",
        -            "Noto Sans Phoenician",
        -            "Noto Sans Psalter Pahlavi",
        -            "Noto Sans Rejang",
        -            "Noto Sans Runic",
        -            "Noto Sans SC",
        -            "Noto Sans Samaritan",
        -            "Noto Sans Saurashtra",
        -            "Noto Sans Sharada",
        -            "Noto Sans Shavian",
        -            "Noto Sans Siddham",
        -            "Noto Sans SignWriting",
        -            "Noto Sans Sinhala",
        -            "Noto Sans Sogdian",
        -            "Noto Sans Sora Sompeng",
        -            "Noto Sans Soyombo",
        -            "Noto Sans Sundanese",
        -            "Noto Sans Sunuwar",
        -            "Noto Sans Syloti Nagri",
        -            "Noto Sans Symbols",
        -            "Noto Sans Symbols 2",
        -            "Noto Sans Syriac",
        -            "Noto Sans Syriac Eastern",
        -            "Noto Sans Syriac Western",
        -            "Noto Sans TC",
        -            "Noto Sans Tagalog",
        -            "Noto Sans Tagbanwa",
        -            "Noto Sans Tai Le",
        -            "Noto Sans Tai Tham",
        -            "Noto Sans Tai Viet",
        -            "Noto Sans Takri",
        -            "Noto Sans Tamil",
        -            "Noto Sans Tamil Supplement",
        -            "Noto Sans Tangsa",
        -            "Noto Sans Telugu",
        -            "Noto Sans Thaana",
        -            "Noto Sans Thai",
        -            "Noto Sans Thai Looped",
        -            "Noto Sans Tifinagh",
        -            "Noto Sans Tirhuta",
        -            "Noto Sans Ugaritic",
        -            "Noto Sans Vai",
        -            "Noto Sans Vithkuqi",
        -            "Noto Sans Wancho",
        -            "Noto Sans Warang Citi",
        -            "Noto Sans Yi",
        -            "Noto Sans Zanabazar Square",
        -            "Noto Serif",
        -            "Noto Serif Ahom",
        -            "Noto Serif Armenian",
        -            "Noto Serif Balinese",
        -            "Noto Serif Bengali",
        -            "Noto Serif Devanagari",
        -            "Noto Serif Display",
        -            "Noto Serif Dives Akuru",
        -            "Noto Serif Dogra",
        -            "Noto Serif Ethiopic",
        -            "Noto Serif Georgian",
        -            "Noto Serif Grantha",
        -            "Noto Serif Gujarati",
        -            "Noto Serif Gurmukhi",
        -            "Noto Serif HK",
        -            "Noto Serif Hebrew",
        -            "Noto Serif Hentaigana",
        -            "Noto Serif JP",
        -            "Noto Serif KR",
        -            "Noto Serif Kannada",
        -            "Noto Serif Khitan Small Script",
        -            "Noto Serif Khmer",
        -            "Noto Serif Khojki",
        -            "Noto Serif Lao",
        -            "Noto Serif Makasar",
        -            "Noto Serif Malayalam",
        -            "Noto Serif Myanmar",
        -            "Noto Serif NP Hmong",
        -            "Noto Serif Old Uyghur",
        -            "Noto Serif Oriya",
        -            "Noto Serif Ottoman Siyaq",
        -            "Noto Serif SC",
        -            "Noto Serif Sinhala",
        -            "Noto Serif TC",
        -            "Noto Serif Tamil",
        -            "Noto Serif Tangut",
        -            "Noto Serif Telugu",
        -            "Noto Serif Thai",
        -            "Noto Serif Tibetan",
        -            "Noto Serif Todhri",
        -            "Noto Serif Toto",
        -            "Noto Serif Vithkuqi",
        -            "Noto Serif Yezidi",
        -            "Noto Traditional Nushu",
        -            "Noto Znamenny Musical Notation",
        -            "Nova Cut",
        -            "Nova Flat",
        -            "Nova Mono",
        -            "Nova Oval",
        -            "Nova Round",
        -            "Nova Script",
        -            "Nova Slim",
        -            "Nova Square",
        -            "Numans",
        -            "Nunito",
        -            "Nunito Sans",
        -            "Nuosu SIL",
        -            "Odibee Sans",
        -            "Odor Mean Chey",
        -            "Offside",
        -            "Oi",
        -            "Ojuju",
        -            "Old Standard TT",
        -            "Oldenburg",
        -            "Ole",
        -            "Oleo Script",
        -            "Oleo Script Swash Caps",
        -            "Onest",
        -            "Oooh Baby",
        -            "Open Sans",
        -            "Oranienbaum",
        -            "Orbit",
        -            "Orbitron",
        -            "Oregano",
        -            "Orelega One",
        -            "Orienta",
        -            "Original Surfer",
        -            "Oswald",
        -            "Outfit",
        -            "Over the Rainbow",
        -            "Overlock",
        -            "Overlock SC",
        -            "Overpass",
        -            "Overpass Mono",
        -            "Ovo",
        -            "Oxanium",
        -            "Oxygen",
        -            "Oxygen Mono",
        -            "PT Mono",
        -            "PT Sans",
        -            "PT Sans Caption",
        -            "PT Sans Narrow",
        -            "PT Serif",
        -            "PT Serif Caption",
        -            "Pacifico",
        -            "Padauk",
        -            "Padyakke Expanded One",
        -            "Palanquin",
        -            "Palanquin Dark",
        -            "Palette Mosaic",
        -            "Pangolin",
        -            "Paprika",
        -            "Parastoo",
        -            "Parisienne",
        -            "Parkinsans",
        -            "Passero One",
        -            "Passion One",
        -            "Passions Conflict",
        -            "Pathway Extreme",
        -            "Pathway Gothic One",
        -            "Patrick Hand",
        -            "Patrick Hand SC",
        -            "Pattaya",
        -            "Patua One",
        -            "Pavanam",
        -            "Paytone One",
        -            "Peddana",
        -            "Peralta",
        -            "Permanent Marker",
        -            "Petemoss",
        -            "Petit Formal Script",
        -            "Petrona",
        -            "Phetsarath",
        -            "Philosopher",
        -            "Phudu",
        -            "Piazzolla",
        -            "Piedra",
        -            "Pinyon Script",
        -            "Pirata One",
        -            "Pixelify Sans",
        -            "Plaster",
        -            "Platypi",
        -            "Play",
        -            "Playball",
        -            "Playfair",
        -            "Playfair Display",
        -            "Playfair Display SC",
        -            "Playpen Sans",
        -            "Playpen Sans Arabic",
        -            "Playpen Sans Deva",
        -            "Playpen Sans Hebrew",
        -            "Playpen Sans Thai",
        -            "Playwrite AR",
        -            "Playwrite AR Guides",
        -            "Playwrite AT",
        -            "Playwrite AT Guides",
        -            "Playwrite AU NSW",
        -            "Playwrite AU NSW Guides",
        -            "Playwrite AU QLD",
        -            "Playwrite AU QLD Guides",
        -            "Playwrite AU SA",
        -            "Playwrite AU SA Guides",
        -            "Playwrite AU TAS",
        -            "Playwrite AU TAS Guides",
        -            "Playwrite AU VIC",
        -            "Playwrite AU VIC Guides",
        -            "Playwrite BE VLG",
        -            "Playwrite BE VLG Guides",
        -            "Playwrite BE WAL",
        -            "Playwrite BE WAL Guides",
        -            "Playwrite BR",
        -            "Playwrite BR Guides",
        -            "Playwrite CA",
        -            "Playwrite CA Guides",
        -            "Playwrite CL",
        -            "Playwrite CL Guides",
        -            "Playwrite CO",
        -            "Playwrite CO Guides",
        -            "Playwrite CU",
        -            "Playwrite CU Guides",
        -            "Playwrite CZ",
        -            "Playwrite CZ Guides",
        -            "Playwrite DE Grund",
        -            "Playwrite DE Grund Guides",
        -            "Playwrite DE LA",
        -            "Playwrite DE LA Guides",
        -            "Playwrite DE SAS",
        -            "Playwrite DE SAS Guides",
        -            "Playwrite DE VA",
        -            "Playwrite DE VA Guides",
        -            "Playwrite DK Loopet",
        -            "Playwrite DK Loopet Guides",
        -            "Playwrite DK Uloopet",
        -            "Playwrite DK Uloopet Guides",
        -            "Playwrite ES",
        -            "Playwrite ES Deco",
        -            "Playwrite ES Deco Guides",
        -            "Playwrite ES Guides",
        -            "Playwrite FR Moderne",
        -            "Playwrite FR Moderne Guides",
        -            "Playwrite FR Trad",
        -            "Playwrite FR Trad Guides",
        -            "Playwrite GB J",
        -            "Playwrite GB J Guides",
        -            "Playwrite GB S",
        -            "Playwrite GB S Guides",
        -            "Playwrite HR",
        -            "Playwrite HR Guides",
        -            "Playwrite HR Lijeva",
        -            "Playwrite HR Lijeva Guides",
        -            "Playwrite HU",
        -            "Playwrite HU Guides",
        -            "Playwrite ID",
        -            "Playwrite ID Guides",
        -            "Playwrite IE",
        -            "Playwrite IE Guides",
        -            "Playwrite IN",
        -            "Playwrite IN Guides",
        -            "Playwrite IS",
        -            "Playwrite IS Guides",
        -            "Playwrite IT Moderna",
        -            "Playwrite IT Moderna Guides",
        -            "Playwrite IT Trad",
        -            "Playwrite IT Trad Guides",
        -            "Playwrite MX",
        -            "Playwrite MX Guides",
        -            "Playwrite NG Modern",
        -            "Playwrite NG Modern Guides",
        -            "Playwrite NL",
        -            "Playwrite NL Guides",
        -            "Playwrite NO",
        -            "Playwrite NO Guides",
        -            "Playwrite NZ",
        -            "Playwrite NZ Basic",
        -            "Playwrite NZ Basic Guides",
        -            "Playwrite NZ Guides",
        -            "Playwrite PE",
        -            "Playwrite PE Guides",
        -            "Playwrite PL",
        -            "Playwrite PL Guides",
        -            "Playwrite PT",
        -            "Playwrite PT Guides",
        -            "Playwrite RO",
        -            "Playwrite RO Guides",
        -            "Playwrite SK",
        -            "Playwrite SK Guides",
        -            "Playwrite TZ",
        -            "Playwrite TZ Guides",
        -            "Playwrite US Modern",
        -            "Playwrite US Modern Guides",
        -            "Playwrite US Trad",
        -            "Playwrite US Trad Guides",
        -            "Playwrite VN",
        -            "Playwrite VN Guides",
        -            "Playwrite ZA",
        -            "Playwrite ZA Guides",
        -            "Pliant",
        -            "Plus Jakarta Sans",
        -            "Pochaevsk",
        -            "Podkova",
        -            "Poetsen One",
        -            "Poiret One",
        -            "Poller One",
        -            "Poltawski Nowy",
        -            "Poly",
        -            "Pompiere",
        -            "Ponnala",
        -            "Ponomar",
        -            "Pontano Sans",
        -            "Poor Story",
        -            "Poppins",
        -            "Port Lligat Sans",
        -            "Port Lligat Slab",
        -            "Potta One",
        -            "Pragati Narrow",
        -            "Praise",
        -            "Prata",
        -            "Preahvihear",
        -            "Press Start 2P",
        -            "Pridi",
        -            "Princess Sofia",
        -            "Prociono",
        -            "Prompt",
        -            "Prosto One",
        -            "Protest Guerrilla",
        -            "Protest Revolution",
        -            "Protest Riot",
        -            "Protest Strike",
        -            "Proza Libre",
        -            "Public Sans",
        -            "Puppies Play",
        -            "Puritan",
        -            "Purple Purse",
        -            "Qahiri",
        -            "Quando",
        -            "Quantico",
        -            "Quattrocento",
        -            "Quattrocento Sans",
        -            "Questrial",
        -            "Quicksand",
        -            "Quintessential",
        -            "Qwigley",
        -            "Qwitcher Grypen",
        -            "REM",
        -            "Racing Sans One",
        -            "Radio Canada",
        -            "Radio Canada Big",
        -            "Radley",
        -            "Rajdhani",
        -            "Rakkas",
        -            "Raleway",
        -            "Raleway Dots",
        -            "Ramabhadra",
        -            "Ramaraja",
        -            "Rambla",
        -            "Rammetto One",
        -            "Rampart One",
        -            "Ramsina",
        -            "Ranchers",
        -            "Rancho",
        -            "Ranga",
        -            "Rasa",
        -            "Rationale",
        -            "Ravi Prakash",
        -            "Readex Pro",
        -            "Recursive",
        -            "Red Hat Display",
        -            "Red Hat Mono",
        -            "Red Hat Text",
        -            "Red Rose",
        -            "Redacted",
        -            "Redacted Script",
        -            "Reddit Mono",
        -            "Reddit Sans",
        -            "Reddit Sans Condensed",
        -            "Redressed",
        -            "Reem Kufi",
        -            "Reem Kufi Fun",
        -            "Reem Kufi Ink",
        -            "Reenie Beanie",
        -            "Reggae One",
        -            "Rethink Sans",
        -            "Revalia",
        -            "Rhodium Libre",
        -            "Ribeye",
        -            "Ribeye Marrow",
        -            "Righteous",
        -            "Risque",
        -            "Road Rage",
        -            "Roboto",
        -            "Roboto Condensed",
        -            "Roboto Flex",
        -            "Roboto Mono",
        -            "Roboto Serif",
        -            "Roboto Slab",
        -            "Rochester",
        -            "Rock 3D",
        -            "Rock Salt",
        -            "RocknRoll One",
        -            "Rokkitt",
        -            "Romanesco",
        -            "Ropa Sans",
        -            "Rosario",
        -            "Rosarivo",
        -            "Rouge Script",
        -            "Rowdies",
        -            "Rozha One",
        -            "Rubik",
        -            "Rubik 80s Fade",
        -            "Rubik Beastly",
        -            "Rubik Broken Fax",
        -            "Rubik Bubbles",
        -            "Rubik Burned",
        -            "Rubik Dirt",
        -            "Rubik Distressed",
        -            "Rubik Doodle Shadow",
        -            "Rubik Doodle Triangles",
        -            "Rubik Gemstones",
        -            "Rubik Glitch",
        -            "Rubik Glitch Pop",
        -            "Rubik Iso",
        -            "Rubik Lines",
        -            "Rubik Maps",
        -            "Rubik Marker Hatch",
        -            "Rubik Maze",
        -            "Rubik Microbe",
        -            "Rubik Mono One",
        -            "Rubik Moonrocks",
        -            "Rubik Pixels",
        -            "Rubik Puddles",
        -            "Rubik Scribble",
        -            "Rubik Spray Paint",
        -            "Rubik Storm",
        -            "Rubik Vinyl",
        -            "Rubik Wet Paint",
        -            "Ruda",
        -            "Rufina",
        -            "Ruge Boogie",
        -            "Ruluko",
        -            "Rum Raisin",
        -            "Ruslan Display",
        -            "Russo One",
        -            "Ruthie",
        -            "Ruwudu",
        -            "Rye",
        -            "SN Pro",
        -            "STIX Two Math",
        -            "STIX Two Text",
        -            "SUSE",
        -            "SUSE Mono",
        -            "Sacramento",
        -            "Sahitya",
        -            "Sail",
        -            "Saira",
        -            "Saira Condensed",
        -            "Saira Extra Condensed",
        -            "Saira Semi Condensed",
        -            "Saira Stencil",
        -            "Salsa",
        -            "Sanchez",
        -            "Sancreek",
        -            "Sankofa Display",
        -            "Sansation",
        -            "Sansita",
        -            "Sansita Swashed",
        -            "Sarabun",
        -            "Sarala",
        -            "Sarina",
        -            "Sarpanch",
        -            "Sassy Frass",
        -            "Satisfy",
        -            "Savate",
        -            "Sawarabi Gothic",
        -            "Sawarabi Mincho",
        -            "Scada",
        -            "Scheherazade New",
        -            "Schibsted Grotesk",
        -            "Schoolbell",
        -            "Science Gothic",
        -            "Scope One",
        -            "Seaweed Script",
        -            "Secular One",
        -            "Sedan",
        -            "Sedan SC",
        -            "Sedgwick Ave",
        -            "Sedgwick Ave Display",
        -            "Sekuya",
        -            "Sen",
        -            "Send Flowers",
        -            "Sevillana",
        -            "Seymour One",
        -            "Shadows Into Light",
        -            "Shadows Into Light Two",
        -            "Shafarik",
        -            "Shalimar",
        -            "Shantell Sans",
        -            "Shanti",
        -            "Share",
        -            "Share Tech",
        -            "Share Tech Mono",
        -            "Shippori Antique",
        -            "Shippori Antique B1",
        -            "Shippori Mincho",
        -            "Shippori Mincho B1",
        -            "Shizuru",
        -            "Shojumaru",
        -            "Short Stack",
        -            "Shrikhand",
        -            "Siemreap",
        -            "Sigmar",
        -            "Sigmar One",
        -            "Signika",
        -            "Signika Negative",
        -            "Silkscreen",
        -            "Simonetta",
        -            "Single Day",
        -            "Sintony",
        -            "Sirin Stencil",
        -            "Sirivennela",
        -            "Six Caps",
        -            "Sixtyfour",
        -            "Sixtyfour Convergence",
        -            "Skranji",
        -            "Slabo 13px",
        -            "Slabo 27px",
        -            "Slackey",
        -            "Slackside One",
        -            "Smokum",
        -            "Smooch",
        -            "Smooch Sans",
        -            "Smythe",
        -            "Sniglet",
        -            "Snippet",
        -            "Snowburst One",
        -            "Sofadi One",
        -            "Sofia",
        -            "Sofia Sans",
        -            "Sofia Sans Condensed",
        -            "Sofia Sans Extra Condensed",
        -            "Sofia Sans Semi Condensed",
        -            "Solitreo",
        -            "Solway",
        -            "Sometype Mono",
        -            "Song Myung",
        -            "Sono",
        -            "Sonsie One",
        -            "Sora",
        -            "Sorts Mill Goudy",
        -            "Sour Gummy",
        -            "Source Code Pro",
        -            "Source Sans 3",
        -            "Source Serif 4",
        -            "Space Grotesk",
        -            "Space Mono",
        -            "Special Elite",
        -            "Special Gothic",
        -            "Special Gothic Condensed One",
        -            "Special Gothic Expanded One",
        -            "Spectral",
        -            "Spectral SC",
        -            "Spicy Rice",
        -            "Spinnaker",
        -            "Spirax",
        -            "Splash",
        -            "Spline Sans",
        -            "Spline Sans Mono",
        -            "Squada One",
        -            "Square Peg",
        -            "Sree Krushnadevaraya",
        -            "Sriracha",
        -            "Srisakdi",
        -            "Staatliches",
        -            "Stack Sans Headline",
        -            "Stack Sans Notch",
        -            "Stack Sans Text",
        -            "Stalemate",
        -            "Stalinist One",
        -            "Stardos Stencil",
        -            "Stick",
        -            "Stick No Bills",
        -            "Stint Ultra Condensed",
        -            "Stint Ultra Expanded",
        -            "Stoke",
        -            "Story Script",
        -            "Strait",
        -            "Strichpunkt Sans",
        -            "Style Script",
        -            "Stylish",
        -            "Sue Ellen Francisco",
        -            "Suez One",
        -            "Sulphur Point",
        -            "Sumana",
        -            "Sunflower",
        -            "Sunshiney",
        -            "Supermercado One",
        -            "Sura",
        -            "Suranna",
        -            "Suravaram",
        -            "Suwannaphum",
        -            "Swanky and Moo Moo",
        -            "Syncopate",
        -            "Syne",
        -            "Syne Mono",
        -            "Syne Tactile",
        -            "TASA Explorer",
        -            "TASA Orbiter",
        -            "Tac One",
        -            "Tagesschrift",
        -            "Tai Heritage Pro",
        -            "Tajawal",
        -            "Tangerine",
        -            "Tapestry",
        -            "Taprom",
        -            "Tauri",
        -            "Taviraj",
        -            "Teachers",
        -            "Teko",
        -            "Tektur",
        -            "Telex",
        -            "Tenali Ramakrishna",
        -            "Tenor Sans",
        -            "Text Me One",
        -            "Texturina",
        -            "Thasadith",
        -            "The Girl Next Door",
        -            "The Nautigal",
        -            "Tienne",
        -            "TikTok Sans",
        -            "Tillana",
        -            "Tilt Neon",
        -            "Tilt Prism",
        -            "Tilt Warp",
        -            "Timmana",
        -            "Tinos",
        -            "Tiny5",
        -            "Tiro Bangla",
        -            "Tiro Devanagari Hindi",
        -            "Tiro Devanagari Marathi",
        -            "Tiro Devanagari Sanskrit",
        -            "Tiro Gurmukhi",
        -            "Tiro Kannada",
        -            "Tiro Tamil",
        -            "Tiro Telugu",
        -            "Tirra",
        -            "Titan One",
        -            "Titillium Web",
        -            "Tomorrow",
        -            "Tourney",
        -            "Trade Winds",
        -            "Train One",
        -            "Triodion",
        -            "Trirong",
        -            "Trispace",
        -            "Trocchi",
        -            "Trochut",
        -            "Truculenta",
        -            "Trykker",
        -            "Tsukimi Rounded",
        -            "Tuffy",
        -            "Tulpen One",
        -            "Turret Road",
        -            "Twinkle Star",
        -            "Ubuntu",
        -            "Ubuntu Condensed",
        -            "Ubuntu Mono",
        -            "Ubuntu Sans",
        -            "Ubuntu Sans Mono",
        -            "Uchen",
        -            "Ultra",
        -            "Unbounded",
        -            "Uncial Antiqua",
        -            "Underdog",
        -            "Unica One",
        -            "UnifrakturCook",
        -            "UnifrakturMaguntia",
        -            "Unkempt",
        -            "Unlock",
        -            "Unna",
        -            "UoqMunThenKhung",
        -            "Updock",
        -            "Urbanist",
        -            "VT323",
        -            "Vampiro One",
        -            "Varela",
        -            "Varela Round",
        -            "Varta",
        -            "Vast Shadow",
        -            "Vazirmatn",
        -            "Vend Sans",
        -            "Vesper Libre",
        -            "Viaoda Libre",
        -            "Vibes",
        -            "Vibur",
        -            "Victor Mono",
        -            "Vidaloka",
        -            "Viga",
        -            "Vina Sans",
        -            "Voces",
        -            "Volkhov",
        -            "Vollkorn",
        -            "Vollkorn SC",
        -            "Voltaire",
        -            "Vujahday Script",
        -            "WDXL Lubrifont JP N",
        -            "WDXL Lubrifont SC",
        -            "WDXL Lubrifont TC",
        -            "Waiting for the Sunrise",
        -            "Wallpoet",
        -            "Walter Turncoat",
        -            "Warnes",
        -            "Water Brush",
        -            "Waterfall",
        -            "Wavefont",
        -            "Wellfleet",
        -            "Wendy One",
        -            "Whisper",
        -            "WindSong",
        -            "Winky Rough",
        -            "Winky Sans",
        -            "Wire One",
        -            "Wittgenstein",
        -            "Wix Madefor Display",
        -            "Wix Madefor Text",
        -            "Work Sans",
        -            "Workbench",
        -            "Xanh Mono",
        -            "Yaldevi",
        -            "Yanone Kaffeesatz",
        -            "Yantramanav",
        -            "Yarndings 12",
        -            "Yarndings 12 Charted",
        -            "Yarndings 20",
        -            "Yarndings 20 Charted",
        -            "Yatra One",
        -            "Yellowtail",
        -            "Yeon Sung",
        -            "Yeseva One",
        -            "Yesteryear",
        -            "Yomogi",
        -            "Young Serif",
        -            "Yrsa",
        -            "Ysabeau",
        -            "Ysabeau Infant",
        -            "Ysabeau Office",
        -            "Ysabeau SC",
        -            "Yuji Boku",
        -            "Yuji Hentaigana Akari",
        -            "Yuji Hentaigana Akebono",
        -            "Yuji Mai",
        -            "Yuji Syuku",
        -            "Yusei Magic",
        -            "Yuyu",
        -            "Yuyu Short",
        -            "ZCOOL KuaiLe",
        -            "ZCOOL QingKe HuangYou",
        -            "ZCOOL XiaoWei",
        -            "Zain",
        -            "Zalando Sans",
        -            "Zalando Sans Expanded",
        -            "Zalando Sans SemiExpanded",
        -            "Zen Antique",
        -            "Zen Antique Soft",
        -            "Zen Dots",
        -            "Zen Kaku Gothic Antique",
        -            "Zen Kaku Gothic New",
        -            "Zen Kurenaido",
        -            "Zen Loop",
        -            "Zen Maru Gothic",
        -            "Zen Old Mincho",
        -            "Zen Tokyo Zoo",
        -            "Zeyada",
        -            "Zhi Mang Xing",
        -            "Zilla Slab",
        -            "Zilla Slab Highlight"
        -          ],
        -          "type": "string"
        -        },
        -        "titleFontSize": {
        -          "type": "number"
        -        },
        -        "titleFontWeight": {
        -          "type": "string"
        -        },
        -        "titleSubtitleGap": {
        -          "type": "number"
        -        }
        -      },
        -      "type": "object"
        -    },
        -    "title": {
        -      "type": "string"
        -    },
        -    "version": {
        -      "const": "2026-03-20",
        -      "type": "string"
        -    },
        -    "width": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "x": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "display": {
        -          "default": true,
        -          "type": "boolean"
        -        },
        -        "domain": {
        -          "anyOf": [
        -            {
        -              "items": [
        -                {
        -                  "type": "number"
        -                },
        -                {
        -                  "type": "number"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            }
        -          ]
        -        },
        -        "label": {
        -          "type": "string"
        -        },
        -        "nice": {
        -          "type": "boolean"
        -        },
        -        "tickFormat": {
        -          "type": "string"
        -        },
        -        "type": {
        -          "enum": [
        -            "linear",
        -            "log",
        -            "utc",
        -            "band"
        -          ],
        -          "type": "string"
        -        }
        -      },
        -      "type": "object"
        -    },
        -    "y": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "display": {
        -          "default": true,
        -          "type": "boolean"
        -        },
        -        "domain": {
        -          "anyOf": [
        -            {
        -              "items": [
        -                {
        -                  "type": "number"
        -                },
        -                {
        -                  "type": "number"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            }
        -          ]
        -        },
        -        "label": {
        -          "type": "string"
        -        },
        -        "nice": {
        -          "type": "boolean"
        -        },
        -        "tickFormat": {
        -          "type": "string"
        -        },
        -        "type": {
        -          "enum": [
        -            "linear",
        -            "log",
        -            "utc",
        -            "band"
        -          ],
        -          "type": "string"
        -        }
        -      },
        -      "type": "object"
        -    }
        -  },
        -  "required": [
        -    "version",
        -    "format",
        -    "marks"
        -  ],
        -  "title": "Szum Chart Configuration",
        -  "type": "object"
        -}
      • addedOutput schema / properties / validation / properties / suggestedDocument
        Added value: +{
        +  "additionalProperties": false,
        +  "properties": {
        +    "config": {
        +      "anyOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/PositionableBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SimpleBarValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/RangeCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/RangeCategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/RangeValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/StackedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/StackedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "totals": {
        +              "type": "boolean"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "totals",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/GroupedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/PositionableBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/BarSpacingPreference"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "arrangement",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/NormalizedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "arrangement",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/PositionableBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SimpleBarValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/RangeCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/RangeCategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/RangeValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/StackedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/StackedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "totals": {
        +              "type": "boolean"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "totals",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/GroupedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/PositionableBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/BarSpacingPreference"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "arrangement",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/NormalizedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "arrangement",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/CategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/LineLabels"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "points": {
        +              "anyOf": [
        +                {
        +                  "type": "boolean"
        +                },
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "fill": {
        +                      "$ref": "#/$defs/Color"
        +                    },
        +                    "radius": {
        +                      "exclusiveMinimum": 0,
        +                      "type": "number"
        +                    },
        +                    "series": {
        +                      "items": {
        +                        "type": [
        +                          "string",
        +                          "number"
        +                        ]
        +                      },
        +                      "minItems": 1,
        +                      "type": "array",
        +                      "uniqueItems": true
        +                    },
        +                    "stroke": {
        +                      "$ref": "#/$defs/Stroke"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/LineStroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "line",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "oneOf": [
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "aggregation": {
        +                      "enum": [
        +                        "sum",
        +                        "average",
        +                        "min",
        +                        "max",
        +                        "median"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "field": {
        +                      "minLength": 1,
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "scale": {
        +                      "$ref": "#/$defs/ContinuousScale"
        +                    },
        +                    "series": {
        +                      "$ref": "#/$defs/SeriesRole"
        +                    },
        +                    "type": {
        +                      "const": "long",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type",
        +                    "field"
        +                  ],
        +                  "title": "LineLongValuesRole",
        +                  "type": "object"
        +                },
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "aggregation": {
        +                      "enum": [
        +                        "sum",
        +                        "average",
        +                        "min",
        +                        "max",
        +                        "median"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "fields": {
        +                      "items": {
        +                        "minLength": 1,
        +                        "type": "string"
        +                      },
        +                      "minItems": 1,
        +                      "type": "array",
        +                      "uniqueItems": true
        +                    },
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "scale": {
        +                      "$ref": "#/$defs/ContinuousScale"
        +                    },
        +                    "type": {
        +                      "const": "wide",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type",
        +                    "fields"
        +                  ],
        +                  "title": "LineWideValuesRole",
        +                  "type": "object"
        +                },
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "scale": {
        +                      "oneOf": [
        +                        {
        +                          "$ref": "#/$defs/LinearScale"
        +                        },
        +                        {
        +                          "$ref": "#/$defs/LogScale"
        +                        }
        +                      ],
        +                      "title": "QuantitativeScale"
        +                    },
        +                    "series": {
        +                      "$ref": "#/$defs/SeriesRole"
        +                    },
        +                    "type": {
        +                      "const": "count",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type"
        +                  ],
        +                  "title": "CountValuesRole",
        +                  "type": "object"
        +                }
        +              ],
        +              "title": "LineValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "category",
        +            "values"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "type": {
        +                  "const": "stacked",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type"
        +              ],
        +              "type": "object"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/CategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/AreaLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "area",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "anyOf": [
        +                {
        +                  "oneOf": [
        +                    {
        +                      "additionalProperties": false,
        +                      "properties": {
        +                        "aggregation": {
        +                          "enum": [
        +                            "sum",
        +                            "average",
        +                            "min",
        +                            "max",
        +                            "median"
        +                          ],
        +                          "type": "string"
        +                        },
        +                        "field": {
        +                          "minLength": 1,
        +                          "type": "string"
        +                        },
        +                        "format": {
        +                          "type": "string"
        +                        },
        +                        "scale": {
        +                          "$ref": "#/$defs/LinearScale"
        +                        },
        +                        "series": {
        +                          "$ref": "#/$defs/SeriesRole"
        +                        },
        +                        "type": {
        +                          "const": "long",
        +                          "type": "string"
        +                        }
        +                      },
        +                      "required": [
        +                        "type",
        +                        "field"
        +                      ],
        +                      "title": "LinearLongValuesRole",
        +                      "type": "object"
        +                    },
        +                    {
        +                      "additionalProperties": false,
        +                      "properties": {
        +                        "aggregation": {
        +                          "enum": [
        +                            "sum",
        +                            "average",
        +                            "min",
        +                            "max",
        +                            "median"
        +                          ],
        +                          "type": "string"
        +                        },
        +                        "fields": {
        +                          "items": {
        +                            "minLength": 1,
        +                            "type": "string"
        +                          },
        +                          "minItems": 1,
        +                          "type": "array",
        +                          "uniqueItems": true
        +                        },
        +                        "format": {
        +                          "type": "string"
        +                        },
        +                        "scale": {
        +                          "$ref": "#/$defs/LinearScale"
        +                        },
        +                        "type": {
        +                          "const": "wide",
        +                          "type": "string"
        +                        }
        +                      },
        +                      "required": [
        +                        "type",
        +                        "fields"
        +                      ],
        +                      "title": "LinearWideValuesRole",
        +                      "type": "object"
        +                    },
        +                    {
        +                      "additionalProperties": false,
        +                      "properties": {
        +                        "format": {
        +                          "type": "string"
        +                        },
        +                        "scale": {
        +                          "$ref": "#/$defs/LinearScale"
        +                        },
        +                        "series": {
        +                          "$ref": "#/$defs/SeriesRole"
        +                        },
        +                        "type": {
        +                          "const": "count",
        +                          "type": "string"
        +                        }
        +                      },
        +                      "required": [
        +                        "type"
        +                      ],
        +                      "title": "LinearCountValuesRole",
        +                      "type": "object"
        +                    }
        +                  ],
        +                  "title": "LinearValuesRole"
        +                },
        +                {
        +                  "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +                }
        +              ],
        +              "title": "StackedLinearValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "category",
        +            "values"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/NormalizedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/CategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/AreaLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "area",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "category",
        +            "values",
        +            "arrangement"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/ScatterAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/ScatterColor"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "id": {
        +              "$ref": "#/$defs/FieldRole"
        +            },
        +            "interval": {
        +              "$ref": "#/$defs/ScatterInterval"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/ScatterLabels"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "radius": {
        +              "exclusiveMinimum": 0,
        +              "type": "number"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/ScatterReferences"
        +            },
        +            "size": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "field": {
        +                  "minLength": 1,
        +                  "type": "string"
        +                },
        +                "format": {
        +                  "type": "string"
        +                },
        +                "legend": {
        +                  "$ref": "#/$defs/LegendOptions"
        +                }
        +              },
        +              "required": [
        +                "field"
        +              ],
        +              "title": "SizeEncoding",
        +              "type": "object"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "scatter",
        +              "type": "string"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            },
        +            "x": {
        +              "$ref": "#/$defs/ScatterRole"
        +            },
        +            "xAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "y": {
        +              "$ref": "#/$defs/ScatterRole"
        +            },
        +            "yAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "x",
        +            "y"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/ScatterAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/ScatterColor"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "id": {
        +              "$ref": "#/$defs/FieldRole"
        +            },
        +            "interval": {
        +              "$ref": "#/$defs/ScatterInterval"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/ScatterLabels"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/ScatterReferences"
        +            },
        +            "size": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "field": {
        +                  "minLength": 1,
        +                  "type": "string"
        +                },
        +                "format": {
        +                  "type": "string"
        +                },
        +                "legend": {
        +                  "$ref": "#/$defs/LegendOptions"
        +                },
        +                "range": {
        +                  "items": [
        +                    {
        +                      "exclusiveMinimum": 0,
        +                      "type": "number"
        +                    },
        +                    {
        +                      "exclusiveMinimum": 0,
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                }
        +              },
        +              "required": [
        +                "field",
        +                "range"
        +              ],
        +              "title": "RangedSizeEncoding",
        +              "type": "object"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "scatter",
        +              "type": "string"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            },
        +            "x": {
        +              "$ref": "#/$defs/ScatterRole"
        +            },
        +            "xAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "y": {
        +              "$ref": "#/$defs/ScatterRole"
        +            },
        +            "yAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "x",
        +            "y",
        +            "size"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "items": {
        +                "additionalProperties": false,
        +                "properties": {
        +                  "align": {
        +                    "enum": [
        +                      "start",
        +                      "center",
        +                      "end"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "anchor": {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "category": {
        +                        "type": [
        +                          "string",
        +                          "number"
        +                        ]
        +                      },
        +                      "type": {
        +                        "const": "datum",
        +                        "type": "string"
        +                      }
        +                    },
        +                    "required": [
        +                      "type",
        +                      "category"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  "boxAnchor": {
        +                    "$ref": "#/$defs/AnnotationBoxAnchor"
        +                  },
        +                  "connector": {
        +                    "enum": [
        +                      "none",
        +                      "line",
        +                      "arrow"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "offset": {
        +                    "$ref": "#/$defs/AnnotationOffset"
        +                  },
        +                  "placement": {
        +                    "$ref": "#/$defs/AnnotationPlacement"
        +                  },
        +                  "reserveSpace": {
        +                    "$ref": "#/$defs/ReserveSpace"
        +                  },
        +                  "style": {
        +                    "$ref": "#/$defs/AnnotationTextStyle"
        +                  },
        +                  "text": {
        +                    "type": "string"
        +                  },
        +                  "visible": {
        +                    "type": "boolean"
        +                  },
        +                  "width": {
        +                    "anyOf": [
        +                      {
        +                        "exclusiveMinimum": 0,
        +                        "type": "number"
        +                      },
        +                      {
        +                        "const": "shape",
        +                        "type": "string"
        +                      }
        +                    ]
        +                  }
        +                },
        +                "required": [
        +                  "text",
        +                  "anchor"
        +                ],
        +                "title": "PieAnnotation",
        +                "type": "object"
        +              },
        +              "minItems": 1,
        +              "title": "PieAnnotations",
        +              "type": "array"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "field": {
        +                  "minLength": 1,
        +                  "type": "string"
        +                },
        +                "format": {
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "field"
        +              ],
        +              "type": "object"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "innerRadius": {
        +              "exclusiveMaximum": 1,
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "labels": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "content": {
        +                  "items": {
        +                    "enum": [
        +                      "category",
        +                      "value",
        +                      "percent"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "minItems": 1,
        +                  "type": "array",
        +                  "uniqueItems": true
        +                },
        +                "position": {
        +                  "enum": [
        +                    "auto",
        +                    "inside",
        +                    "outside"
        +                  ],
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "content"
        +              ],
        +              "type": "object"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "pie",
        +              "type": "string"
        +            },
        +            "values": {
        +              "oneOf": [
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "aggregation": {
        +                      "enum": [
        +                        "sum",
        +                        "average",
        +                        "min",
        +                        "max",
        +                        "median"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "field": {
        +                      "minLength": 1,
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "percentFormat": {
        +                      "type": "string"
        +                    },
        +                    "type": {
        +                      "const": "long",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type",
        +                    "field"
        +                  ],
        +                  "type": "object"
        +                },
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "percentFormat": {
        +                      "type": "string"
        +                    },
        +                    "type": {
        +                      "const": "count",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type"
        +                  ],
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "category",
        +            "values"
        +          ],
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "data": {
        +      "items": {
        +        "additionalProperties": {
        +          "type": [
        +            "string",
        +            "number",
        +            "null"
        +          ]
        +        },
        +        "propertyNames": {
        +          "type": "string"
        +        },
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "output": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "format": {
        +              "const": "svg",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "format"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "format": {
        +              "const": "png",
        +              "type": "string"
        +            },
        +            "scale": {
        +              "anyOf": [
        +                {
        +                  "const": 1,
        +                  "type": "number"
        +                },
        +                {
        +                  "const": 2,
        +                  "type": "number"
        +                },
        +                {
        +                  "const": 3,
        +                  "type": "number"
        +                },
        +                {
        +                  "const": 4,
        +                  "type": "number"
        +                }
        +              ]
        +            }
        +          },
        +          "required": [
        +            "format"
        +          ],
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "presentation": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "background": {
        +              "enum": [
        +                "opaque",
        +                "transparent"
        +              ],
        +              "type": "string"
        +            },
        +            "colorScheme": {
        +              "enum": [
        +                "light",
        +                "dark"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "colorScheme",
        +            "background"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "background": {
        +              "enum": [
        +                "opaque",
        +                "transparent"
        +              ],
        +              "type": "string"
        +            },
        +            "colorScheme": {
        +              "const": "system",
        +              "type": "string"
        +            },
        +            "systemFallback": {
        +              "enum": [
        +                "light",
        +                "dark"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "colorScheme",
        +            "systemFallback",
        +            "background"
        +          ],
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "size": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "height": {
        +              "maximum": 4096,
        +              "minimum": 1,
        +              "type": "integer"
        +            },
        +            "type": {
        +              "const": "canvas",
        +              "type": "string"
        +            },
        +            "width": {
        +              "maximum": 4096,
        +              "minimum": 1,
        +              "type": "integer"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "width",
        +            "height"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "height": {
        +              "maximum": 4096,
        +              "minimum": 1,
        +              "type": "integer"
        +            },
        +            "margin": {
        +              "additionalProperties": false,
        +              "minProperties": 1,
        +              "properties": {
        +                "bottom": {
        +                  "minimum": 0,
        +                  "type": "number"
        +                },
        +                "left": {
        +                  "minimum": 0,
        +                  "type": "number"
        +                },
        +                "right": {
        +                  "minimum": 0,
        +                  "type": "number"
        +                },
        +                "top": {
        +                  "minimum": 0,
        +                  "type": "number"
        +                }
        +              },
        +              "title": "Margin",
        +              "type": "object"
        +            },
        +            "type": {
        +              "const": "plot",
        +              "type": "string"
        +            },
        +            "width": {
        +              "maximum": 4096,
        +              "minimum": 1,
        +              "type": "integer"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "width",
        +            "height"
        +          ],
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "version": {
        +      "const": "2026-09-26",
        +      "type": "string"
        +    }
        +  },
        +  "required": [
        +    "version",
        +    "config",
        +    "data"
        +  ],
        +  "type": "object"
        +}
      • changedOutput schema / properties / validation / required
        Previous value: -[
        -  "valid",
        -  "message",
        -  "errors",
        -  "diagnostics"
        -]New value: +[
        +  "valid",
        +  "diagnostics"
        +]
    • Changedupdate_chart23 fields changed
      • addedInput schema / properties / acceptLosses
        Added value: +{
        +  "description": "Compatibility loss codes explicitly accepted by the user for this update",
        +  "items": {
        +    "type": "string"
        +  },
        +  "type": "array"
        +}
      • changedInput schema / properties / acknowledgeWarnings / description
        Previous value: -"Set true only after the user explicitly approves every warning returned for this exact config"New value: +"Set true only after the user explicitly approves every warning returned for this exact document"
      • removedInput schema / properties / config
        Removed value: -{
        -  "description": "Complete chart config JSON. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Bar and area value axes stay linear and include zero. Explicit base-10 log scales require positive finite values and domains; use line or dot. Configure scales with top-level x/y; hide with display: false. Put shared data at chart level; use mark data for distinct rows. When rows share a bar position, map a series field to fill or stroke before setting group or aggregate.",
        -  "type": "string"
        -}
      • addedInput schema / properties / document
        Added value: +{
        +  "description": "Complete current ChartDocument JSON with version, config, and data, plus optional presentation, size, and output. Use the same document for validation, rendering, and saving; version must match config.version. Semantic field roles must match row keys. Chronological annual values use YYYY strings on an explicit UTC scale. Column and bar charts with long, wide, or count values, and all area charts, use linear value scales. Their inferred domains include zero, while an explicit domain excluding zero produces a warning. Base-10 log roles and explicit log domains require positive finite values; use line, scatter, or ranged columns and bars.",
        +  "type": "string"
        +}
      • changedInput schema / required
        Previous value: -[
        -  "id",
        -  "config"
        -]New value: +[
        +  "id",
        +  "document"
        +]
      • addedOutput schema / $defs
        Added value: +{
        +  "AnnotationBoxAnchor": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "x": {
        +        "enum": [
        +          "start",
        +          "center",
        +          "end"
        +        ],
        +        "type": "string"
        +      },
        +      "y": {
        +        "enum": [
        +          "top",
        +          "middle",
        +          "bottom"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "x",
        +      "y"
        +    ],
        +    "title": "AnnotationBoxAnchor",
        +    "type": "object"
        +  },
        +  "AnnotationOffset": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "x": {
        +        "type": "number"
        +      },
        +      "y": {
        +        "type": "number"
        +      }
        +    },
        +    "title": "AnnotationOffset",
        +    "type": "object"
        +  },
        +  "AnnotationPlacement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "align": {
        +        "enum": [
        +          "start",
        +          "center",
        +          "end"
        +        ],
        +        "type": "string"
        +      },
        +      "gap": {
        +        "minimum": 0,
        +        "type": "number"
        +      },
        +      "side": {
        +        "enum": [
        +          "above",
        +          "right",
        +          "below",
        +          "left"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "side"
        +    ],
        +    "title": "AnnotationPlacement",
        +    "type": "object"
        +  },
        +  "AnnotationTextStyle": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "background": {
        +        "type": "boolean"
        +      },
        +      "color": {
        +        "$ref": "#/$defs/Color"
        +      },
        +      "fontSize": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      },
        +      "fontWeight": {
        +        "anyOf": [
        +          {
        +            "const": 100,
        +            "type": "number"
        +          },
        +          {
        +            "const": 200,
        +            "type": "number"
        +          },
        +          {
        +            "const": 300,
        +            "type": "number"
        +          },
        +          {
        +            "const": 400,
        +            "type": "number"
        +          },
        +          {
        +            "const": 500,
        +            "type": "number"
        +          },
        +          {
        +            "const": 600,
        +            "type": "number"
        +          },
        +          {
        +            "const": 700,
        +            "type": "number"
        +          },
        +          {
        +            "const": 800,
        +            "type": "number"
        +          },
        +          {
        +            "const": 900,
        +            "type": "number"
        +          }
        +        ]
        +      }
        +    },
        +    "title": "AnnotationTextStyle",
        +    "type": "object"
        +  },
        +  "AreaLabels": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "points": {
        +        "$ref": "#/$defs/ConnectedPointLabels"
        +      },
        +      "series": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "content": {
        +            "items": {
        +              "enum": [
        +                "series",
        +                "value",
        +                "percent"
        +              ],
        +              "type": "string"
        +            },
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          }
        +        },
        +        "required": [
        +          "content"
        +        ],
        +        "type": "object"
        +      }
        +    },
        +    "title": "AreaLabels",
        +    "type": "object"
        +  },
        +  "AxisOptions": {
        +    "anyOf": [
        +      {
        +        "type": "boolean"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "grid": {
        +            "type": "boolean"
        +          },
        +          "line": {
        +            "type": "boolean"
        +          },
        +          "title": {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        },
        +        "type": "object"
        +      }
        +    ],
        +    "title": "AxisOptions"
        +  },
        +  "BandScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "band",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "BandScale",
        +    "type": "object"
        +  },
        +  "BarCategoryRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "oneOf": [
        +          {
        +            "$ref": "#/$defs/BandScale"
        +          },
        +          {
        +            "$ref": "#/$defs/UtcScale"
        +          }
        +        ],
        +        "title": "BarCategoryScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "BarCategoryRole",
        +    "type": "object"
        +  },
        +  "BarSpacingPreference": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "category": {
        +        "exclusiveMaximum": 1,
        +        "minimum": 0,
        +        "type": "number"
        +      },
        +      "series": {
        +        "exclusiveMaximum": 1,
        +        "minimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "BarSpacingPreference",
        +    "type": "object"
        +  },
        +  "CartesianAnnotations": {
        +    "items": {
        +      "additionalProperties": false,
        +      "properties": {
        +        "align": {
        +          "enum": [
        +            "start",
        +            "center",
        +            "end"
        +          ],
        +          "type": "string"
        +        },
        +        "anchor": {
        +          "oneOf": [
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "category": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "category",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "category"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "category": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "series": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "datum",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "category"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "category": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "coordinate",
        +                  "type": "string"
        +                },
        +                "value": {
        +                  "type": "number"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "category",
        +                "value"
        +              ],
        +              "type": "object"
        +            }
        +          ],
        +          "title": "CartesianAnnotationAnchor"
        +        },
        +        "boxAnchor": {
        +          "$ref": "#/$defs/AnnotationBoxAnchor"
        +        },
        +        "connector": {
        +          "enum": [
        +            "none",
        +            "line",
        +            "arrow"
        +          ],
        +          "type": "string"
        +        },
        +        "offset": {
        +          "$ref": "#/$defs/AnnotationOffset"
        +        },
        +        "placement": {
        +          "$ref": "#/$defs/AnnotationPlacement"
        +        },
        +        "reserveSpace": {
        +          "$ref": "#/$defs/ReserveSpace"
        +        },
        +        "style": {
        +          "$ref": "#/$defs/AnnotationTextStyle"
        +        },
        +        "text": {
        +          "type": "string"
        +        },
        +        "visible": {
        +          "type": "boolean"
        +        },
        +        "width": {
        +          "anyOf": [
        +            {
        +              "exclusiveMinimum": 0,
        +              "type": "number"
        +            },
        +            {
        +              "const": "shape",
        +              "type": "string"
        +            }
        +          ]
        +        }
        +      },
        +      "required": [
        +        "text",
        +        "anchor"
        +      ],
        +      "title": "CartesianAnnotation",
        +      "type": "object"
        +    },
        +    "minItems": 1,
        +    "title": "CartesianAnnotations",
        +    "type": "array"
        +  },
        +  "CategoricalColor": {
        +    "anyOf": [
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "$ref": "#/$defs/CategoricalColorMapping"
        +      }
        +    ],
        +    "title": "CategoricalColor"
        +  },
        +  "CategoricalColorMapping": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "domain": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "legend": {
        +        "$ref": "#/$defs/LegendOptions"
        +      },
        +      "range": {
        +        "$ref": "#/$defs/ColorRange"
        +      }
        +    },
        +    "title": "CategoricalColorMapping",
        +    "type": "object"
        +  },
        +  "CategoricalReferences": {
        +    "items": {
        +      "anyOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "const": "category",
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "value": {
        +              "type": [
        +                "string",
        +                "number"
        +              ]
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "value"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "value": {
        +              "type": "number"
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "value"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "statistic": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "basis": {
        +                  "enum": [
        +                    "values",
        +                    "categoryTotals"
        +                  ],
        +                  "type": "string"
        +                },
        +                "operation": {
        +                  "enum": [
        +                    "average",
        +                    "median",
        +                    "min",
        +                    "max"
        +                  ],
        +                  "type": "string"
        +                },
        +                "scope": {
        +                  "enum": [
        +                    "visible",
        +                    "all"
        +                  ],
        +                  "type": "string"
        +                },
        +                "series": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                }
        +              },
        +              "required": [
        +                "operation",
        +                "scope"
        +              ],
        +              "title": "CategoricalReferenceStatistic",
        +              "type": "object"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "statistic",
        +              "type": "string"
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "statistic"
        +          ],
        +          "type": "object"
        +        }
        +      ],
        +      "title": "CategoricalReference"
        +    },
        +    "minItems": 1,
        +    "title": "CategoricalReferences",
        +    "type": "array"
        +  },
        +  "CategoryOrder": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "direction": {
        +            "enum": [
        +              "ascending",
        +              "descending"
        +            ],
        +            "type": "string"
        +          },
        +          "type": {
        +            "enum": [
        +              "category",
        +              "value"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "direction"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "$ref": "#/$defs/ExplicitCategoryOrder"
        +      }
        +    ],
        +    "title": "CategoryOrder"
        +  },
        +  "CategoryRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/CategoryScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "CategoryRole",
        +    "type": "object"
        +  },
        +  "CategoryScale": {
        +    "oneOf": [
        +      {
        +        "$ref": "#/$defs/BandScale"
        +      },
        +      {
        +        "$ref": "#/$defs/LinearScale"
        +      },
        +      {
        +        "$ref": "#/$defs/LogScale"
        +      },
        +      {
        +        "$ref": "#/$defs/UtcScale"
        +      }
        +    ],
        +    "title": "CategoryScale"
        +  },
        +  "CategorySpacing": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "category": {
        +        "exclusiveMaximum": 1,
        +        "minimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "required": [
        +      "category"
        +    ],
        +    "title": "CategorySpacing",
        +    "type": "object"
        +  },
        +  "Color": {
        +    "anyOf": [
        +      {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      {
        +        "anyOf": [
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "dark": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "light": {
        +                "minLength": 1,
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "light"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "dark": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "light": {
        +                "minLength": 1,
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "dark"
        +            ],
        +            "type": "object"
        +          }
        +        ]
        +      }
        +    ],
        +    "title": "Color"
        +  },
        +  "ColorRange": {
        +    "items": {
        +      "$ref": "#/$defs/Color"
        +    },
        +    "minItems": 1,
        +    "title": "ColorRange",
        +    "type": "array"
        +  },
        +  "ConnectedPointLabels": {
        +    "anyOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "at": {
        +            "enum": [
        +              "extrema",
        +              "all",
        +              "ends"
        +            ],
        +            "type": "string"
        +          },
        +          "content": {
        +            "items": {
        +              "enum": [
        +                "category",
        +                "value"
        +              ],
        +              "type": "string"
        +            },
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "position": {
        +            "enum": [
        +              "above",
        +              "side"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "at",
        +          "content"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "at": {
        +            "enum": [
        +              "extrema",
        +              "all",
        +              "ends"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "position": {
        +            "enum": [
        +              "above",
        +              "side"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "at",
        +          "field"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "ConnectedPointLabels"
        +  },
        +  "ContinuousScale": {
        +    "oneOf": [
        +      {
        +        "$ref": "#/$defs/LinearScale"
        +      },
        +      {
        +        "$ref": "#/$defs/LogScale"
        +      },
        +      {
        +        "$ref": "#/$defs/UtcScale"
        +      }
        +    ],
        +    "title": "ContinuousScale"
        +  },
        +  "ExplicitCategoryOrder": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "categories": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "type": {
        +        "const": "explicit",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "categories"
        +    ],
        +    "title": "ExplicitCategoryOrder",
        +    "type": "object"
        +  },
        +  "FieldRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "FieldRole",
        +    "type": "object"
        +  },
        +  "GoogleFontFamily": {
        +    "enum": [
        +      "ABeeZee",
        +      "ADLaM Display",
        +      "AR One Sans",
        +      "Abel",
        +      "Abhaya Libre",
        +      "Aboreto",
        +      "Abril Fatface",
        +      "Abyssinica SIL",
        +      "Aclonica",
        +      "Acme",
        +      "Actor",
        +      "Adamina",
        +      "Advent Pro",
        +      "Afacad",
        +      "Afacad Flux",
        +      "Agbalumo",
        +      "Agdasima",
        +      "Agu Display",
        +      "Aguafina Script",
        +      "Akatab",
        +      "Akaya Kanadaka",
        +      "Akaya Telivigala",
        +      "Akronim",
        +      "Akshar",
        +      "Akt",
        +      "Aladin",
        +      "Alan Sans",
        +      "Alata",
        +      "Alatsi",
        +      "Albert Sans",
        +      "Aldrich",
        +      "Alef",
        +      "Alegreya",
        +      "Alegreya SC",
        +      "Alegreya Sans",
        +      "Alegreya Sans SC",
        +      "Aleo",
        +      "Alex Brush",
        +      "Alexandria",
        +      "Alfa Slab One",
        +      "Alice",
        +      "Alien Block",
        +      "Alike",
        +      "Alike Angular",
        +      "Alkalami",
        +      "Alkatra",
        +      "Allan",
        +      "Allerta",
        +      "Allerta Stencil",
        +      "Allison",
        +      "Allkin",
        +      "Allura",
        +      "Almarai",
        +      "Almendra",
        +      "Almendra Display",
        +      "Almendra SC",
        +      "Alumni Sans",
        +      "Alumni Sans Collegiate One",
        +      "Alumni Sans Inline One",
        +      "Alumni Sans Pinstripe",
        +      "Alumni Sans SC",
        +      "Alyamama",
        +      "Amarante",
        +      "Amaranth",
        +      "Amarna",
        +      "Amatic SC",
        +      "Amethysta",
        +      "Amiko",
        +      "Amiri",
        +      "Amiri Quran",
        +      "Amita",
        +      "Anaheim",
        +      "Ancizar Sans",
        +      "Ancizar Serif",
        +      "Andada Pro",
        +      "Andika",
        +      "Anek Bangla",
        +      "Anek Devanagari",
        +      "Anek Gujarati",
        +      "Anek Gurmukhi",
        +      "Anek Kannada",
        +      "Anek Latin",
        +      "Anek Malayalam",
        +      "Anek Odia",
        +      "Anek Tamil",
        +      "Anek Telugu",
        +      "Angkor",
        +      "Annapurna SIL",
        +      "Annie Use Your Telescope",
        +      "Anonymous Pro",
        +      "Anta",
        +      "Antic",
        +      "Antic Didone",
        +      "Antic Slab",
        +      "Anton",
        +      "Anton SC",
        +      "Antonio",
        +      "Anuphan",
        +      "Anybody",
        +      "Aoboshi One",
        +      "Arapey",
        +      "Arbutus",
        +      "Arbutus Slab",
        +      "Architects Daughter",
        +      "Archivo",
        +      "Archivo Black",
        +      "Archivo Narrow",
        +      "Are You Serious",
        +      "Aref Ruqaa",
        +      "Aref Ruqaa Ink",
        +      "Arima",
        +      "Arimo",
        +      "Arizonia",
        +      "Armata",
        +      "Arsenal",
        +      "Arsenal SC",
        +      "Artifika",
        +      "Arvo",
        +      "Arya",
        +      "Asap",
        +      "Asap Condensed",
        +      "Asar",
        +      "Asimovian",
        +      "Asset",
        +      "Assistant",
        +      "Asta Sans",
        +      "Astloch",
        +      "Asul",
        +      "Athiti",
        +      "Atkinson Hyperlegible",
        +      "Atkinson Hyperlegible Mono",
        +      "Atkinson Hyperlegible Next",
        +      "Atma",
        +      "Atomic Age",
        +      "Aubrey",
        +      "Audiowide",
        +      "Autour One",
        +      "Average",
        +      "Average Sans",
        +      "Averia Gruesa Libre",
        +      "Averia Libre",
        +      "Averia Sans Libre",
        +      "Averia Serif Libre",
        +      "Azeret Mono",
        +      "B612",
        +      "B612 Mono",
        +      "BBH Bartle",
        +      "BBH Bogle",
        +      "BBH Hegarty",
        +      "BIZ UDGothic",
        +      "BIZ UDMincho",
        +      "BIZ UDPGothic",
        +      "BIZ UDPMincho",
        +      "BJCree",
        +      "Babylonica",
        +      "Bacasime Antique",
        +      "Bad Script",
        +      "Badeen Display",
        +      "Bagel Fat One",
        +      "Bahiana",
        +      "Bahianita",
        +      "Bai Jamjuree",
        +      "Bakbak One",
        +      "Ballet",
        +      "Baloo 2",
        +      "Baloo Bhai 2",
        +      "Baloo Bhaijaan 2",
        +      "Baloo Bhaina 2",
        +      "Baloo Chettan 2",
        +      "Baloo Da 2",
        +      "Baloo Paaji 2",
        +      "Baloo Tamma 2",
        +      "Baloo Tammudu 2",
        +      "Baloo Thambi 2",
        +      "Balsamiq Sans",
        +      "Balthazar",
        +      "Bangers",
        +      "Barlow",
        +      "Barlow Condensed",
        +      "Barlow Semi Condensed",
        +      "Barriecito",
        +      "Barrio",
        +      "Basic",
        +      "Baskervville",
        +      "Baskervville SC",
        +      "Battambang",
        +      "Baumans",
        +      "Bayon",
        +      "Be Vietnam Pro",
        +      "Beau Rivage",
        +      "Bebas Neue",
        +      "Beiruti",
        +      "Belanosima",
        +      "Belgrano",
        +      "Bellefair",
        +      "Belleza",
        +      "Bellota",
        +      "Bellota Text",
        +      "BenchNine",
        +      "Benne",
        +      "Bentham",
        +      "Berkshire Swash",
        +      "Besley",
        +      "Betania Patmos",
        +      "Betania Patmos GDL",
        +      "Betania Patmos In",
        +      "Betania Patmos In GDL",
        +      "Beth Ellen",
        +      "Bevan",
        +      "BhuTuka Expanded One",
        +      "Big Shoulders",
        +      "Big Shoulders Inline",
        +      "Big Shoulders Stencil",
        +      "Bigelow Rules",
        +      "Bigshot One",
        +      "Bilbo",
        +      "Bilbo Swash Caps",
        +      "BioRhyme",
        +      "BioRhyme Expanded",
        +      "Birthstone",
        +      "Birthstone Bounce",
        +      "Biryani",
        +      "Bitcount",
        +      "Bitcount Grid Double",
        +      "Bitcount Grid Double Ink",
        +      "Bitcount Grid Single",
        +      "Bitcount Grid Single Ink",
        +      "Bitcount Ink",
        +      "Bitcount Prop Double",
        +      "Bitcount Prop Double Ink",
        +      "Bitcount Prop Single",
        +      "Bitcount Prop Single Ink",
        +      "Bitcount Single",
        +      "Bitcount Single Ink",
        +      "Bitter",
        +      "Black And White Picture",
        +      "Black Han Sans",
        +      "Black Ops One",
        +      "Blaka",
        +      "Blaka Hollow",
        +      "Blaka Ink",
        +      "Blinker",
        +      "Bodoni Moda",
        +      "Bodoni Moda SC",
        +      "Bokor",
        +      "Boldonse",
        +      "Bona Nova",
        +      "Bona Nova SC",
        +      "Bonbon",
        +      "Bonheur Royale",
        +      "Boogaloo",
        +      "Borel",
        +      "Bowlby One",
        +      "Bowlby One SC",
        +      "Bpmf Huninn",
        +      "Bpmf Iansui",
        +      "Bpmf Zihi Kai Std",
        +      "Braah One",
        +      "Brawler",
        +      "Bree Serif",
        +      "Bricolage Grotesque",
        +      "Bruno Ace",
        +      "Bruno Ace SC",
        +      "Brygada 1918",
        +      "Bubblegum Sans",
        +      "Bubbler One",
        +      "Buda",
        +      "Buenard",
        +      "Bungee",
        +      "Bungee Hairline",
        +      "Bungee Inline",
        +      "Bungee Outline",
        +      "Bungee Shade",
        +      "Bungee Spice",
        +      "Bungee Tint",
        +      "Butcherman",
        +      "Butterfly Kids",
        +      "Bytesized",
        +      "Cabin",
        +      "Cabin Condensed",
        +      "Cabin Sketch",
        +      "Cactus Classical Serif",
        +      "Caesar Dressing",
        +      "Cagliostro",
        +      "Cairo",
        +      "Cairo Play",
        +      "Cal Sans",
        +      "Caladea",
        +      "Calistoga",
        +      "Calligraffitti",
        +      "Cambay",
        +      "Cambo",
        +      "Candal",
        +      "Cantarell",
        +      "Cantata One",
        +      "Cantora One",
        +      "Caprasimo",
        +      "Capriola",
        +      "Caramel",
        +      "Carattere",
        +      "Cardo",
        +      "Carlito",
        +      "Carme",
        +      "Carrois Gothic",
        +      "Carrois Gothic SC",
        +      "Carter One",
        +      "Cascadia Code",
        +      "Cascadia Mono",
        +      "Castoro",
        +      "Castoro Titling",
        +      "Catamaran",
        +      "Caudex",
        +      "Cause",
        +      "Caveat",
        +      "Caveat Brush",
        +      "Cedarville Cursive",
        +      "Ceviche One",
        +      "Chakra Petch",
        +      "Changa",
        +      "Changa One",
        +      "Chango",
        +      "Charis SIL",
        +      "Charm",
        +      "Charmonman",
        +      "Chathura",
        +      "Chau Philomene One",
        +      "Chela One",
        +      "Chelsea Market",
        +      "Chenla",
        +      "Cherish",
        +      "Cherry Bomb One",
        +      "Cherry Cream Soda",
        +      "Cherry Swash",
        +      "Chewy",
        +      "Chicle",
        +      "Chilanka",
        +      "Chiron GoRound TC",
        +      "Chiron Hei HK",
        +      "Chiron Sung HK",
        +      "Chivo",
        +      "Chivo Mono",
        +      "Chocolate Classical Sans",
        +      "Chokokutai",
        +      "Chonburi",
        +      "Cinzel",
        +      "Cinzel Decorative",
        +      "Clicker Script",
        +      "Climate Crisis",
        +      "Coda",
        +      "Codystar",
        +      "Coiny",
        +      "Combo",
        +      "Comfortaa",
        +      "Comforter",
        +      "Comforter Brush",
        +      "Comic Neue",
        +      "Comic Relief",
        +      "Coming Soon",
        +      "Comme",
        +      "Commissioner",
        +      "Concert One",
        +      "Condiment",
        +      "Content",
        +      "Contrail One",
        +      "Convergence",
        +      "Cookie",
        +      "Copse",
        +      "Coral Pixels",
        +      "Corben",
        +      "Corinthia",
        +      "Cormorant",
        +      "Cormorant Garamond",
        +      "Cormorant Infant",
        +      "Cormorant SC",
        +      "Cormorant Unicase",
        +      "Cormorant Upright",
        +      "Cossette Texte",
        +      "Cossette Titre",
        +      "Courgette",
        +      "Courier Prime",
        +      "Cousine",
        +      "Coustard",
        +      "Covered By Your Grace",
        +      "Crafty Girls",
        +      "Creepster",
        +      "Crete Round",
        +      "Crimson Pro",
        +      "Crimson Text",
        +      "Croissant One",
        +      "Crushed",
        +      "Cuprum",
        +      "Cute Font",
        +      "Cutive",
        +      "Cutive Mono",
        +      "DM Mono",
        +      "DM Sans",
        +      "DM Serif Display",
        +      "DM Serif Text",
        +      "Dai Banna SIL",
        +      "Damion",
        +      "Dancing Script",
        +      "Danfo",
        +      "Dangrek",
        +      "Darker Grotesque",
        +      "Darumadrop One",
        +      "Datatype",
        +      "David Libre",
        +      "Dawning of a New Day",
        +      "Days One",
        +      "Dekko",
        +      "Dela Gothic One",
        +      "Delicious Handrawn",
        +      "Delius",
        +      "Delius Swash Caps",
        +      "Delius Unicase",
        +      "Della Respira",
        +      "Denk One",
        +      "Devonshire",
        +      "Dhurjati",
        +      "Didact Gothic",
        +      "Diphylleia",
        +      "Diplomata",
        +      "Diplomata SC",
        +      "Do Hyeon",
        +      "Dokdo",
        +      "Domine",
        +      "Donegal One",
        +      "Dongle",
        +      "Doppio One",
        +      "Dorsa",
        +      "Dosis",
        +      "DotGothic16",
        +      "Doto",
        +      "Dr Sugiyama",
        +      "Duru Sans",
        +      "DynaPuff",
        +      "Dynalight",
        +      "EB Garamond",
        +      "Eagle Lake",
        +      "East Sea Dokdo",
        +      "Eater",
        +      "Economica",
        +      "Eczar",
        +      "Edu AU VIC WA NT Arrows",
        +      "Edu AU VIC WA NT Dots",
        +      "Edu AU VIC WA NT Guides",
        +      "Edu AU VIC WA NT Hand",
        +      "Edu AU VIC WA NT Pre",
        +      "Edu NSW ACT Cursive",
        +      "Edu NSW ACT Foundation",
        +      "Edu NSW ACT Hand Pre",
        +      "Edu QLD Beginner",
        +      "Edu QLD Hand",
        +      "Edu SA Beginner",
        +      "Edu SA Hand",
        +      "Edu TAS Beginner",
        +      "Edu VIC WA NT Beginner",
        +      "Edu VIC WA NT Hand",
        +      "Edu VIC WA NT Hand Pre",
        +      "El Messiri",
        +      "Electrolize",
        +      "Elms Sans",
        +      "Elsie",
        +      "Elsie Swash Caps",
        +      "Emblema One",
        +      "Emilys Candy",
        +      "Encode Sans",
        +      "Encode Sans Condensed",
        +      "Encode Sans Expanded",
        +      "Encode Sans SC",
        +      "Encode Sans Semi Condensed",
        +      "Encode Sans Semi Expanded",
        +      "Engagement",
        +      "Englebert",
        +      "Enriqueta",
        +      "Ephesis",
        +      "Epilogue",
        +      "Epunda Sans",
        +      "Epunda Slab",
        +      "Erica One",
        +      "Esteban",
        +      "Estedad",
        +      "Estonia",
        +      "Euphoria Script",
        +      "Ewert",
        +      "Exile",
        +      "Exo",
        +      "Exo 2",
        +      "Expletus Sans",
        +      "Explora",
        +      "Faculty Glyphic",
        +      "Fahkwang",
        +      "Familjen Grotesk",
        +      "Fanwood Text",
        +      "Farro",
        +      "Farsan",
        +      "Fascinate",
        +      "Fascinate Inline",
        +      "Faster One",
        +      "Fasthand",
        +      "Fauna One",
        +      "Faustina",
        +      "Federant",
        +      "Federo",
        +      "Felipa",
        +      "Fenix",
        +      "Festive",
        +      "Figtree",
        +      "Finger Paint",
        +      "Finlandica Headline",
        +      "Finlandica Text",
        +      "Fira Code",
        +      "Fira Mono",
        +      "Fira Sans",
        +      "Fira Sans Condensed",
        +      "Fira Sans Extra Condensed",
        +      "Fjalla One",
        +      "Fjord One",
        +      "Flamenco",
        +      "Flavors",
        +      "Fleur De Leah",
        +      "Flow Block",
        +      "Flow Circular",
        +      "Flow Rounded",
        +      "Foldit",
        +      "Fondamento",
        +      "Fontdiner Swanky",
        +      "Forum",
        +      "Fragment Mono",
        +      "Francois One",
        +      "Frank Ruhl Libre",
        +      "Fraunces",
        +      "Freckle Face",
        +      "Fredericka the Great",
        +      "Fredoka",
        +      "Freehand",
        +      "Freeman",
        +      "Fresca",
        +      "Frijole",
        +      "Fruktur",
        +      "Fugaz One",
        +      "Fuggles",
        +      "Funnel Display",
        +      "Funnel Sans",
        +      "Fustat",
        +      "Fuzzy Bubbles",
        +      "GFS Didot",
        +      "GFS Neohellenic",
        +      "Ga Maamli",
        +      "Gabarito",
        +      "Gabriela",
        +      "Gaegu",
        +      "Gafata",
        +      "Gajraj One",
        +      "Galada",
        +      "Galdeano",
        +      "Galindo",
        +      "Gamja Flower",
        +      "Gantari",
        +      "Gasoek One",
        +      "Gayathri",
        +      "Geist",
        +      "Geist Mono",
        +      "Geist Pixel",
        +      "Gelasio",
        +      "Gemunu Libre",
        +      "Genos",
        +      "Gentium Book Plus",
        +      "Gentium Plus",
        +      "Geo",
        +      "Geologica",
        +      "Geom",
        +      "Geomini",
        +      "Georama",
        +      "Geostar",
        +      "Geostar Fill",
        +      "Germania One",
        +      "Gideon Roman",
        +      "Gidole",
        +      "Gidugu",
        +      "Gilda Display",
        +      "Girassol",
        +      "Give You Glory",
        +      "Glass Antiqua",
        +      "Glegoo",
        +      "Gloock",
        +      "Gloria Hallelujah",
        +      "Glory",
        +      "Gluten",
        +      "Goblin One",
        +      "Gochi Hand",
        +      "Goldman",
        +      "Golos Text",
        +      "Google Sans",
        +      "Google Sans Code",
        +      "Google Sans Flex",
        +      "Gorditas",
        +      "Gothic A1",
        +      "Gotu",
        +      "Goudy Bookletter 1911",
        +      "Gowun Batang",
        +      "Gowun Dodum",
        +      "Graduate",
        +      "Grand Hotel",
        +      "Grandiflora One",
        +      "Grandstander",
        +      "Grape Nuts",
        +      "Gravitas One",
        +      "Great Vibes",
        +      "Grechen Fuemen",
        +      "Grenze",
        +      "Grenze Gotisch",
        +      "Grey Qo",
        +      "Griffy",
        +      "Gruppo",
        +      "Gudea",
        +      "Gugi",
        +      "Gulzar",
        +      "Gupter",
        +      "Gurajada",
        +      "Gveret Levin",
        +      "Gwendolyn",
        +      "Habibi",
        +      "Hachi Maru Pop",
        +      "Hahmlet",
        +      "Halant",
        +      "Hammersmith One",
        +      "Hanalei",
        +      "Hanalei Fill",
        +      "Handjet",
        +      "Handlee",
        +      "Hanken Grotesk",
        +      "Hanuman",
        +      "Happy Monkey",
        +      "Harmattan",
        +      "Headland One",
        +      "Hedvig Letters Sans",
        +      "Hedvig Letters Serif",
        +      "Heebo",
        +      "Henny Penny",
        +      "Hepta Slab",
        +      "Herr Von Muellerhoff",
        +      "Hi Melody",
        +      "Hibur Mono",
        +      "Hina Mincho",
        +      "Hind",
        +      "Hind Guntur",
        +      "Hind Madurai",
        +      "Hind Mysuru",
        +      "Hind Siliguri",
        +      "Hind Vadodara",
        +      "Holtwood One SC",
        +      "Homemade Apple",
        +      "Homenaje",
        +      "Honk",
        +      "Host Grotesk",
        +      "Hubballi",
        +      "Hubot Sans",
        +      "Huninn",
        +      "Hurricane",
        +      "IBM Plex Mono",
        +      "IBM Plex Sans",
        +      "IBM Plex Sans Arabic",
        +      "IBM Plex Sans Condensed",
        +      "IBM Plex Sans Devanagari",
        +      "IBM Plex Sans Hebrew",
        +      "IBM Plex Sans JP",
        +      "IBM Plex Sans KR",
        +      "IBM Plex Sans Thai",
        +      "IBM Plex Sans Thai Looped",
        +      "IBM Plex Serif",
        +      "IM Fell DW Pica",
        +      "IM Fell DW Pica SC",
        +      "IM Fell Double Pica",
        +      "IM Fell Double Pica SC",
        +      "IM Fell English",
        +      "IM Fell English SC",
        +      "IM Fell French Canon",
        +      "IM Fell French Canon SC",
        +      "IM Fell Great Primer",
        +      "IM Fell Great Primer SC",
        +      "Iansui",
        +      "Ibarra Real Nova",
        +      "Iceberg",
        +      "Iceland",
        +      "Idiqlat",
        +      "Imbue",
        +      "Imperial Script",
        +      "Imprima",
        +      "Inclusive Sans",
        +      "Inconsolata",
        +      "Inder",
        +      "Indie Flower",
        +      "Ingrid Darling",
        +      "Inika",
        +      "Inknut Antiqua",
        +      "Inria Sans",
        +      "Inria Serif",
        +      "Inspiration",
        +      "Instrument Sans",
        +      "Instrument Serif",
        +      "Intel One Mono",
        +      "Inter",
        +      "Inter Tight",
        +      "Iosevka Charon",
        +      "Iosevka Charon Mono",
        +      "Irish Grover",
        +      "Island Moments",
        +      "Istok Web",
        +      "Italiana",
        +      "Italianno",
        +      "Itim",
        +      "Jacquard 12",
        +      "Jacquard 12 Charted",
        +      "Jacquard 24",
        +      "Jacquard 24 Charted",
        +      "Jacquarda Bastarda 9",
        +      "Jacquarda Bastarda 9 Charted",
        +      "Jacques Francois",
        +      "Jacques Francois Shadow",
        +      "Jaini",
        +      "Jaini Purva",
        +      "Jaldi",
        +      "Jaro",
        +      "Jersey 10",
        +      "Jersey 10 Charted",
        +      "Jersey 15",
        +      "Jersey 15 Charted",
        +      "Jersey 20",
        +      "Jersey 20 Charted",
        +      "Jersey 25",
        +      "Jersey 25 Charted",
        +      "JetBrains Mono",
        +      "Jim Nightshade",
        +      "Joan",
        +      "Jockey One",
        +      "Jolly Lodger",
        +      "Jomhuria",
        +      "Jomolhari",
        +      "Josefin Sans",
        +      "Josefin Slab",
        +      "Jost",
        +      "Joti One",
        +      "Jua",
        +      "Judson",
        +      "Julee",
        +      "Julius Sans One",
        +      "Junge",
        +      "Jura",
        +      "Just Another Hand",
        +      "Just Me Again Down Here",
        +      "K2D",
        +      "Kablammo",
        +      "Kadwa",
        +      "Kaisei Decol",
        +      "Kaisei HarunoUmi",
        +      "Kaisei Opti",
        +      "Kaisei Tokumin",
        +      "Kalam",
        +      "Kalnia",
        +      "Kalnia Glaze",
        +      "Kameron",
        +      "Kanchenjunga",
        +      "Kanit",
        +      "Kantumruy Pro",
        +      "Kapakana",
        +      "Karantina",
        +      "Karla",
        +      "Karla Tamil Inclined",
        +      "Karla Tamil Upright",
        +      "Karma",
        +      "Katibeh",
        +      "Kaushan Script",
        +      "Kavivanar",
        +      "Kavoon",
        +      "Kay Pho Du",
        +      "Kdam Thmor Pro",
        +      "Keania One",
        +      "Kedebideri",
        +      "Kelly Slab",
        +      "Kenia",
        +      "Khand",
        +      "Khmer",
        +      "Khula",
        +      "Kings",
        +      "Kirang Haerang",
        +      "Kite One",
        +      "Kiwi Maru",
        +      "Klee One",
        +      "Knewave",
        +      "KoHo",
        +      "Kodchasan",
        +      "Kode Mono",
        +      "Koh Santepheap",
        +      "Kolker Brush",
        +      "Konkhmer Sleokchher",
        +      "Kosugi",
        +      "Kosugi Maru",
        +      "Kotta One",
        +      "Koulen",
        +      "Kranky",
        +      "Kreon",
        +      "Kristi",
        +      "Krona One",
        +      "Krub",
        +      "Kufam",
        +      "Kulim Park",
        +      "Kumar One",
        +      "Kumar One Outline",
        +      "Kumbh Sans",
        +      "Kurale",
        +      "LINE Seed JP",
        +      "LXGW Marker Gothic",
        +      "LXGW WenKai Mono TC",
        +      "LXGW WenKai TC",
        +      "La Belle Aurore",
        +      "Labrada",
        +      "Lacquer",
        +      "Laila",
        +      "Lakki Reddy",
        +      "Lalezar",
        +      "Lancelot",
        +      "Langar",
        +      "Lateef",
        +      "Lato",
        +      "Lavishly Yours",
        +      "League Gothic",
        +      "League Script",
        +      "League Spartan",
        +      "Leckerli One",
        +      "Ledger",
        +      "Lekton",
        +      "Lemon",
        +      "Lemonada",
        +      "Lexend",
        +      "Lexend Deca",
        +      "Lexend Exa",
        +      "Lexend Giga",
        +      "Lexend Mega",
        +      "Lexend Peta",
        +      "Lexend Tera",
        +      "Lexend Zetta",
        +      "Libertinus Keyboard",
        +      "Libertinus Math",
        +      "Libertinus Mono",
        +      "Libertinus Sans",
        +      "Libertinus Serif",
        +      "Libertinus Serif Display",
        +      "Libre Barcode 128",
        +      "Libre Barcode 128 Text",
        +      "Libre Barcode 39",
        +      "Libre Barcode 39 Extended",
        +      "Libre Barcode 39 Extended Text",
        +      "Libre Barcode 39 Text",
        +      "Libre Barcode EAN13 Text",
        +      "Libre Baskerville",
        +      "Libre Bodoni",
        +      "Libre Caslon Display",
        +      "Libre Caslon Text",
        +      "Libre Franklin",
        +      "Licorice",
        +      "Life Savers",
        +      "Lilex",
        +      "Lilita One",
        +      "Lily Script One",
        +      "Limelight",
        +      "Linden Hill",
        +      "Linefont",
        +      "Lisu Bosa",
        +      "Liter",
        +      "Literata",
        +      "Liu Jian Mao Cao",
        +      "Livvic",
        +      "Lobster",
        +      "Lobster Two",
        +      "Londrina Outline",
        +      "Londrina Shadow",
        +      "Londrina Sketch",
        +      "Londrina Solid",
        +      "Long Cang",
        +      "Lora",
        +      "Love Light",
        +      "Love Ya Like A Sister",
        +      "Loved by the King",
        +      "Lovers Quarrel",
        +      "Luckiest Guy",
        +      "Lugrasimo",
        +      "Lumanosimo",
        +      "Lunasima",
        +      "Lusitana",
        +      "Lustria",
        +      "Luxurious Roman",
        +      "Luxurious Script",
        +      "M PLUS 1",
        +      "M PLUS 1 Code",
        +      "M PLUS 1p",
        +      "M PLUS 2",
        +      "M PLUS Code Latin",
        +      "M PLUS Rounded 1c",
        +      "M PLUS U",
        +      "Ma Shan Zheng",
        +      "Macondo",
        +      "Macondo Swash Caps",
        +      "Mada",
        +      "Madimi One",
        +      "Magra",
        +      "Maiden Orange",
        +      "Maitree",
        +      "Major Mono Display",
        +      "Mako",
        +      "Mali",
        +      "Mallanna",
        +      "Maname",
        +      "Mandali",
        +      "Manjari",
        +      "Manrope",
        +      "Mansalva",
        +      "Manuale",
        +      "Manufacturing Consent",
        +      "Marcellus",
        +      "Marcellus SC",
        +      "Marck Script",
        +      "Margarine",
        +      "Marhey",
        +      "Markazi Text",
        +      "Marko One",
        +      "Marmelad",
        +      "Martel",
        +      "Martel Sans",
        +      "Martian Mono",
        +      "Marvel",
        +      "Matangi",
        +      "Mate",
        +      "Mate SC",
        +      "Matemasie",
        +      "Material Icons",
        +      "Material Icons Outlined",
        +      "Material Icons Round",
        +      "Material Icons Sharp",
        +      "Material Icons Two Tone",
        +      "Material Symbols",
        +      "Material Symbols Outlined",
        +      "Material Symbols Rounded",
        +      "Material Symbols Sharp",
        +      "Maven Pro",
        +      "McLaren",
        +      "Mea Culpa",
        +      "Meddon",
        +      "MedievalSharp",
        +      "Medula One",
        +      "Meera Inimai",
        +      "Megrim",
        +      "Meie Script",
        +      "Menbere",
        +      "Meow Script",
        +      "Merienda",
        +      "Merriweather",
        +      "Merriweather Sans",
        +      "Metal",
        +      "Metal Mania",
        +      "Metamorphous",
        +      "Metrophobic",
        +      "Michroma",
        +      "Micro 5",
        +      "Micro 5 Charted",
        +      "Milonga",
        +      "Miltonian",
        +      "Miltonian Tattoo",
        +      "Mina",
        +      "Mingzat",
        +      "Miniver",
        +      "Miranda Sans",
        +      "Miriam Libre",
        +      "Mirza",
        +      "Miss Fajardose",
        +      "Mitr",
        +      "Mochiy Pop One",
        +      "Mochiy Pop P One",
        +      "Modak",
        +      "Modern Antiqua",
        +      "Moderustic",
        +      "Mogra",
        +      "Mohave",
        +      "Moirai One",
        +      "Molengo",
        +      "Molle",
        +      "Momo Signature",
        +      "Momo Trust Display",
        +      "Momo Trust Sans",
        +      "Mona Sans",
        +      "Monda",
        +      "Monofett",
        +      "Monomakh",
        +      "Monomaniac One",
        +      "Monoton",
        +      "Monsieur La Doulaise",
        +      "Montaga",
        +      "Montagu Slab",
        +      "MonteCarlo",
        +      "Montenegrin Gothic One",
        +      "Montez",
        +      "Montserrat",
        +      "Montserrat Alternates",
        +      "Montserrat Underline",
        +      "Moo Lah Lah",
        +      "Mooli",
        +      "Moon Dance",
        +      "Moul",
        +      "Moulpali",
        +      "Mountains of Christmas",
        +      "Mouse Memoirs",
        +      "Mozilla Headline",
        +      "Mozilla Text",
        +      "Mr Bedfort",
        +      "Mr Dafoe",
        +      "Mr De Haviland",
        +      "Mrs Saint Delafield",
        +      "Mrs Sheppards",
        +      "Ms Madi",
        +      "Mukta",
        +      "Mukta Mahee",
        +      "Mukta Malar",
        +      "Mukta Vaani",
        +      "Mulish",
        +      "Murecho",
        +      "MuseoModerno",
        +      "My Soul",
        +      "Mynerve",
        +      "Mystery Quest",
        +      "NTR",
        +      "Nabla",
        +      "Namdhinggo",
        +      "Nanum Brush Script",
        +      "Nanum Gothic",
        +      "Nanum Gothic Coding",
        +      "Nanum Myeongjo",
        +      "Nanum Pen Script",
        +      "Narnoor",
        +      "Nata Sans",
        +      "National Park",
        +      "Neonderthaw",
        +      "Nerko One",
        +      "Neucha",
        +      "Neuton",
        +      "New Amsterdam",
        +      "New Rocker",
        +      "New Tegomin",
        +      "News Cycle",
        +      "Newsreader",
        +      "Niconne",
        +      "Niramit",
        +      "Nixie One",
        +      "Nobile",
        +      "Nokora",
        +      "Norican",
        +      "Nosifer",
        +      "Notable",
        +      "Nothing You Could Do",
        +      "Noticia Text",
        +      "Noto Color Emoji",
        +      "Noto Emoji",
        +      "Noto Kufi Arabic",
        +      "Noto Music",
        +      "Noto Naskh Arabic",
        +      "Noto Nastaliq Urdu",
        +      "Noto Rashi Hebrew",
        +      "Noto Sans",
        +      "Noto Sans Adlam",
        +      "Noto Sans Adlam Unjoined",
        +      "Noto Sans Anatolian Hieroglyphs",
        +      "Noto Sans Arabic",
        +      "Noto Sans Armenian",
        +      "Noto Sans Avestan",
        +      "Noto Sans Balinese",
        +      "Noto Sans Bamum",
        +      "Noto Sans Bassa Vah",
        +      "Noto Sans Batak",
        +      "Noto Sans Bengali",
        +      "Noto Sans Bhaiksuki",
        +      "Noto Sans Brahmi",
        +      "Noto Sans Buginese",
        +      "Noto Sans Buhid",
        +      "Noto Sans Canadian Aboriginal",
        +      "Noto Sans Carian",
        +      "Noto Sans Caucasian Albanian",
        +      "Noto Sans Chakma",
        +      "Noto Sans Cham",
        +      "Noto Sans Cherokee",
        +      "Noto Sans Chorasmian",
        +      "Noto Sans Coptic",
        +      "Noto Sans Cuneiform",
        +      "Noto Sans Cypriot",
        +      "Noto Sans Cypro Minoan",
        +      "Noto Sans Deseret",
        +      "Noto Sans Devanagari",
        +      "Noto Sans Display",
        +      "Noto Sans Duployan",
        +      "Noto Sans Egyptian Hieroglyphs",
        +      "Noto Sans Elbasan",
        +      "Noto Sans Elymaic",
        +      "Noto Sans Ethiopic",
        +      "Noto Sans Georgian",
        +      "Noto Sans Glagolitic",
        +      "Noto Sans Gothic",
        +      "Noto Sans Grantha",
        +      "Noto Sans Gujarati",
        +      "Noto Sans Gunjala Gondi",
        +      "Noto Sans Gurmukhi",
        +      "Noto Sans HK",
        +      "Noto Sans Hanifi Rohingya",
        +      "Noto Sans Hanunoo",
        +      "Noto Sans Hatran",
        +      "Noto Sans Hebrew",
        +      "Noto Sans Imperial Aramaic",
        +      "Noto Sans Indic Siyaq Numbers",
        +      "Noto Sans Inscriptional Pahlavi",
        +      "Noto Sans Inscriptional Parthian",
        +      "Noto Sans JP",
        +      "Noto Sans Javanese",
        +      "Noto Sans KR",
        +      "Noto Sans Kaithi",
        +      "Noto Sans Kannada",
        +      "Noto Sans Kawi",
        +      "Noto Sans Kayah Li",
        +      "Noto Sans Kharoshthi",
        +      "Noto Sans Khmer",
        +      "Noto Sans Khojki",
        +      "Noto Sans Khudawadi",
        +      "Noto Sans Lao",
        +      "Noto Sans Lao Looped",
        +      "Noto Sans Lepcha",
        +      "Noto Sans Limbu",
        +      "Noto Sans Linear A",
        +      "Noto Sans Linear B",
        +      "Noto Sans Lisu",
        +      "Noto Sans Lycian",
        +      "Noto Sans Lydian",
        +      "Noto Sans Mahajani",
        +      "Noto Sans Malayalam",
        +      "Noto Sans Mandaic",
        +      "Noto Sans Manichaean",
        +      "Noto Sans Marchen",
        +      "Noto Sans Masaram Gondi",
        +      "Noto Sans Math",
        +      "Noto Sans Mayan Numerals",
        +      "Noto Sans Medefaidrin",
        +      "Noto Sans Meetei Mayek",
        +      "Noto Sans Mende Kikakui",
        +      "Noto Sans Meroitic",
        +      "Noto Sans Miao",
        +      "Noto Sans Modi",
        +      "Noto Sans Mongolian",
        +      "Noto Sans Mono",
        +      "Noto Sans Mro",
        +      "Noto Sans Multani",
        +      "Noto Sans Myanmar",
        +      "Noto Sans NKo",
        +      "Noto Sans NKo Unjoined",
        +      "Noto Sans Nabataean",
        +      "Noto Sans Nag Mundari",
        +      "Noto Sans Nandinagari",
        +      "Noto Sans New Tai Lue",
        +      "Noto Sans Newa",
        +      "Noto Sans Nushu",
        +      "Noto Sans Ogham",
        +      "Noto Sans Ol Chiki",
        +      "Noto Sans Old Hungarian",
        +      "Noto Sans Old Italic",
        +      "Noto Sans Old North Arabian",
        +      "Noto Sans Old Permic",
        +      "Noto Sans Old Persian",
        +      "Noto Sans Old Sogdian",
        +      "Noto Sans Old South Arabian",
        +      "Noto Sans Old Turkic",
        +      "Noto Sans Oriya",
        +      "Noto Sans Osage",
        +      "Noto Sans Osmanya",
        +      "Noto Sans Pahawh Hmong",
        +      "Noto Sans Palmyrene",
        +      "Noto Sans Pau Cin Hau",
        +      "Noto Sans PhagsPa",
        +      "Noto Sans Phoenician",
        +      "Noto Sans Psalter Pahlavi",
        +      "Noto Sans Rejang",
        +      "Noto Sans Runic",
        +      "Noto Sans SC",
        +      "Noto Sans Samaritan",
        +      "Noto Sans Saurashtra",
        +      "Noto Sans Sharada",
        +      "Noto Sans Shavian",
        +      "Noto Sans Siddham",
        +      "Noto Sans SignWriting",
        +      "Noto Sans Sinhala",
        +      "Noto Sans Sogdian",
        +      "Noto Sans Sora Sompeng",
        +      "Noto Sans Soyombo",
        +      "Noto Sans Sundanese",
        +      "Noto Sans Sunuwar",
        +      "Noto Sans Syloti Nagri",
        +      "Noto Sans Symbols",
        +      "Noto Sans Symbols 2",
        +      "Noto Sans Syriac",
        +      "Noto Sans Syriac Eastern",
        +      "Noto Sans Syriac Western",
        +      "Noto Sans TC",
        +      "Noto Sans Tagalog",
        +      "Noto Sans Tagbanwa",
        +      "Noto Sans Tai Le",
        +      "Noto Sans Tai Tham",
        +      "Noto Sans Tai Viet",
        +      "Noto Sans Takri",
        +      "Noto Sans Tamil",
        +      "Noto Sans Tamil Supplement",
        +      "Noto Sans Tangsa",
        +      "Noto Sans Telugu",
        +      "Noto Sans Thaana",
        +      "Noto Sans Thai",
        +      "Noto Sans Thai Looped",
        +      "Noto Sans Tifinagh",
        +      "Noto Sans Tirhuta",
        +      "Noto Sans Ugaritic",
        +      "Noto Sans Vai",
        +      "Noto Sans Vithkuqi",
        +      "Noto Sans Wancho",
        +      "Noto Sans Warang Citi",
        +      "Noto Sans Yi",
        +      "Noto Sans Zanabazar Square",
        +      "Noto Serif",
        +      "Noto Serif Ahom",
        +      "Noto Serif Armenian",
        +      "Noto Serif Balinese",
        +      "Noto Serif Bengali",
        +      "Noto Serif Devanagari",
        +      "Noto Serif Display",
        +      "Noto Serif Dives Akuru",
        +      "Noto Serif Dogra",
        +      "Noto Serif Ethiopic",
        +      "Noto Serif Georgian",
        +      "Noto Serif Grantha",
        +      "Noto Serif Gujarati",
        +      "Noto Serif Gurmukhi",
        +      "Noto Serif HK",
        +      "Noto Serif Hebrew",
        +      "Noto Serif Hentaigana",
        +      "Noto Serif JP",
        +      "Noto Serif KR",
        +      "Noto Serif Kannada",
        +      "Noto Serif Khitan Small Script",
        +      "Noto Serif Khmer",
        +      "Noto Serif Khojki",
        +      "Noto Serif Lao",
        +      "Noto Serif Makasar",
        +      "Noto Serif Malayalam",
        +      "Noto Serif Myanmar",
        +      "Noto Serif NP Hmong",
        +      "Noto Serif Old Uyghur",
        +      "Noto Serif Oriya",
        +      "Noto Serif Ottoman Siyaq",
        +      "Noto Serif SC",
        +      "Noto Serif Sinhala",
        +      "Noto Serif TC",
        +      "Noto Serif Tamil",
        +      "Noto Serif Tangut",
        +      "Noto Serif Telugu",
        +      "Noto Serif Thai",
        +      "Noto Serif Tibetan",
        +      "Noto Serif Todhri",
        +      "Noto Serif Toto",
        +      "Noto Serif Vithkuqi",
        +      "Noto Serif Yezidi",
        +      "Noto Traditional Nushu",
        +      "Noto Znamenny Musical Notation",
        +      "Nova Cut",
        +      "Nova Flat",
        +      "Nova Mono",
        +      "Nova Oval",
        +      "Nova Round",
        +      "Nova Script",
        +      "Nova Slim",
        +      "Nova Square",
        +      "Numans",
        +      "Nunito",
        +      "Nunito Sans",
        +      "Nuosu SIL",
        +      "Odibee Sans",
        +      "Odor Mean Chey",
        +      "Offside",
        +      "Oi",
        +      "Ojuju",
        +      "Old Standard TT",
        +      "Oldenburg",
        +      "Ole",
        +      "Oleo Script",
        +      "Oleo Script Swash Caps",
        +      "Onest",
        +      "Oooh Baby",
        +      "Open Sans",
        +      "Oranienbaum",
        +      "Orbit",
        +      "Orbitron",
        +      "Oregano",
        +      "Orelega One",
        +      "Orienta",
        +      "Original Surfer",
        +      "Oswald",
        +      "Outfit",
        +      "Over the Rainbow",
        +      "Overlock",
        +      "Overlock SC",
        +      "Overpass",
        +      "Overpass Mono",
        +      "Ovo",
        +      "Oxanium",
        +      "Oxygen",
        +      "Oxygen Mono",
        +      "PT Mono",
        +      "PT Sans",
        +      "PT Sans Caption",
        +      "PT Sans Narrow",
        +      "PT Serif",
        +      "PT Serif Caption",
        +      "Pacifico",
        +      "Padauk",
        +      "Padyakke Expanded One",
        +      "Palanquin",
        +      "Palanquin Dark",
        +      "Palette Mosaic",
        +      "Pangolin",
        +      "Paprika",
        +      "Parastoo",
        +      "Parisienne",
        +      "Parkinsans",
        +      "Passero One",
        +      "Passion One",
        +      "Passions Conflict",
        +      "Pathway Extreme",
        +      "Pathway Gothic One",
        +      "Patrick Hand",
        +      "Patrick Hand SC",
        +      "Pattaya",
        +      "Patua One",
        +      "Pavanam",
        +      "Paytone One",
        +      "Peddana",
        +      "Peralta",
        +      "Permanent Marker",
        +      "Petemoss",
        +      "Petit Formal Script",
        +      "Petrona",
        +      "Phetsarath",
        +      "Philosopher",
        +      "Phudu",
        +      "Piazzolla",
        +      "Piedra",
        +      "Pinyon Script",
        +      "Pirata One",
        +      "Pixelify Sans",
        +      "Plaster",
        +      "Platypi",
        +      "Play",
        +      "Playball",
        +      "Playfair",
        +      "Playfair Display",
        +      "Playfair Display SC",
        +      "Playpen Sans",
        +      "Playpen Sans Arabic",
        +      "Playpen Sans Deva",
        +      "Playpen Sans Hebrew",
        +      "Playpen Sans Thai",
        +      "Playwrite AR",
        +      "Playwrite AR Guides",
        +      "Playwrite AT",
        +      "Playwrite AT Guides",
        +      "Playwrite AU NSW",
        +      "Playwrite AU NSW Guides",
        +      "Playwrite AU QLD",
        +      "Playwrite AU QLD Guides",
        +      "Playwrite AU SA",
        +      "Playwrite AU SA Guides",
        +      "Playwrite AU TAS",
        +      "Playwrite AU TAS Guides",
        +      "Playwrite AU VIC",
        +      "Playwrite AU VIC Guides",
        +      "Playwrite BE VLG",
        +      "Playwrite BE VLG Guides",
        +      "Playwrite BE WAL",
        +      "Playwrite BE WAL Guides",
        +      "Playwrite BR",
        +      "Playwrite BR Guides",
        +      "Playwrite CA",
        +      "Playwrite CA Guides",
        +      "Playwrite CL",
        +      "Playwrite CL Guides",
        +      "Playwrite CO",
        +      "Playwrite CO Guides",
        +      "Playwrite CU",
        +      "Playwrite CU Guides",
        +      "Playwrite CZ",
        +      "Playwrite CZ Guides",
        +      "Playwrite DE Grund",
        +      "Playwrite DE Grund Guides",
        +      "Playwrite DE LA",
        +      "Playwrite DE LA Guides",
        +      "Playwrite DE SAS",
        +      "Playwrite DE SAS Guides",
        +      "Playwrite DE VA",
        +      "Playwrite DE VA Guides",
        +      "Playwrite DK Loopet",
        +      "Playwrite DK Loopet Guides",
        +      "Playwrite DK Uloopet",
        +      "Playwrite DK Uloopet Guides",
        +      "Playwrite ES",
        +      "Playwrite ES Deco",
        +      "Playwrite ES Deco Guides",
        +      "Playwrite ES Guides",
        +      "Playwrite FR Moderne",
        +      "Playwrite FR Moderne Guides",
        +      "Playwrite FR Trad",
        +      "Playwrite FR Trad Guides",
        +      "Playwrite GB J",
        +      "Playwrite GB J Guides",
        +      "Playwrite GB S",
        +      "Playwrite GB S Guides",
        +      "Playwrite HR",
        +      "Playwrite HR Guides",
        +      "Playwrite HR Lijeva",
        +      "Playwrite HR Lijeva Guides",
        +      "Playwrite HU",
        +      "Playwrite HU Guides",
        +      "Playwrite ID",
        +      "Playwrite ID Guides",
        +      "Playwrite IE",
        +      "Playwrite IE Guides",
        +      "Playwrite IN",
        +      "Playwrite IN Guides",
        +      "Playwrite IS",
        +      "Playwrite IS Guides",
        +      "Playwrite IT Moderna",
        +      "Playwrite IT Moderna Guides",
        +      "Playwrite IT Trad",
        +      "Playwrite IT Trad Guides",
        +      "Playwrite MX",
        +      "Playwrite MX Guides",
        +      "Playwrite NG Modern",
        +      "Playwrite NG Modern Guides",
        +      "Playwrite NL",
        +      "Playwrite NL Guides",
        +      "Playwrite NO",
        +      "Playwrite NO Guides",
        +      "Playwrite NZ",
        +      "Playwrite NZ Basic",
        +      "Playwrite NZ Basic Guides",
        +      "Playwrite NZ Guides",
        +      "Playwrite PE",
        +      "Playwrite PE Guides",
        +      "Playwrite PL",
        +      "Playwrite PL Guides",
        +      "Playwrite PT",
        +      "Playwrite PT Guides",
        +      "Playwrite RO",
        +      "Playwrite RO Guides",
        +      "Playwrite SK",
        +      "Playwrite SK Guides",
        +      "Playwrite TZ",
        +      "Playwrite TZ Guides",
        +      "Playwrite US Modern",
        +      "Playwrite US Modern Guides",
        +      "Playwrite US Trad",
        +      "Playwrite US Trad Guides",
        +      "Playwrite VN",
        +      "Playwrite VN Guides",
        +      "Playwrite ZA",
        +      "Playwrite ZA Guides",
        +      "Pliant",
        +      "Plus Jakarta Sans",
        +      "Pochaevsk",
        +      "Podkova",
        +      "Poetsen One",
        +      "Poiret One",
        +      "Poller One",
        +      "Poltawski Nowy",
        +      "Poly",
        +      "Pompiere",
        +      "Ponnala",
        +      "Ponomar",
        +      "Pontano Sans",
        +      "Poor Story",
        +      "Poppins",
        +      "Port Lligat Sans",
        +      "Port Lligat Slab",
        +      "Potta One",
        +      "Pragati Narrow",
        +      "Praise",
        +      "Prata",
        +      "Preahvihear",
        +      "Press Start 2P",
        +      "Pridi",
        +      "Princess Sofia",
        +      "Prociono",
        +      "Prompt",
        +      "Prosto One",
        +      "Protest Guerrilla",
        +      "Protest Revolution",
        +      "Protest Riot",
        +      "Protest Strike",
        +      "Proza Libre",
        +      "Public Sans",
        +      "Puppies Play",
        +      "Puritan",
        +      "Purple Purse",
        +      "Qahiri",
        +      "Quando",
        +      "Quantico",
        +      "Quattrocento",
        +      "Quattrocento Sans",
        +      "Questrial",
        +      "Quicksand",
        +      "Quintessential",
        +      "Qwigley",
        +      "Qwitcher Grypen",
        +      "REM",
        +      "Racing Sans One",
        +      "Radio Canada",
        +      "Radio Canada Big",
        +      "Radley",
        +      "Rajdhani",
        +      "Rakkas",
        +      "Raleway",
        +      "Raleway Dots",
        +      "Ramabhadra",
        +      "Ramaraja",
        +      "Rambla",
        +      "Rammetto One",
        +      "Rampart One",
        +      "Ramsina",
        +      "Ranchers",
        +      "Rancho",
        +      "Ranga",
        +      "Rasa",
        +      "Rationale",
        +      "Ravi Prakash",
        +      "Readex Pro",
        +      "Recursive",
        +      "Red Hat Display",
        +      "Red Hat Mono",
        +      "Red Hat Text",
        +      "Red Rose",
        +      "Redacted",
        +      "Redacted Script",
        +      "Reddit Mono",
        +      "Reddit Sans",
        +      "Reddit Sans Condensed",
        +      "Redressed",
        +      "Reem Kufi",
        +      "Reem Kufi Fun",
        +      "Reem Kufi Ink",
        +      "Reenie Beanie",
        +      "Reggae One",
        +      "Rethink Sans",
        +      "Revalia",
        +      "Rhodium Libre",
        +      "Ribeye",
        +      "Ribeye Marrow",
        +      "Righteous",
        +      "Risque",
        +      "Road Rage",
        +      "Roboto",
        +      "Roboto Condensed",
        +      "Roboto Flex",
        +      "Roboto Mono",
        +      "Roboto Serif",
        +      "Roboto Slab",
        +      "Rochester",
        +      "Rock 3D",
        +      "Rock Salt",
        +      "RocknRoll One",
        +      "Rokkitt",
        +      "Romanesco",
        +      "Ropa Sans",
        +      "Rosario",
        +      "Rosarivo",
        +      "Rouge Script",
        +      "Rowdies",
        +      "Rozha One",
        +      "Rubik",
        +      "Rubik 80s Fade",
        +      "Rubik Beastly",
        +      "Rubik Broken Fax",
        +      "Rubik Bubbles",
        +      "Rubik Burned",
        +      "Rubik Dirt",
        +      "Rubik Distressed",
        +      "Rubik Doodle Shadow",
        +      "Rubik Doodle Triangles",
        +      "Rubik Gemstones",
        +      "Rubik Glitch",
        +      "Rubik Glitch Pop",
        +      "Rubik Iso",
        +      "Rubik Lines",
        +      "Rubik Maps",
        +      "Rubik Marker Hatch",
        +      "Rubik Maze",
        +      "Rubik Microbe",
        +      "Rubik Mono One",
        +      "Rubik Moonrocks",
        +      "Rubik Pixels",
        +      "Rubik Puddles",
        +      "Rubik Scribble",
        +      "Rubik Spray Paint",
        +      "Rubik Storm",
        +      "Rubik Vinyl",
        +      "Rubik Wet Paint",
        +      "Ruda",
        +      "Rufina",
        +      "Ruge Boogie",
        +      "Ruluko",
        +      "Rum Raisin",
        +      "Ruslan Display",
        +      "Russo One",
        +      "Ruthie",
        +      "Ruwudu",
        +      "Rye",
        +      "SN Pro",
        +      "STIX Two Math",
        +      "STIX Two Text",
        +      "SUSE",
        +      "SUSE Mono",
        +      "Sacramento",
        +      "Sahitya",
        +      "Sail",
        +      "Saira",
        +      "Saira Condensed",
        +      "Saira Extra Condensed",
        +      "Saira Semi Condensed",
        +      "Saira Stencil",
        +      "Salsa",
        +      "Sanchez",
        +      "Sancreek",
        +      "Sankofa Display",
        +      "Sansation",
        +      "Sansita",
        +      "Sansita Swashed",
        +      "Sarabun",
        +      "Sarala",
        +      "Sarina",
        +      "Sarpanch",
        +      "Sassy Frass",
        +      "Satisfy",
        +      "Savate",
        +      "Sawarabi Gothic",
        +      "Sawarabi Mincho",
        +      "Scada",
        +      "Scheherazade New",
        +      "Schibsted Grotesk",
        +      "Schoolbell",
        +      "Science Gothic",
        +      "Scope One",
        +      "Seaweed Script",
        +      "Secular One",
        +      "Sedan",
        +      "Sedan SC",
        +      "Sedgwick Ave",
        +      "Sedgwick Ave Display",
        +      "Sekuya",
        +      "Sen",
        +      "Send Flowers",
        +      "Sevillana",
        +      "Seymour One",
        +      "Shadows Into Light",
        +      "Shadows Into Light Two",
        +      "Shafarik",
        +      "Shalimar",
        +      "Shantell Sans",
        +      "Shanti",
        +      "Share",
        +      "Share Tech",
        +      "Share Tech Mono",
        +      "Shippori Antique",
        +      "Shippori Antique B1",
        +      "Shippori Mincho",
        +      "Shippori Mincho B1",
        +      "Shizuru",
        +      "Shojumaru",
        +      "Short Stack",
        +      "Shrikhand",
        +      "Siemreap",
        +      "Sigmar",
        +      "Sigmar One",
        +      "Signika",
        +      "Signika Negative",
        +      "Silkscreen",
        +      "Simonetta",
        +      "Single Day",
        +      "Sintony",
        +      "Sirin Stencil",
        +      "Sirivennela",
        +      "Six Caps",
        +      "Sixtyfour",
        +      "Sixtyfour Convergence",
        +      "Skranji",
        +      "Slabo 13px",
        +      "Slabo 27px",
        +      "Slackey",
        +      "Slackside One",
        +      "Smokum",
        +      "Smooch",
        +      "Smooch Sans",
        +      "Smythe",
        +      "Sniglet",
        +      "Snippet",
        +      "Snowburst One",
        +      "Sofadi One",
        +      "Sofia",
        +      "Sofia Sans",
        +      "Sofia Sans Condensed",
        +      "Sofia Sans Extra Condensed",
        +      "Sofia Sans Semi Condensed",
        +      "Solitreo",
        +      "Solway",
        +      "Sometype Mono",
        +      "Song Myung",
        +      "Sono",
        +      "Sonsie One",
        +      "Sora",
        +      "Sorts Mill Goudy",
        +      "Sour Gummy",
        +      "Source Code Pro",
        +      "Source Sans 3",
        +      "Source Serif 4",
        +      "Space Grotesk",
        +      "Space Mono",
        +      "Special Elite",
        +      "Special Gothic",
        +      "Special Gothic Condensed One",
        +      "Special Gothic Expanded One",
        +      "Spectral",
        +      "Spectral SC",
        +      "Spicy Rice",
        +      "Spinnaker",
        +      "Spirax",
        +      "Splash",
        +      "Spline Sans",
        +      "Spline Sans Mono",
        +      "Squada One",
        +      "Square Peg",
        +      "Sree Krushnadevaraya",
        +      "Sriracha",
        +      "Srisakdi",
        +      "Staatliches",
        +      "Stack Sans Headline",
        +      "Stack Sans Notch",
        +      "Stack Sans Text",
        +      "Stalemate",
        +      "Stalinist One",
        +      "Stardos Stencil",
        +      "Stick",
        +      "Stick No Bills",
        +      "Stint Ultra Condensed",
        +      "Stint Ultra Expanded",
        +      "Stoke",
        +      "Story Script",
        +      "Strait",
        +      "Strichpunkt Sans",
        +      "Style Script",
        +      "Stylish",
        +      "Sue Ellen Francisco",
        +      "Suez One",
        +      "Sulphur Point",
        +      "Sumana",
        +      "Sunflower",
        +      "Sunshiney",
        +      "Supermercado One",
        +      "Sura",
        +      "Suranna",
        +      "Suravaram",
        +      "Suwannaphum",
        +      "Swanky and Moo Moo",
        +      "Syncopate",
        +      "Syne",
        +      "Syne Mono",
        +      "Syne Tactile",
        +      "TASA Explorer",
        +      "TASA Orbiter",
        +      "Tac One",
        +      "Tagesschrift",
        +      "Tai Heritage Pro",
        +      "Tajawal",
        +      "Tangerine",
        +      "Tapestry",
        +      "Taprom",
        +      "Tauri",
        +      "Taviraj",
        +      "Teachers",
        +      "Teko",
        +      "Tektur",
        +      "Telex",
        +      "Tenali Ramakrishna",
        +      "Tenor Sans",
        +      "Text Me One",
        +      "Texturina",
        +      "Thasadith",
        +      "The Girl Next Door",
        +      "The Nautigal",
        +      "Tienne",
        +      "TikTok Sans",
        +      "Tillana",
        +      "Tilt Neon",
        +      "Tilt Prism",
        +      "Tilt Warp",
        +      "Timmana",
        +      "Tinos",
        +      "Tiny5",
        +      "Tiro Bangla",
        +      "Tiro Devanagari Hindi",
        +      "Tiro Devanagari Marathi",
        +      "Tiro Devanagari Sanskrit",
        +      "Tiro Gurmukhi",
        +      "Tiro Kannada",
        +      "Tiro Tamil",
        +      "Tiro Telugu",
        +      "Tirra",
        +      "Titan One",
        +      "Titillium Web",
        +      "Tomorrow",
        +      "Tourney",
        +      "Trade Winds",
        +      "Train One",
        +      "Triodion",
        +      "Trirong",
        +      "Trispace",
        +      "Trocchi",
        +      "Trochut",
        +      "Truculenta",
        +      "Trykker",
        +      "Tsukimi Rounded",
        +      "Tuffy",
        +      "Tulpen One",
        +      "Turret Road",
        +      "Twinkle Star",
        +      "Ubuntu",
        +      "Ubuntu Condensed",
        +      "Ubuntu Mono",
        +      "Ubuntu Sans",
        +      "Ubuntu Sans Mono",
        +      "Uchen",
        +      "Ultra",
        +      "Unbounded",
        +      "Uncial Antiqua",
        +      "Underdog",
        +      "Unica One",
        +      "UnifrakturCook",
        +      "UnifrakturMaguntia",
        +      "Unkempt",
        +      "Unlock",
        +      "Unna",
        +      "UoqMunThenKhung",
        +      "Updock",
        +      "Urbanist",
        +      "VT323",
        +      "Vampiro One",
        +      "Varela",
        +      "Varela Round",
        +      "Varta",
        +      "Vast Shadow",
        +      "Vazirmatn",
        +      "Vend Sans",
        +      "Vesper Libre",
        +      "Viaoda Libre",
        +      "Vibes",
        +      "Vibur",
        +      "Victor Mono",
        +      "Vidaloka",
        +      "Viga",
        +      "Vina Sans",
        +      "Voces",
        +      "Volkhov",
        +      "Vollkorn",
        +      "Vollkorn SC",
        +      "Voltaire",
        +      "Vujahday Script",
        +      "WDXL Lubrifont JP N",
        +      "WDXL Lubrifont SC",
        +      "WDXL Lubrifont TC",
        +      "Waiting for the Sunrise",
        +      "Wallpoet",
        +      "Walter Turncoat",
        +      "Warnes",
        +      "Water Brush",
        +      "Waterfall",
        +      "Wavefont",
        +      "Wellfleet",
        +      "Wendy One",
        +      "Whisper",
        +      "WindSong",
        +      "Winky Rough",
        +      "Winky Sans",
        +      "Wire One",
        +      "Wittgenstein",
        +      "Wix Madefor Display",
        +      "Wix Madefor Text",
        +      "Work Sans",
        +      "Workbench",
        +      "Xanh Mono",
        +      "Yaldevi",
        +      "Yanone Kaffeesatz",
        +      "Yantramanav",
        +      "Yarndings 12",
        +      "Yarndings 12 Charted",
        +      "Yarndings 20",
        +      "Yarndings 20 Charted",
        +      "Yatra One",
        +      "Yellowtail",
        +      "Yeon Sung",
        +      "Yeseva One",
        +      "Yesteryear",
        +      "Yomogi",
        +      "Young Serif",
        +      "Yrsa",
        +      "Ysabeau",
        +      "Ysabeau Infant",
        +      "Ysabeau Office",
        +      "Ysabeau SC",
        +      "Yuji Boku",
        +      "Yuji Hentaigana Akari",
        +      "Yuji Hentaigana Akebono",
        +      "Yuji Mai",
        +      "Yuji Syuku",
        +      "Yusei Magic",
        +      "Yuyu",
        +      "Yuyu Short",
        +      "ZCOOL KuaiLe",
        +      "ZCOOL QingKe HuangYou",
        +      "ZCOOL XiaoWei",
        +      "Zain",
        +      "Zalando Sans",
        +      "Zalando Sans Expanded",
        +      "Zalando Sans SemiExpanded",
        +      "Zen Antique",
        +      "Zen Antique Soft",
        +      "Zen Dots",
        +      "Zen Kaku Gothic Antique",
        +      "Zen Kaku Gothic New",
        +      "Zen Kurenaido",
        +      "Zen Loop",
        +      "Zen Maru Gothic",
        +      "Zen Old Mincho",
        +      "Zen Tokyo Zoo",
        +      "Zeyada",
        +      "Zhi Mang Xing",
        +      "Zilla Slab",
        +      "Zilla Slab Highlight"
        +    ],
        +    "type": "string"
        +  },
        +  "GroupedArrangement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "type": {
        +        "const": "grouped",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "GroupedArrangement",
        +    "type": "object"
        +  },
        +  "LegendOptions": {
        +    "anyOf": [
        +      {
        +        "type": "boolean"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "title": {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        },
        +        "type": "object"
        +      }
        +    ],
        +    "title": "LegendOptions"
        +  },
        +  "LineLabels": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "points": {
        +        "$ref": "#/$defs/ConnectedPointLabels"
        +      },
        +      "series": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "content": {
        +            "items": {
        +              "enum": [
        +                "series",
        +                "value"
        +              ],
        +              "type": "string"
        +            },
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          }
        +        },
        +        "required": [
        +          "content"
        +        ],
        +        "type": "object"
        +      }
        +    },
        +    "title": "LineLabels",
        +    "type": "object"
        +  },
        +  "LineStroke": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "LineStroke",
        +    "type": "object"
        +  },
        +  "LinearScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": [
        +          {
        +            "type": "number"
        +          },
        +          {
        +            "type": "number"
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "linear",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "LinearScale",
        +    "type": "object"
        +  },
        +  "LogScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": [
        +          {
        +            "exclusiveMinimum": 0,
        +            "type": "number"
        +          },
        +          {
        +            "exclusiveMinimum": 0,
        +            "type": "number"
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "log",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "LogScale",
        +    "type": "object"
        +  },
        +  "NormalizedArrangement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "normalization": {
        +        "enum": [
        +          "percent"
        +        ],
        +        "type": "string"
        +      },
        +      "type": {
        +        "const": "stacked",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "normalization"
        +    ],
        +    "title": "NormalizedArrangement",
        +    "type": "object"
        +  },
        +  "PositionableBarLabels": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "content": {
        +        "items": {
        +          "enum": [
        +            "value",
        +            "percent",
        +            "category",
        +            "series"
        +          ],
        +          "type": "string"
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "position": {
        +        "enum": [
        +          "auto",
        +          "outside",
        +          "inside"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "content"
        +    ],
        +    "title": "PositionableBarLabels",
        +    "type": "object"
        +  },
        +  "PromotedLine": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "curve": {
        +        "enum": [
        +          "linear",
        +          "monotone",
        +          "step"
        +        ],
        +        "type": "string"
        +      },
        +      "labels": {
        +        "$ref": "#/$defs/LineLabels"
        +      },
        +      "points": {
        +        "anyOf": [
        +          {
        +            "type": "boolean"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "fill": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "radius": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              }
        +            },
        +            "type": "object"
        +          }
        +        ]
        +      },
        +      "series": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "stroke": {
        +        "$ref": "#/$defs/LineStroke"
        +      }
        +    },
        +    "required": [
        +      "series"
        +    ],
        +    "title": "PromotedLine",
        +    "type": "object"
        +  },
        +  "RangeCategoryOrder": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "direction": {
        +            "enum": [
        +              "ascending",
        +              "descending"
        +            ],
        +            "type": "string"
        +          },
        +          "type": {
        +            "const": "category",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "direction"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "$ref": "#/$defs/ExplicitCategoryOrder"
        +      }
        +    ],
        +    "title": "RangeCategoryOrder"
        +  },
        +  "RangeCategoryRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/BandScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "RangeCategoryRole",
        +    "type": "object"
        +  },
        +  "RangeValuesRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "end": {
        +        "$ref": "#/$defs/FieldRole"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/ContinuousScale"
        +      },
        +      "start": {
        +        "$ref": "#/$defs/FieldRole"
        +      },
        +      "type": {
        +        "const": "range",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "start",
        +      "end"
        +    ],
        +    "title": "RangeValuesRole",
        +    "type": "object"
        +  },
        +  "ReferenceLabel": {
        +    "additionalProperties": false,
        +    "description": "Omit for no label. content is an ordered array of text and/or value, without duplicates. text is required when text is included. Values follow the reference's statistic scope and formatting.",
        +    "properties": {
        +      "align": {
        +        "enum": [
        +          "start",
        +          "center",
        +          "end"
        +        ],
        +        "type": "string"
        +      },
        +      "content": {
        +        "items": {
        +          "enum": [
        +            "text",
        +            "value"
        +          ],
        +          "type": "string"
        +        },
        +        "maxItems": 2,
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "position": {
        +        "enum": [
        +          "before",
        +          "after",
        +          "outside-start",
        +          "outside-end"
        +        ],
        +        "type": "string"
        +      },
        +      "text": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "required": [
        +      "content"
        +    ],
        +    "title": "ReferenceLabel",
        +    "type": "object"
        +  },
        +  "ReferenceStroke": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "color": {
        +        "$ref": "#/$defs/Color"
        +      },
        +      "style": {
        +        "enum": [
        +          "solid",
        +          "dashed",
        +          "dotted"
        +        ],
        +        "type": "string"
        +      },
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "ReferenceStroke",
        +    "type": "object"
        +  },
        +  "ReserveSpace": {
        +    "anyOf": [
        +      {
        +        "type": "boolean"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "x": {
        +            "type": "boolean"
        +          },
        +          "y": {
        +            "type": "boolean"
        +          }
        +        },
        +        "required": [
        +          "x",
        +          "y"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "ReserveSpace"
        +  },
        +  "ScatterAnnotations": {
        +    "items": {
        +      "additionalProperties": false,
        +      "properties": {
        +        "align": {
        +          "enum": [
        +            "start",
        +            "center",
        +            "end"
        +          ],
        +          "type": "string"
        +        },
        +        "anchor": {
        +          "oneOf": [
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "id": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "datum",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "id"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "type": {
        +                  "const": "coordinate",
        +                  "type": "string"
        +                },
        +                "x": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "y": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "x",
        +                "y"
        +              ],
        +              "type": "object"
        +            }
        +          ],
        +          "title": "ScatterAnnotationAnchor"
        +        },
        +        "boxAnchor": {
        +          "$ref": "#/$defs/AnnotationBoxAnchor"
        +        },
        +        "connector": {
        +          "enum": [
        +            "none",
        +            "line",
        +            "arrow"
        +          ],
        +          "type": "string"
        +        },
        +        "offset": {
        +          "$ref": "#/$defs/AnnotationOffset"
        +        },
        +        "placement": {
        +          "$ref": "#/$defs/AnnotationPlacement"
        +        },
        +        "reserveSpace": {
        +          "$ref": "#/$defs/ReserveSpace"
        +        },
        +        "style": {
        +          "$ref": "#/$defs/AnnotationTextStyle"
        +        },
        +        "text": {
        +          "type": "string"
        +        },
        +        "visible": {
        +          "type": "boolean"
        +        },
        +        "width": {
        +          "anyOf": [
        +            {
        +              "exclusiveMinimum": 0,
        +              "type": "number"
        +            },
        +            {
        +              "const": "shape",
        +              "type": "string"
        +            }
        +          ]
        +        }
        +      },
        +      "required": [
        +        "text",
        +        "anchor"
        +      ],
        +      "title": "ScatterAnnotation",
        +      "type": "object"
        +    },
        +    "minItems": 1,
        +    "title": "ScatterAnnotations",
        +    "type": "array"
        +  },
        +  "ScatterColor": {
        +    "anyOf": [
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "oneOf": [
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "domain": {
        +                "items": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "minItems": 1,
        +                "type": "array",
        +                "uniqueItems": true
        +              },
        +              "field": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "legend": {
        +                "$ref": "#/$defs/LegendOptions"
        +              },
        +              "range": {
        +                "$ref": "#/$defs/ColorRange"
        +              },
        +              "type": {
        +                "const": "categorical",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type",
        +              "field"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "domain": {
        +                "items": [
        +                  {
        +                    "type": "number"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ],
        +                "maxItems": 2,
        +                "minItems": 2,
        +                "type": "array"
        +              },
        +              "field": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "format": {
        +                "type": "string"
        +              },
        +              "legend": {
        +                "$ref": "#/$defs/LegendOptions"
        +              },
        +              "range": {
        +                "anyOf": [
        +                  {
        +                    "items": [
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      }
        +                    ],
        +                    "maxItems": 2,
        +                    "minItems": 2,
        +                    "type": "array"
        +                  },
        +                  {
        +                    "$ref": "#/$defs/ThreeColorRange"
        +                  }
        +                ],
        +                "title": "SequentialColorRange"
        +              },
        +              "type": {
        +                "const": "sequential",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type",
        +              "field"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "domain": {
        +                "items": [
        +                  {
        +                    "type": "number"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ],
        +                "maxItems": 2,
        +                "minItems": 2,
        +                "type": "array"
        +              },
        +              "field": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "format": {
        +                "type": "string"
        +              },
        +              "legend": {
        +                "$ref": "#/$defs/LegendOptions"
        +              },
        +              "midpoint": {
        +                "type": "number"
        +              },
        +              "range": {
        +                "anyOf": [
        +                  {
        +                    "$ref": "#/$defs/ThreeColorRange"
        +                  },
        +                  {
        +                    "items": [
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      }
        +                    ],
        +                    "maxItems": 5,
        +                    "minItems": 5,
        +                    "type": "array"
        +                  }
        +                ],
        +                "title": "DivergingColorRange"
        +              },
        +              "type": {
        +                "const": "diverging",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type",
        +              "field",
        +              "domain",
        +              "midpoint"
        +            ],
        +            "type": "object"
        +          }
        +        ]
        +      }
        +    ],
        +    "title": "ScatterColor"
        +  },
        +  "ScatterInterval": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "axis": {
        +        "enum": [
        +          "x",
        +          "y"
        +        ],
        +        "type": "string"
        +      },
        +      "lower": {
        +        "$ref": "#/$defs/FieldRole"
        +      },
        +      "stroke": {
        +        "$ref": "#/$defs/Stroke"
        +      },
        +      "upper": {
        +        "$ref": "#/$defs/FieldRole"
        +      }
        +    },
        +    "required": [
        +      "axis",
        +      "lower",
        +      "upper"
        +    ],
        +    "title": "ScatterInterval",
        +    "type": "object"
        +  },
        +  "ScatterLabels": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "position": {
        +        "enum": [
        +          "above",
        +          "side"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "ScatterLabels",
        +    "type": "object"
        +  },
        +  "ScatterReferences": {
        +    "items": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "enum": [
        +                "x",
        +                "y"
        +              ],
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "value": {
        +              "type": [
        +                "string",
        +                "number"
        +              ]
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "value"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "enum": [
        +                "x",
        +                "y"
        +              ],
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "statistic": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "operation": {
        +                  "enum": [
        +                    "average",
        +                    "median",
        +                    "min",
        +                    "max"
        +                  ],
        +                  "type": "string"
        +                },
        +                "scope": {
        +                  "enum": [
        +                    "visible",
        +                    "all"
        +                  ],
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "operation",
        +                "scope"
        +              ],
        +              "title": "ReferenceStatistic",
        +              "type": "object"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "statistic",
        +              "type": "string"
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "statistic"
        +          ],
        +          "type": "object"
        +        }
        +      ],
        +      "title": "ScatterReference"
        +    },
        +    "minItems": 1,
        +    "title": "ScatterReferences",
        +    "type": "array"
        +  },
        +  "ScatterRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/CategoryScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "ScatterRole",
        +    "type": "object"
        +  },
        +  "SeriesLinearValuesRole": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "long",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "field",
        +          "series"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "minItems": 2,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "wide",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "fields"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "count",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "series"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "SeriesLinearValuesRole"
        +  },
        +  "SeriesLinearValuesRoleWithPercent": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "percentFormat": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "long",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "field",
        +          "series"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "minItems": 2,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "percentFormat": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "wide",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "fields"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "percentFormat": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "count",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "series"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "SeriesLinearValuesRoleWithPercent"
        +  },
        +  "SeriesRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "SeriesRole",
        +    "type": "object"
        +  },
        +  "SimpleBarValuesRole": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "long",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "field"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": [
        +              {
        +                "minLength": 1,
        +                "type": "string"
        +              }
        +            ],
        +            "maxItems": 1,
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "wide",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "fields"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "count",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "SimpleBarValuesRole"
        +  },
        +  "StackedArrangement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "type": {
        +        "const": "stacked",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "StackedArrangement",
        +    "type": "object"
        +  },
        +  "StackedBarLabels": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "content": {
        +        "items": {
        +          "enum": [
        +            "value",
        +            "percent",
        +            "category",
        +            "series"
        +          ],
        +          "type": "string"
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      }
        +    },
        +    "required": [
        +      "content"
        +    ],
        +    "title": "StackedBarLabels",
        +    "type": "object"
        +  },
        +  "Stroke": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "color": {
        +        "$ref": "#/$defs/Color"
        +      },
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "Stroke",
        +    "type": "object"
        +  },
        +  "ThemeCategoricalPalette": {
        +    "items": {
        +      "minLength": 1,
        +      "type": "string"
        +    },
        +    "minItems": 1,
        +    "title": "ThemeCategoricalPalette",
        +    "type": "array"
        +  },
        +  "ThemeDivergingRange": {
        +    "anyOf": [
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 3,
        +        "minItems": 3,
        +        "type": "array"
        +      },
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 5,
        +        "minItems": 5,
        +        "type": "array"
        +      }
        +    ],
        +    "title": "ThemeDivergingRange"
        +  },
        +  "ThemeName": {
        +    "enum": [
        +      "editorial",
        +      "clean",
        +      "noir",
        +      "loud",
        +      "soft",
        +      "technical"
        +    ],
        +    "title": "ThemeName",
        +    "type": "string"
        +  },
        +  "ThemeOverrides": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "axes": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "gridLineWidth": {
        +            "minimum": 0,
        +            "type": "number"
        +          },
        +          "lineWidth": {
        +            "minimum": 0,
        +            "type": "number"
        +          },
        +          "tickPadding": {
        +            "minimum": 0,
        +            "type": "number"
        +          },
        +          "tickSize": {
        +            "minimum": 0,
        +            "type": "number"
        +          }
        +        },
        +        "title": "ThemeAxisOverrides",
        +        "type": "object"
        +      },
        +      "colors": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "axes": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "grid": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "line": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "tickLabel": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "title": {
        +                "$ref": "#/$defs/Color"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "background": {
        +            "$ref": "#/$defs/Color"
        +          },
        +          "caption": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "color": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "linkColor": {
        +                "$ref": "#/$defs/Color"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "categorical": {
        +            "anyOf": [
        +              {
        +                "$ref": "#/$defs/ThemeCategoricalPalette"
        +              },
        +              {
        +                "anyOf": [
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      }
        +                    },
        +                    "required": [
        +                      "light"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      }
        +                    },
        +                    "required": [
        +                      "dark"
        +                    ],
        +                    "type": "object"
        +                  }
        +                ]
        +              }
        +            ],
        +            "title": "ThemeCategoricalColors"
        +          },
        +          "diverging": {
        +            "anyOf": [
        +              {
        +                "$ref": "#/$defs/ThemeDivergingRange"
        +              },
        +              {
        +                "anyOf": [
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "light"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "dark"
        +                    ],
        +                    "type": "object"
        +                  }
        +                ]
        +              }
        +            ],
        +            "title": "ThemeDivergingColors"
        +          },
        +          "label": {
        +            "$ref": "#/$defs/Color"
        +          },
        +          "sequential": {
        +            "anyOf": [
        +              {
        +                "$ref": "#/$defs/ThemeSequentialRange"
        +              },
        +              {
        +                "anyOf": [
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "light"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "dark"
        +                    ],
        +                    "type": "object"
        +                  }
        +                ]
        +              }
        +            ],
        +            "title": "ThemeSequentialColors"
        +          },
        +          "subtitle": {
        +            "$ref": "#/$defs/Color"
        +          },
        +          "title": {
        +            "$ref": "#/$defs/Color"
        +          }
        +        },
        +        "title": "ThemeColorOverrides",
        +        "type": "object"
        +      },
        +      "fonts": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "body": {
        +            "$ref": "#/$defs/GoogleFontFamily"
        +          },
        +          "numeric": {
        +            "$ref": "#/$defs/GoogleFontFamily"
        +          },
        +          "title": {
        +            "$ref": "#/$defs/GoogleFontFamily"
        +          }
        +        },
        +        "title": "ThemeFontOverrides",
        +        "type": "object"
        +      },
        +      "typography": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "axisTitle": {
        +            "$ref": "#/$defs/WeightTypography"
        +          },
        +          "baseSize": {
        +            "exclusiveMinimum": 0,
        +            "type": "number"
        +          },
        +          "caption": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "gap": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "header": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "gap": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "titleSubtitleGap": {
        +                "minimum": 0,
        +                "type": "number"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "label": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "haloWidth": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "mutedOpacity": {
        +                "maximum": 1,
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "mutedWeight": {
        +                "anyOf": [
        +                  {
        +                    "const": 100,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 200,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 300,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 400,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 500,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 600,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 700,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 800,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 900,
        +                    "type": "number"
        +                  }
        +                ]
        +              },
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              },
        +              "weight": {
        +                "anyOf": [
        +                  {
        +                    "const": 100,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 200,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 300,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 400,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 500,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 600,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 700,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 800,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 900,
        +                    "type": "number"
        +                  }
        +                ]
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "subtitle": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "tickLabel": {
        +            "$ref": "#/$defs/WeightTypography"
        +          },
        +          "title": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              },
        +              "weight": {
        +                "anyOf": [
        +                  {
        +                    "const": 100,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 200,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 300,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 400,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 500,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 600,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 700,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 800,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 900,
        +                    "type": "number"
        +                  }
        +                ]
        +              }
        +            },
        +            "type": "object"
        +          }
        +        },
        +        "title": "ThemeTypographyOverrides",
        +        "type": "object"
        +      }
        +    },
        +    "title": "ThemeOverrides",
        +    "type": "object"
        +  },
        +  "ThemeSequentialRange": {
        +    "anyOf": [
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 3,
        +        "minItems": 3,
        +        "type": "array"
        +      }
        +    ],
        +    "title": "ThemeSequentialRange"
        +  },
        +  "ThreeColorRange": {
        +    "items": [
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "$ref": "#/$defs/Color"
        +      }
        +    ],
        +    "maxItems": 3,
        +    "minItems": 3,
        +    "title": "ThreeColorRange",
        +    "type": "array"
        +  },
        +  "UtcScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": [
        +          {
        +            "type": [
        +              "string",
        +              "number"
        +            ]
        +          },
        +          {
        +            "type": [
        +              "string",
        +              "number"
        +            ]
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "utc",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "UtcScale",
        +    "type": "object"
        +  },
        +  "WeightTypography": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "weight": {
        +        "anyOf": [
        +          {
        +            "const": 100,
        +            "type": "number"
        +          },
        +          {
        +            "const": 200,
        +            "type": "number"
        +          },
        +          {
        +            "const": 300,
        +            "type": "number"
        +          },
        +          {
        +            "const": 400,
        +            "type": "number"
        +          },
        +          {
        +            "const": 500,
        +            "type": "number"
        +          },
        +          {
        +            "const": 600,
        +            "type": "number"
        +          },
        +          {
        +            "const": 700,
        +            "type": "number"
        +          },
        +          {
        +            "const": 800,
        +            "type": "number"
        +          },
        +          {
        +            "const": 900,
        +            "type": "number"
        +          }
        +        ]
        +      }
        +    },
        +    "title": "WeightTypography",
        +    "type": "object"
        +  }
        +}
      • removedOutput schema / properties / configUrl
        Removed value: -{
        -  "description": "Owner-only chart-config endpoint",
        -  "type": "string"
        -}
      • addedOutput schema / properties / documentUrl
        Added value: +{
        +  "description": "Owner-only chart-document endpoint",
        +  "type": "string"
        +}
      • removedOutput schema / properties / publishedAt / anyOf
        Removed value: -[
        -  {
        -    "type": "string"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]
      • addedOutput schema / properties / publishedAt / type
        Added value: +[
        +  "string",
        +  "null"
        +]
      • changedOutput schema / properties / sizeBytes / description
        Previous value: -"Compressed size of the stored published config, excluding drafts; 0 means no published config has been stored yet"New value: +"Compressed size of the stored published document, excluding drafts; 0 means no published document has been stored yet"
      • addedOutput schema / properties / validation / properties / compatibility
        Added value: +{
        +  "oneOf": [
        +    {
        +      "additionalProperties": false,
        +      "properties": {
        +        "classification": {
        +          "enum": [
        +            "exact",
        +            "normalized"
        +          ],
        +          "type": "string"
        +        },
        +        "lossCodes": {
        +          "maxItems": 0,
        +          "minItems": 0,
        +          "type": "array"
        +        }
        +      },
        +      "required": [
        +        "classification",
        +        "lossCodes"
        +      ],
        +      "type": "object"
        +    },
        +    {
        +      "additionalProperties": false,
        +      "properties": {
        +        "classification": {
        +          "const": "lossy",
        +          "type": "string"
        +        },
        +        "lossCodes": {
        +          "items": {
        +            "type": "string"
        +          },
        +          "minItems": 1,
        +          "type": "array"
        +        }
        +      },
        +      "required": [
        +        "classification",
        +        "lossCodes"
        +      ],
        +      "type": "object"
        +    },
        +    {
        +      "additionalProperties": false,
        +      "properties": {
        +        "classification": {
        +          "const": "unsupported",
        +          "type": "string"
        +        },
        +        "lossCodes": {
        +          "maxItems": 0,
        +          "minItems": 0,
        +          "type": "array"
        +        },
        +        "unsupportedCode": {
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "classification",
        +        "lossCodes",
        +        "unsupportedCode"
        +      ],
        +      "type": "object"
        +    }
        +  ]
        +}
      • removedOutput schema / properties / validation / properties / diagnostics / items / additionalProperties
        Removed value: -false
      • addedOutput schema / properties / validation / properties / diagnostics / items / oneOf
        Added value: +[
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "invalid_structure",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "actualBytes": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "maxBytes": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "reason": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "invalid_preference",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "actualItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "fields": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "maximum": {
        +            "type": "number"
        +          },
        +          "minimum": {
        +            "type": "number"
        +          },
        +          "minimumItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "parts": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "property": {
        +            "type": "string"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "requiredItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "role": {
        +            "type": "string"
        +          },
        +          "samplePaths": {
        +            "items": {
        +              "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "sampleValues": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "syntax": {
        +            "enum": [
        +              "percent",
        +              "semantic"
        +            ],
        +            "type": "string"
        +          },
        +          "type": {
        +            "type": "string"
        +          },
        +          "value": {
        +            "type": [
        +              "string",
        +              "number"
        +            ]
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "incompatible_data",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "affectedCategories": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "affectedRows": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "aggregation": {
        +            "type": "string"
        +          },
        +          "axis": {
        +            "enum": [
        +              "x",
        +              "y"
        +            ],
        +            "type": "string"
        +          },
        +          "categoryField": {
        +            "type": "string"
        +          },
        +          "expected": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "field": {
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "omission": {
        +            "enum": [
        +              "incompatible",
        +              "missing"
        +            ],
        +            "type": "string"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "roles": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "rowCount": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "samplePaths": {
        +            "items": {
        +              "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "sampleValues": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "valueField": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "incompatible_scale",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "actualItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "affectedValues": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "axis": {
        +            "enum": [
        +              "x",
        +              "y"
        +            ],
        +            "type": "string"
        +          },
        +          "domain": {
        +            "items": [
        +              {
        +                "type": "number"
        +              },
        +              {
        +                "type": "number"
        +              }
        +            ],
        +            "maxItems": 2,
        +            "minItems": 2,
        +            "type": "array"
        +          },
        +          "expectedItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "markTypes": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "samplePaths": {
        +            "items": {
        +              "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "sampleValues": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "supportedTypes": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "type": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "duplicate_identity",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "affectedRows": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "categoryField": {
        +            "type": "string"
        +          },
        +          "field": {
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "samplePaths": {
        +            "items": {
        +              "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "seriesField": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "unresolved_decoration",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "annotationIndex": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "axis": {
        +            "enum": [
        +              "x",
        +              "y"
        +            ],
        +            "type": "string"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "referenceIndex": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "statistic": {
        +            "type": "string"
        +          },
        +          "value": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "render_adjustment",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "affectedCount": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "labelRoles": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "reason": {
        +            "const": "label_collision_suppressed",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason",
        +          "affectedCount",
        +          "labelRoles"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  }
        +]
      • removedOutput schema / properties / validation / properties / diagnostics / items / properties
        Removed value: -{
        -  "code": {
        -    "type": "string"
        -  },
        -  "details": {
        -    "additionalProperties": {},
        -    "propertyNames": {
        -      "type": "string"
        -    },
        -    "type": "object"
        -  },
        -  "message": {
        -    "type": "string"
        -  },
        -  "path": {
        -    "items": {
        -      "anyOf": [
        -        {
        -          "type": "string"
        -        },
        -        {
        -          "type": "number"
        -        }
        -      ]
        -    },
        -    "type": "array"
        -  },
        -  "relatedPaths": {
        -    "items": {
        -      "items": {
        -        "anyOf": [
        -          {
        -            "type": "string"
        -          },
        -          {
        -            "type": "number"
        -          }
        -        ]
        -      },
        -      "type": "array"
        -    },
        -    "type": "array"
        -  },
        -  "severity": {
        -    "enum": [
        -      "error",
        -      "warning",
        -      "suggestion"
        -    ],
        -    "type": "string"
        -  }
        -}
      • removedOutput schema / properties / validation / properties / diagnostics / items / required
        Removed value: -[
        -  "code",
        -  "severity",
        -  "path",
        -  "message",
        -  "details"
        -]
      • removedOutput schema / properties / validation / properties / diagnostics / items / type
        Removed value: -"object"
      • removedOutput schema / properties / validation / properties / errors
        Removed value: -{
        -  "items": {
        -    "additionalProperties": false,
        -    "properties": {
        -      "code": {
        -        "type": "string"
        -      },
        -      "details": {
        -        "additionalProperties": {},
        -        "propertyNames": {
        -          "type": "string"
        -        },
        -        "type": "object"
        -      },
        -      "message": {
        -        "type": "string"
        -      },
        -      "path": {
        -        "items": {
        -          "anyOf": [
        -            {
        -              "type": "string"
        -            },
        -            {
        -              "type": "number"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "relatedPaths": {
        -        "items": {
        -          "items": {
        -            "anyOf": [
        -              {
        -                "type": "string"
        -              },
        -              {
        -                "type": "number"
        -              }
        -            ]
        -          },
        -          "type": "array"
        -        },
        -        "type": "array"
        -      },
        -      "severity": {
        -        "enum": [
        -          "error",
        -          "warning",
        -          "suggestion"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "code",
        -      "severity",
        -      "path",
        -      "message",
        -      "details"
        -    ],
        -    "type": "object"
        -  },
        -  "type": "array"
        -}
      • removedOutput schema / properties / validation / properties / message
        Removed value: -{
        -  "type": "string"
        -}
      • removedOutput schema / properties / validation / properties / suggestedConfig
        Removed value: -{
        -  "additionalProperties": {},
        -  "description": "Schema version 2026-03-20. Send this JSON to POST https://szum.io/validate to validate it or POST https://szum.io/chart to render a chart image.",
        -  "properties": {
        -    "attribution": {
        -      "description": "Show a small \"Made with Szum\" credit in the bottom-right. Always on for free and keyless renders; Creator and Pro omit it by default and set true to opt in.",
        -      "type": "boolean"
        -    },
        -    "color": {
        -      "anyOf": [
        -        {
        -          "additionalProperties": {},
        -          "properties": {
        -            "domain": {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            },
        -            "label": {
        -              "type": "string"
        -            },
        -            "range": {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            },
        -            "type": {
        -              "const": "categorical",
        -              "type": "string"
        -            }
        -          },
        -          "required": [
        -            "type"
        -          ],
        -          "type": "object"
        -        },
        -        {
        -          "additionalProperties": {},
        -          "properties": {
        -            "domain": {
        -              "items": [
        -                {
        -                  "type": "number"
        -                },
        -                {
        -                  "type": "number"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            "label": {
        -              "type": "string"
        -            },
        -            "range": {
        -              "items": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "string"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            "type": {
        -              "const": "sequential",
        -              "type": "string"
        -            }
        -          },
        -          "required": [
        -            "type"
        -          ],
        -          "type": "object"
        -        },
        -        {
        -          "additionalProperties": false,
        -          "properties": {
        -            "label": {
        -              "type": "string"
        -            }
        -          },
        -          "type": "object"
        -        }
        -      ]
        -    },
        -    "data": {
        -      "items": {
        -        "additionalProperties": {
        -          "anyOf": [
        -            {
        -              "type": "string"
        -            },
        -            {
        -              "type": "number"
        -            }
        -          ]
        -        },
        -        "propertyNames": {
        -          "type": "string"
        -        },
        -        "type": "object"
        -      },
        -      "type": "array"
        -    },
        -    "footer": {
        -      "description": "Caption below the chart (a source line, methodology note, date). URLs, bare domains, and [label](url) links in it are auto-detected and rendered as inline links on every surface.",
        -      "type": "string"
        -    },
        -    "format": {
        -      "enum": [
        -        "svg",
        -        "png"
        -      ],
        -      "type": "string"
        -    },
        -    "headerAlign": {
        -      "enum": [
        -        "left",
        -        "center",
        -        "right"
        -      ],
        -      "type": "string"
        -    },
        -    "height": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "locale": {
        -      "description": "Locale identifier accepted by JavaScript Intl and associated with the chart content, such as en, pl, or zh-Hant.",
        -      "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        -      "type": "string"
        -    },
        -    "margin": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "bottom": {
        -          "type": "number"
        -        },
        -        "left": {
        -          "type": "number"
        -        },
        -        "right": {
        -          "type": "number"
        -        },
        -        "top": {
        -          "type": "number"
        -        }
        -      },
        -      "type": "object"
        -    },
        -    "marks": {
        -      "items": {
        -        "oneOf": [
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "label": {
        -                "additionalProperties": {},
        -                "properties": {
        -                  "field": {
        -                    "type": "string"
        -                  },
        -                  "format": {
        -                    "type": "string"
        -                  }
        -                },
        -                "required": [
        -                  "field"
        -                ],
        -                "type": "object"
        -              },
        -              "r": {
        -                "type": "number"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "dot",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "curve": {
        -                "enum": [
        -                  "linear",
        -                  "monotone",
        -                  "step"
        -                ],
        -                "type": "string"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "end": {
        -                        "anyOf": [
        -                          {
        -                            "type": "boolean"
        -                          },
        -                          {
        -                            "items": {
        -                              "enum": [
        -                                "category",
        -                                "value"
        -                              ],
        -                              "type": "string"
        -                            },
        -                            "type": "array"
        -                          }
        -                        ],
        -                        "default": [
        -                          "category"
        -                        ]
        -                      },
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "points": {
        -                        "anyOf": [
        -                          {
        -                            "enum": [
        -                              "extrema",
        -                              "all",
        -                              "ends"
        -                            ],
        -                            "type": "string"
        -                          },
        -                          {
        -                            "const": false,
        -                            "type": "boolean"
        -                          },
        -                          {
        -                            "additionalProperties": {},
        -                            "properties": {
        -                              "at": {
        -                                "enum": [
        -                                  "extrema",
        -                                  "all",
        -                                  "ends"
        -                                ],
        -                                "type": "string"
        -                              },
        -                              "show": {
        -                                "default": [
        -                                  "value"
        -                                ],
        -                                "items": {
        -                                  "enum": [
        -                                    "value",
        -                                    "category"
        -                                  ],
        -                                  "type": "string"
        -                                },
        -                                "type": "array"
        -                              }
        -                            },
        -                            "required": [
        -                              "at"
        -                            ],
        -                            "type": "object"
        -                          }
        -                        ],
        -                        "default": false
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "line",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "cornerRadius": {
        -                "type": "number"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "group": {
        -                "default": "stack",
        -                "enum": [
        -                  "stack",
        -                  "dodge"
        -                ],
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "position": {
        -                        "default": "outside",
        -                        "enum": [
        -                          "auto",
        -                          "outside",
        -                          "inside"
        -                        ],
        -                        "type": "string"
        -                      },
        -                      "show": {
        -                        "default": [
        -                          "value"
        -                        ],
        -                        "items": {
        -                          "enum": [
        -                            "value",
        -                            "percent",
        -                            "category",
        -                            "total"
        -                          ],
        -                          "type": "string"
        -                        },
        -                        "type": "array"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "barY",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "cornerRadius": {
        -                "type": "number"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "group": {
        -                "default": "stack",
        -                "enum": [
        -                  "stack",
        -                  "dodge"
        -                ],
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "position": {
        -                        "default": "outside",
        -                        "enum": [
        -                          "auto",
        -                          "outside",
        -                          "inside"
        -                        ],
        -                        "type": "string"
        -                      },
        -                      "show": {
        -                        "default": [
        -                          "value"
        -                        ],
        -                        "items": {
        -                          "enum": [
        -                            "value",
        -                            "percent",
        -                            "category",
        -                            "total"
        -                          ],
        -                          "type": "string"
        -                        },
        -                        "type": "array"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "barX",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "curve": {
        -                "enum": [
        -                  "linear",
        -                  "monotone",
        -                  "step"
        -                ],
        -                "type": "string"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "end": {
        -                        "anyOf": [
        -                          {
        -                            "type": "boolean"
        -                          },
        -                          {
        -                            "items": {
        -                              "enum": [
        -                                "category",
        -                                "value",
        -                                "percent"
        -                              ],
        -                              "type": "string"
        -                            },
        -                            "type": "array"
        -                          }
        -                        ],
        -                        "default": [
        -                          "category"
        -                        ]
        -                      },
        -                      "format": {
        -                        "type": "string"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "areaY",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "curve": {
        -                "enum": [
        -                  "linear",
        -                  "monotone",
        -                  "step"
        -                ],
        -                "type": "string"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "areaX",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "cornerRadius": {
        -                "type": "number"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "innerRadius": {
        -                "default": 0,
        -                "maximum": 1,
        -                "minimum": 0,
        -                "type": "number"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "position": {
        -                        "default": "auto",
        -                        "enum": [
        -                          "auto",
        -                          "inside",
        -                          "outside"
        -                        ],
        -                        "type": "string"
        -                      },
        -                      "show": {
        -                        "default": [
        -                          "category",
        -                          "percent"
        -                        ],
        -                        "items": {
        -                          "enum": [
        -                            "value",
        -                            "percent",
        -                            "category"
        -                          ],
        -                          "type": "string"
        -                        },
        -                        "type": "array"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "pie",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "dx": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "dy": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "fontSize": {
        -                "type": "number"
        -              },
        -              "fontWeight": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "text": {
        -                "default": "text",
        -                "type": "string"
        -              },
        -              "textAnchor": {
        -                "default": "center",
        -                "enum": [
        -                  "start",
        -                  "center",
        -                  "end"
        -                ],
        -                "type": "string"
        -              },
        -              "type": {
        -                "const": "text",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "ruleX",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "ruleY",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          }
        -        ]
        -      },
        -      "minItems": 1,
        -      "type": "array"
        -    },
        -    "plotHeight": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "plotWidth": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "scale": {
        -      "maximum": 4,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "subtitle": {
        -      "type": "string"
        -    },
        -    "theme": {
        -      "default": "editorial",
        -      "enum": [
        -        "editorial",
        -        "clean",
        -        "noir",
        -        "loud",
        -        "soft",
        -        "technical"
        -      ],
        -      "type": "string"
        -    },
        -    "themeOverrides": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "axisColor": {
        -          "type": "string"
        -        },
        -        "axisFrame": {
        -          "enum": [
        -            "none",
        -            "baseline",
        -            "lShape",
        -            "full"
        -          ],
        -          "type": "string"
        -        },
        -        "axisLabelColor": {
        -          "type": "string"
        -        },
        -        "axisLabelFontWeight": {
        -          "type": "string"
        -        },
        -        "axisLineWidth": {
        -          "type": "number"
        -        },
        -        "backgroundColor": {
        -          "type": "string"
        -        },
        -        "barCornerRadius": {
        -          "type": "number"
        -        },
        -        "barPadding": {
        -          "type": "number"
        -        },
        -        "colors": {
        -          "items": {
        -            "type": "string"
        -          },
        -          "type": "array"
        -        },
        -        "curve": {
        -          "enum": [
        -            "linear",
        -            "monotone",
        -            "step"
        -          ],
        -          "type": "string"
        -        },
        -        "dotRadius": {
        -          "type": "number"
        -        },
        -        "fontFamily": {
        -          "enum": [
        -            "ABeeZee",
        -            "ADLaM Display",
        -            "AR One Sans",
        -            "Abel",
        -            "Abhaya Libre",
        -            "Aboreto",
        -            "Abril Fatface",
        -            "Abyssinica SIL",
        -            "Aclonica",
        -            "Acme",
        -            "Actor",
        -            "Adamina",
        -            "Advent Pro",
        -            "Afacad",
        -            "Afacad Flux",
        -            "Agbalumo",
        -            "Agdasima",
        -            "Agu Display",
        -            "Aguafina Script",
        -            "Akatab",
        -            "Akaya Kanadaka",
        -            "Akaya Telivigala",
        -            "Akronim",
        -            "Akshar",
        -            "Akt",
        -            "Aladin",
        -            "Alan Sans",
        -            "Alata",
        -            "Alatsi",
        -            "Albert Sans",
        -            "Aldrich",
        -            "Alef",
        -            "Alegreya",
        -            "Alegreya SC",
        -            "Alegreya Sans",
        -            "Alegreya Sans SC",
        -            "Aleo",
        -            "Alex Brush",
        -            "Alexandria",
        -            "Alfa Slab One",
        -            "Alice",
        -            "Alien Block",
        -            "Alike",
        -            "Alike Angular",
        -            "Alkalami",
        -            "Alkatra",
        -            "Allan",
        -            "Allerta",
        -            "Allerta Stencil",
        -            "Allison",
        -            "Allkin",
        -            "Allura",
        -            "Almarai",
        -            "Almendra",
        -            "Almendra Display",
        -            "Almendra SC",
        -            "Alumni Sans",
        -            "Alumni Sans Collegiate One",
        -            "Alumni Sans Inline One",
        -            "Alumni Sans Pinstripe",
        -            "Alumni Sans SC",
        -            "Alyamama",
        -            "Amarante",
        -            "Amaranth",
        -            "Amarna",
        -            "Amatic SC",
        -            "Amethysta",
        -            "Amiko",
        -            "Amiri",
        -            "Amiri Quran",
        -            "Amita",
        -            "Anaheim",
        -            "Ancizar Sans",
        -            "Ancizar Serif",
        -            "Andada Pro",
        -            "Andika",
        -            "Anek Bangla",
        -            "Anek Devanagari",
        -            "Anek Gujarati",
        -            "Anek Gurmukhi",
        -            "Anek Kannada",
        -            "Anek Latin",
        -            "Anek Malayalam",
        -            "Anek Odia",
        -            "Anek Tamil",
        -            "Anek Telugu",
        -            "Angkor",
        -            "Annapurna SIL",
        -            "Annie Use Your Telescope",
        -            "Anonymous Pro",
        -            "Anta",
        -            "Antic",
        -            "Antic Didone",
        -            "Antic Slab",
        -            "Anton",
        -            "Anton SC",
        -            "Antonio",
        -            "Anuphan",
        -            "Anybody",
        -            "Aoboshi One",
        -            "Arapey",
        -            "Arbutus",
        -            "Arbutus Slab",
        -            "Architects Daughter",
        -            "Archivo",
        -            "Archivo Black",
        -            "Archivo Narrow",
        -            "Are You Serious",
        -            "Aref Ruqaa",
        -            "Aref Ruqaa Ink",
        -            "Arima",
        -            "Arimo",
        -            "Arizonia",
        -            "Armata",
        -            "Arsenal",
        -            "Arsenal SC",
        -            "Artifika",
        -            "Arvo",
        -            "Arya",
        -            "Asap",
        -            "Asap Condensed",
        -            "Asar",
        -            "Asimovian",
        -            "Asset",
        -            "Assistant",
        -            "Asta Sans",
        -            "Astloch",
        -            "Asul",
        -            "Athiti",
        -            "Atkinson Hyperlegible",
        -            "Atkinson Hyperlegible Mono",
        -            "Atkinson Hyperlegible Next",
        -            "Atma",
        -            "Atomic Age",
        -            "Aubrey",
        -            "Audiowide",
        -            "Autour One",
        -            "Average",
        -            "Average Sans",
        -            "Averia Gruesa Libre",
        -            "Averia Libre",
        -            "Averia Sans Libre",
        -            "Averia Serif Libre",
        -            "Azeret Mono",
        -            "B612",
        -            "B612 Mono",
        -            "BBH Bartle",
        -            "BBH Bogle",
        -            "BBH Hegarty",
        -            "BIZ UDGothic",
        -            "BIZ UDMincho",
        -            "BIZ UDPGothic",
        -            "BIZ UDPMincho",
        -            "BJCree",
        -            "Babylonica",
        -            "Bacasime Antique",
        -            "Bad Script",
        -            "Badeen Display",
        -            "Bagel Fat One",
        -            "Bahiana",
        -            "Bahianita",
        -            "Bai Jamjuree",
        -            "Bakbak One",
        -            "Ballet",
        -            "Baloo 2",
        -            "Baloo Bhai 2",
        -            "Baloo Bhaijaan 2",
        -            "Baloo Bhaina 2",
        -            "Baloo Chettan 2",
        -            "Baloo Da 2",
        -            "Baloo Paaji 2",
        -            "Baloo Tamma 2",
        -            "Baloo Tammudu 2",
        -            "Baloo Thambi 2",
        -            "Balsamiq Sans",
        -            "Balthazar",
        -            "Bangers",
        -            "Barlow",
        -            "Barlow Condensed",
        -            "Barlow Semi Condensed",
        -            "Barriecito",
        -            "Barrio",
        -            "Basic",
        -            "Baskervville",
        -            "Baskervville SC",
        -            "Battambang",
        -            "Baumans",
        -            "Bayon",
        -            "Be Vietnam Pro",
        -            "Beau Rivage",
        -            "Bebas Neue",
        -            "Beiruti",
        -            "Belanosima",
        -            "Belgrano",
        -            "Bellefair",
        -            "Belleza",
        -            "Bellota",
        -            "Bellota Text",
        -            "BenchNine",
        -            "Benne",
        -            "Bentham",
        -            "Berkshire Swash",
        -            "Besley",
        -            "Betania Patmos",
        -            "Betania Patmos GDL",
        -            "Betania Patmos In",
        -            "Betania Patmos In GDL",
        -            "Beth Ellen",
        -            "Bevan",
        -            "BhuTuka Expanded One",
        -            "Big Shoulders",
        -            "Big Shoulders Inline",
        -            "Big Shoulders Stencil",
        -            "Bigelow Rules",
        -            "Bigshot One",
        -            "Bilbo",
        -            "Bilbo Swash Caps",
        -            "BioRhyme",
        -            "BioRhyme Expanded",
        -            "Birthstone",
        -            "Birthstone Bounce",
        -            "Biryani",
        -            "Bitcount",
        -            "Bitcount Grid Double",
        -            "Bitcount Grid Double Ink",
        -            "Bitcount Grid Single",
        -            "Bitcount Grid Single Ink",
        -            "Bitcount Ink",
        -            "Bitcount Prop Double",
        -            "Bitcount Prop Double Ink",
        -            "Bitcount Prop Single",
        -            "Bitcount Prop Single Ink",
        -            "Bitcount Single",
        -            "Bitcount Single Ink",
        -            "Bitter",
        -            "Black And White Picture",
        -            "Black Han Sans",
        -            "Black Ops One",
        -            "Blaka",
        -            "Blaka Hollow",
        -            "Blaka Ink",
        -            "Blinker",
        -            "Bodoni Moda",
        -            "Bodoni Moda SC",
        -            "Bokor",
        -            "Boldonse",
        -            "Bona Nova",
        -            "Bona Nova SC",
        -            "Bonbon",
        -            "Bonheur Royale",
        -            "Boogaloo",
        -            "Borel",
        -            "Bowlby One",
        -            "Bowlby One SC",
        -            "Bpmf Huninn",
        -            "Bpmf Iansui",
        -            "Bpmf Zihi Kai Std",
        -            "Braah One",
        -            "Brawler",
        -            "Bree Serif",
        -            "Bricolage Grotesque",
        -            "Bruno Ace",
        -            "Bruno Ace SC",
        -            "Brygada 1918",
        -            "Bubblegum Sans",
        -            "Bubbler One",
        -            "Buda",
        -            "Buenard",
        -            "Bungee",
        -            "Bungee Hairline",
        -            "Bungee Inline",
        -            "Bungee Outline",
        -            "Bungee Shade",
        -            "Bungee Spice",
        -            "Bungee Tint",
        -            "Butcherman",
        -            "Butterfly Kids",
        -            "Bytesized",
        -            "Cabin",
        -            "Cabin Condensed",
        -            "Cabin Sketch",
        -            "Cactus Classical Serif",
        -            "Caesar Dressing",
        -            "Cagliostro",
        -            "Cairo",
        -            "Cairo Play",
        -            "Cal Sans",
        -            "Caladea",
        -            "Calistoga",
        -            "Calligraffitti",
        -            "Cambay",
        -            "Cambo",
        -            "Candal",
        -            "Cantarell",
        -            "Cantata One",
        -            "Cantora One",
        -            "Caprasimo",
        -            "Capriola",
        -            "Caramel",
        -            "Carattere",
        -            "Cardo",
        -            "Carlito",
        -            "Carme",
        -            "Carrois Gothic",
        -            "Carrois Gothic SC",
        -            "Carter One",
        -            "Cascadia Code",
        -            "Cascadia Mono",
        -            "Castoro",
        -            "Castoro Titling",
        -            "Catamaran",
        -            "Caudex",
        -            "Cause",
        -            "Caveat",
        -            "Caveat Brush",
        -            "Cedarville Cursive",
        -            "Ceviche One",
        -            "Chakra Petch",
        -            "Changa",
        -            "Changa One",
        -            "Chango",
        -            "Charis SIL",
        -            "Charm",
        -            "Charmonman",
        -            "Chathura",
        -            "Chau Philomene One",
        -            "Chela One",
        -            "Chelsea Market",
        -            "Chenla",
        -            "Cherish",
        -            "Cherry Bomb One",
        -            "Cherry Cream Soda",
        -            "Cherry Swash",
        -            "Chewy",
        -            "Chicle",
        -            "Chilanka",
        -            "Chiron GoRound TC",
        -            "Chiron Hei HK",
        -            "Chiron Sung HK",
        -            "Chivo",
        -            "Chivo Mono",
        -            "Chocolate Classical Sans",
        -            "Chokokutai",
        -            "Chonburi",
        -            "Cinzel",
        -            "Cinzel Decorative",
        -            "Clicker Script",
        -            "Climate Crisis",
        -            "Coda",
        -            "Codystar",
        -            "Coiny",
        -            "Combo",
        -            "Comfortaa",
        -            "Comforter",
        -            "Comforter Brush",
        -            "Comic Neue",
        -            "Comic Relief",
        -            "Coming Soon",
        -            "Comme",
        -            "Commissioner",
        -            "Concert One",
        -            "Condiment",
        -            "Content",
        -            "Contrail One",
        -            "Convergence",
        -            "Cookie",
        -            "Copse",
        -            "Coral Pixels",
        -            "Corben",
        -            "Corinthia",
        -            "Cormorant",
        -            "Cormorant Garamond",
        -            "Cormorant Infant",
        -            "Cormorant SC",
        -            "Cormorant Unicase",
        -            "Cormorant Upright",
        -            "Cossette Texte",
        -            "Cossette Titre",
        -            "Courgette",
        -            "Courier Prime",
        -            "Cousine",
        -            "Coustard",
        -            "Covered By Your Grace",
        -            "Crafty Girls",
        -            "Creepster",
        -            "Crete Round",
        -            "Crimson Pro",
        -            "Crimson Text",
        -            "Croissant One",
        -            "Crushed",
        -            "Cuprum",
        -            "Cute Font",
        -            "Cutive",
        -            "Cutive Mono",
        -            "DM Mono",
        -            "DM Sans",
        -            "DM Serif Display",
        -            "DM Serif Text",
        -            "Dai Banna SIL",
        -            "Damion",
        -            "Dancing Script",
        -            "Danfo",
        -            "Dangrek",
        -            "Darker Grotesque",
        -            "Darumadrop One",
        -            "Datatype",
        -            "David Libre",
        -            "Dawning of a New Day",
        -            "Days One",
        -            "Dekko",
        -            "Dela Gothic One",
        -            "Delicious Handrawn",
        -            "Delius",
        -            "Delius Swash Caps",
        -            "Delius Unicase",
        -            "Della Respira",
        -            "Denk One",
        -            "Devonshire",
        -            "Dhurjati",
        -            "Didact Gothic",
        -            "Diphylleia",
        -            "Diplomata",
        -            "Diplomata SC",
        -            "Do Hyeon",
        -            "Dokdo",
        -            "Domine",
        -            "Donegal One",
        -            "Dongle",
        -            "Doppio One",
        -            "Dorsa",
        -            "Dosis",
        -            "DotGothic16",
        -            "Doto",
        -            "Dr Sugiyama",
        -            "Duru Sans",
        -            "DynaPuff",
        -            "Dynalight",
        -            "EB Garamond",
        -            "Eagle Lake",
        -            "East Sea Dokdo",
        -            "Eater",
        -            "Economica",
        -            "Eczar",
        -            "Edu AU VIC WA NT Arrows",
        -            "Edu AU VIC WA NT Dots",
        -            "Edu AU VIC WA NT Guides",
        -            "Edu AU VIC WA NT Hand",
        -            "Edu AU VIC WA NT Pre",
        -            "Edu NSW ACT Cursive",
        -            "Edu NSW ACT Foundation",
        -            "Edu NSW ACT Hand Pre",
        -            "Edu QLD Beginner",
        -            "Edu QLD Hand",
        -            "Edu SA Beginner",
        -            "Edu SA Hand",
        -            "Edu TAS Beginner",
        -            "Edu VIC WA NT Beginner",
        -            "Edu VIC WA NT Hand",
        -            "Edu VIC WA NT Hand Pre",
        -            "El Messiri",
        -            "Electrolize",
        -            "Elms Sans",
        -            "Elsie",
        -            "Elsie Swash Caps",
        -            "Emblema One",
        -            "Emilys Candy",
        -            "Encode Sans",
        -            "Encode Sans Condensed",
        -            "Encode Sans Expanded",
        -            "Encode Sans SC",
        -            "Encode Sans Semi Condensed",
        -            "Encode Sans Semi Expanded",
        -            "Engagement",
        -            "Englebert",
        -            "Enriqueta",
        -            "Ephesis",
        -            "Epilogue",
        -            "Epunda Sans",
        -            "Epunda Slab",
        -            "Erica One",
        -            "Esteban",
        -            "Estedad",
        -            "Estonia",
        -            "Euphoria Script",
        -            "Ewert",
        -            "Exile",
        -            "Exo",
        -            "Exo 2",
        -            "Expletus Sans",
        -            "Explora",
        -            "Faculty Glyphic",
        -            "Fahkwang",
        -            "Familjen Grotesk",
        -            "Fanwood Text",
        -            "Farro",
        -            "Farsan",
        -            "Fascinate",
        -            "Fascinate Inline",
        -            "Faster One",
        -            "Fasthand",
        -            "Fauna One",
        -            "Faustina",
        -            "Federant",
        -            "Federo",
        -            "Felipa",
        -            "Fenix",
        -            "Festive",
        -            "Figtree",
        -            "Finger Paint",
        -            "Finlandica Headline",
        -            "Finlandica Text",
        -            "Fira Code",
        -            "Fira Mono",
        -            "Fira Sans",
        -            "Fira Sans Condensed",
        -            "Fira Sans Extra Condensed",
        -            "Fjalla One",
        -            "Fjord One",
        -            "Flamenco",
        -            "Flavors",
        -            "Fleur De Leah",
        -            "Flow Block",
        -            "Flow Circular",
        -            "Flow Rounded",
        -            "Foldit",
        -            "Fondamento",
        -            "Fontdiner Swanky",
        -            "Forum",
        -            "Fragment Mono",
        -            "Francois One",
        -            "Frank Ruhl Libre",
        -            "Fraunces",
        -            "Freckle Face",
        -            "Fredericka the Great",
        -            "Fredoka",
        -            "Freehand",
        -            "Freeman",
        -            "Fresca",
        -            "Frijole",
        -            "Fruktur",
        -            "Fugaz One",
        -            "Fuggles",
        -            "Funnel Display",
        -            "Funnel Sans",
        -            "Fustat",
        -            "Fuzzy Bubbles",
        -            "GFS Didot",
        -            "GFS Neohellenic",
        -            "Ga Maamli",
        -            "Gabarito",
        -            "Gabriela",
        -            "Gaegu",
        -            "Gafata",
        -            "Gajraj One",
        -            "Galada",
        -            "Galdeano",
        -            "Galindo",
        -            "Gamja Flower",
        -            "Gantari",
        -            "Gasoek One",
        -            "Gayathri",
        -            "Geist",
        -            "Geist Mono",
        -            "Geist Pixel",
        -            "Gelasio",
        -            "Gemunu Libre",
        -            "Genos",
        -            "Gentium Book Plus",
        -            "Gentium Plus",
        -            "Geo",
        -            "Geologica",
        -            "Geom",
        -            "Geomini",
        -            "Georama",
        -            "Geostar",
        -            "Geostar Fill",
        -            "Germania One",
        -            "Gideon Roman",
        -            "Gidole",
        -            "Gidugu",
        -            "Gilda Display",
        -            "Girassol",
        -            "Give You Glory",
        -            "Glass Antiqua",
        -            "Glegoo",
        -            "Gloock",
        -            "Gloria Hallelujah",
        -            "Glory",
        -            "Gluten",
        -            "Goblin One",
        -            "Gochi Hand",
        -            "Goldman",
        -            "Golos Text",
        -            "Google Sans",
        -            "Google Sans Code",
        -            "Google Sans Flex",
        -            "Gorditas",
        -            "Gothic A1",
        -            "Gotu",
        -            "Goudy Bookletter 1911",
        -            "Gowun Batang",
        -            "Gowun Dodum",
        -            "Graduate",
        -            "Grand Hotel",
        -            "Grandiflora One",
        -            "Grandstander",
        -            "Grape Nuts",
        -            "Gravitas One",
        -            "Great Vibes",
        -            "Grechen Fuemen",
        -            "Grenze",
        -            "Grenze Gotisch",
        -            "Grey Qo",
        -            "Griffy",
        -            "Gruppo",
        -            "Gudea",
        -            "Gugi",
        -            "Gulzar",
        -            "Gupter",
        -            "Gurajada",
        -            "Gveret Levin",
        -            "Gwendolyn",
        -            "Habibi",
        -            "Hachi Maru Pop",
        -            "Hahmlet",
        -            "Halant",
        -            "Hammersmith One",
        -            "Hanalei",
        -            "Hanalei Fill",
        -            "Handjet",
        -            "Handlee",
        -            "Hanken Grotesk",
        -            "Hanuman",
        -            "Happy Monkey",
        -            "Harmattan",
        -            "Headland One",
        -            "Hedvig Letters Sans",
        -            "Hedvig Letters Serif",
        -            "Heebo",
        -            "Henny Penny",
        -            "Hepta Slab",
        -            "Herr Von Muellerhoff",
        -            "Hi Melody",
        -            "Hibur Mono",
        -            "Hina Mincho",
        -            "Hind",
        -            "Hind Guntur",
        -            "Hind Madurai",
        -            "Hind Mysuru",
        -            "Hind Siliguri",
        -            "Hind Vadodara",
        -            "Holtwood One SC",
        -            "Homemade Apple",
        -            "Homenaje",
        -            "Honk",
        -            "Host Grotesk",
        -            "Hubballi",
        -            "Hubot Sans",
        -            "Huninn",
        -            "Hurricane",
        -            "IBM Plex Mono",
        -            "IBM Plex Sans",
        -            "IBM Plex Sans Arabic",
        -            "IBM Plex Sans Condensed",
        -            "IBM Plex Sans Devanagari",
        -            "IBM Plex Sans Hebrew",
        -            "IBM Plex Sans JP",
        -            "IBM Plex Sans KR",
        -            "IBM Plex Sans Thai",
        -            "IBM Plex Sans Thai Looped",
        -            "IBM Plex Serif",
        -            "IM Fell DW Pica",
        -            "IM Fell DW Pica SC",
        -            "IM Fell Double Pica",
        -            "IM Fell Double Pica SC",
        -            "IM Fell English",
        -            "IM Fell English SC",
        -            "IM Fell French Canon",
        -            "IM Fell French Canon SC",
        -            "IM Fell Great Primer",
        -            "IM Fell Great Primer SC",
        -            "Iansui",
        -            "Ibarra Real Nova",
        -            "Iceberg",
        -            "Iceland",
        -            "Idiqlat",
        -            "Imbue",
        -            "Imperial Script",
        -            "Imprima",
        -            "Inclusive Sans",
        -            "Inconsolata",
        -            "Inder",
        -            "Indie Flower",
        -            "Ingrid Darling",
        -            "Inika",
        -            "Inknut Antiqua",
        -            "Inria Sans",
        -            "Inria Serif",
        -            "Inspiration",
        -            "Instrument Sans",
        -            "Instrument Serif",
        -            "Intel One Mono",
        -            "Inter",
        -            "Inter Tight",
        -            "Iosevka Charon",
        -            "Iosevka Charon Mono",
        -            "Irish Grover",
        -            "Island Moments",
        -            "Istok Web",
        -            "Italiana",
        -            "Italianno",
        -            "Itim",
        -            "Jacquard 12",
        -            "Jacquard 12 Charted",
        -            "Jacquard 24",
        -            "Jacquard 24 Charted",
        -            "Jacquarda Bastarda 9",
        -            "Jacquarda Bastarda 9 Charted",
        -            "Jacques Francois",
        -            "Jacques Francois Shadow",
        -            "Jaini",
        -            "Jaini Purva",
        -            "Jaldi",
        -            "Jaro",
        -            "Jersey 10",
        -            "Jersey 10 Charted",
        -            "Jersey 15",
        -            "Jersey 15 Charted",
        -            "Jersey 20",
        -            "Jersey 20 Charted",
        -            "Jersey 25",
        -            "Jersey 25 Charted",
        -            "JetBrains Mono",
        -            "Jim Nightshade",
        -            "Joan",
        -            "Jockey One",
        -            "Jolly Lodger",
        -            "Jomhuria",
        -            "Jomolhari",
        -            "Josefin Sans",
        -            "Josefin Slab",
        -            "Jost",
        -            "Joti One",
        -            "Jua",
        -            "Judson",
        -            "Julee",
        -            "Julius Sans One",
        -            "Junge",
        -            "Jura",
        -            "Just Another Hand",
        -            "Just Me Again Down Here",
        -            "K2D",
        -            "Kablammo",
        -            "Kadwa",
        -            "Kaisei Decol",
        -            "Kaisei HarunoUmi",
        -            "Kaisei Opti",
        -            "Kaisei Tokumin",
        -            "Kalam",
        -            "Kalnia",
        -            "Kalnia Glaze",
        -            "Kameron",
        -            "Kanchenjunga",
        -            "Kanit",
        -            "Kantumruy Pro",
        -            "Kapakana",
        -            "Karantina",
        -            "Karla",
        -            "Karla Tamil Inclined",
        -            "Karla Tamil Upright",
        -            "Karma",
        -            "Katibeh",
        -            "Kaushan Script",
        -            "Kavivanar",
        -            "Kavoon",
        -            "Kay Pho Du",
        -            "Kdam Thmor Pro",
        -            "Keania One",
        -            "Kedebideri",
        -            "Kelly Slab",
        -            "Kenia",
        -            "Khand",
        -            "Khmer",
        -            "Khula",
        -            "Kings",
        -            "Kirang Haerang",
        -            "Kite One",
        -            "Kiwi Maru",
        -            "Klee One",
        -            "Knewave",
        -            "KoHo",
        -            "Kodchasan",
        -            "Kode Mono",
        -            "Koh Santepheap",
        -            "Kolker Brush",
        -            "Konkhmer Sleokchher",
        -            "Kosugi",
        -            "Kosugi Maru",
        -            "Kotta One",
        -            "Koulen",
        -            "Kranky",
        -            "Kreon",
        -            "Kristi",
        -            "Krona One",
        -            "Krub",
        -            "Kufam",
        -            "Kulim Park",
        -            "Kumar One",
        -            "Kumar One Outline",
        -            "Kumbh Sans",
        -            "Kurale",
        -            "LINE Seed JP",
        -            "LXGW Marker Gothic",
        -            "LXGW WenKai Mono TC",
        -            "LXGW WenKai TC",
        -            "La Belle Aurore",
        -            "Labrada",
        -            "Lacquer",
        -            "Laila",
        -            "Lakki Reddy",
        -            "Lalezar",
        -            "Lancelot",
        -            "Langar",
        -            "Lateef",
        -            "Lato",
        -            "Lavishly Yours",
        -            "League Gothic",
        -            "League Script",
        -            "League Spartan",
        -            "Leckerli One",
        -            "Ledger",
        -            "Lekton",
        -            "Lemon",
        -            "Lemonada",
        -            "Lexend",
        -            "Lexend Deca",
        -            "Lexend Exa",
        -            "Lexend Giga",
        -            "Lexend Mega",
        -            "Lexend Peta",
        -            "Lexend Tera",
        -            "Lexend Zetta",
        -            "Libertinus Keyboard",
        -            "Libertinus Math",
        -            "Libertinus Mono",
        -            "Libertinus Sans",
        -            "Libertinus Serif",
        -            "Libertinus Serif Display",
        -            "Libre Barcode 128",
        -            "Libre Barcode 128 Text",
        -            "Libre Barcode 39",
        -            "Libre Barcode 39 Extended",
        -            "Libre Barcode 39 Extended Text",
        -            "Libre Barcode 39 Text",
        -            "Libre Barcode EAN13 Text",
        -            "Libre Baskerville",
        -            "Libre Bodoni",
        -            "Libre Caslon Display",
        -            "Libre Caslon Text",
        -            "Libre Franklin",
        -            "Licorice",
        -            "Life Savers",
        -            "Lilex",
        -            "Lilita One",
        -            "Lily Script One",
        -            "Limelight",
        -            "Linden Hill",
        -            "Linefont",
        -            "Lisu Bosa",
        -            "Liter",
        -            "Literata",
        -            "Liu Jian Mao Cao",
        -            "Livvic",
        -            "Lobster",
        -            "Lobster Two",
        -            "Londrina Outline",
        -            "Londrina Shadow",
        -            "Londrina Sketch",
        -            "Londrina Solid",
        -            "Long Cang",
        -            "Lora",
        -            "Love Light",
        -            "Love Ya Like A Sister",
        -            "Loved by the King",
        -            "Lovers Quarrel",
        -            "Luckiest Guy",
        -            "Lugrasimo",
        -            "Lumanosimo",
        -            "Lunasima",
        -            "Lusitana",
        -            "Lustria",
        -            "Luxurious Roman",
        -            "Luxurious Script",
        -            "M PLUS 1",
        -            "M PLUS 1 Code",
        -            "M PLUS 1p",
        -            "M PLUS 2",
        -            "M PLUS Code Latin",
        -            "M PLUS Rounded 1c",
        -            "M PLUS U",
        -            "Ma Shan Zheng",
        -            "Macondo",
        -            "Macondo Swash Caps",
        -            "Mada",
        -            "Madimi One",
        -            "Magra",
        -            "Maiden Orange",
        -            "Maitree",
        -            "Major Mono Display",
        -            "Mako",
        -            "Mali",
        -            "Mallanna",
        -            "Maname",
        -            "Mandali",
        -            "Manjari",
        -            "Manrope",
        -            "Mansalva",
        -            "Manuale",
        -            "Manufacturing Consent",
        -            "Marcellus",
        -            "Marcellus SC",
        -            "Marck Script",
        -            "Margarine",
        -            "Marhey",
        -            "Markazi Text",
        -            "Marko One",
        -            "Marmelad",
        -            "Martel",
        -            "Martel Sans",
        -            "Martian Mono",
        -            "Marvel",
        -            "Matangi",
        -            "Mate",
        -            "Mate SC",
        -            "Matemasie",
        -            "Material Icons",
        -            "Material Icons Outlined",
        -            "Material Icons Round",
        -            "Material Icons Sharp",
        -            "Material Icons Two Tone",
        -            "Material Symbols",
        -            "Material Symbols Outlined",
        -            "Material Symbols Rounded",
        -            "Material Symbols Sharp",
        -            "Maven Pro",
        -            "McLaren",
        -            "Mea Culpa",
        -            "Meddon",
        -            "MedievalSharp",
        -            "Medula One",
        -            "Meera Inimai",
        -            "Megrim",
        -            "Meie Script",
        -            "Menbere",
        -            "Meow Script",
        -            "Merienda",
        -            "Merriweather",
        -            "Merriweather Sans",
        -            "Metal",
        -            "Metal Mania",
        -            "Metamorphous",
        -            "Metrophobic",
        -            "Michroma",
        -            "Micro 5",
        -            "Micro 5 Charted",
        -            "Milonga",
        -            "Miltonian",
        -            "Miltonian Tattoo",
        -            "Mina",
        -            "Mingzat",
        -            "Miniver",
        -            "Miranda Sans",
        -            "Miriam Libre",
        -            "Mirza",
        -            "Miss Fajardose",
        -            "Mitr",
        -            "Mochiy Pop One",
        -            "Mochiy Pop P One",
        -            "Modak",
        -            "Modern Antiqua",
        -            "Moderustic",
        -            "Mogra",
        -            "Mohave",
        -            "Moirai One",
        -            "Molengo",
        -            "Molle",
        -            "Momo Signature",
        -            "Momo Trust Display",
        -            "Momo Trust Sans",
        -            "Mona Sans",
        -            "Monda",
        -            "Monofett",
        -            "Monomakh",
        -            "Monomaniac One",
        -            "Monoton",
        -            "Monsieur La Doulaise",
        -            "Montaga",
        -            "Montagu Slab",
        -            "MonteCarlo",
        -            "Montenegrin Gothic One",
        -            "Montez",
        -            "Montserrat",
        -            "Montserrat Alternates",
        -            "Montserrat Underline",
        -            "Moo Lah Lah",
        -            "Mooli",
        -            "Moon Dance",
        -            "Moul",
        -            "Moulpali",
        -            "Mountains of Christmas",
        -            "Mouse Memoirs",
        -            "Mozilla Headline",
        -            "Mozilla Text",
        -            "Mr Bedfort",
        -            "Mr Dafoe",
        -            "Mr De Haviland",
        -            "Mrs Saint Delafield",
        -            "Mrs Sheppards",
        -            "Ms Madi",
        -            "Mukta",
        -            "Mukta Mahee",
        -            "Mukta Malar",
        -            "Mukta Vaani",
        -            "Mulish",
        -            "Murecho",
        -            "MuseoModerno",
        -            "My Soul",
        -            "Mynerve",
        -            "Mystery Quest",
        -            "NTR",
        -            "Nabla",
        -            "Namdhinggo",
        -            "Nanum Brush Script",
        -            "Nanum Gothic",
        -            "Nanum Gothic Coding",
        -            "Nanum Myeongjo",
        -            "Nanum Pen Script",
        -            "Narnoor",
        -            "Nata Sans",
        -            "National Park",
        -            "Neonderthaw",
        -            "Nerko One",
        -            "Neucha",
        -            "Neuton",
        -            "New Amsterdam",
        -            "New Rocker",
        -            "New Tegomin",
        -            "News Cycle",
        -            "Newsreader",
        -            "Niconne",
        -            "Niramit",
        -            "Nixie One",
        -            "Nobile",
        -            "Nokora",
        -            "Norican",
        -            "Nosifer",
        -            "Notable",
        -            "Nothing You Could Do",
        -            "Noticia Text",
        -            "Noto Color Emoji",
        -            "Noto Emoji",
        -            "Noto Kufi Arabic",
        -            "Noto Music",
        -            "Noto Naskh Arabic",
        -            "Noto Nastaliq Urdu",
        -            "Noto Rashi Hebrew",
        -            "Noto Sans",
        -            "Noto Sans Adlam",
        -            "Noto Sans Adlam Unjoined",
        -            "Noto Sans Anatolian Hieroglyphs",
        -            "Noto Sans Arabic",
        -            "Noto Sans Armenian",
        -            "Noto Sans Avestan",
        -            "Noto Sans Balinese",
        -            "Noto Sans Bamum",
        -            "Noto Sans Bassa Vah",
        -            "Noto Sans Batak",
        -            "Noto Sans Bengali",
        -            "Noto Sans Bhaiksuki",
        -            "Noto Sans Brahmi",
        -            "Noto Sans Buginese",
        -            "Noto Sans Buhid",
        -            "Noto Sans Canadian Aboriginal",
        -            "Noto Sans Carian",
        -            "Noto Sans Caucasian Albanian",
        -            "Noto Sans Chakma",
        -            "Noto Sans Cham",
        -            "Noto Sans Cherokee",
        -            "Noto Sans Chorasmian",
        -            "Noto Sans Coptic",
        -            "Noto Sans Cuneiform",
        -            "Noto Sans Cypriot",
        -            "Noto Sans Cypro Minoan",
        -            "Noto Sans Deseret",
        -            "Noto Sans Devanagari",
        -            "Noto Sans Display",
        -            "Noto Sans Duployan",
        -            "Noto Sans Egyptian Hieroglyphs",
        -            "Noto Sans Elbasan",
        -            "Noto Sans Elymaic",
        -            "Noto Sans Ethiopic",
        -            "Noto Sans Georgian",
        -            "Noto Sans Glagolitic",
        -            "Noto Sans Gothic",
        -            "Noto Sans Grantha",
        -            "Noto Sans Gujarati",
        -            "Noto Sans Gunjala Gondi",
        -            "Noto Sans Gurmukhi",
        -            "Noto Sans HK",
        -            "Noto Sans Hanifi Rohingya",
        -            "Noto Sans Hanunoo",
        -            "Noto Sans Hatran",
        -            "Noto Sans Hebrew",
        -            "Noto Sans Imperial Aramaic",
        -            "Noto Sans Indic Siyaq Numbers",
        -            "Noto Sans Inscriptional Pahlavi",
        -            "Noto Sans Inscriptional Parthian",
        -            "Noto Sans JP",
        -            "Noto Sans Javanese",
        -            "Noto Sans KR",
        -            "Noto Sans Kaithi",
        -            "Noto Sans Kannada",
        -            "Noto Sans Kawi",
        -            "Noto Sans Kayah Li",
        -            "Noto Sans Kharoshthi",
        -            "Noto Sans Khmer",
        -            "Noto Sans Khojki",
        -            "Noto Sans Khudawadi",
        -            "Noto Sans Lao",
        -            "Noto Sans Lao Looped",
        -            "Noto Sans Lepcha",
        -            "Noto Sans Limbu",
        -            "Noto Sans Linear A",
        -            "Noto Sans Linear B",
        -            "Noto Sans Lisu",
        -            "Noto Sans Lycian",
        -            "Noto Sans Lydian",
        -            "Noto Sans Mahajani",
        -            "Noto Sans Malayalam",
        -            "Noto Sans Mandaic",
        -            "Noto Sans Manichaean",
        -            "Noto Sans Marchen",
        -            "Noto Sans Masaram Gondi",
        -            "Noto Sans Math",
        -            "Noto Sans Mayan Numerals",
        -            "Noto Sans Medefaidrin",
        -            "Noto Sans Meetei Mayek",
        -            "Noto Sans Mende Kikakui",
        -            "Noto Sans Meroitic",
        -            "Noto Sans Miao",
        -            "Noto Sans Modi",
        -            "Noto Sans Mongolian",
        -            "Noto Sans Mono",
        -            "Noto Sans Mro",
        -            "Noto Sans Multani",
        -            "Noto Sans Myanmar",
        -            "Noto Sans NKo",
        -            "Noto Sans NKo Unjoined",
        -            "Noto Sans Nabataean",
        -            "Noto Sans Nag Mundari",
        -            "Noto Sans Nandinagari",
        -            "Noto Sans New Tai Lue",
        -            "Noto Sans Newa",
        -            "Noto Sans Nushu",
        -            "Noto Sans Ogham",
        -            "Noto Sans Ol Chiki",
        -            "Noto Sans Old Hungarian",
        -            "Noto Sans Old Italic",
        -            "Noto Sans Old North Arabian",
        -            "Noto Sans Old Permic",
        -            "Noto Sans Old Persian",
        -            "Noto Sans Old Sogdian",
        -            "Noto Sans Old South Arabian",
        -            "Noto Sans Old Turkic",
        -            "Noto Sans Oriya",
        -            "Noto Sans Osage",
        -            "Noto Sans Osmanya",
        -            "Noto Sans Pahawh Hmong",
        -            "Noto Sans Palmyrene",
        -            "Noto Sans Pau Cin Hau",
        -            "Noto Sans PhagsPa",
        -            "Noto Sans Phoenician",
        -            "Noto Sans Psalter Pahlavi",
        -            "Noto Sans Rejang",
        -            "Noto Sans Runic",
        -            "Noto Sans SC",
        -            "Noto Sans Samaritan",
        -            "Noto Sans Saurashtra",
        -            "Noto Sans Sharada",
        -            "Noto Sans Shavian",
        -            "Noto Sans Siddham",
        -            "Noto Sans SignWriting",
        -            "Noto Sans Sinhala",
        -            "Noto Sans Sogdian",
        -            "Noto Sans Sora Sompeng",
        -            "Noto Sans Soyombo",
        -            "Noto Sans Sundanese",
        -            "Noto Sans Sunuwar",
        -            "Noto Sans Syloti Nagri",
        -            "Noto Sans Symbols",
        -            "Noto Sans Symbols 2",
        -            "Noto Sans Syriac",
        -            "Noto Sans Syriac Eastern",
        -            "Noto Sans Syriac Western",
        -            "Noto Sans TC",
        -            "Noto Sans Tagalog",
        -            "Noto Sans Tagbanwa",
        -            "Noto Sans Tai Le",
        -            "Noto Sans Tai Tham",
        -            "Noto Sans Tai Viet",
        -            "Noto Sans Takri",
        -            "Noto Sans Tamil",
        -            "Noto Sans Tamil Supplement",
        -            "Noto Sans Tangsa",
        -            "Noto Sans Telugu",
        -            "Noto Sans Thaana",
        -            "Noto Sans Thai",
        -            "Noto Sans Thai Looped",
        -            "Noto Sans Tifinagh",
        -            "Noto Sans Tirhuta",
        -            "Noto Sans Ugaritic",
        -            "Noto Sans Vai",
        -            "Noto Sans Vithkuqi",
        -            "Noto Sans Wancho",
        -            "Noto Sans Warang Citi",
        -            "Noto Sans Yi",
        -            "Noto Sans Zanabazar Square",
        -            "Noto Serif",
        -            "Noto Serif Ahom",
        -            "Noto Serif Armenian",
        -            "Noto Serif Balinese",
        -            "Noto Serif Bengali",
        -            "Noto Serif Devanagari",
        -            "Noto Serif Display",
        -            "Noto Serif Dives Akuru",
        -            "Noto Serif Dogra",
        -            "Noto Serif Ethiopic",
        -            "Noto Serif Georgian",
        -            "Noto Serif Grantha",
        -            "Noto Serif Gujarati",
        -            "Noto Serif Gurmukhi",
        -            "Noto Serif HK",
        -            "Noto Serif Hebrew",
        -            "Noto Serif Hentaigana",
        -            "Noto Serif JP",
        -            "Noto Serif KR",
        -            "Noto Serif Kannada",
        -            "Noto Serif Khitan Small Script",
        -            "Noto Serif Khmer",
        -            "Noto Serif Khojki",
        -            "Noto Serif Lao",
        -            "Noto Serif Makasar",
        -            "Noto Serif Malayalam",
        -            "Noto Serif Myanmar",
        -            "Noto Serif NP Hmong",
        -            "Noto Serif Old Uyghur",
        -            "Noto Serif Oriya",
        -            "Noto Serif Ottoman Siyaq",
        -            "Noto Serif SC",
        -            "Noto Serif Sinhala",
        -            "Noto Serif TC",
        -            "Noto Serif Tamil",
        -            "Noto Serif Tangut",
        -            "Noto Serif Telugu",
        -            "Noto Serif Thai",
        -            "Noto Serif Tibetan",
        -            "Noto Serif Todhri",
        -            "Noto Serif Toto",
        -            "Noto Serif Vithkuqi",
        -            "Noto Serif Yezidi",
        -            "Noto Traditional Nushu",
        -            "Noto Znamenny Musical Notation",
        -            "Nova Cut",
        -            "Nova Flat",
        -            "Nova Mono",
        -            "Nova Oval",
        -            "Nova Round",
        -            "Nova Script",
        -            "Nova Slim",
        -            "Nova Square",
        -            "Numans",
        -            "Nunito",
        -            "Nunito Sans",
        -            "Nuosu SIL",
        -            "Odibee Sans",
        -            "Odor Mean Chey",
        -            "Offside",
        -            "Oi",
        -            "Ojuju",
        -            "Old Standard TT",
        -            "Oldenburg",
        -            "Ole",
        -            "Oleo Script",
        -            "Oleo Script Swash Caps",
        -            "Onest",
        -            "Oooh Baby",
        -            "Open Sans",
        -            "Oranienbaum",
        -            "Orbit",
        -            "Orbitron",
        -            "Oregano",
        -            "Orelega One",
        -            "Orienta",
        -            "Original Surfer",
        -            "Oswald",
        -            "Outfit",
        -            "Over the Rainbow",
        -            "Overlock",
        -            "Overlock SC",
        -            "Overpass",
        -            "Overpass Mono",
        -            "Ovo",
        -            "Oxanium",
        -            "Oxygen",
        -            "Oxygen Mono",
        -            "PT Mono",
        -            "PT Sans",
        -            "PT Sans Caption",
        -            "PT Sans Narrow",
        -            "PT Serif",
        -            "PT Serif Caption",
        -            "Pacifico",
        -            "Padauk",
        -            "Padyakke Expanded One",
        -            "Palanquin",
        -            "Palanquin Dark",
        -            "Palette Mosaic",
        -            "Pangolin",
        -            "Paprika",
        -            "Parastoo",
        -            "Parisienne",
        -            "Parkinsans",
        -            "Passero One",
        -            "Passion One",
        -            "Passions Conflict",
        -            "Pathway Extreme",
        -            "Pathway Gothic One",
        -            "Patrick Hand",
        -            "Patrick Hand SC",
        -            "Pattaya",
        -            "Patua One",
        -            "Pavanam",
        -            "Paytone One",
        -            "Peddana",
        -            "Peralta",
        -            "Permanent Marker",
        -            "Petemoss",
        -            "Petit Formal Script",
        -            "Petrona",
        -            "Phetsarath",
        -            "Philosopher",
        -            "Phudu",
        -            "Piazzolla",
        -            "Piedra",
        -            "Pinyon Script",
        -            "Pirata One",
        -            "Pixelify Sans",
        -            "Plaster",
        -            "Platypi",
        -            "Play",
        -            "Playball",
        -            "Playfair",
        -            "Playfair Display",
        -            "Playfair Display SC",
        -            "Playpen Sans",
        -            "Playpen Sans Arabic",
        -            "Playpen Sans Deva",
        -            "Playpen Sans Hebrew",
        -            "Playpen Sans Thai",
        -            "Playwrite AR",
        -            "Playwrite AR Guides",
        -            "Playwrite AT",
        -            "Playwrite AT Guides",
        -            "Playwrite AU NSW",
        -            "Playwrite AU NSW Guides",
        -            "Playwrite AU QLD",
        -            "Playwrite AU QLD Guides",
        -            "Playwrite AU SA",
        -            "Playwrite AU SA Guides",
        -            "Playwrite AU TAS",
        -            "Playwrite AU TAS Guides",
        -            "Playwrite AU VIC",
        -            "Playwrite AU VIC Guides",
        -            "Playwrite BE VLG",
        -            "Playwrite BE VLG Guides",
        -            "Playwrite BE WAL",
        -            "Playwrite BE WAL Guides",
        -            "Playwrite BR",
        -            "Playwrite BR Guides",
        -            "Playwrite CA",
        -            "Playwrite CA Guides",
        -            "Playwrite CL",
        -            "Playwrite CL Guides",
        -            "Playwrite CO",
        -            "Playwrite CO Guides",
        -            "Playwrite CU",
        -            "Playwrite CU Guides",
        -            "Playwrite CZ",
        -            "Playwrite CZ Guides",
        -            "Playwrite DE Grund",
        -            "Playwrite DE Grund Guides",
        -            "Playwrite DE LA",
        -            "Playwrite DE LA Guides",
        -            "Playwrite DE SAS",
        -            "Playwrite DE SAS Guides",
        -            "Playwrite DE VA",
        -            "Playwrite DE VA Guides",
        -            "Playwrite DK Loopet",
        -            "Playwrite DK Loopet Guides",
        -            "Playwrite DK Uloopet",
        -            "Playwrite DK Uloopet Guides",
        -            "Playwrite ES",
        -            "Playwrite ES Deco",
        -            "Playwrite ES Deco Guides",
        -            "Playwrite ES Guides",
        -            "Playwrite FR Moderne",
        -            "Playwrite FR Moderne Guides",
        -            "Playwrite FR Trad",
        -            "Playwrite FR Trad Guides",
        -            "Playwrite GB J",
        -            "Playwrite GB J Guides",
        -            "Playwrite GB S",
        -            "Playwrite GB S Guides",
        -            "Playwrite HR",
        -            "Playwrite HR Guides",
        -            "Playwrite HR Lijeva",
        -            "Playwrite HR Lijeva Guides",
        -            "Playwrite HU",
        -            "Playwrite HU Guides",
        -            "Playwrite ID",
        -            "Playwrite ID Guides",
        -            "Playwrite IE",
        -            "Playwrite IE Guides",
        -            "Playwrite IN",
        -            "Playwrite IN Guides",
        -            "Playwrite IS",
        -            "Playwrite IS Guides",
        -            "Playwrite IT Moderna",
        -            "Playwrite IT Moderna Guides",
        -            "Playwrite IT Trad",
        -            "Playwrite IT Trad Guides",
        -            "Playwrite MX",
        -            "Playwrite MX Guides",
        -            "Playwrite NG Modern",
        -            "Playwrite NG Modern Guides",
        -            "Playwrite NL",
        -            "Playwrite NL Guides",
        -            "Playwrite NO",
        -            "Playwrite NO Guides",
        -            "Playwrite NZ",
        -            "Playwrite NZ Basic",
        -            "Playwrite NZ Basic Guides",
        -            "Playwrite NZ Guides",
        -            "Playwrite PE",
        -            "Playwrite PE Guides",
        -            "Playwrite PL",
        -            "Playwrite PL Guides",
        -            "Playwrite PT",
        -            "Playwrite PT Guides",
        -            "Playwrite RO",
        -            "Playwrite RO Guides",
        -            "Playwrite SK",
        -            "Playwrite SK Guides",
        -            "Playwrite TZ",
        -            "Playwrite TZ Guides",
        -            "Playwrite US Modern",
        -            "Playwrite US Modern Guides",
        -            "Playwrite US Trad",
        -            "Playwrite US Trad Guides",
        -            "Playwrite VN",
        -            "Playwrite VN Guides",
        -            "Playwrite ZA",
        -            "Playwrite ZA Guides",
        -            "Pliant",
        -            "Plus Jakarta Sans",
        -            "Pochaevsk",
        -            "Podkova",
        -            "Poetsen One",
        -            "Poiret One",
        -            "Poller One",
        -            "Poltawski Nowy",
        -            "Poly",
        -            "Pompiere",
        -            "Ponnala",
        -            "Ponomar",
        -            "Pontano Sans",
        -            "Poor Story",
        -            "Poppins",
        -            "Port Lligat Sans",
        -            "Port Lligat Slab",
        -            "Potta One",
        -            "Pragati Narrow",
        -            "Praise",
        -            "Prata",
        -            "Preahvihear",
        -            "Press Start 2P",
        -            "Pridi",
        -            "Princess Sofia",
        -            "Prociono",
        -            "Prompt",
        -            "Prosto One",
        -            "Protest Guerrilla",
        -            "Protest Revolution",
        -            "Protest Riot",
        -            "Protest Strike",
        -            "Proza Libre",
        -            "Public Sans",
        -            "Puppies Play",
        -            "Puritan",
        -            "Purple Purse",
        -            "Qahiri",
        -            "Quando",
        -            "Quantico",
        -            "Quattrocento",
        -            "Quattrocento Sans",
        -            "Questrial",
        -            "Quicksand",
        -            "Quintessential",
        -            "Qwigley",
        -            "Qwitcher Grypen",
        -            "REM",
        -            "Racing Sans One",
        -            "Radio Canada",
        -            "Radio Canada Big",
        -            "Radley",
        -            "Rajdhani",
        -            "Rakkas",
        -            "Raleway",
        -            "Raleway Dots",
        -            "Ramabhadra",
        -            "Ramaraja",
        -            "Rambla",
        -            "Rammetto One",
        -            "Rampart One",
        -            "Ramsina",
        -            "Ranchers",
        -            "Rancho",
        -            "Ranga",
        -            "Rasa",
        -            "Rationale",
        -            "Ravi Prakash",
        -            "Readex Pro",
        -            "Recursive",
        -            "Red Hat Display",
        -            "Red Hat Mono",
        -            "Red Hat Text",
        -            "Red Rose",
        -            "Redacted",
        -            "Redacted Script",
        -            "Reddit Mono",
        -            "Reddit Sans",
        -            "Reddit Sans Condensed",
        -            "Redressed",
        -            "Reem Kufi",
        -            "Reem Kufi Fun",
        -            "Reem Kufi Ink",
        -            "Reenie Beanie",
        -            "Reggae One",
        -            "Rethink Sans",
        -            "Revalia",
        -            "Rhodium Libre",
        -            "Ribeye",
        -            "Ribeye Marrow",
        -            "Righteous",
        -            "Risque",
        -            "Road Rage",
        -            "Roboto",
        -            "Roboto Condensed",
        -            "Roboto Flex",
        -            "Roboto Mono",
        -            "Roboto Serif",
        -            "Roboto Slab",
        -            "Rochester",
        -            "Rock 3D",
        -            "Rock Salt",
        -            "RocknRoll One",
        -            "Rokkitt",
        -            "Romanesco",
        -            "Ropa Sans",
        -            "Rosario",
        -            "Rosarivo",
        -            "Rouge Script",
        -            "Rowdies",
        -            "Rozha One",
        -            "Rubik",
        -            "Rubik 80s Fade",
        -            "Rubik Beastly",
        -            "Rubik Broken Fax",
        -            "Rubik Bubbles",
        -            "Rubik Burned",
        -            "Rubik Dirt",
        -            "Rubik Distressed",
        -            "Rubik Doodle Shadow",
        -            "Rubik Doodle Triangles",
        -            "Rubik Gemstones",
        -            "Rubik Glitch",
        -            "Rubik Glitch Pop",
        -            "Rubik Iso",
        -            "Rubik Lines",
        -            "Rubik Maps",
        -            "Rubik Marker Hatch",
        -            "Rubik Maze",
        -            "Rubik Microbe",
        -            "Rubik Mono One",
        -            "Rubik Moonrocks",
        -            "Rubik Pixels",
        -            "Rubik Puddles",
        -            "Rubik Scribble",
        -            "Rubik Spray Paint",
        -            "Rubik Storm",
        -            "Rubik Vinyl",
        -            "Rubik Wet Paint",
        -            "Ruda",
        -            "Rufina",
        -            "Ruge Boogie",
        -            "Ruluko",
        -            "Rum Raisin",
        -            "Ruslan Display",
        -            "Russo One",
        -            "Ruthie",
        -            "Ruwudu",
        -            "Rye",
        -            "SN Pro",
        -            "STIX Two Math",
        -            "STIX Two Text",
        -            "SUSE",
        -            "SUSE Mono",
        -            "Sacramento",
        -            "Sahitya",
        -            "Sail",
        -            "Saira",
        -            "Saira Condensed",
        -            "Saira Extra Condensed",
        -            "Saira Semi Condensed",
        -            "Saira Stencil",
        -            "Salsa",
        -            "Sanchez",
        -            "Sancreek",
        -            "Sankofa Display",
        -            "Sansation",
        -            "Sansita",
        -            "Sansita Swashed",
        -            "Sarabun",
        -            "Sarala",
        -            "Sarina",
        -            "Sarpanch",
        -            "Sassy Frass",
        -            "Satisfy",
        -            "Savate",
        -            "Sawarabi Gothic",
        -            "Sawarabi Mincho",
        -            "Scada",
        -            "Scheherazade New",
        -            "Schibsted Grotesk",
        -            "Schoolbell",
        -            "Science Gothic",
        -            "Scope One",
        -            "Seaweed Script",
        -            "Secular One",
        -            "Sedan",
        -            "Sedan SC",
        -            "Sedgwick Ave",
        -            "Sedgwick Ave Display",
        -            "Sekuya",
        -            "Sen",
        -            "Send Flowers",
        -            "Sevillana",
        -            "Seymour One",
        -            "Shadows Into Light",
        -            "Shadows Into Light Two",
        -            "Shafarik",
        -            "Shalimar",
        -            "Shantell Sans",
        -            "Shanti",
        -            "Share",
        -            "Share Tech",
        -            "Share Tech Mono",
        -            "Shippori Antique",
        -            "Shippori Antique B1",
        -            "Shippori Mincho",
        -            "Shippori Mincho B1",
        -            "Shizuru",
        -            "Shojumaru",
        -            "Short Stack",
        -            "Shrikhand",
        -            "Siemreap",
        -            "Sigmar",
        -            "Sigmar One",
        -            "Signika",
        -            "Signika Negative",
        -            "Silkscreen",
        -            "Simonetta",
        -            "Single Day",
        -            "Sintony",
        -            "Sirin Stencil",
        -            "Sirivennela",
        -            "Six Caps",
        -            "Sixtyfour",
        -            "Sixtyfour Convergence",
        -            "Skranji",
        -            "Slabo 13px",
        -            "Slabo 27px",
        -            "Slackey",
        -            "Slackside One",
        -            "Smokum",
        -            "Smooch",
        -            "Smooch Sans",
        -            "Smythe",
        -            "Sniglet",
        -            "Snippet",
        -            "Snowburst One",
        -            "Sofadi One",
        -            "Sofia",
        -            "Sofia Sans",
        -            "Sofia Sans Condensed",
        -            "Sofia Sans Extra Condensed",
        -            "Sofia Sans Semi Condensed",
        -            "Solitreo",
        -            "Solway",
        -            "Sometype Mono",
        -            "Song Myung",
        -            "Sono",
        -            "Sonsie One",
        -            "Sora",
        -            "Sorts Mill Goudy",
        -            "Sour Gummy",
        -            "Source Code Pro",
        -            "Source Sans 3",
        -            "Source Serif 4",
        -            "Space Grotesk",
        -            "Space Mono",
        -            "Special Elite",
        -            "Special Gothic",
        -            "Special Gothic Condensed One",
        -            "Special Gothic Expanded One",
        -            "Spectral",
        -            "Spectral SC",
        -            "Spicy Rice",
        -            "Spinnaker",
        -            "Spirax",
        -            "Splash",
        -            "Spline Sans",
        -            "Spline Sans Mono",
        -            "Squada One",
        -            "Square Peg",
        -            "Sree Krushnadevaraya",
        -            "Sriracha",
        -            "Srisakdi",
        -            "Staatliches",
        -            "Stack Sans Headline",
        -            "Stack Sans Notch",
        -            "Stack Sans Text",
        -            "Stalemate",
        -            "Stalinist One",
        -            "Stardos Stencil",
        -            "Stick",
        -            "Stick No Bills",
        -            "Stint Ultra Condensed",
        -            "Stint Ultra Expanded",
        -            "Stoke",
        -            "Story Script",
        -            "Strait",
        -            "Strichpunkt Sans",
        -            "Style Script",
        -            "Stylish",
        -            "Sue Ellen Francisco",
        -            "Suez One",
        -            "Sulphur Point",
        -            "Sumana",
        -            "Sunflower",
        -            "Sunshiney",
        -            "Supermercado One",
        -            "Sura",
        -            "Suranna",
        -            "Suravaram",
        -            "Suwannaphum",
        -            "Swanky and Moo Moo",
        -            "Syncopate",
        -            "Syne",
        -            "Syne Mono",
        -            "Syne Tactile",
        -            "TASA Explorer",
        -            "TASA Orbiter",
        -            "Tac One",
        -            "Tagesschrift",
        -            "Tai Heritage Pro",
        -            "Tajawal",
        -            "Tangerine",
        -            "Tapestry",
        -            "Taprom",
        -            "Tauri",
        -            "Taviraj",
        -            "Teachers",
        -            "Teko",
        -            "Tektur",
        -            "Telex",
        -            "Tenali Ramakrishna",
        -            "Tenor Sans",
        -            "Text Me One",
        -            "Texturina",
        -            "Thasadith",
        -            "The Girl Next Door",
        -            "The Nautigal",
        -            "Tienne",
        -            "TikTok Sans",
        -            "Tillana",
        -            "Tilt Neon",
        -            "Tilt Prism",
        -            "Tilt Warp",
        -            "Timmana",
        -            "Tinos",
        -            "Tiny5",
        -            "Tiro Bangla",
        -            "Tiro Devanagari Hindi",
        -            "Tiro Devanagari Marathi",
        -            "Tiro Devanagari Sanskrit",
        -            "Tiro Gurmukhi",
        -            "Tiro Kannada",
        -            "Tiro Tamil",
        -            "Tiro Telugu",
        -            "Tirra",
        -            "Titan One",
        -            "Titillium Web",
        -            "Tomorrow",
        -            "Tourney",
        -            "Trade Winds",
        -            "Train One",
        -            "Triodion",
        -            "Trirong",
        -            "Trispace",
        -            "Trocchi",
        -            "Trochut",
        -            "Truculenta",
        -            "Trykker",
        -            "Tsukimi Rounded",
        -            "Tuffy",
        -            "Tulpen One",
        -            "Turret Road",
        -            "Twinkle Star",
        -            "Ubuntu",
        -            "Ubuntu Condensed",
        -            "Ubuntu Mono",
        -            "Ubuntu Sans",
        -            "Ubuntu Sans Mono",
        -            "Uchen",
        -            "Ultra",
        -            "Unbounded",
        -            "Uncial Antiqua",
        -            "Underdog",
        -            "Unica One",
        -            "UnifrakturCook",
        -            "UnifrakturMaguntia",
        -            "Unkempt",
        -            "Unlock",
        -            "Unna",
        -            "UoqMunThenKhung",
        -            "Updock",
        -            "Urbanist",
        -            "VT323",
        -            "Vampiro One",
        -            "Varela",
        -            "Varela Round",
        -            "Varta",
        -            "Vast Shadow",
        -            "Vazirmatn",
        -            "Vend Sans",
        -            "Vesper Libre",
        -            "Viaoda Libre",
        -            "Vibes",
        -            "Vibur",
        -            "Victor Mono",
        -            "Vidaloka",
        -            "Viga",
        -            "Vina Sans",
        -            "Voces",
        -            "Volkhov",
        -            "Vollkorn",
        -            "Vollkorn SC",
        -            "Voltaire",
        -            "Vujahday Script",
        -            "WDXL Lubrifont JP N",
        -            "WDXL Lubrifont SC",
        -            "WDXL Lubrifont TC",
        -            "Waiting for the Sunrise",
        -            "Wallpoet",
        -            "Walter Turncoat",
        -            "Warnes",
        -            "Water Brush",
        -            "Waterfall",
        -            "Wavefont",
        -            "Wellfleet",
        -            "Wendy One",
        -            "Whisper",
        -            "WindSong",
        -            "Winky Rough",
        -            "Winky Sans",
        -            "Wire One",
        -            "Wittgenstein",
        -            "Wix Madefor Display",
        -            "Wix Madefor Text",
        -            "Work Sans",
        -            "Workbench",
        -            "Xanh Mono",
        -            "Yaldevi",
        -            "Yanone Kaffeesatz",
        -            "Yantramanav",
        -            "Yarndings 12",
        -            "Yarndings 12 Charted",
        -            "Yarndings 20",
        -            "Yarndings 20 Charted",
        -            "Yatra One",
        -            "Yellowtail",
        -            "Yeon Sung",
        -            "Yeseva One",
        -            "Yesteryear",
        -            "Yomogi",
        -            "Young Serif",
        -            "Yrsa",
        -            "Ysabeau",
        -            "Ysabeau Infant",
        -            "Ysabeau Office",
        -            "Ysabeau SC",
        -            "Yuji Boku",
        -            "Yuji Hentaigana Akari",
        -            "Yuji Hentaigana Akebono",
        -            "Yuji Mai",
        -            "Yuji Syuku",
        -            "Yusei Magic",
        -            "Yuyu",
        -            "Yuyu Short",
        -            "ZCOOL KuaiLe",
        -            "ZCOOL QingKe HuangYou",
        -            "ZCOOL XiaoWei",
        -            "Zain",
        -            "Zalando Sans",
        -            "Zalando Sans Expanded",
        -            "Zalando Sans SemiExpanded",
        -            "Zen Antique",
        -            "Zen Antique Soft",
        -            "Zen Dots",
        -            "Zen Kaku Gothic Antique",
        -            "Zen Kaku Gothic New",
        -            "Zen Kurenaido",
        -            "Zen Loop",
        -            "Zen Maru Gothic",
        -            "Zen Old Mincho",
        -            "Zen Tokyo Zoo",
        -            "Zeyada",
        -            "Zhi Mang Xing",
        -            "Zilla Slab",
        -            "Zilla Slab Highlight"
        -          ],
        -          "type": "string"
        -        },
        -        "fontSize": {
        -          "type": "number"
        -        },
        -        "footerColor": {
        -          "type": "string"
        -        },
        -        "footerFontSize": {
        -          "type": "number"
        -        },
        -        "footerGap": {
        -          "type": "number"
        -        },
        -        "footerLinkColor": {
        -          "type": "string"
        -        },
        -        "gridColor": {
        -          "type": "string"
        -        },
        -        "gridLineWidth": {
        -          "type": "number"
        -        },
        -        "gridLines": {
        -          "enum": [
        -            "none",
        -            "value",
        -            "both"
        -          ],
        -          "type": "string"
        -        },
        -        "headerGap": {
        -          "type": "number"
        -        },
        -        "labelColor": {
        -          "type": "string"
        -        },
        -        "labelFontSize": {
        -          "type": "number"
        -        },
        -        "labelFontWeight": {
        -          "type": "string"
        -        },
        -        "labelHaloWidth": {
        -          "type": "number"
        -        },
        -        "labelMutedFontWeight": {
        -          "type": "string"
        -        },
        -        "labelMutedOpacity": {
        -          "type": "number"
        -        },
        -        "lineStrokeWidth": {
        -          "type": "number"
        -        },
        -        "numericFontFamily": {
        -          "enum": [
        -            "ABeeZee",
        -            "ADLaM Display",
        -            "AR One Sans",
        -            "Abel",
        -            "Abhaya Libre",
        -            "Aboreto",
        -            "Abril Fatface",
        -            "Abyssinica SIL",
        -            "Aclonica",
        -            "Acme",
        -            "Actor",
        -            "Adamina",
        -            "Advent Pro",
        -            "Afacad",
        -            "Afacad Flux",
        -            "Agbalumo",
        -            "Agdasima",
        -            "Agu Display",
        -            "Aguafina Script",
        -            "Akatab",
        -            "Akaya Kanadaka",
        -            "Akaya Telivigala",
        -            "Akronim",
        -            "Akshar",
        -            "Akt",
        -            "Aladin",
        -            "Alan Sans",
        -            "Alata",
        -            "Alatsi",
        -            "Albert Sans",
        -            "Aldrich",
        -            "Alef",
        -            "Alegreya",
        -            "Alegreya SC",
        -            "Alegreya Sans",
        -            "Alegreya Sans SC",
        -            "Aleo",
        -            "Alex Brush",
        -            "Alexandria",
        -            "Alfa Slab One",
        -            "Alice",
        -            "Alien Block",
        -            "Alike",
        -            "Alike Angular",
        -            "Alkalami",
        -            "Alkatra",
        -            "Allan",
        -            "Allerta",
        -            "Allerta Stencil",
        -            "Allison",
        -            "Allkin",
        -            "Allura",
        -            "Almarai",
        -            "Almendra",
        -            "Almendra Display",
        -            "Almendra SC",
        -            "Alumni Sans",
        -            "Alumni Sans Collegiate One",
        -            "Alumni Sans Inline One",
        -            "Alumni Sans Pinstripe",
        -            "Alumni Sans SC",
        -            "Alyamama",
        -            "Amarante",
        -            "Amaranth",
        -            "Amarna",
        -            "Amatic SC",
        -            "Amethysta",
        -            "Amiko",
        -            "Amiri",
        -            "Amiri Quran",
        -            "Amita",
        -            "Anaheim",
        -            "Ancizar Sans",
        -            "Ancizar Serif",
        -            "Andada Pro",
        -            "Andika",
        -            "Anek Bangla",
        -            "Anek Devanagari",
        -            "Anek Gujarati",
        -            "Anek Gurmukhi",
        -            "Anek Kannada",
        -            "Anek Latin",
        -            "Anek Malayalam",
        -            "Anek Odia",
        -            "Anek Tamil",
        -            "Anek Telugu",
        -            "Angkor",
        -            "Annapurna SIL",
        -            "Annie Use Your Telescope",
        -            "Anonymous Pro",
        -            "Anta",
        -            "Antic",
        -            "Antic Didone",
        -            "Antic Slab",
        -            "Anton",
        -            "Anton SC",
        -            "Antonio",
        -            "Anuphan",
        -            "Anybody",
        -            "Aoboshi One",
        -            "Arapey",
        -            "Arbutus",
        -            "Arbutus Slab",
        -            "Architects Daughter",
        -            "Archivo",
        -            "Archivo Black",
        -            "Archivo Narrow",
        -            "Are You Serious",
        -            "Aref Ruqaa",
        -            "Aref Ruqaa Ink",
        -            "Arima",
        -            "Arimo",
        -            "Arizonia",
        -            "Armata",
        -            "Arsenal",
        -            "Arsenal SC",
        -            "Artifika",
        -            "Arvo",
        -            "Arya",
        -            "Asap",
        -            "Asap Condensed",
        -            "Asar",
        -            "Asimovian",
        -            "Asset",
        -            "Assistant",
        -            "Asta Sans",
        -            "Astloch",
        -            "Asul",
        -            "Athiti",
        -            "Atkinson Hyperlegible",
        -            "Atkinson Hyperlegible Mono",
        -            "Atkinson Hyperlegible Next",
        -            "Atma",
        -            "Atomic Age",
        -            "Aubrey",
        -            "Audiowide",
        -            "Autour One",
        -            "Average",
        -            "Average Sans",
        -            "Averia Gruesa Libre",
        -            "Averia Libre",
        -            "Averia Sans Libre",
        -            "Averia Serif Libre",
        -            "Azeret Mono",
        -            "B612",
        -            "B612 Mono",
        -            "BBH Bartle",
        -            "BBH Bogle",
        -            "BBH Hegarty",
        -            "BIZ UDGothic",
        -            "BIZ UDMincho",
        -            "BIZ UDPGothic",
        -            "BIZ UDPMincho",
        -            "BJCree",
        -            "Babylonica",
        -            "Bacasime Antique",
        -            "Bad Script",
        -            "Badeen Display",
        -            "Bagel Fat One",
        -            "Bahiana",
        -            "Bahianita",
        -            "Bai Jamjuree",
        -            "Bakbak One",
        -            "Ballet",
        -            "Baloo 2",
        -            "Baloo Bhai 2",
        -            "Baloo Bhaijaan 2",
        -            "Baloo Bhaina 2",
        -            "Baloo Chettan 2",
        -            "Baloo Da 2",
        -            "Baloo Paaji 2",
        -            "Baloo Tamma 2",
        -            "Baloo Tammudu 2",
        -            "Baloo Thambi 2",
        -            "Balsamiq Sans",
        -            "Balthazar",
        -            "Bangers",
        -            "Barlow",
        -            "Barlow Condensed",
        -            "Barlow Semi Condensed",
        -            "Barriecito",
        -            "Barrio",
        -            "Basic",
        -            "Baskervville",
        -            "Baskervville SC",
        -            "Battambang",
        -            "Baumans",
        -            "Bayon",
        -            "Be Vietnam Pro",
        -            "Beau Rivage",
        -            "Bebas Neue",
        -            "Beiruti",
        -            "Belanosima",
        -            "Belgrano",
        -            "Bellefair",
        -            "Belleza",
        -            "Bellota",
        -            "Bellota Text",
        -            "BenchNine",
        -            "Benne",
        -            "Bentham",
        -            "Berkshire Swash",
        -            "Besley",
        -            "Betania Patmos",
        -            "Betania Patmos GDL",
        -            "Betania Patmos In",
        -            "Betania Patmos In GDL",
        -            "Beth Ellen",
        -            "Bevan",
        -            "BhuTuka Expanded One",
        -            "Big Shoulders",
        -            "Big Shoulders Inline",
        -            "Big Shoulders Stencil",
        -            "Bigelow Rules",
        -            "Bigshot One",
        -            "Bilbo",
        -            "Bilbo Swash Caps",
        -            "BioRhyme",
        -            "BioRhyme Expanded",
        -            "Birthstone",
        -            "Birthstone Bounce",
        -            "Biryani",
        -            "Bitcount",
        -            "Bitcount Grid Double",
        -            "Bitcount Grid Double Ink",
        -            "Bitcount Grid Single",
        -            "Bitcount Grid Single Ink",
        -            "Bitcount Ink",
        -            "Bitcount Prop Double",
        -            "Bitcount Prop Double Ink",
        -            "Bitcount Prop Single",
        -            "Bitcount Prop Single Ink",
        -            "Bitcount Single",
        -            "Bitcount Single Ink",
        -            "Bitter",
        -            "Black And White Picture",
        -            "Black Han Sans",
        -            "Black Ops One",
        -            "Blaka",
        -            "Blaka Hollow",
        -            "Blaka Ink",
        -            "Blinker",
        -            "Bodoni Moda",
        -            "Bodoni Moda SC",
        -            "Bokor",
        -            "Boldonse",
        -            "Bona Nova",
        -            "Bona Nova SC",
        -            "Bonbon",
        -            "Bonheur Royale",
        -            "Boogaloo",
        -            "Borel",
        -            "Bowlby One",
        -            "Bowlby One SC",
        -            "Bpmf Huninn",
        -            "Bpmf Iansui",
        -            "Bpmf Zihi Kai Std",
        -            "Braah One",
        -            "Brawler",
        -            "Bree Serif",
        -            "Bricolage Grotesque",
        -            "Bruno Ace",
        -            "Bruno Ace SC",
        -            "Brygada 1918",
        -            "Bubblegum Sans",
        -            "Bubbler One",
        -            "Buda",
        -            "Buenard",
        -            "Bungee",
        -            "Bungee Hairline",
        -            "Bungee Inline",
        -            "Bungee Outline",
        -            "Bungee Shade",
        -            "Bungee Spice",
        -            "Bungee Tint",
        -            "Butcherman",
        -            "Butterfly Kids",
        -            "Bytesized",
        -            "Cabin",
        -            "Cabin Condensed",
        -            "Cabin Sketch",
        -            "Cactus Classical Serif",
        -            "Caesar Dressing",
        -            "Cagliostro",
        -            "Cairo",
        -            "Cairo Play",
        -            "Cal Sans",
        -            "Caladea",
        -            "Calistoga",
        -            "Calligraffitti",
        -            "Cambay",
        -            "Cambo",
        -            "Candal",
        -            "Cantarell",
        -            "Cantata One",
        -            "Cantora One",
        -            "Caprasimo",
        -            "Capriola",
        -            "Caramel",
        -            "Carattere",
        -            "Cardo",
        -            "Carlito",
        -            "Carme",
        -            "Carrois Gothic",
        -            "Carrois Gothic SC",
        -            "Carter One",
        -            "Cascadia Code",
        -            "Cascadia Mono",
        -            "Castoro",
        -            "Castoro Titling",
        -            "Catamaran",
        -            "Caudex",
        -            "Cause",
        -            "Caveat",
        -            "Caveat Brush",
        -            "Cedarville Cursive",
        -            "Ceviche One",
        -            "Chakra Petch",
        -            "Changa",
        -            "Changa One",
        -            "Chango",
        -            "Charis SIL",
        -            "Charm",
        -            "Charmonman",
        -            "Chathura",
        -            "Chau Philomene One",
        -            "Chela One",
        -            "Chelsea Market",
        -            "Chenla",
        -            "Cherish",
        -            "Cherry Bomb One",
        -            "Cherry Cream Soda",
        -            "Cherry Swash",
        -            "Chewy",
        -            "Chicle",
        -            "Chilanka",
        -            "Chiron GoRound TC",
        -            "Chiron Hei HK",
        -            "Chiron Sung HK",
        -            "Chivo",
        -            "Chivo Mono",
        -            "Chocolate Classical Sans",
        -            "Chokokutai",
        -            "Chonburi",
        -            "Cinzel",
        -            "Cinzel Decorative",
        -            "Clicker Script",
        -            "Climate Crisis",
        -            "Coda",
        -            "Codystar",
        -            "Coiny",
        -            "Combo",
        -            "Comfortaa",
        -            "Comforter",
        -            "Comforter Brush",
        -            "Comic Neue",
        -            "Comic Relief",
        -            "Coming Soon",
        -            "Comme",
        -            "Commissioner",
        -            "Concert One",
        -            "Condiment",
        -            "Content",
        -            "Contrail One",
        -            "Convergence",
        -            "Cookie",
        -            "Copse",
        -            "Coral Pixels",
        -            "Corben",
        -            "Corinthia",
        -            "Cormorant",
        -            "Cormorant Garamond",
        -            "Cormorant Infant",
        -            "Cormorant SC",
        -            "Cormorant Unicase",
        -            "Cormorant Upright",
        -            "Cossette Texte",
        -            "Cossette Titre",
        -            "Courgette",
        -            "Courier Prime",
        -            "Cousine",
        -            "Coustard",
        -            "Covered By Your Grace",
        -            "Crafty Girls",
        -            "Creepster",
        -            "Crete Round",
        -            "Crimson Pro",
        -            "Crimson Text",
        -            "Croissant One",
        -            "Crushed",
        -            "Cuprum",
        -            "Cute Font",
        -            "Cutive",
        -            "Cutive Mono",
        -            "DM Mono",
        -            "DM Sans",
        -            "DM Serif Display",
        -            "DM Serif Text",
        -            "Dai Banna SIL",
        -            "Damion",
        -            "Dancing Script",
        -            "Danfo",
        -            "Dangrek",
        -            "Darker Grotesque",
        -            "Darumadrop One",
        -            "Datatype",
        -            "David Libre",
        -            "Dawning of a New Day",
        -            "Days One",
        -            "Dekko",
        -            "Dela Gothic One",
        -            "Delicious Handrawn",
        -            "Delius",
        -            "Delius Swash Caps",
        -            "Delius Unicase",
        -            "Della Respira",
        -            "Denk One",
        -            "Devonshire",
        -            "Dhurjati",
        -            "Didact Gothic",
        -            "Diphylleia",
        -            "Diplomata",
        -            "Diplomata SC",
        -            "Do Hyeon",
        -            "Dokdo",
        -            "Domine",
        -            "Donegal One",
        -            "Dongle",
        -            "Doppio One",
        -            "Dorsa",
        -            "Dosis",
        -            "DotGothic16",
        -            "Doto",
        -            "Dr Sugiyama",
        -            "Duru Sans",
        -            "DynaPuff",
        -            "Dynalight",
        -            "EB Garamond",
        -            "Eagle Lake",
        -            "East Sea Dokdo",
        -            "Eater",
        -            "Economica",
        -            "Eczar",
        -            "Edu AU VIC WA NT Arrows",
        -            "Edu AU VIC WA NT Dots",
        -            "Edu AU VIC WA NT Guides",
        -            "Edu AU VIC WA NT Hand",
        -            "Edu AU VIC WA NT Pre",
        -            "Edu NSW ACT Cursive",
        -            "Edu NSW ACT Foundation",
        -            "Edu NSW ACT Hand Pre",
        -            "Edu QLD Beginner",
        -            "Edu QLD Hand",
        -            "Edu SA Beginner",
        -            "Edu SA Hand",
        -            "Edu TAS Beginner",
        -            "Edu VIC WA NT Beginner",
        -            "Edu VIC WA NT Hand",
        -            "Edu VIC WA NT Hand Pre",
        -            "El Messiri",
        -            "Electrolize",
        -            "Elms Sans",
        -            "Elsie",
        -            "Elsie Swash Caps",
        -            "Emblema One",
        -            "Emilys Candy",
        -            "Encode Sans",
        -            "Encode Sans Condensed",
        -            "Encode Sans Expanded",
        -            "Encode Sans SC",
        -            "Encode Sans Semi Condensed",
        -            "Encode Sans Semi Expanded",
        -            "Engagement",
        -            "Englebert",
        -            "Enriqueta",
        -            "Ephesis",
        -            "Epilogue",
        -            "Epunda Sans",
        -            "Epunda Slab",
        -            "Erica One",
        -            "Esteban",
        -            "Estedad",
        -            "Estonia",
        -            "Euphoria Script",
        -            "Ewert",
        -            "Exile",
        -            "Exo",
        -            "Exo 2",
        -            "Expletus Sans",
        -            "Explora",
        -            "Faculty Glyphic",
        -            "Fahkwang",
        -            "Familjen Grotesk",
        -            "Fanwood Text",
        -            "Farro",
        -            "Farsan",
        -            "Fascinate",
        -            "Fascinate Inline",
        -            "Faster One",
        -            "Fasthand",
        -            "Fauna One",
        -            "Faustina",
        -            "Federant",
        -            "Federo",
        -            "Felipa",
        -            "Fenix",
        -            "Festive",
        -            "Figtree",
        -            "Finger Paint",
        -            "Finlandica Headline",
        -            "Finlandica Text",
        -            "Fira Code",
        -            "Fira Mono",
        -            "Fira Sans",
        -            "Fira Sans Condensed",
        -            "Fira Sans Extra Condensed",
        -            "Fjalla One",
        -            "Fjord One",
        -            "Flamenco",
        -            "Flavors",
        -            "Fleur De Leah",
        -            "Flow Block",
        -            "Flow Circular",
        -            "Flow Rounded",
        -            "Foldit",
        -            "Fondamento",
        -            "Fontdiner Swanky",
        -            "Forum",
        -            "Fragment Mono",
        -            "Francois One",
        -            "Frank Ruhl Libre",
        -            "Fraunces",
        -            "Freckle Face",
        -            "Fredericka the Great",
        -            "Fredoka",
        -            "Freehand",
        -            "Freeman",
        -            "Fresca",
        -            "Frijole",
        -            "Fruktur",
        -            "Fugaz One",
        -            "Fuggles",
        -            "Funnel Display",
        -            "Funnel Sans",
        -            "Fustat",
        -            "Fuzzy Bubbles",
        -            "GFS Didot",
        -            "GFS Neohellenic",
        -            "Ga Maamli",
        -            "Gabarito",
        -            "Gabriela",
        -            "Gaegu",
        -            "Gafata",
        -            "Gajraj One",
        -            "Galada",
        -            "Galdeano",
        -            "Galindo",
        -            "Gamja Flower",
        -            "Gantari",
        -            "Gasoek One",
        -            "Gayathri",
        -            "Geist",
        -            "Geist Mono",
        -            "Geist Pixel",
        -            "Gelasio",
        -            "Gemunu Libre",
        -            "Genos",
        -            "Gentium Book Plus",
        -            "Gentium Plus",
        -            "Geo",
        -            "Geologica",
        -            "Geom",
        -            "Geomini",
        -            "Georama",
        -            "Geostar",
        -            "Geostar Fill",
        -            "Germania One",
        -            "Gideon Roman",
        -            "Gidole",
        -            "Gidugu",
        -            "Gilda Display",
        -            "Girassol",
        -            "Give You Glory",
        -            "Glass Antiqua",
        -            "Glegoo",
        -            "Gloock",
        -            "Gloria Hallelujah",
        -            "Glory",
        -            "Gluten",
        -            "Goblin One",
        -            "Gochi Hand",
        -            "Goldman",
        -            "Golos Text",
        -            "Google Sans",
        -            "Google Sans Code",
        -            "Google Sans Flex",
        -            "Gorditas",
        -            "Gothic A1",
        -            "Gotu",
        -            "Goudy Bookletter 1911",
        -            "Gowun Batang",
        -            "Gowun Dodum",
        -            "Graduate",
        -            "Grand Hotel",
        -            "Grandiflora One",
        -            "Grandstander",
        -            "Grape Nuts",
        -            "Gravitas One",
        -            "Great Vibes",
        -            "Grechen Fuemen",
        -            "Grenze",
        -            "Grenze Gotisch",
        -            "Grey Qo",
        -            "Griffy",
        -            "Gruppo",
        -            "Gudea",
        -            "Gugi",
        -            "Gulzar",
        -            "Gupter",
        -            "Gurajada",
        -            "Gveret Levin",
        -            "Gwendolyn",
        -            "Habibi",
        -            "Hachi Maru Pop",
        -            "Hahmlet",
        -            "Halant",
        -            "Hammersmith One",
        -            "Hanalei",
        -            "Hanalei Fill",
        -            "Handjet",
        -            "Handlee",
        -            "Hanken Grotesk",
        -            "Hanuman",
        -            "Happy Monkey",
        -            "Harmattan",
        -            "Headland One",
        -            "Hedvig Letters Sans",
        -            "Hedvig Letters Serif",
        -            "Heebo",
        -            "Henny Penny",
        -            "Hepta Slab",
        -            "Herr Von Muellerhoff",
        -            "Hi Melody",
        -            "Hibur Mono",
        -            "Hina Mincho",
        -            "Hind",
        -            "Hind Guntur",
        -            "Hind Madurai",
        -            "Hind Mysuru",
        -            "Hind Siliguri",
        -            "Hind Vadodara",
        -            "Holtwood One SC",
        -            "Homemade Apple",
        -            "Homenaje",
        -            "Honk",
        -            "Host Grotesk",
        -            "Hubballi",
        -            "Hubot Sans",
        -            "Huninn",
        -            "Hurricane",
        -            "IBM Plex Mono",
        -            "IBM Plex Sans",
        -            "IBM Plex Sans Arabic",
        -            "IBM Plex Sans Condensed",
        -            "IBM Plex Sans Devanagari",
        -            "IBM Plex Sans Hebrew",
        -            "IBM Plex Sans JP",
        -            "IBM Plex Sans KR",
        -            "IBM Plex Sans Thai",
        -            "IBM Plex Sans Thai Looped",
        -            "IBM Plex Serif",
        -            "IM Fell DW Pica",
        -            "IM Fell DW Pica SC",
        -            "IM Fell Double Pica",
        -            "IM Fell Double Pica SC",
        -            "IM Fell English",
        -            "IM Fell English SC",
        -            "IM Fell French Canon",
        -            "IM Fell French Canon SC",
        -            "IM Fell Great Primer",
        -            "IM Fell Great Primer SC",
        -            "Iansui",
        -            "Ibarra Real Nova",
        -            "Iceberg",
        -            "Iceland",
        -            "Idiqlat",
        -            "Imbue",
        -            "Imperial Script",
        -            "Imprima",
        -            "Inclusive Sans",
        -            "Inconsolata",
        -            "Inder",
        -            "Indie Flower",
        -            "Ingrid Darling",
        -            "Inika",
        -            "Inknut Antiqua",
        -            "Inria Sans",
        -            "Inria Serif",
        -            "Inspiration",
        -            "Instrument Sans",
        -            "Instrument Serif",
        -            "Intel One Mono",
        -            "Inter",
        -            "Inter Tight",
        -            "Iosevka Charon",
        -            "Iosevka Charon Mono",
        -            "Irish Grover",
        -            "Island Moments",
        -            "Istok Web",
        -            "Italiana",
        -            "Italianno",
        -            "Itim",
        -            "Jacquard 12",
        -            "Jacquard 12 Charted",
        -            "Jacquard 24",
        -            "Jacquard 24 Charted",
        -            "Jacquarda Bastarda 9",
        -            "Jacquarda Bastarda 9 Charted",
        -            "Jacques Francois",
        -            "Jacques Francois Shadow",
        -            "Jaini",
        -            "Jaini Purva",
        -            "Jaldi",
        -            "Jaro",
        -            "Jersey 10",
        -            "Jersey 10 Charted",
        -            "Jersey 15",
        -            "Jersey 15 Charted",
        -            "Jersey 20",
        -            "Jersey 20 Charted",
        -            "Jersey 25",
        -            "Jersey 25 Charted",
        -            "JetBrains Mono",
        -            "Jim Nightshade",
        -            "Joan",
        -            "Jockey One",
        -            "Jolly Lodger",
        -            "Jomhuria",
        -            "Jomolhari",
        -            "Josefin Sans",
        -            "Josefin Slab",
        -            "Jost",
        -            "Joti One",
        -            "Jua",
        -            "Judson",
        -            "Julee",
        -            "Julius Sans One",
        -            "Junge",
        -            "Jura",
        -            "Just Another Hand",
        -            "Just Me Again Down Here",
        -            "K2D",
        -            "Kablammo",
        -            "Kadwa",
        -            "Kaisei Decol",
        -            "Kaisei HarunoUmi",
        -            "Kaisei Opti",
        -            "Kaisei Tokumin",
        -            "Kalam",
        -            "Kalnia",
        -            "Kalnia Glaze",
        -            "Kameron",
        -            "Kanchenjunga",
        -            "Kanit",
        -            "Kantumruy Pro",
        -            "Kapakana",
        -            "Karantina",
        -            "Karla",
        -            "Karla Tamil Inclined",
        -            "Karla Tamil Upright",
        -            "Karma",
        -            "Katibeh",
        -            "Kaushan Script",
        -            "Kavivanar",
        -            "Kavoon",
        -            "Kay Pho Du",
        -            "Kdam Thmor Pro",
        -            "Keania One",
        -            "Kedebideri",
        -            "Kelly Slab",
        -            "Kenia",
        -            "Khand",
        -            "Khmer",
        -            "Khula",
        -            "Kings",
        -            "Kirang Haerang",
        -            "Kite One",
        -            "Kiwi Maru",
        -            "Klee One",
        -            "Knewave",
        -            "KoHo",
        -            "Kodchasan",
        -            "Kode Mono",
        -            "Koh Santepheap",
        -            "Kolker Brush",
        -            "Konkhmer Sleokchher",
        -            "Kosugi",
        -            "Kosugi Maru",
        -            "Kotta One",
        -            "Koulen",
        -            "Kranky",
        -            "Kreon",
        -            "Kristi",
        -            "Krona One",
        -            "Krub",
        -            "Kufam",
        -            "Kulim Park",
        -            "Kumar One",
        -            "Kumar One Outline",
        -            "Kumbh Sans",
        -            "Kurale",
        -            "LINE Seed JP",
        -            "LXGW Marker Gothic",
        -            "LXGW WenKai Mono TC",
        -            "LXGW WenKai TC",
        -            "La Belle Aurore",
        -            "Labrada",
        -            "Lacquer",
        -            "Laila",
        -            "Lakki Reddy",
        -            "Lalezar",
        -            "Lancelot",
        -            "Langar",
        -            "Lateef",
        -            "Lato",
        -            "Lavishly Yours",
        -            "League Gothic",
        -            "League Script",
        -            "League Spartan",
        -            "Leckerli One",
        -            "Ledger",
        -            "Lekton",
        -            "Lemon",
        -            "Lemonada",
        -            "Lexend",
        -            "Lexend Deca",
        -            "Lexend Exa",
        -            "Lexend Giga",
        -            "Lexend Mega",
        -            "Lexend Peta",
        -            "Lexend Tera",
        -            "Lexend Zetta",
        -            "Libertinus Keyboard",
        -            "Libertinus Math",
        -            "Libertinus Mono",
        -            "Libertinus Sans",
        -            "Libertinus Serif",
        -            "Libertinus Serif Display",
        -            "Libre Barcode 128",
        -            "Libre Barcode 128 Text",
        -            "Libre Barcode 39",
        -            "Libre Barcode 39 Extended",
        -            "Libre Barcode 39 Extended Text",
        -            "Libre Barcode 39 Text",
        -            "Libre Barcode EAN13 Text",
        -            "Libre Baskerville",
        -            "Libre Bodoni",
        -            "Libre Caslon Display",
        -            "Libre Caslon Text",
        -            "Libre Franklin",
        -            "Licorice",
        -            "Life Savers",
        -            "Lilex",
        -            "Lilita One",
        -            "Lily Script One",
        -            "Limelight",
        -            "Linden Hill",
        -            "Linefont",
        -            "Lisu Bosa",
        -            "Liter",
        -            "Literata",
        -            "Liu Jian Mao Cao",
        -            "Livvic",
        -            "Lobster",
        -            "Lobster Two",
        -            "Londrina Outline",
        -            "Londrina Shadow",
        -            "Londrina Sketch",
        -            "Londrina Solid",
        -            "Long Cang",
        -            "Lora",
        -            "Love Light",
        -            "Love Ya Like A Sister",
        -            "Loved by the King",
        -            "Lovers Quarrel",
        -            "Luckiest Guy",
        -            "Lugrasimo",
        -            "Lumanosimo",
        -            "Lunasima",
        -            "Lusitana",
        -            "Lustria",
        -            "Luxurious Roman",
        -            "Luxurious Script",
        -            "M PLUS 1",
        -            "M PLUS 1 Code",
        -            "M PLUS 1p",
        -            "M PLUS 2",
        -            "M PLUS Code Latin",
        -            "M PLUS Rounded 1c",
        -            "M PLUS U",
        -            "Ma Shan Zheng",
        -            "Macondo",
        -            "Macondo Swash Caps",
        -            "Mada",
        -            "Madimi One",
        -            "Magra",
        -            "Maiden Orange",
        -            "Maitree",
        -            "Major Mono Display",
        -            "Mako",
        -            "Mali",
        -            "Mallanna",
        -            "Maname",
        -            "Mandali",
        -            "Manjari",
        -            "Manrope",
        -            "Mansalva",
        -            "Manuale",
        -            "Manufacturing Consent",
        -            "Marcellus",
        -            "Marcellus SC",
        -            "Marck Script",
        -            "Margarine",
        -            "Marhey",
        -            "Markazi Text",
        -            "Marko One",
        -            "Marmelad",
        -            "Martel",
        -            "Martel Sans",
        -            "Martian Mono",
        -            "Marvel",
        -            "Matangi",
        -            "Mate",
        -            "Mate SC",
        -            "Matemasie",
        -            "Material Icons",
        -            "Material Icons Outlined",
        -            "Material Icons Round",
        -            "Material Icons Sharp",
        -            "Material Icons Two Tone",
        -            "Material Symbols",
        -            "Material Symbols Outlined",
        -            "Material Symbols Rounded",
        -            "Material Symbols Sharp",
        -            "Maven Pro",
        -            "McLaren",
        -            "Mea Culpa",
        -            "Meddon",
        -            "MedievalSharp",
        -            "Medula One",
        -            "Meera Inimai",
        -            "Megrim",
        -            "Meie Script",
        -            "Menbere",
        -            "Meow Script",
        -            "Merienda",
        -            "Merriweather",
        -            "Merriweather Sans",
        -            "Metal",
        -            "Metal Mania",
        -            "Metamorphous",
        -            "Metrophobic",
        -            "Michroma",
        -            "Micro 5",
        -            "Micro 5 Charted",
        -            "Milonga",
        -            "Miltonian",
        -            "Miltonian Tattoo",
        -            "Mina",
        -            "Mingzat",
        -            "Miniver",
        -            "Miranda Sans",
        -            "Miriam Libre",
        -            "Mirza",
        -            "Miss Fajardose",
        -            "Mitr",
        -            "Mochiy Pop One",
        -            "Mochiy Pop P One",
        -            "Modak",
        -            "Modern Antiqua",
        -            "Moderustic",
        -            "Mogra",
        -            "Mohave",
        -            "Moirai One",
        -            "Molengo",
        -            "Molle",
        -            "Momo Signature",
        -            "Momo Trust Display",
        -            "Momo Trust Sans",
        -            "Mona Sans",
        -            "Monda",
        -            "Monofett",
        -            "Monomakh",
        -            "Monomaniac One",
        -            "Monoton",
        -            "Monsieur La Doulaise",
        -            "Montaga",
        -            "Montagu Slab",
        -            "MonteCarlo",
        -            "Montenegrin Gothic One",
        -            "Montez",
        -            "Montserrat",
        -            "Montserrat Alternates",
        -            "Montserrat Underline",
        -            "Moo Lah Lah",
        -            "Mooli",
        -            "Moon Dance",
        -            "Moul",
        -            "Moulpali",
        -            "Mountains of Christmas",
        -            "Mouse Memoirs",
        -            "Mozilla Headline",
        -            "Mozilla Text",
        -            "Mr Bedfort",
        -            "Mr Dafoe",
        -            "Mr De Haviland",
        -            "Mrs Saint Delafield",
        -            "Mrs Sheppards",
        -            "Ms Madi",
        -            "Mukta",
        -            "Mukta Mahee",
        -            "Mukta Malar",
        -            "Mukta Vaani",
        -            "Mulish",
        -            "Murecho",
        -            "MuseoModerno",
        -            "My Soul",
        -            "Mynerve",
        -            "Mystery Quest",
        -            "NTR",
        -            "Nabla",
        -            "Namdhinggo",
        -            "Nanum Brush Script",
        -            "Nanum Gothic",
        -            "Nanum Gothic Coding",
        -            "Nanum Myeongjo",
        -            "Nanum Pen Script",
        -            "Narnoor",
        -            "Nata Sans",
        -            "National Park",
        -            "Neonderthaw",
        -            "Nerko One",
        -            "Neucha",
        -            "Neuton",
        -            "New Amsterdam",
        -            "New Rocker",
        -            "New Tegomin",
        -            "News Cycle",
        -            "Newsreader",
        -            "Niconne",
        -            "Niramit",
        -            "Nixie One",
        -            "Nobile",
        -            "Nokora",
        -            "Norican",
        -            "Nosifer",
        -            "Notable",
        -            "Nothing You Could Do",
        -            "Noticia Text",
        -            "Noto Color Emoji",
        -            "Noto Emoji",
        -            "Noto Kufi Arabic",
        -            "Noto Music",
        -            "Noto Naskh Arabic",
        -            "Noto Nastaliq Urdu",
        -            "Noto Rashi Hebrew",
        -            "Noto Sans",
        -            "Noto Sans Adlam",
        -            "Noto Sans Adlam Unjoined",
        -            "Noto Sans Anatolian Hieroglyphs",
        -            "Noto Sans Arabic",
        -            "Noto Sans Armenian",
        -            "Noto Sans Avestan",
        -            "Noto Sans Balinese",
        -            "Noto Sans Bamum",
        -            "Noto Sans Bassa Vah",
        -            "Noto Sans Batak",
        -            "Noto Sans Bengali",
        -            "Noto Sans Bhaiksuki",
        -            "Noto Sans Brahmi",
        -            "Noto Sans Buginese",
        -            "Noto Sans Buhid",
        -            "Noto Sans Canadian Aboriginal",
        -            "Noto Sans Carian",
        -            "Noto Sans Caucasian Albanian",
        -            "Noto Sans Chakma",
        -            "Noto Sans Cham",
        -            "Noto Sans Cherokee",
        -            "Noto Sans Chorasmian",
        -            "Noto Sans Coptic",
        -            "Noto Sans Cuneiform",
        -            "Noto Sans Cypriot",
        -            "Noto Sans Cypro Minoan",
        -            "Noto Sans Deseret",
        -            "Noto Sans Devanagari",
        -            "Noto Sans Display",
        -            "Noto Sans Duployan",
        -            "Noto Sans Egyptian Hieroglyphs",
        -            "Noto Sans Elbasan",
        -            "Noto Sans Elymaic",
        -            "Noto Sans Ethiopic",
        -            "Noto Sans Georgian",
        -            "Noto Sans Glagolitic",
        -            "Noto Sans Gothic",
        -            "Noto Sans Grantha",
        -            "Noto Sans Gujarati",
        -            "Noto Sans Gunjala Gondi",
        -            "Noto Sans Gurmukhi",
        -            "Noto Sans HK",
        -            "Noto Sans Hanifi Rohingya",
        -            "Noto Sans Hanunoo",
        -            "Noto Sans Hatran",
        -            "Noto Sans Hebrew",
        -            "Noto Sans Imperial Aramaic",
        -            "Noto Sans Indic Siyaq Numbers",
        -            "Noto Sans Inscriptional Pahlavi",
        -            "Noto Sans Inscriptional Parthian",
        -            "Noto Sans JP",
        -            "Noto Sans Javanese",
        -            "Noto Sans KR",
        -            "Noto Sans Kaithi",
        -            "Noto Sans Kannada",
        -            "Noto Sans Kawi",
        -            "Noto Sans Kayah Li",
        -            "Noto Sans Kharoshthi",
        -            "Noto Sans Khmer",
        -            "Noto Sans Khojki",
        -            "Noto Sans Khudawadi",
        -            "Noto Sans Lao",
        -            "Noto Sans Lao Looped",
        -            "Noto Sans Lepcha",
        -            "Noto Sans Limbu",
        -            "Noto Sans Linear A",
        -            "Noto Sans Linear B",
        -            "Noto Sans Lisu",
        -            "Noto Sans Lycian",
        -            "Noto Sans Lydian",
        -            "Noto Sans Mahajani",
        -            "Noto Sans Malayalam",
        -            "Noto Sans Mandaic",
        -            "Noto Sans Manichaean",
        -            "Noto Sans Marchen",
        -            "Noto Sans Masaram Gondi",
        -            "Noto Sans Math",
        -            "Noto Sans Mayan Numerals",
        -            "Noto Sans Medefaidrin",
        -            "Noto Sans Meetei Mayek",
        -            "Noto Sans Mende Kikakui",
        -            "Noto Sans Meroitic",
        -            "Noto Sans Miao",
        -            "Noto Sans Modi",
        -            "Noto Sans Mongolian",
        -            "Noto Sans Mono",
        -            "Noto Sans Mro",
        -            "Noto Sans Multani",
        -            "Noto Sans Myanmar",
        -            "Noto Sans NKo",
        -            "Noto Sans NKo Unjoined",
        -            "Noto Sans Nabataean",
        -            "Noto Sans Nag Mundari",
        -            "Noto Sans Nandinagari",
        -            "Noto Sans New Tai Lue",
        -            "Noto Sans Newa",
        -            "Noto Sans Nushu",
        -            "Noto Sans Ogham",
        -            "Noto Sans Ol Chiki",
        -            "Noto Sans Old Hungarian",
        -            "Noto Sans Old Italic",
        -            "Noto Sans Old North Arabian",
        -            "Noto Sans Old Permic",
        -            "Noto Sans Old Persian",
        -            "Noto Sans Old Sogdian",
        -            "Noto Sans Old South Arabian",
        -            "Noto Sans Old Turkic",
        -            "Noto Sans Oriya",
        -            "Noto Sans Osage",
        -            "Noto Sans Osmanya",
        -            "Noto Sans Pahawh Hmong",
        -            "Noto Sans Palmyrene",
        -            "Noto Sans Pau Cin Hau",
        -            "Noto Sans PhagsPa",
        -            "Noto Sans Phoenician",
        -            "Noto Sans Psalter Pahlavi",
        -            "Noto Sans Rejang",
        -            "Noto Sans Runic",
        -            "Noto Sans SC",
        -            "Noto Sans Samaritan",
        -            "Noto Sans Saurashtra",
        -            "Noto Sans Sharada",
        -            "Noto Sans Shavian",
        -            "Noto Sans Siddham",
        -            "Noto Sans SignWriting",
        -            "Noto Sans Sinhala",
        -            "Noto Sans Sogdian",
        -            "Noto Sans Sora Sompeng",
        -            "Noto Sans Soyombo",
        -            "Noto Sans Sundanese",
        -            "Noto Sans Sunuwar",
        -            "Noto Sans Syloti Nagri",
        -            "Noto Sans Symbols",
        -            "Noto Sans Symbols 2",
        -            "Noto Sans Syriac",
        -            "Noto Sans Syriac Eastern",
        -            "Noto Sans Syriac Western",
        -            "Noto Sans TC",
        -            "Noto Sans Tagalog",
        -            "Noto Sans Tagbanwa",
        -            "Noto Sans Tai Le",
        -            "Noto Sans Tai Tham",
        -            "Noto Sans Tai Viet",
        -            "Noto Sans Takri",
        -            "Noto Sans Tamil",
        -            "Noto Sans Tamil Supplement",
        -            "Noto Sans Tangsa",
        -            "Noto Sans Telugu",
        -            "Noto Sans Thaana",
        -            "Noto Sans Thai",
        -            "Noto Sans Thai Looped",
        -            "Noto Sans Tifinagh",
        -            "Noto Sans Tirhuta",
        -            "Noto Sans Ugaritic",
        -            "Noto Sans Vai",
        -            "Noto Sans Vithkuqi",
        -            "Noto Sans Wancho",
        -            "Noto Sans Warang Citi",
        -            "Noto Sans Yi",
        -            "Noto Sans Zanabazar Square",
        -            "Noto Serif",
        -            "Noto Serif Ahom",
        -            "Noto Serif Armenian",
        -            "Noto Serif Balinese",
        -            "Noto Serif Bengali",
        -            "Noto Serif Devanagari",
        -            "Noto Serif Display",
        -            "Noto Serif Dives Akuru",
        -            "Noto Serif Dogra",
        -            "Noto Serif Ethiopic",
        -            "Noto Serif Georgian",
        -            "Noto Serif Grantha",
        -            "Noto Serif Gujarati",
        -            "Noto Serif Gurmukhi",
        -            "Noto Serif HK",
        -            "Noto Serif Hebrew",
        -            "Noto Serif Hentaigana",
        -            "Noto Serif JP",
        -            "Noto Serif KR",
        -            "Noto Serif Kannada",
        -            "Noto Serif Khitan Small Script",
        -            "Noto Serif Khmer",
        -            "Noto Serif Khojki",
        -            "Noto Serif Lao",
        -            "Noto Serif Makasar",
        -            "Noto Serif Malayalam",
        -            "Noto Serif Myanmar",
        -            "Noto Serif NP Hmong",
        -            "Noto Serif Old Uyghur",
        -            "Noto Serif Oriya",
        -            "Noto Serif Ottoman Siyaq",
        -            "Noto Serif SC",
        -            "Noto Serif Sinhala",
        -            "Noto Serif TC",
        -            "Noto Serif Tamil",
        -            "Noto Serif Tangut",
        -            "Noto Serif Telugu",
        -            "Noto Serif Thai",
        -            "Noto Serif Tibetan",
        -            "Noto Serif Todhri",
        -            "Noto Serif Toto",
        -            "Noto Serif Vithkuqi",
        -            "Noto Serif Yezidi",
        -            "Noto Traditional Nushu",
        -            "Noto Znamenny Musical Notation",
        -            "Nova Cut",
        -            "Nova Flat",
        -            "Nova Mono",
        -            "Nova Oval",
        -            "Nova Round",
        -            "Nova Script",
        -            "Nova Slim",
        -            "Nova Square",
        -            "Numans",
        -            "Nunito",
        -            "Nunito Sans",
        -            "Nuosu SIL",
        -            "Odibee Sans",
        -            "Odor Mean Chey",
        -            "Offside",
        -            "Oi",
        -            "Ojuju",
        -            "Old Standard TT",
        -            "Oldenburg",
        -            "Ole",
        -            "Oleo Script",
        -            "Oleo Script Swash Caps",
        -            "Onest",
        -            "Oooh Baby",
        -            "Open Sans",
        -            "Oranienbaum",
        -            "Orbit",
        -            "Orbitron",
        -            "Oregano",
        -            "Orelega One",
        -            "Orienta",
        -            "Original Surfer",
        -            "Oswald",
        -            "Outfit",
        -            "Over the Rainbow",
        -            "Overlock",
        -            "Overlock SC",
        -            "Overpass",
        -            "Overpass Mono",
        -            "Ovo",
        -            "Oxanium",
        -            "Oxygen",
        -            "Oxygen Mono",
        -            "PT Mono",
        -            "PT Sans",
        -            "PT Sans Caption",
        -            "PT Sans Narrow",
        -            "PT Serif",
        -            "PT Serif Caption",
        -            "Pacifico",
        -            "Padauk",
        -            "Padyakke Expanded One",
        -            "Palanquin",
        -            "Palanquin Dark",
        -            "Palette Mosaic",
        -            "Pangolin",
        -            "Paprika",
        -            "Parastoo",
        -            "Parisienne",
        -            "Parkinsans",
        -            "Passero One",
        -            "Passion One",
        -            "Passions Conflict",
        -            "Pathway Extreme",
        -            "Pathway Gothic One",
        -            "Patrick Hand",
        -            "Patrick Hand SC",
        -            "Pattaya",
        -            "Patua One",
        -            "Pavanam",
        -            "Paytone One",
        -            "Peddana",
        -            "Peralta",
        -            "Permanent Marker",
        -            "Petemoss",
        -            "Petit Formal Script",
        -            "Petrona",
        -            "Phetsarath",
        -            "Philosopher",
        -            "Phudu",
        -            "Piazzolla",
        -            "Piedra",
        -            "Pinyon Script",
        -            "Pirata One",
        -            "Pixelify Sans",
        -            "Plaster",
        -            "Platypi",
        -            "Play",
        -            "Playball",
        -            "Playfair",
        -            "Playfair Display",
        -            "Playfair Display SC",
        -            "Playpen Sans",
        -            "Playpen Sans Arabic",
        -            "Playpen Sans Deva",
        -            "Playpen Sans Hebrew",
        -            "Playpen Sans Thai",
        -            "Playwrite AR",
        -            "Playwrite AR Guides",
        -            "Playwrite AT",
        -            "Playwrite AT Guides",
        -            "Playwrite AU NSW",
        -            "Playwrite AU NSW Guides",
        -            "Playwrite AU QLD",
        -            "Playwrite AU QLD Guides",
        -            "Playwrite AU SA",
        -            "Playwrite AU SA Guides",
        -            "Playwrite AU TAS",
        -            "Playwrite AU TAS Guides",
        -            "Playwrite AU VIC",
        -            "Playwrite AU VIC Guides",
        -            "Playwrite BE VLG",
        -            "Playwrite BE VLG Guides",
        -            "Playwrite BE WAL",
        -            "Playwrite BE WAL Guides",
        -            "Playwrite BR",
        -            "Playwrite BR Guides",
        -            "Playwrite CA",
        -            "Playwrite CA Guides",
        -            "Playwrite CL",
        -            "Playwrite CL Guides",
        -            "Playwrite CO",
        -            "Playwrite CO Guides",
        -            "Playwrite CU",
        -            "Playwrite CU Guides",
        -            "Playwrite CZ",
        -            "Playwrite CZ Guides",
        -            "Playwrite DE Grund",
        -            "Playwrite DE Grund Guides",
        -            "Playwrite DE LA",
        -            "Playwrite DE LA Guides",
        -            "Playwrite DE SAS",
        -            "Playwrite DE SAS Guides",
        -            "Playwrite DE VA",
        -            "Playwrite DE VA Guides",
        -            "Playwrite DK Loopet",
        -            "Playwrite DK Loopet Guides",
        -            "Playwrite DK Uloopet",
        -            "Playwrite DK Uloopet Guides",
        -            "Playwrite ES",
        -            "Playwrite ES Deco",
        -            "Playwrite ES Deco Guides",
        -            "Playwrite ES Guides",
        -            "Playwrite FR Moderne",
        -            "Playwrite FR Moderne Guides",
        -            "Playwrite FR Trad",
        -            "Playwrite FR Trad Guides",
        -            "Playwrite GB J",
        -            "Playwrite GB J Guides",
        -            "Playwrite GB S",
        -            "Playwrite GB S Guides",
        -            "Playwrite HR",
        -            "Playwrite HR Guides",
        -            "Playwrite HR Lijeva",
        -            "Playwrite HR Lijeva Guides",
        -            "Playwrite HU",
        -            "Playwrite HU Guides",
        -            "Playwrite ID",
        -            "Playwrite ID Guides",
        -            "Playwrite IE",
        -            "Playwrite IE Guides",
        -            "Playwrite IN",
        -            "Playwrite IN Guides",
        -            "Playwrite IS",
        -            "Playwrite IS Guides",
        -            "Playwrite IT Moderna",
        -            "Playwrite IT Moderna Guides",
        -            "Playwrite IT Trad",
        -            "Playwrite IT Trad Guides",
        -            "Playwrite MX",
        -            "Playwrite MX Guides",
        -            "Playwrite NG Modern",
        -            "Playwrite NG Modern Guides",
        -            "Playwrite NL",
        -            "Playwrite NL Guides",
        -            "Playwrite NO",
        -            "Playwrite NO Guides",
        -            "Playwrite NZ",
        -            "Playwrite NZ Basic",
        -            "Playwrite NZ Basic Guides",
        -            "Playwrite NZ Guides",
        -            "Playwrite PE",
        -            "Playwrite PE Guides",
        -            "Playwrite PL",
        -            "Playwrite PL Guides",
        -            "Playwrite PT",
        -            "Playwrite PT Guides",
        -            "Playwrite RO",
        -            "Playwrite RO Guides",
        -            "Playwrite SK",
        -            "Playwrite SK Guides",
        -            "Playwrite TZ",
        -            "Playwrite TZ Guides",
        -            "Playwrite US Modern",
        -            "Playwrite US Modern Guides",
        -            "Playwrite US Trad",
        -            "Playwrite US Trad Guides",
        -            "Playwrite VN",
        -            "Playwrite VN Guides",
        -            "Playwrite ZA",
        -            "Playwrite ZA Guides",
        -            "Pliant",
        -            "Plus Jakarta Sans",
        -            "Pochaevsk",
        -            "Podkova",
        -            "Poetsen One",
        -            "Poiret One",
        -            "Poller One",
        -            "Poltawski Nowy",
        -            "Poly",
        -            "Pompiere",
        -            "Ponnala",
        -            "Ponomar",
        -            "Pontano Sans",
        -            "Poor Story",
        -            "Poppins",
        -            "Port Lligat Sans",
        -            "Port Lligat Slab",
        -            "Potta One",
        -            "Pragati Narrow",
        -            "Praise",
        -            "Prata",
        -            "Preahvihear",
        -            "Press Start 2P",
        -            "Pridi",
        -            "Princess Sofia",
        -            "Prociono",
        -            "Prompt",
        -            "Prosto One",
        -            "Protest Guerrilla",
        -            "Protest Revolution",
        -            "Protest Riot",
        -            "Protest Strike",
        -            "Proza Libre",
        -            "Public Sans",
        -            "Puppies Play",
        -            "Puritan",
        -            "Purple Purse",
        -            "Qahiri",
        -            "Quando",
        -            "Quantico",
        -            "Quattrocento",
        -            "Quattrocento Sans",
        -            "Questrial",
        -            "Quicksand",
        -            "Quintessential",
        -            "Qwigley",
        -            "Qwitcher Grypen",
        -            "REM",
        -            "Racing Sans One",
        -            "Radio Canada",
        -            "Radio Canada Big",
        -            "Radley",
        -            "Rajdhani",
        -            "Rakkas",
        -            "Raleway",
        -            "Raleway Dots",
        -            "Ramabhadra",
        -            "Ramaraja",
        -            "Rambla",
        -            "Rammetto One",
        -            "Rampart One",
        -            "Ramsina",
        -            "Ranchers",
        -            "Rancho",
        -            "Ranga",
        -            "Rasa",
        -            "Rationale",
        -            "Ravi Prakash",
        -            "Readex Pro",
        -            "Recursive",
        -            "Red Hat Display",
        -            "Red Hat Mono",
        -            "Red Hat Text",
        -            "Red Rose",
        -            "Redacted",
        -            "Redacted Script",
        -            "Reddit Mono",
        -            "Reddit Sans",
        -            "Reddit Sans Condensed",
        -            "Redressed",
        -            "Reem Kufi",
        -            "Reem Kufi Fun",
        -            "Reem Kufi Ink",
        -            "Reenie Beanie",
        -            "Reggae One",
        -            "Rethink Sans",
        -            "Revalia",
        -            "Rhodium Libre",
        -            "Ribeye",
        -            "Ribeye Marrow",
        -            "Righteous",
        -            "Risque",
        -            "Road Rage",
        -            "Roboto",
        -            "Roboto Condensed",
        -            "Roboto Flex",
        -            "Roboto Mono",
        -            "Roboto Serif",
        -            "Roboto Slab",
        -            "Rochester",
        -            "Rock 3D",
        -            "Rock Salt",
        -            "RocknRoll One",
        -            "Rokkitt",
        -            "Romanesco",
        -            "Ropa Sans",
        -            "Rosario",
        -            "Rosarivo",
        -            "Rouge Script",
        -            "Rowdies",
        -            "Rozha One",
        -            "Rubik",
        -            "Rubik 80s Fade",
        -            "Rubik Beastly",
        -            "Rubik Broken Fax",
        -            "Rubik Bubbles",
        -            "Rubik Burned",
        -            "Rubik Dirt",
        -            "Rubik Distressed",
        -            "Rubik Doodle Shadow",
        -            "Rubik Doodle Triangles",
        -            "Rubik Gemstones",
        -            "Rubik Glitch",
        -            "Rubik Glitch Pop",
        -            "Rubik Iso",
        -            "Rubik Lines",
        -            "Rubik Maps",
        -            "Rubik Marker Hatch",
        -            "Rubik Maze",
        -            "Rubik Microbe",
        -            "Rubik Mono One",
        -            "Rubik Moonrocks",
        -            "Rubik Pixels",
        -            "Rubik Puddles",
        -            "Rubik Scribble",
        -            "Rubik Spray Paint",
        -            "Rubik Storm",
        -            "Rubik Vinyl",
        -            "Rubik Wet Paint",
        -            "Ruda",
        -            "Rufina",
        -            "Ruge Boogie",
        -            "Ruluko",
        -            "Rum Raisin",
        -            "Ruslan Display",
        -            "Russo One",
        -            "Ruthie",
        -            "Ruwudu",
        -            "Rye",
        -            "SN Pro",
        -            "STIX Two Math",
        -            "STIX Two Text",
        -            "SUSE",
        -            "SUSE Mono",
        -            "Sacramento",
        -            "Sahitya",
        -            "Sail",
        -            "Saira",
        -            "Saira Condensed",
        -            "Saira Extra Condensed",
        -            "Saira Semi Condensed",
        -            "Saira Stencil",
        -            "Salsa",
        -            "Sanchez",
        -            "Sancreek",
        -            "Sankofa Display",
        -            "Sansation",
        -            "Sansita",
        -            "Sansita Swashed",
        -            "Sarabun",
        -            "Sarala",
        -            "Sarina",
        -            "Sarpanch",
        -            "Sassy Frass",
        -            "Satisfy",
        -            "Savate",
        -            "Sawarabi Gothic",
        -            "Sawarabi Mincho",
        -            "Scada",
        -            "Scheherazade New",
        -            "Schibsted Grotesk",
        -            "Schoolbell",
        -            "Science Gothic",
        -            "Scope One",
        -            "Seaweed Script",
        -            "Secular One",
        -            "Sedan",
        -            "Sedan SC",
        -            "Sedgwick Ave",
        -            "Sedgwick Ave Display",
        -            "Sekuya",
        -            "Sen",
        -            "Send Flowers",
        -            "Sevillana",
        -            "Seymour One",
        -            "Shadows Into Light",
        -            "Shadows Into Light Two",
        -            "Shafarik",
        -            "Shalimar",
        -            "Shantell Sans",
        -            "Shanti",
        -            "Share",
        -            "Share Tech",
        -            "Share Tech Mono",
        -            "Shippori Antique",
        -            "Shippori Antique B1",
        -            "Shippori Mincho",
        -            "Shippori Mincho B1",
        -            "Shizuru",
        -            "Shojumaru",
        -            "Short Stack",
        -            "Shrikhand",
        -            "Siemreap",
        -            "Sigmar",
        -            "Sigmar One",
        -            "Signika",
        -            "Signika Negative",
        -            "Silkscreen",
        -            "Simonetta",
        -            "Single Day",
        -            "Sintony",
        -            "Sirin Stencil",
        -            "Sirivennela",
        -            "Six Caps",
        -            "Sixtyfour",
        -            "Sixtyfour Convergence",
        -            "Skranji",
        -            "Slabo 13px",
        -            "Slabo 27px",
        -            "Slackey",
        -            "Slackside One",
        -            "Smokum",
        -            "Smooch",
        -            "Smooch Sans",
        -            "Smythe",
        -            "Sniglet",
        -            "Snippet",
        -            "Snowburst One",
        -            "Sofadi One",
        -            "Sofia",
        -            "Sofia Sans",
        -            "Sofia Sans Condensed",
        -            "Sofia Sans Extra Condensed",
        -            "Sofia Sans Semi Condensed",
        -            "Solitreo",
        -            "Solway",
        -            "Sometype Mono",
        -            "Song Myung",
        -            "Sono",
        -            "Sonsie One",
        -            "Sora",
        -            "Sorts Mill Goudy",
        -            "Sour Gummy",
        -            "Source Code Pro",
        -            "Source Sans 3",
        -            "Source Serif 4",
        -            "Space Grotesk",
        -            "Space Mono",
        -            "Special Elite",
        -            "Special Gothic",
        -            "Special Gothic Condensed One",
        -            "Special Gothic Expanded One",
        -            "Spectral",
        -            "Spectral SC",
        -            "Spicy Rice",
        -            "Spinnaker",
        -            "Spirax",
        -            "Splash",
        -            "Spline Sans",
        -            "Spline Sans Mono",
        -            "Squada One",
        -            "Square Peg",
        -            "Sree Krushnadevaraya",
        -            "Sriracha",
        -            "Srisakdi",
        -            "Staatliches",
        -            "Stack Sans Headline",
        -            "Stack Sans Notch",
        -            "Stack Sans Text",
        -            "Stalemate",
        -            "Stalinist One",
        -            "Stardos Stencil",
        -            "Stick",
        -            "Stick No Bills",
        -            "Stint Ultra Condensed",
        -            "Stint Ultra Expanded",
        -            "Stoke",
        -            "Story Script",
        -            "Strait",
        -            "Strichpunkt Sans",
        -            "Style Script",
        -            "Stylish",
        -            "Sue Ellen Francisco",
        -            "Suez One",
        -            "Sulphur Point",
        -            "Sumana",
        -            "Sunflower",
        -            "Sunshiney",
        -            "Supermercado One",
        -            "Sura",
        -            "Suranna",
        -            "Suravaram",
        -            "Suwannaphum",
        -            "Swanky and Moo Moo",
        -            "Syncopate",
        -            "Syne",
        -            "Syne Mono",
        -            "Syne Tactile",
        -            "TASA Explorer",
        -            "TASA Orbiter",
        -            "Tac One",
        -            "Tagesschrift",
        -            "Tai Heritage Pro",
        -            "Tajawal",
        -            "Tangerine",
        -            "Tapestry",
        -            "Taprom",
        -            "Tauri",
        -            "Taviraj",
        -            "Teachers",
        -            "Teko",
        -            "Tektur",
        -            "Telex",
        -            "Tenali Ramakrishna",
        -            "Tenor Sans",
        -            "Text Me One",
        -            "Texturina",
        -            "Thasadith",
        -            "The Girl Next Door",
        -            "The Nautigal",
        -            "Tienne",
        -            "TikTok Sans",
        -            "Tillana",
        -            "Tilt Neon",
        -            "Tilt Prism",
        -            "Tilt Warp",
        -            "Timmana",
        -            "Tinos",
        -            "Tiny5",
        -            "Tiro Bangla",
        -            "Tiro Devanagari Hindi",
        -            "Tiro Devanagari Marathi",
        -            "Tiro Devanagari Sanskrit",
        -            "Tiro Gurmukhi",
        -            "Tiro Kannada",
        -            "Tiro Tamil",
        -            "Tiro Telugu",
        -            "Tirra",
        -            "Titan One",
        -            "Titillium Web",
        -            "Tomorrow",
        -            "Tourney",
        -            "Trade Winds",
        -            "Train One",
        -            "Triodion",
        -            "Trirong",
        -            "Trispace",
        -            "Trocchi",
        -            "Trochut",
        -            "Truculenta",
        -            "Trykker",
        -            "Tsukimi Rounded",
        -            "Tuffy",
        -            "Tulpen One",
        -            "Turret Road",
        -            "Twinkle Star",
        -            "Ubuntu",
        -            "Ubuntu Condensed",
        -            "Ubuntu Mono",
        -            "Ubuntu Sans",
        -            "Ubuntu Sans Mono",
        -            "Uchen",
        -            "Ultra",
        -            "Unbounded",
        -            "Uncial Antiqua",
        -            "Underdog",
        -            "Unica One",
        -            "UnifrakturCook",
        -            "UnifrakturMaguntia",
        -            "Unkempt",
        -            "Unlock",
        -            "Unna",
        -            "UoqMunThenKhung",
        -            "Updock",
        -            "Urbanist",
        -            "VT323",
        -            "Vampiro One",
        -            "Varela",
        -            "Varela Round",
        -            "Varta",
        -            "Vast Shadow",
        -            "Vazirmatn",
        -            "Vend Sans",
        -            "Vesper Libre",
        -            "Viaoda Libre",
        -            "Vibes",
        -            "Vibur",
        -            "Victor Mono",
        -            "Vidaloka",
        -            "Viga",
        -            "Vina Sans",
        -            "Voces",
        -            "Volkhov",
        -            "Vollkorn",
        -            "Vollkorn SC",
        -            "Voltaire",
        -            "Vujahday Script",
        -            "WDXL Lubrifont JP N",
        -            "WDXL Lubrifont SC",
        -            "WDXL Lubrifont TC",
        -            "Waiting for the Sunrise",
        -            "Wallpoet",
        -            "Walter Turncoat",
        -            "Warnes",
        -            "Water Brush",
        -            "Waterfall",
        -            "Wavefont",
        -            "Wellfleet",
        -            "Wendy One",
        -            "Whisper",
        -            "WindSong",
        -            "Winky Rough",
        -            "Winky Sans",
        -            "Wire One",
        -            "Wittgenstein",
        -            "Wix Madefor Display",
        -            "Wix Madefor Text",
        -            "Work Sans",
        -            "Workbench",
        -            "Xanh Mono",
        -            "Yaldevi",
        -            "Yanone Kaffeesatz",
        -            "Yantramanav",
        -            "Yarndings 12",
        -            "Yarndings 12 Charted",
        -            "Yarndings 20",
        -            "Yarndings 20 Charted",
        -            "Yatra One",
        -            "Yellowtail",
        -            "Yeon Sung",
        -            "Yeseva One",
        -            "Yesteryear",
        -            "Yomogi",
        -            "Young Serif",
        -            "Yrsa",
        -            "Ysabeau",
        -            "Ysabeau Infant",
        -            "Ysabeau Office",
        -            "Ysabeau SC",
        -            "Yuji Boku",
        -            "Yuji Hentaigana Akari",
        -            "Yuji Hentaigana Akebono",
        -            "Yuji Mai",
        -            "Yuji Syuku",
        -            "Yusei Magic",
        -            "Yuyu",
        -            "Yuyu Short",
        -            "ZCOOL KuaiLe",
        -            "ZCOOL QingKe HuangYou",
        -            "ZCOOL XiaoWei",
        -            "Zain",
        -            "Zalando Sans",
        -            "Zalando Sans Expanded",
        -            "Zalando Sans SemiExpanded",
        -            "Zen Antique",
        -            "Zen Antique Soft",
        -            "Zen Dots",
        -            "Zen Kaku Gothic Antique",
        -            "Zen Kaku Gothic New",
        -            "Zen Kurenaido",
        -            "Zen Loop",
        -            "Zen Maru Gothic",
        -            "Zen Old Mincho",
        -            "Zen Tokyo Zoo",
        -            "Zeyada",
        -            "Zhi Mang Xing",
        -            "Zilla Slab",
        -            "Zilla Slab Highlight"
        -          ],
        -          "type": "string"
        -        },
        -        "pieCornerRadius": {
        -          "type": "number"
        -        },
        -        "sequentialRange": {
        -          "items": [
        -            {
        -              "type": "string"
        -            },
        -            {
        -              "type": "string"
        -            }
        -          ],
        -          "maxItems": 2,
        -          "minItems": 2,
        -          "type": "array"
        -        },
        -        "subtitleColor": {
        -          "type": "string"
        -        },
        -        "subtitleFontSize": {
        -          "type": "number"
        -        },
        -        "tickDensity": {
        -          "type": "number"
        -        },
        -        "tickLabelColor": {
        -          "type": "string"
        -        },
        -        "tickLabelFontWeight": {
        -          "type": "string"
        -        },
        -        "tickPadding": {
        -          "type": "number"
        -        },
        -        "tickSize": {
        -          "type": "number"
        -        },
        -        "titleColor": {
        -          "type": "string"
        -        },
        -        "titleFontFamily": {
        -          "enum": [
        -            "ABeeZee",
        -            "ADLaM Display",
        -            "AR One Sans",
        -            "Abel",
        -            "Abhaya Libre",
        -            "Aboreto",
        -            "Abril Fatface",
        -            "Abyssinica SIL",
        -            "Aclonica",
        -            "Acme",
        -            "Actor",
        -            "Adamina",
        -            "Advent Pro",
        -            "Afacad",
        -            "Afacad Flux",
        -            "Agbalumo",
        -            "Agdasima",
        -            "Agu Display",
        -            "Aguafina Script",
        -            "Akatab",
        -            "Akaya Kanadaka",
        -            "Akaya Telivigala",
        -            "Akronim",
        -            "Akshar",
        -            "Akt",
        -            "Aladin",
        -            "Alan Sans",
        -            "Alata",
        -            "Alatsi",
        -            "Albert Sans",
        -            "Aldrich",
        -            "Alef",
        -            "Alegreya",
        -            "Alegreya SC",
        -            "Alegreya Sans",
        -            "Alegreya Sans SC",
        -            "Aleo",
        -            "Alex Brush",
        -            "Alexandria",
        -            "Alfa Slab One",
        -            "Alice",
        -            "Alien Block",
        -            "Alike",
        -            "Alike Angular",
        -            "Alkalami",
        -            "Alkatra",
        -            "Allan",
        -            "Allerta",
        -            "Allerta Stencil",
        -            "Allison",
        -            "Allkin",
        -            "Allura",
        -            "Almarai",
        -            "Almendra",
        -            "Almendra Display",
        -            "Almendra SC",
        -            "Alumni Sans",
        -            "Alumni Sans Collegiate One",
        -            "Alumni Sans Inline One",
        -            "Alumni Sans Pinstripe",
        -            "Alumni Sans SC",
        -            "Alyamama",
        -            "Amarante",
        -            "Amaranth",
        -            "Amarna",
        -            "Amatic SC",
        -            "Amethysta",
        -            "Amiko",
        -            "Amiri",
        -            "Amiri Quran",
        -            "Amita",
        -            "Anaheim",
        -            "Ancizar Sans",
        -            "Ancizar Serif",
        -            "Andada Pro",
        -            "Andika",
        -            "Anek Bangla",
        -            "Anek Devanagari",
        -            "Anek Gujarati",
        -            "Anek Gurmukhi",
        -            "Anek Kannada",
        -            "Anek Latin",
        -            "Anek Malayalam",
        -            "Anek Odia",
        -            "Anek Tamil",
        -            "Anek Telugu",
        -            "Angkor",
        -            "Annapurna SIL",
        -            "Annie Use Your Telescope",
        -            "Anonymous Pro",
        -            "Anta",
        -            "Antic",
        -            "Antic Didone",
        -            "Antic Slab",
        -            "Anton",
        -            "Anton SC",
        -            "Antonio",
        -            "Anuphan",
        -            "Anybody",
        -            "Aoboshi One",
        -            "Arapey",
        -            "Arbutus",
        -            "Arbutus Slab",
        -            "Architects Daughter",
        -            "Archivo",
        -            "Archivo Black",
        -            "Archivo Narrow",
        -            "Are You Serious",
        -            "Aref Ruqaa",
        -            "Aref Ruqaa Ink",
        -            "Arima",
        -            "Arimo",
        -            "Arizonia",
        -            "Armata",
        -            "Arsenal",
        -            "Arsenal SC",
        -            "Artifika",
        -            "Arvo",
        -            "Arya",
        -            "Asap",
        -            "Asap Condensed",
        -            "Asar",
        -            "Asimovian",
        -            "Asset",
        -            "Assistant",
        -            "Asta Sans",
        -            "Astloch",
        -            "Asul",
        -            "Athiti",
        -            "Atkinson Hyperlegible",
        -            "Atkinson Hyperlegible Mono",
        -            "Atkinson Hyperlegible Next",
        -            "Atma",
        -            "Atomic Age",
        -            "Aubrey",
        -            "Audiowide",
        -            "Autour One",
        -            "Average",
        -            "Average Sans",
        -            "Averia Gruesa Libre",
        -            "Averia Libre",
        -            "Averia Sans Libre",
        -            "Averia Serif Libre",
        -            "Azeret Mono",
        -            "B612",
        -            "B612 Mono",
        -            "BBH Bartle",
        -            "BBH Bogle",
        -            "BBH Hegarty",
        -            "BIZ UDGothic",
        -            "BIZ UDMincho",
        -            "BIZ UDPGothic",
        -            "BIZ UDPMincho",
        -            "BJCree",
        -            "Babylonica",
        -            "Bacasime Antique",
        -            "Bad Script",
        -            "Badeen Display",
        -            "Bagel Fat One",
        -            "Bahiana",
        -            "Bahianita",
        -            "Bai Jamjuree",
        -            "Bakbak One",
        -            "Ballet",
        -            "Baloo 2",
        -            "Baloo Bhai 2",
        -            "Baloo Bhaijaan 2",
        -            "Baloo Bhaina 2",
        -            "Baloo Chettan 2",
        -            "Baloo Da 2",
        -            "Baloo Paaji 2",
        -            "Baloo Tamma 2",
        -            "Baloo Tammudu 2",
        -            "Baloo Thambi 2",
        -            "Balsamiq Sans",
        -            "Balthazar",
        -            "Bangers",
        -            "Barlow",
        -            "Barlow Condensed",
        -            "Barlow Semi Condensed",
        -            "Barriecito",
        -            "Barrio",
        -            "Basic",
        -            "Baskervville",
        -            "Baskervville SC",
        -            "Battambang",
        -            "Baumans",
        -            "Bayon",
        -            "Be Vietnam Pro",
        -            "Beau Rivage",
        -            "Bebas Neue",
        -            "Beiruti",
        -            "Belanosima",
        -            "Belgrano",
        -            "Bellefair",
        -            "Belleza",
        -            "Bellota",
        -            "Bellota Text",
        -            "BenchNine",
        -            "Benne",
        -            "Bentham",
        -            "Berkshire Swash",
        -            "Besley",
        -            "Betania Patmos",
        -            "Betania Patmos GDL",
        -            "Betania Patmos In",
        -            "Betania Patmos In GDL",
        -            "Beth Ellen",
        -            "Bevan",
        -            "BhuTuka Expanded One",
        -            "Big Shoulders",
        -            "Big Shoulders Inline",
        -            "Big Shoulders Stencil",
        -            "Bigelow Rules",
        -            "Bigshot One",
        -            "Bilbo",
        -            "Bilbo Swash Caps",
        -            "BioRhyme",
        -            "BioRhyme Expanded",
        -            "Birthstone",
        -            "Birthstone Bounce",
        -            "Biryani",
        -            "Bitcount",
        -            "Bitcount Grid Double",
        -            "Bitcount Grid Double Ink",
        -            "Bitcount Grid Single",
        -            "Bitcount Grid Single Ink",
        -            "Bitcount Ink",
        -            "Bitcount Prop Double",
        -            "Bitcount Prop Double Ink",
        -            "Bitcount Prop Single",
        -            "Bitcount Prop Single Ink",
        -            "Bitcount Single",
        -            "Bitcount Single Ink",
        -            "Bitter",
        -            "Black And White Picture",
        -            "Black Han Sans",
        -            "Black Ops One",
        -            "Blaka",
        -            "Blaka Hollow",
        -            "Blaka Ink",
        -            "Blinker",
        -            "Bodoni Moda",
        -            "Bodoni Moda SC",
        -            "Bokor",
        -            "Boldonse",
        -            "Bona Nova",
        -            "Bona Nova SC",
        -            "Bonbon",
        -            "Bonheur Royale",
        -            "Boogaloo",
        -            "Borel",
        -            "Bowlby One",
        -            "Bowlby One SC",
        -            "Bpmf Huninn",
        -            "Bpmf Iansui",
        -            "Bpmf Zihi Kai Std",
        -            "Braah One",
        -            "Brawler",
        -            "Bree Serif",
        -            "Bricolage Grotesque",
        -            "Bruno Ace",
        -            "Bruno Ace SC",
        -            "Brygada 1918",
        -            "Bubblegum Sans",
        -            "Bubbler One",
        -            "Buda",
        -            "Buenard",
        -            "Bungee",
        -            "Bungee Hairline",
        -            "Bungee Inline",
        -            "Bungee Outline",
        -            "Bungee Shade",
        -            "Bungee Spice",
        -            "Bungee Tint",
        -            "Butcherman",
        -            "Butterfly Kids",
        -            "Bytesized",
        -            "Cabin",
        -            "Cabin Condensed",
        -            "Cabin Sketch",
        -            "Cactus Classical Serif",
        -            "Caesar Dressing",
        -            "Cagliostro",
        -            "Cairo",
        -            "Cairo Play",
        -            "Cal Sans",
        -            "Caladea",
        -            "Calistoga",
        -            "Calligraffitti",
        -            "Cambay",
        -            "Cambo",
        -            "Candal",
        -            "Cantarell",
        -            "Cantata One",
        -            "Cantora One",
        -            "Caprasimo",
        -            "Capriola",
        -            "Caramel",
        -            "Carattere",
        -            "Cardo",
        -            "Carlito",
        -            "Carme",
        -            "Carrois Gothic",
        -            "Carrois Gothic SC",
        -            "Carter One",
        -            "Cascadia Code",
        -            "Cascadia Mono",
        -            "Castoro",
        -            "Castoro Titling",
        -            "Catamaran",
        -            "Caudex",
        -            "Cause",
        -            "Caveat",
        -            "Caveat Brush",
        -            "Cedarville Cursive",
        -            "Ceviche One",
        -            "Chakra Petch",
        -            "Changa",
        -            "Changa One",
        -            "Chango",
        -            "Charis SIL",
        -            "Charm",
        -            "Charmonman",
        -            "Chathura",
        -            "Chau Philomene One",
        -            "Chela One",
        -            "Chelsea Market",
        -            "Chenla",
        -            "Cherish",
        -            "Cherry Bomb One",
        -            "Cherry Cream Soda",
        -            "Cherry Swash",
        -            "Chewy",
        -            "Chicle",
        -            "Chilanka",
        -            "Chiron GoRound TC",
        -            "Chiron Hei HK",
        -            "Chiron Sung HK",
        -            "Chivo",
        -            "Chivo Mono",
        -            "Chocolate Classical Sans",
        -            "Chokokutai",
        -            "Chonburi",
        -            "Cinzel",
        -            "Cinzel Decorative",
        -            "Clicker Script",
        -            "Climate Crisis",
        -            "Coda",
        -            "Codystar",
        -            "Coiny",
        -            "Combo",
        -            "Comfortaa",
        -            "Comforter",
        -            "Comforter Brush",
        -            "Comic Neue",
        -            "Comic Relief",
        -            "Coming Soon",
        -            "Comme",
        -            "Commissioner",
        -            "Concert One",
        -            "Condiment",
        -            "Content",
        -            "Contrail One",
        -            "Convergence",
        -            "Cookie",
        -            "Copse",
        -            "Coral Pixels",
        -            "Corben",
        -            "Corinthia",
        -            "Cormorant",
        -            "Cormorant Garamond",
        -            "Cormorant Infant",
        -            "Cormorant SC",
        -            "Cormorant Unicase",
        -            "Cormorant Upright",
        -            "Cossette Texte",
        -            "Cossette Titre",
        -            "Courgette",
        -            "Courier Prime",
        -            "Cousine",
        -            "Coustard",
        -            "Covered By Your Grace",
        -            "Crafty Girls",
        -            "Creepster",
        -            "Crete Round",
        -            "Crimson Pro",
        -            "Crimson Text",
        -            "Croissant One",
        -            "Crushed",
        -            "Cuprum",
        -            "Cute Font",
        -            "Cutive",
        -            "Cutive Mono",
        -            "DM Mono",
        -            "DM Sans",
        -            "DM Serif Display",
        -            "DM Serif Text",
        -            "Dai Banna SIL",
        -            "Damion",
        -            "Dancing Script",
        -            "Danfo",
        -            "Dangrek",
        -            "Darker Grotesque",
        -            "Darumadrop One",
        -            "Datatype",
        -            "David Libre",
        -            "Dawning of a New Day",
        -            "Days One",
        -            "Dekko",
        -            "Dela Gothic One",
        -            "Delicious Handrawn",
        -            "Delius",
        -            "Delius Swash Caps",
        -            "Delius Unicase",
        -            "Della Respira",
        -            "Denk One",
        -            "Devonshire",
        -            "Dhurjati",
        -            "Didact Gothic",
        -            "Diphylleia",
        -            "Diplomata",
        -            "Diplomata SC",
        -            "Do Hyeon",
        -            "Dokdo",
        -            "Domine",
        -            "Donegal One",
        -            "Dongle",
        -            "Doppio One",
        -            "Dorsa",
        -            "Dosis",
        -            "DotGothic16",
        -            "Doto",
        -            "Dr Sugiyama",
        -            "Duru Sans",
        -            "DynaPuff",
        -            "Dynalight",
        -            "EB Garamond",
        -            "Eagle Lake",
        -            "East Sea Dokdo",
        -            "Eater",
        -            "Economica",
        -            "Eczar",
        -            "Edu AU VIC WA NT Arrows",
        -            "Edu AU VIC WA NT Dots",
        -            "Edu AU VIC WA NT Guides",
        -            "Edu AU VIC WA NT Hand",
        -            "Edu AU VIC WA NT Pre",
        -            "Edu NSW ACT Cursive",
        -            "Edu NSW ACT Foundation",
        -            "Edu NSW ACT Hand Pre",
        -            "Edu QLD Beginner",
        -            "Edu QLD Hand",
        -            "Edu SA Beginner",
        -            "Edu SA Hand",
        -            "Edu TAS Beginner",
        -            "Edu VIC WA NT Beginner",
        -            "Edu VIC WA NT Hand",
        -            "Edu VIC WA NT Hand Pre",
        -            "El Messiri",
        -            "Electrolize",
        -            "Elms Sans",
        -            "Elsie",
        -            "Elsie Swash Caps",
        -            "Emblema One",
        -            "Emilys Candy",
        -            "Encode Sans",
        -            "Encode Sans Condensed",
        -            "Encode Sans Expanded",
        -            "Encode Sans SC",
        -            "Encode Sans Semi Condensed",
        -            "Encode Sans Semi Expanded",
        -            "Engagement",
        -            "Englebert",
        -            "Enriqueta",
        -            "Ephesis",
        -            "Epilogue",
        -            "Epunda Sans",
        -            "Epunda Slab",
        -            "Erica One",
        -            "Esteban",
        -            "Estedad",
        -            "Estonia",
        -            "Euphoria Script",
        -            "Ewert",
        -            "Exile",
        -            "Exo",
        -            "Exo 2",
        -            "Expletus Sans",
        -            "Explora",
        -            "Faculty Glyphic",
        -            "Fahkwang",
        -            "Familjen Grotesk",
        -            "Fanwood Text",
        -            "Farro",
        -            "Farsan",
        -            "Fascinate",
        -            "Fascinate Inline",
        -            "Faster One",
        -            "Fasthand",
        -            "Fauna One",
        -            "Faustina",
        -            "Federant",
        -            "Federo",
        -            "Felipa",
        -            "Fenix",
        -            "Festive",
        -            "Figtree",
        -            "Finger Paint",
        -            "Finlandica Headline",
        -            "Finlandica Text",
        -            "Fira Code",
        -            "Fira Mono",
        -            "Fira Sans",
        -            "Fira Sans Condensed",
        -            "Fira Sans Extra Condensed",
        -            "Fjalla One",
        -            "Fjord One",
        -            "Flamenco",
        -            "Flavors",
        -            "Fleur De Leah",
        -            "Flow Block",
        -            "Flow Circular",
        -            "Flow Rounded",
        -            "Foldit",
        -            "Fondamento",
        -            "Fontdiner Swanky",
        -            "Forum",
        -            "Fragment Mono",
        -            "Francois One",
        -            "Frank Ruhl Libre",
        -            "Fraunces",
        -            "Freckle Face",
        -            "Fredericka the Great",
        -            "Fredoka",
        -            "Freehand",
        -            "Freeman",
        -            "Fresca",
        -            "Frijole",
        -            "Fruktur",
        -            "Fugaz One",
        -            "Fuggles",
        -            "Funnel Display",
        -            "Funnel Sans",
        -            "Fustat",
        -            "Fuzzy Bubbles",
        -            "GFS Didot",
        -            "GFS Neohellenic",
        -            "Ga Maamli",
        -            "Gabarito",
        -            "Gabriela",
        -            "Gaegu",
        -            "Gafata",
        -            "Gajraj One",
        -            "Galada",
        -            "Galdeano",
        -            "Galindo",
        -            "Gamja Flower",
        -            "Gantari",
        -            "Gasoek One",
        -            "Gayathri",
        -            "Geist",
        -            "Geist Mono",
        -            "Geist Pixel",
        -            "Gelasio",
        -            "Gemunu Libre",
        -            "Genos",
        -            "Gentium Book Plus",
        -            "Gentium Plus",
        -            "Geo",
        -            "Geologica",
        -            "Geom",
        -            "Geomini",
        -            "Georama",
        -            "Geostar",
        -            "Geostar Fill",
        -            "Germania One",
        -            "Gideon Roman",
        -            "Gidole",
        -            "Gidugu",
        -            "Gilda Display",
        -            "Girassol",
        -            "Give You Glory",
        -            "Glass Antiqua",
        -            "Glegoo",
        -            "Gloock",
        -            "Gloria Hallelujah",
        -            "Glory",
        -            "Gluten",
        -            "Goblin One",
        -            "Gochi Hand",
        -            "Goldman",
        -            "Golos Text",
        -            "Google Sans",
        -            "Google Sans Code",
        -            "Google Sans Flex",
        -            "Gorditas",
        -            "Gothic A1",
        -            "Gotu",
        -            "Goudy Bookletter 1911",
        -            "Gowun Batang",
        -            "Gowun Dodum",
        -            "Graduate",
        -            "Grand Hotel",
        -            "Grandiflora One",
        -            "Grandstander",
        -            "Grape Nuts",
        -            "Gravitas One",
        -            "Great Vibes",
        -            "Grechen Fuemen",
        -            "Grenze",
        -            "Grenze Gotisch",
        -            "Grey Qo",
        -            "Griffy",
        -            "Gruppo",
        -            "Gudea",
        -            "Gugi",
        -            "Gulzar",
        -            "Gupter",
        -            "Gurajada",
        -            "Gveret Levin",
        -            "Gwendolyn",
        -            "Habibi",
        -            "Hachi Maru Pop",
        -            "Hahmlet",
        -            "Halant",
        -            "Hammersmith One",
        -            "Hanalei",
        -            "Hanalei Fill",
        -            "Handjet",
        -            "Handlee",
        -            "Hanken Grotesk",
        -            "Hanuman",
        -            "Happy Monkey",
        -            "Harmattan",
        -            "Headland One",
        -            "Hedvig Letters Sans",
        -            "Hedvig Letters Serif",
        -            "Heebo",
        -            "Henny Penny",
        -            "Hepta Slab",
        -            "Herr Von Muellerhoff",
        -            "Hi Melody",
        -            "Hibur Mono",
        -            "Hina Mincho",
        -            "Hind",
        -            "Hind Guntur",
        -            "Hind Madurai",
        -            "Hind Mysuru",
        -            "Hind Siliguri",
        -            "Hind Vadodara",
        -            "Holtwood One SC",
        -            "Homemade Apple",
        -            "Homenaje",
        -            "Honk",
        -            "Host Grotesk",
        -            "Hubballi",
        -            "Hubot Sans",
        -            "Huninn",
        -            "Hurricane",
        -            "IBM Plex Mono",
        -            "IBM Plex Sans",
        -            "IBM Plex Sans Arabic",
        -            "IBM Plex Sans Condensed",
        -            "IBM Plex Sans Devanagari",
        -            "IBM Plex Sans Hebrew",
        -            "IBM Plex Sans JP",
        -            "IBM Plex Sans KR",
        -            "IBM Plex Sans Thai",
        -            "IBM Plex Sans Thai Looped",
        -            "IBM Plex Serif",
        -            "IM Fell DW Pica",
        -            "IM Fell DW Pica SC",
        -            "IM Fell Double Pica",
        -            "IM Fell Double Pica SC",
        -            "IM Fell English",
        -            "IM Fell English SC",
        -            "IM Fell French Canon",
        -            "IM Fell French Canon SC",
        -            "IM Fell Great Primer",
        -            "IM Fell Great Primer SC",
        -            "Iansui",
        -            "Ibarra Real Nova",
        -            "Iceberg",
        -            "Iceland",
        -            "Idiqlat",
        -            "Imbue",
        -            "Imperial Script",
        -            "Imprima",
        -            "Inclusive Sans",
        -            "Inconsolata",
        -            "Inder",
        -            "Indie Flower",
        -            "Ingrid Darling",
        -            "Inika",
        -            "Inknut Antiqua",
        -            "Inria Sans",
        -            "Inria Serif",
        -            "Inspiration",
        -            "Instrument Sans",
        -            "Instrument Serif",
        -            "Intel One Mono",
        -            "Inter",
        -            "Inter Tight",
        -            "Iosevka Charon",
        -            "Iosevka Charon Mono",
        -            "Irish Grover",
        -            "Island Moments",
        -            "Istok Web",
        -            "Italiana",
        -            "Italianno",
        -            "Itim",
        -            "Jacquard 12",
        -            "Jacquard 12 Charted",
        -            "Jacquard 24",
        -            "Jacquard 24 Charted",
        -            "Jacquarda Bastarda 9",
        -            "Jacquarda Bastarda 9 Charted",
        -            "Jacques Francois",
        -            "Jacques Francois Shadow",
        -            "Jaini",
        -            "Jaini Purva",
        -            "Jaldi",
        -            "Jaro",
        -            "Jersey 10",
        -            "Jersey 10 Charted",
        -            "Jersey 15",
        -            "Jersey 15 Charted",
        -            "Jersey 20",
        -            "Jersey 20 Charted",
        -            "Jersey 25",
        -            "Jersey 25 Charted",
        -            "JetBrains Mono",
        -            "Jim Nightshade",
        -            "Joan",
        -            "Jockey One",
        -            "Jolly Lodger",
        -            "Jomhuria",
        -            "Jomolhari",
        -            "Josefin Sans",
        -            "Josefin Slab",
        -            "Jost",
        -            "Joti One",
        -            "Jua",
        -            "Judson",
        -            "Julee",
        -            "Julius Sans One",
        -            "Junge",
        -            "Jura",
        -            "Just Another Hand",
        -            "Just Me Again Down Here",
        -            "K2D",
        -            "Kablammo",
        -            "Kadwa",
        -            "Kaisei Decol",
        -            "Kaisei HarunoUmi",
        -            "Kaisei Opti",
        -            "Kaisei Tokumin",
        -            "Kalam",
        -            "Kalnia",
        -            "Kalnia Glaze",
        -            "Kameron",
        -            "Kanchenjunga",
        -            "Kanit",
        -            "Kantumruy Pro",
        -            "Kapakana",
        -            "Karantina",
        -            "Karla",
        -            "Karla Tamil Inclined",
        -            "Karla Tamil Upright",
        -            "Karma",
        -            "Katibeh",
        -            "Kaushan Script",
        -            "Kavivanar",
        -            "Kavoon",
        -            "Kay Pho Du",
        -            "Kdam Thmor Pro",
        -            "Keania One",
        -            "Kedebideri",
        -            "Kelly Slab",
        -            "Kenia",
        -            "Khand",
        -            "Khmer",
        -            "Khula",
        -            "Kings",
        -            "Kirang Haerang",
        -            "Kite One",
        -            "Kiwi Maru",
        -            "Klee One",
        -            "Knewave",
        -            "KoHo",
        -            "Kodchasan",
        -            "Kode Mono",
        -            "Koh Santepheap",
        -            "Kolker Brush",
        -            "Konkhmer Sleokchher",
        -            "Kosugi",
        -            "Kosugi Maru",
        -            "Kotta One",
        -            "Koulen",
        -            "Kranky",
        -            "Kreon",
        -            "Kristi",
        -            "Krona One",
        -            "Krub",
        -            "Kufam",
        -            "Kulim Park",
        -            "Kumar One",
        -            "Kumar One Outline",
        -            "Kumbh Sans",
        -            "Kurale",
        -            "LINE Seed JP",
        -            "LXGW Marker Gothic",
        -            "LXGW WenKai Mono TC",
        -            "LXGW WenKai TC",
        -            "La Belle Aurore",
        -            "Labrada",
        -            "Lacquer",
        -            "Laila",
        -            "Lakki Reddy",
        -            "Lalezar",
        -            "Lancelot",
        -            "Langar",
        -            "Lateef",
        -            "Lato",
        -            "Lavishly Yours",
        -            "League Gothic",
        -            "League Script",
        -            "League Spartan",
        -            "Leckerli One",
        -            "Ledger",
        -            "Lekton",
        -            "Lemon",
        -            "Lemonada",
        -            "Lexend",
        -            "Lexend Deca",
        -            "Lexend Exa",
        -            "Lexend Giga",
        -            "Lexend Mega",
        -            "Lexend Peta",
        -            "Lexend Tera",
        -            "Lexend Zetta",
        -            "Libertinus Keyboard",
        -            "Libertinus Math",
        -            "Libertinus Mono",
        -            "Libertinus Sans",
        -            "Libertinus Serif",
        -            "Libertinus Serif Display",
        -            "Libre Barcode 128",
        -            "Libre Barcode 128 Text",
        -            "Libre Barcode 39",
        -            "Libre Barcode 39 Extended",
        -            "Libre Barcode 39 Extended Text",
        -            "Libre Barcode 39 Text",
        -            "Libre Barcode EAN13 Text",
        -            "Libre Baskerville",
        -            "Libre Bodoni",
        -            "Libre Caslon Display",
        -            "Libre Caslon Text",
        -            "Libre Franklin",
        -            "Licorice",
        -            "Life Savers",
        -            "Lilex",
        -            "Lilita One",
        -            "Lily Script One",
        -            "Limelight",
        -            "Linden Hill",
        -            "Linefont",
        -            "Lisu Bosa",
        -            "Liter",
        -            "Literata",
        -            "Liu Jian Mao Cao",
        -            "Livvic",
        -            "Lobster",
        -            "Lobster Two",
        -            "Londrina Outline",
        -            "Londrina Shadow",
        -            "Londrina Sketch",
        -            "Londrina Solid",
        -            "Long Cang",
        -            "Lora",
        -            "Love Light",
        -            "Love Ya Like A Sister",
        -            "Loved by the King",
        -            "Lovers Quarrel",
        -            "Luckiest Guy",
        -            "Lugrasimo",
        -            "Lumanosimo",
        -            "Lunasima",
        -            "Lusitana",
        -            "Lustria",
        -            "Luxurious Roman",
        -            "Luxurious Script",
        -            "M PLUS 1",
        -            "M PLUS 1 Code",
        -            "M PLUS 1p",
        -            "M PLUS 2",
        -            "M PLUS Code Latin",
        -            "M PLUS Rounded 1c",
        -            "M PLUS U",
        -            "Ma Shan Zheng",
        -            "Macondo",
        -            "Macondo Swash Caps",
        -            "Mada",
        -            "Madimi One",
        -            "Magra",
        -            "Maiden Orange",
        -            "Maitree",
        -            "Major Mono Display",
        -            "Mako",
        -            "Mali",
        -            "Mallanna",
        -            "Maname",
        -            "Mandali",
        -            "Manjari",
        -            "Manrope",
        -            "Mansalva",
        -            "Manuale",
        -            "Manufacturing Consent",
        -            "Marcellus",
        -            "Marcellus SC",
        -            "Marck Script",
        -            "Margarine",
        -            "Marhey",
        -            "Markazi Text",
        -            "Marko One",
        -            "Marmelad",
        -            "Martel",
        -            "Martel Sans",
        -            "Martian Mono",
        -            "Marvel",
        -            "Matangi",
        -            "Mate",
        -            "Mate SC",
        -            "Matemasie",
        -            "Material Icons",
        -            "Material Icons Outlined",
        -            "Material Icons Round",
        -            "Material Icons Sharp",
        -            "Material Icons Two Tone",
        -            "Material Symbols",
        -            "Material Symbols Outlined",
        -            "Material Symbols Rounded",
        -            "Material Symbols Sharp",
        -            "Maven Pro",
        -            "McLaren",
        -            "Mea Culpa",
        -            "Meddon",
        -            "MedievalSharp",
        -            "Medula One",
        -            "Meera Inimai",
        -            "Megrim",
        -            "Meie Script",
        -            "Menbere",
        -            "Meow Script",
        -            "Merienda",
        -            "Merriweather",
        -            "Merriweather Sans",
        -            "Metal",
        -            "Metal Mania",
        -            "Metamorphous",
        -            "Metrophobic",
        -            "Michroma",
        -            "Micro 5",
        -            "Micro 5 Charted",
        -            "Milonga",
        -            "Miltonian",
        -            "Miltonian Tattoo",
        -            "Mina",
        -            "Mingzat",
        -            "Miniver",
        -            "Miranda Sans",
        -            "Miriam Libre",
        -            "Mirza",
        -            "Miss Fajardose",
        -            "Mitr",
        -            "Mochiy Pop One",
        -            "Mochiy Pop P One",
        -            "Modak",
        -            "Modern Antiqua",
        -            "Moderustic",
        -            "Mogra",
        -            "Mohave",
        -            "Moirai One",
        -            "Molengo",
        -            "Molle",
        -            "Momo Signature",
        -            "Momo Trust Display",
        -            "Momo Trust Sans",
        -            "Mona Sans",
        -            "Monda",
        -            "Monofett",
        -            "Monomakh",
        -            "Monomaniac One",
        -            "Monoton",
        -            "Monsieur La Doulaise",
        -            "Montaga",
        -            "Montagu Slab",
        -            "MonteCarlo",
        -            "Montenegrin Gothic One",
        -            "Montez",
        -            "Montserrat",
        -            "Montserrat Alternates",
        -            "Montserrat Underline",
        -            "Moo Lah Lah",
        -            "Mooli",
        -            "Moon Dance",
        -            "Moul",
        -            "Moulpali",
        -            "Mountains of Christmas",
        -            "Mouse Memoirs",
        -            "Mozilla Headline",
        -            "Mozilla Text",
        -            "Mr Bedfort",
        -            "Mr Dafoe",
        -            "Mr De Haviland",
        -            "Mrs Saint Delafield",
        -            "Mrs Sheppards",
        -            "Ms Madi",
        -            "Mukta",
        -            "Mukta Mahee",
        -            "Mukta Malar",
        -            "Mukta Vaani",
        -            "Mulish",
        -            "Murecho",
        -            "MuseoModerno",
        -            "My Soul",
        -            "Mynerve",
        -            "Mystery Quest",
        -            "NTR",
        -            "Nabla",
        -            "Namdhinggo",
        -            "Nanum Brush Script",
        -            "Nanum Gothic",
        -            "Nanum Gothic Coding",
        -            "Nanum Myeongjo",
        -            "Nanum Pen Script",
        -            "Narnoor",
        -            "Nata Sans",
        -            "National Park",
        -            "Neonderthaw",
        -            "Nerko One",
        -            "Neucha",
        -            "Neuton",
        -            "New Amsterdam",
        -            "New Rocker",
        -            "New Tegomin",
        -            "News Cycle",
        -            "Newsreader",
        -            "Niconne",
        -            "Niramit",
        -            "Nixie One",
        -            "Nobile",
        -            "Nokora",
        -            "Norican",
        -            "Nosifer",
        -            "Notable",
        -            "Nothing You Could Do",
        -            "Noticia Text",
        -            "Noto Color Emoji",
        -            "Noto Emoji",
        -            "Noto Kufi Arabic",
        -            "Noto Music",
        -            "Noto Naskh Arabic",
        -            "Noto Nastaliq Urdu",
        -            "Noto Rashi Hebrew",
        -            "Noto Sans",
        -            "Noto Sans Adlam",
        -            "Noto Sans Adlam Unjoined",
        -            "Noto Sans Anatolian Hieroglyphs",
        -            "Noto Sans Arabic",
        -            "Noto Sans Armenian",
        -            "Noto Sans Avestan",
        -            "Noto Sans Balinese",
        -            "Noto Sans Bamum",
        -            "Noto Sans Bassa Vah",
        -            "Noto Sans Batak",
        -            "Noto Sans Bengali",
        -            "Noto Sans Bhaiksuki",
        -            "Noto Sans Brahmi",
        -            "Noto Sans Buginese",
        -            "Noto Sans Buhid",
        -            "Noto Sans Canadian Aboriginal",
        -            "Noto Sans Carian",
        -            "Noto Sans Caucasian Albanian",
        -            "Noto Sans Chakma",
        -            "Noto Sans Cham",
        -            "Noto Sans Cherokee",
        -            "Noto Sans Chorasmian",
        -            "Noto Sans Coptic",
        -            "Noto Sans Cuneiform",
        -            "Noto Sans Cypriot",
        -            "Noto Sans Cypro Minoan",
        -            "Noto Sans Deseret",
        -            "Noto Sans Devanagari",
        -            "Noto Sans Display",
        -            "Noto Sans Duployan",
        -            "Noto Sans Egyptian Hieroglyphs",
        -            "Noto Sans Elbasan",
        -            "Noto Sans Elymaic",
        -            "Noto Sans Ethiopic",
        -            "Noto Sans Georgian",
        -            "Noto Sans Glagolitic",
        -            "Noto Sans Gothic",
        -            "Noto Sans Grantha",
        -            "Noto Sans Gujarati",
        -            "Noto Sans Gunjala Gondi",
        -            "Noto Sans Gurmukhi",
        -            "Noto Sans HK",
        -            "Noto Sans Hanifi Rohingya",
        -            "Noto Sans Hanunoo",
        -            "Noto Sans Hatran",
        -            "Noto Sans Hebrew",
        -            "Noto Sans Imperial Aramaic",
        -            "Noto Sans Indic Siyaq Numbers",
        -            "Noto Sans Inscriptional Pahlavi",
        -            "Noto Sans Inscriptional Parthian",
        -            "Noto Sans JP",
        -            "Noto Sans Javanese",
        -            "Noto Sans KR",
        -            "Noto Sans Kaithi",
        -            "Noto Sans Kannada",
        -            "Noto Sans Kawi",
        -            "Noto Sans Kayah Li",
        -            "Noto Sans Kharoshthi",
        -            "Noto Sans Khmer",
        -            "Noto Sans Khojki",
        -            "Noto Sans Khudawadi",
        -            "Noto Sans Lao",
        -            "Noto Sans Lao Looped",
        -            "Noto Sans Lepcha",
        -            "Noto Sans Limbu",
        -            "Noto Sans Linear A",
        -            "Noto Sans Linear B",
        -            "Noto Sans Lisu",
        -            "Noto Sans Lycian",
        -            "Noto Sans Lydian",
        -            "Noto Sans Mahajani",
        -            "Noto Sans Malayalam",
        -            "Noto Sans Mandaic",
        -            "Noto Sans Manichaean",
        -            "Noto Sans Marchen",
        -            "Noto Sans Masaram Gondi",
        -            "Noto Sans Math",
        -            "Noto Sans Mayan Numerals",
        -            "Noto Sans Medefaidrin",
        -            "Noto Sans Meetei Mayek",
        -            "Noto Sans Mende Kikakui",
        -            "Noto Sans Meroitic",
        -            "Noto Sans Miao",
        -            "Noto Sans Modi",
        -            "Noto Sans Mongolian",
        -            "Noto Sans Mono",
        -            "Noto Sans Mro",
        -            "Noto Sans Multani",
        -            "Noto Sans Myanmar",
        -            "Noto Sans NKo",
        -            "Noto Sans NKo Unjoined",
        -            "Noto Sans Nabataean",
        -            "Noto Sans Nag Mundari",
        -            "Noto Sans Nandinagari",
        -            "Noto Sans New Tai Lue",
        -            "Noto Sans Newa",
        -            "Noto Sans Nushu",
        -            "Noto Sans Ogham",
        -            "Noto Sans Ol Chiki",
        -            "Noto Sans Old Hungarian",
        -            "Noto Sans Old Italic",
        -            "Noto Sans Old North Arabian",
        -            "Noto Sans Old Permic",
        -            "Noto Sans Old Persian",
        -            "Noto Sans Old Sogdian",
        -            "Noto Sans Old South Arabian",
        -            "Noto Sans Old Turkic",
        -            "Noto Sans Oriya",
        -            "Noto Sans Osage",
        -            "Noto Sans Osmanya",
        -            "Noto Sans Pahawh Hmong",
        -            "Noto Sans Palmyrene",
        -            "Noto Sans Pau Cin Hau",
        -            "Noto Sans PhagsPa",
        -            "Noto Sans Phoenician",
        -            "Noto Sans Psalter Pahlavi",
        -            "Noto Sans Rejang",
        -            "Noto Sans Runic",
        -            "Noto Sans SC",
        -            "Noto Sans Samaritan",
        -            "Noto Sans Saurashtra",
        -            "Noto Sans Sharada",
        -            "Noto Sans Shavian",
        -            "Noto Sans Siddham",
        -            "Noto Sans SignWriting",
        -            "Noto Sans Sinhala",
        -            "Noto Sans Sogdian",
        -            "Noto Sans Sora Sompeng",
        -            "Noto Sans Soyombo",
        -            "Noto Sans Sundanese",
        -            "Noto Sans Sunuwar",
        -            "Noto Sans Syloti Nagri",
        -            "Noto Sans Symbols",
        -            "Noto Sans Symbols 2",
        -            "Noto Sans Syriac",
        -            "Noto Sans Syriac Eastern",
        -            "Noto Sans Syriac Western",
        -            "Noto Sans TC",
        -            "Noto Sans Tagalog",
        -            "Noto Sans Tagbanwa",
        -            "Noto Sans Tai Le",
        -            "Noto Sans Tai Tham",
        -            "Noto Sans Tai Viet",
        -            "Noto Sans Takri",
        -            "Noto Sans Tamil",
        -            "Noto Sans Tamil Supplement",
        -            "Noto Sans Tangsa",
        -            "Noto Sans Telugu",
        -            "Noto Sans Thaana",
        -            "Noto Sans Thai",
        -            "Noto Sans Thai Looped",
        -            "Noto Sans Tifinagh",
        -            "Noto Sans Tirhuta",
        -            "Noto Sans Ugaritic",
        -            "Noto Sans Vai",
        -            "Noto Sans Vithkuqi",
        -            "Noto Sans Wancho",
        -            "Noto Sans Warang Citi",
        -            "Noto Sans Yi",
        -            "Noto Sans Zanabazar Square",
        -            "Noto Serif",
        -            "Noto Serif Ahom",
        -            "Noto Serif Armenian",
        -            "Noto Serif Balinese",
        -            "Noto Serif Bengali",
        -            "Noto Serif Devanagari",
        -            "Noto Serif Display",
        -            "Noto Serif Dives Akuru",
        -            "Noto Serif Dogra",
        -            "Noto Serif Ethiopic",
        -            "Noto Serif Georgian",
        -            "Noto Serif Grantha",
        -            "Noto Serif Gujarati",
        -            "Noto Serif Gurmukhi",
        -            "Noto Serif HK",
        -            "Noto Serif Hebrew",
        -            "Noto Serif Hentaigana",
        -            "Noto Serif JP",
        -            "Noto Serif KR",
        -            "Noto Serif Kannada",
        -            "Noto Serif Khitan Small Script",
        -            "Noto Serif Khmer",
        -            "Noto Serif Khojki",
        -            "Noto Serif Lao",
        -            "Noto Serif Makasar",
        -            "Noto Serif Malayalam",
        -            "Noto Serif Myanmar",
        -            "Noto Serif NP Hmong",
        -            "Noto Serif Old Uyghur",
        -            "Noto Serif Oriya",
        -            "Noto Serif Ottoman Siyaq",
        -            "Noto Serif SC",
        -            "Noto Serif Sinhala",
        -            "Noto Serif TC",
        -            "Noto Serif Tamil",
        -            "Noto Serif Tangut",
        -            "Noto Serif Telugu",
        -            "Noto Serif Thai",
        -            "Noto Serif Tibetan",
        -            "Noto Serif Todhri",
        -            "Noto Serif Toto",
        -            "Noto Serif Vithkuqi",
        -            "Noto Serif Yezidi",
        -            "Noto Traditional Nushu",
        -            "Noto Znamenny Musical Notation",
        -            "Nova Cut",
        -            "Nova Flat",
        -            "Nova Mono",
        -            "Nova Oval",
        -            "Nova Round",
        -            "Nova Script",
        -            "Nova Slim",
        -            "Nova Square",
        -            "Numans",
        -            "Nunito",
        -            "Nunito Sans",
        -            "Nuosu SIL",
        -            "Odibee Sans",
        -            "Odor Mean Chey",
        -            "Offside",
        -            "Oi",
        -            "Ojuju",
        -            "Old Standard TT",
        -            "Oldenburg",
        -            "Ole",
        -            "Oleo Script",
        -            "Oleo Script Swash Caps",
        -            "Onest",
        -            "Oooh Baby",
        -            "Open Sans",
        -            "Oranienbaum",
        -            "Orbit",
        -            "Orbitron",
        -            "Oregano",
        -            "Orelega One",
        -            "Orienta",
        -            "Original Surfer",
        -            "Oswald",
        -            "Outfit",
        -            "Over the Rainbow",
        -            "Overlock",
        -            "Overlock SC",
        -            "Overpass",
        -            "Overpass Mono",
        -            "Ovo",
        -            "Oxanium",
        -            "Oxygen",
        -            "Oxygen Mono",
        -            "PT Mono",
        -            "PT Sans",
        -            "PT Sans Caption",
        -            "PT Sans Narrow",
        -            "PT Serif",
        -            "PT Serif Caption",
        -            "Pacifico",
        -            "Padauk",
        -            "Padyakke Expanded One",
        -            "Palanquin",
        -            "Palanquin Dark",
        -            "Palette Mosaic",
        -            "Pangolin",
        -            "Paprika",
        -            "Parastoo",
        -            "Parisienne",
        -            "Parkinsans",
        -            "Passero One",
        -            "Passion One",
        -            "Passions Conflict",
        -            "Pathway Extreme",
        -            "Pathway Gothic One",
        -            "Patrick Hand",
        -            "Patrick Hand SC",
        -            "Pattaya",
        -            "Patua One",
        -            "Pavanam",
        -            "Paytone One",
        -            "Peddana",
        -            "Peralta",
        -            "Permanent Marker",
        -            "Petemoss",
        -            "Petit Formal Script",
        -            "Petrona",
        -            "Phetsarath",
        -            "Philosopher",
        -            "Phudu",
        -            "Piazzolla",
        -            "Piedra",
        -            "Pinyon Script",
        -            "Pirata One",
        -            "Pixelify Sans",
        -            "Plaster",
        -            "Platypi",
        -            "Play",
        -            "Playball",
        -            "Playfair",
        -            "Playfair Display",
        -            "Playfair Display SC",
        -            "Playpen Sans",
        -            "Playpen Sans Arabic",
        -            "Playpen Sans Deva",
        -            "Playpen Sans Hebrew",
        -            "Playpen Sans Thai",
        -            "Playwrite AR",
        -            "Playwrite AR Guides",
        -            "Playwrite AT",
        -            "Playwrite AT Guides",
        -            "Playwrite AU NSW",
        -            "Playwrite AU NSW Guides",
        -            "Playwrite AU QLD",
        -            "Playwrite AU QLD Guides",
        -            "Playwrite AU SA",
        -            "Playwrite AU SA Guides",
        -            "Playwrite AU TAS",
        -            "Playwrite AU TAS Guides",
        -            "Playwrite AU VIC",
        -            "Playwrite AU VIC Guides",
        -            "Playwrite BE VLG",
        -            "Playwrite BE VLG Guides",
        -            "Playwrite BE WAL",
        -            "Playwrite BE WAL Guides",
        -            "Playwrite BR",
        -            "Playwrite BR Guides",
        -            "Playwrite CA",
        -            "Playwrite CA Guides",
        -            "Playwrite CL",
        -            "Playwrite CL Guides",
        -            "Playwrite CO",
        -            "Playwrite CO Guides",
        -            "Playwrite CU",
        -            "Playwrite CU Guides",
        -            "Playwrite CZ",
        -            "Playwrite CZ Guides",
        -            "Playwrite DE Grund",
        -            "Playwrite DE Grund Guides",
        -            "Playwrite DE LA",
        -            "Playwrite DE LA Guides",
        -            "Playwrite DE SAS",
        -            "Playwrite DE SAS Guides",
        -            "Playwrite DE VA",
        -            "Playwrite DE VA Guides",
        -            "Playwrite DK Loopet",
        -            "Playwrite DK Loopet Guides",
        -            "Playwrite DK Uloopet",
        -            "Playwrite DK Uloopet Guides",
        -            "Playwrite ES",
        -            "Playwrite ES Deco",
        -            "Playwrite ES Deco Guides",
        -            "Playwrite ES Guides",
        -            "Playwrite FR Moderne",
        -            "Playwrite FR Moderne Guides",
        -            "Playwrite FR Trad",
        -            "Playwrite FR Trad Guides",
        -            "Playwrite GB J",
        -            "Playwrite GB J Guides",
        -            "Playwrite GB S",
        -            "Playwrite GB S Guides",
        -            "Playwrite HR",
        -            "Playwrite HR Guides",
        -            "Playwrite HR Lijeva",
        -            "Playwrite HR Lijeva Guides",
        -            "Playwrite HU",
        -            "Playwrite HU Guides",
        -            "Playwrite ID",
        -            "Playwrite ID Guides",
        -            "Playwrite IE",
        -            "Playwrite IE Guides",
        -            "Playwrite IN",
        -            "Playwrite IN Guides",
        -            "Playwrite IS",
        -            "Playwrite IS Guides",
        -            "Playwrite IT Moderna",
        -            "Playwrite IT Moderna Guides",
        -            "Playwrite IT Trad",
        -            "Playwrite IT Trad Guides",
        -            "Playwrite MX",
        -            "Playwrite MX Guides",
        -            "Playwrite NG Modern",
        -            "Playwrite NG Modern Guides",
        -            "Playwrite NL",
        -            "Playwrite NL Guides",
        -            "Playwrite NO",
        -            "Playwrite NO Guides",
        -            "Playwrite NZ",
        -            "Playwrite NZ Basic",
        -            "Playwrite NZ Basic Guides",
        -            "Playwrite NZ Guides",
        -            "Playwrite PE",
        -            "Playwrite PE Guides",
        -            "Playwrite PL",
        -            "Playwrite PL Guides",
        -            "Playwrite PT",
        -            "Playwrite PT Guides",
        -            "Playwrite RO",
        -            "Playwrite RO Guides",
        -            "Playwrite SK",
        -            "Playwrite SK Guides",
        -            "Playwrite TZ",
        -            "Playwrite TZ Guides",
        -            "Playwrite US Modern",
        -            "Playwrite US Modern Guides",
        -            "Playwrite US Trad",
        -            "Playwrite US Trad Guides",
        -            "Playwrite VN",
        -            "Playwrite VN Guides",
        -            "Playwrite ZA",
        -            "Playwrite ZA Guides",
        -            "Pliant",
        -            "Plus Jakarta Sans",
        -            "Pochaevsk",
        -            "Podkova",
        -            "Poetsen One",
        -            "Poiret One",
        -            "Poller One",
        -            "Poltawski Nowy",
        -            "Poly",
        -            "Pompiere",
        -            "Ponnala",
        -            "Ponomar",
        -            "Pontano Sans",
        -            "Poor Story",
        -            "Poppins",
        -            "Port Lligat Sans",
        -            "Port Lligat Slab",
        -            "Potta One",
        -            "Pragati Narrow",
        -            "Praise",
        -            "Prata",
        -            "Preahvihear",
        -            "Press Start 2P",
        -            "Pridi",
        -            "Princess Sofia",
        -            "Prociono",
        -            "Prompt",
        -            "Prosto One",
        -            "Protest Guerrilla",
        -            "Protest Revolution",
        -            "Protest Riot",
        -            "Protest Strike",
        -            "Proza Libre",
        -            "Public Sans",
        -            "Puppies Play",
        -            "Puritan",
        -            "Purple Purse",
        -            "Qahiri",
        -            "Quando",
        -            "Quantico",
        -            "Quattrocento",
        -            "Quattrocento Sans",
        -            "Questrial",
        -            "Quicksand",
        -            "Quintessential",
        -            "Qwigley",
        -            "Qwitcher Grypen",
        -            "REM",
        -            "Racing Sans One",
        -            "Radio Canada",
        -            "Radio Canada Big",
        -            "Radley",
        -            "Rajdhani",
        -            "Rakkas",
        -            "Raleway",
        -            "Raleway Dots",
        -            "Ramabhadra",
        -            "Ramaraja",
        -            "Rambla",
        -            "Rammetto One",
        -            "Rampart One",
        -            "Ramsina",
        -            "Ranchers",
        -            "Rancho",
        -            "Ranga",
        -            "Rasa",
        -            "Rationale",
        -            "Ravi Prakash",
        -            "Readex Pro",
        -            "Recursive",
        -            "Red Hat Display",
        -            "Red Hat Mono",
        -            "Red Hat Text",
        -            "Red Rose",
        -            "Redacted",
        -            "Redacted Script",
        -            "Reddit Mono",
        -            "Reddit Sans",
        -            "Reddit Sans Condensed",
        -            "Redressed",
        -            "Reem Kufi",
        -            "Reem Kufi Fun",
        -            "Reem Kufi Ink",
        -            "Reenie Beanie",
        -            "Reggae One",
        -            "Rethink Sans",
        -            "Revalia",
        -            "Rhodium Libre",
        -            "Ribeye",
        -            "Ribeye Marrow",
        -            "Righteous",
        -            "Risque",
        -            "Road Rage",
        -            "Roboto",
        -            "Roboto Condensed",
        -            "Roboto Flex",
        -            "Roboto Mono",
        -            "Roboto Serif",
        -            "Roboto Slab",
        -            "Rochester",
        -            "Rock 3D",
        -            "Rock Salt",
        -            "RocknRoll One",
        -            "Rokkitt",
        -            "Romanesco",
        -            "Ropa Sans",
        -            "Rosario",
        -            "Rosarivo",
        -            "Rouge Script",
        -            "Rowdies",
        -            "Rozha One",
        -            "Rubik",
        -            "Rubik 80s Fade",
        -            "Rubik Beastly",
        -            "Rubik Broken Fax",
        -            "Rubik Bubbles",
        -            "Rubik Burned",
        -            "Rubik Dirt",
        -            "Rubik Distressed",
        -            "Rubik Doodle Shadow",
        -            "Rubik Doodle Triangles",
        -            "Rubik Gemstones",
        -            "Rubik Glitch",
        -            "Rubik Glitch Pop",
        -            "Rubik Iso",
        -            "Rubik Lines",
        -            "Rubik Maps",
        -            "Rubik Marker Hatch",
        -            "Rubik Maze",
        -            "Rubik Microbe",
        -            "Rubik Mono One",
        -            "Rubik Moonrocks",
        -            "Rubik Pixels",
        -            "Rubik Puddles",
        -            "Rubik Scribble",
        -            "Rubik Spray Paint",
        -            "Rubik Storm",
        -            "Rubik Vinyl",
        -            "Rubik Wet Paint",
        -            "Ruda",
        -            "Rufina",
        -            "Ruge Boogie",
        -            "Ruluko",
        -            "Rum Raisin",
        -            "Ruslan Display",
        -            "Russo One",
        -            "Ruthie",
        -            "Ruwudu",
        -            "Rye",
        -            "SN Pro",
        -            "STIX Two Math",
        -            "STIX Two Text",
        -            "SUSE",
        -            "SUSE Mono",
        -            "Sacramento",
        -            "Sahitya",
        -            "Sail",
        -            "Saira",
        -            "Saira Condensed",
        -            "Saira Extra Condensed",
        -            "Saira Semi Condensed",
        -            "Saira Stencil",
        -            "Salsa",
        -            "Sanchez",
        -            "Sancreek",
        -            "Sankofa Display",
        -            "Sansation",
        -            "Sansita",
        -            "Sansita Swashed",
        -            "Sarabun",
        -            "Sarala",
        -            "Sarina",
        -            "Sarpanch",
        -            "Sassy Frass",
        -            "Satisfy",
        -            "Savate",
        -            "Sawarabi Gothic",
        -            "Sawarabi Mincho",
        -            "Scada",
        -            "Scheherazade New",
        -            "Schibsted Grotesk",
        -            "Schoolbell",
        -            "Science Gothic",
        -            "Scope One",
        -            "Seaweed Script",
        -            "Secular One",
        -            "Sedan",
        -            "Sedan SC",
        -            "Sedgwick Ave",
        -            "Sedgwick Ave Display",
        -            "Sekuya",
        -            "Sen",
        -            "Send Flowers",
        -            "Sevillana",
        -            "Seymour One",
        -            "Shadows Into Light",
        -            "Shadows Into Light Two",
        -            "Shafarik",
        -            "Shalimar",
        -            "Shantell Sans",
        -            "Shanti",
        -            "Share",
        -            "Share Tech",
        -            "Share Tech Mono",
        -            "Shippori Antique",
        -            "Shippori Antique B1",
        -            "Shippori Mincho",
        -            "Shippori Mincho B1",
        -            "Shizuru",
        -            "Shojumaru",
        -            "Short Stack",
        -            "Shrikhand",
        -            "Siemreap",
        -            "Sigmar",
        -            "Sigmar One",
        -            "Signika",
        -            "Signika Negative",
        -            "Silkscreen",
        -            "Simonetta",
        -            "Single Day",
        -            "Sintony",
        -            "Sirin Stencil",
        -            "Sirivennela",
        -            "Six Caps",
        -            "Sixtyfour",
        -            "Sixtyfour Convergence",
        -            "Skranji",
        -            "Slabo 13px",
        -            "Slabo 27px",
        -            "Slackey",
        -            "Slackside One",
        -            "Smokum",
        -            "Smooch",
        -            "Smooch Sans",
        -            "Smythe",
        -            "Sniglet",
        -            "Snippet",
        -            "Snowburst One",
        -            "Sofadi One",
        -            "Sofia",
        -            "Sofia Sans",
        -            "Sofia Sans Condensed",
        -            "Sofia Sans Extra Condensed",
        -            "Sofia Sans Semi Condensed",
        -            "Solitreo",
        -            "Solway",
        -            "Sometype Mono",
        -            "Song Myung",
        -            "Sono",
        -            "Sonsie One",
        -            "Sora",
        -            "Sorts Mill Goudy",
        -            "Sour Gummy",
        -            "Source Code Pro",
        -            "Source Sans 3",
        -            "Source Serif 4",
        -            "Space Grotesk",
        -            "Space Mono",
        -            "Special Elite",
        -            "Special Gothic",
        -            "Special Gothic Condensed One",
        -            "Special Gothic Expanded One",
        -            "Spectral",
        -            "Spectral SC",
        -            "Spicy Rice",
        -            "Spinnaker",
        -            "Spirax",
        -            "Splash",
        -            "Spline Sans",
        -            "Spline Sans Mono",
        -            "Squada One",
        -            "Square Peg",
        -            "Sree Krushnadevaraya",
        -            "Sriracha",
        -            "Srisakdi",
        -            "Staatliches",
        -            "Stack Sans Headline",
        -            "Stack Sans Notch",
        -            "Stack Sans Text",
        -            "Stalemate",
        -            "Stalinist One",
        -            "Stardos Stencil",
        -            "Stick",
        -            "Stick No Bills",
        -            "Stint Ultra Condensed",
        -            "Stint Ultra Expanded",
        -            "Stoke",
        -            "Story Script",
        -            "Strait",
        -            "Strichpunkt Sans",
        -            "Style Script",
        -            "Stylish",
        -            "Sue Ellen Francisco",
        -            "Suez One",
        -            "Sulphur Point",
        -            "Sumana",
        -            "Sunflower",
        -            "Sunshiney",
        -            "Supermercado One",
        -            "Sura",
        -            "Suranna",
        -            "Suravaram",
        -            "Suwannaphum",
        -            "Swanky and Moo Moo",
        -            "Syncopate",
        -            "Syne",
        -            "Syne Mono",
        -            "Syne Tactile",
        -            "TASA Explorer",
        -            "TASA Orbiter",
        -            "Tac One",
        -            "Tagesschrift",
        -            "Tai Heritage Pro",
        -            "Tajawal",
        -            "Tangerine",
        -            "Tapestry",
        -            "Taprom",
        -            "Tauri",
        -            "Taviraj",
        -            "Teachers",
        -            "Teko",
        -            "Tektur",
        -            "Telex",
        -            "Tenali Ramakrishna",
        -            "Tenor Sans",
        -            "Text Me One",
        -            "Texturina",
        -            "Thasadith",
        -            "The Girl Next Door",
        -            "The Nautigal",
        -            "Tienne",
        -            "TikTok Sans",
        -            "Tillana",
        -            "Tilt Neon",
        -            "Tilt Prism",
        -            "Tilt Warp",
        -            "Timmana",
        -            "Tinos",
        -            "Tiny5",
        -            "Tiro Bangla",
        -            "Tiro Devanagari Hindi",
        -            "Tiro Devanagari Marathi",
        -            "Tiro Devanagari Sanskrit",
        -            "Tiro Gurmukhi",
        -            "Tiro Kannada",
        -            "Tiro Tamil",
        -            "Tiro Telugu",
        -            "Tirra",
        -            "Titan One",
        -            "Titillium Web",
        -            "Tomorrow",
        -            "Tourney",
        -            "Trade Winds",
        -            "Train One",
        -            "Triodion",
        -            "Trirong",
        -            "Trispace",
        -            "Trocchi",
        -            "Trochut",
        -            "Truculenta",
        -            "Trykker",
        -            "Tsukimi Rounded",
        -            "Tuffy",
        -            "Tulpen One",
        -            "Turret Road",
        -            "Twinkle Star",
        -            "Ubuntu",
        -            "Ubuntu Condensed",
        -            "Ubuntu Mono",
        -            "Ubuntu Sans",
        -            "Ubuntu Sans Mono",
        -            "Uchen",
        -            "Ultra",
        -            "Unbounded",
        -            "Uncial Antiqua",
        -            "Underdog",
        -            "Unica One",
        -            "UnifrakturCook",
        -            "UnifrakturMaguntia",
        -            "Unkempt",
        -            "Unlock",
        -            "Unna",
        -            "UoqMunThenKhung",
        -            "Updock",
        -            "Urbanist",
        -            "VT323",
        -            "Vampiro One",
        -            "Varela",
        -            "Varela Round",
        -            "Varta",
        -            "Vast Shadow",
        -            "Vazirmatn",
        -            "Vend Sans",
        -            "Vesper Libre",
        -            "Viaoda Libre",
        -            "Vibes",
        -            "Vibur",
        -            "Victor Mono",
        -            "Vidaloka",
        -            "Viga",
        -            "Vina Sans",
        -            "Voces",
        -            "Volkhov",
        -            "Vollkorn",
        -            "Vollkorn SC",
        -            "Voltaire",
        -            "Vujahday Script",
        -            "WDXL Lubrifont JP N",
        -            "WDXL Lubrifont SC",
        -            "WDXL Lubrifont TC",
        -            "Waiting for the Sunrise",
        -            "Wallpoet",
        -            "Walter Turncoat",
        -            "Warnes",
        -            "Water Brush",
        -            "Waterfall",
        -            "Wavefont",
        -            "Wellfleet",
        -            "Wendy One",
        -            "Whisper",
        -            "WindSong",
        -            "Winky Rough",
        -            "Winky Sans",
        -            "Wire One",
        -            "Wittgenstein",
        -            "Wix Madefor Display",
        -            "Wix Madefor Text",
        -            "Work Sans",
        -            "Workbench",
        -            "Xanh Mono",
        -            "Yaldevi",
        -            "Yanone Kaffeesatz",
        -            "Yantramanav",
        -            "Yarndings 12",
        -            "Yarndings 12 Charted",
        -            "Yarndings 20",
        -            "Yarndings 20 Charted",
        -            "Yatra One",
        -            "Yellowtail",
        -            "Yeon Sung",
        -            "Yeseva One",
        -            "Yesteryear",
        -            "Yomogi",
        -            "Young Serif",
        -            "Yrsa",
        -            "Ysabeau",
        -            "Ysabeau Infant",
        -            "Ysabeau Office",
        -            "Ysabeau SC",
        -            "Yuji Boku",
        -            "Yuji Hentaigana Akari",
        -            "Yuji Hentaigana Akebono",
        -            "Yuji Mai",
        -            "Yuji Syuku",
        -            "Yusei Magic",
        -            "Yuyu",
        -            "Yuyu Short",
        -            "ZCOOL KuaiLe",
        -            "ZCOOL QingKe HuangYou",
        -            "ZCOOL XiaoWei",
        -            "Zain",
        -            "Zalando Sans",
        -            "Zalando Sans Expanded",
        -            "Zalando Sans SemiExpanded",
        -            "Zen Antique",
        -            "Zen Antique Soft",
        -            "Zen Dots",
        -            "Zen Kaku Gothic Antique",
        -            "Zen Kaku Gothic New",
        -            "Zen Kurenaido",
        -            "Zen Loop",
        -            "Zen Maru Gothic",
        -            "Zen Old Mincho",
        -            "Zen Tokyo Zoo",
        -            "Zeyada",
        -            "Zhi Mang Xing",
        -            "Zilla Slab",
        -            "Zilla Slab Highlight"
        -          ],
        -          "type": "string"
        -        },
        -        "titleFontSize": {
        -          "type": "number"
        -        },
        -        "titleFontWeight": {
        -          "type": "string"
        -        },
        -        "titleSubtitleGap": {
        -          "type": "number"
        -        }
        -      },
        -      "type": "object"
        -    },
        -    "title": {
        -      "type": "string"
        -    },
        -    "version": {
        -      "const": "2026-03-20",
        -      "type": "string"
        -    },
        -    "width": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "x": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "display": {
        -          "default": true,
        -          "type": "boolean"
        -        },
        -        "domain": {
        -          "anyOf": [
        -            {
        -              "items": [
        -                {
        -                  "type": "number"
        -                },
        -                {
        -                  "type": "number"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            }
        -          ]
        -        },
        -        "label": {
        -          "type": "string"
        -        },
        -        "nice": {
        -          "type": "boolean"
        -        },
        -        "tickFormat": {
        -          "type": "string"
        -        },
        -        "type": {
        -          "enum": [
        -            "linear",
        -            "log",
        -            "utc",
        -            "band"
        -          ],
        -          "type": "string"
        -        }
        -      },
        -      "type": "object"
        -    },
        -    "y": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "display": {
        -          "default": true,
        -          "type": "boolean"
        -        },
        -        "domain": {
        -          "anyOf": [
        -            {
        -              "items": [
        -                {
        -                  "type": "number"
        -                },
        -                {
        -                  "type": "number"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            }
        -          ]
        -        },
        -        "label": {
        -          "type": "string"
        -        },
        -        "nice": {
        -          "type": "boolean"
        -        },
        -        "tickFormat": {
        -          "type": "string"
        -        },
        -        "type": {
        -          "enum": [
        -            "linear",
        -            "log",
        -            "utc",
        -            "band"
        -          ],
        -          "type": "string"
        -        }
        -      },
        -      "type": "object"
        -    }
        -  },
        -  "required": [
        -    "version",
        -    "format",
        -    "marks"
        -  ],
        -  "title": "Szum Chart Configuration",
        -  "type": "object"
        -}
      • addedOutput schema / properties / validation / properties / suggestedDocument
        Added value: +{
        +  "additionalProperties": false,
        +  "properties": {
        +    "config": {
        +      "anyOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/PositionableBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SimpleBarValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/RangeCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/RangeCategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/RangeValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/StackedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/StackedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "totals": {
        +              "type": "boolean"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "totals",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/GroupedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/PositionableBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/BarSpacingPreference"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "arrangement",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/NormalizedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "arrangement",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/PositionableBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SimpleBarValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/RangeCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/RangeCategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/RangeValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/StackedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/StackedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "totals": {
        +              "type": "boolean"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "totals",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/GroupedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/PositionableBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/BarSpacingPreference"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "arrangement",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/NormalizedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "arrangement",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/CategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/LineLabels"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "points": {
        +              "anyOf": [
        +                {
        +                  "type": "boolean"
        +                },
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "fill": {
        +                      "$ref": "#/$defs/Color"
        +                    },
        +                    "radius": {
        +                      "exclusiveMinimum": 0,
        +                      "type": "number"
        +                    },
        +                    "series": {
        +                      "items": {
        +                        "type": [
        +                          "string",
        +                          "number"
        +                        ]
        +                      },
        +                      "minItems": 1,
        +                      "type": "array",
        +                      "uniqueItems": true
        +                    },
        +                    "stroke": {
        +                      "$ref": "#/$defs/Stroke"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/LineStroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "line",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "oneOf": [
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "aggregation": {
        +                      "enum": [
        +                        "sum",
        +                        "average",
        +                        "min",
        +                        "max",
        +                        "median"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "field": {
        +                      "minLength": 1,
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "scale": {
        +                      "$ref": "#/$defs/ContinuousScale"
        +                    },
        +                    "series": {
        +                      "$ref": "#/$defs/SeriesRole"
        +                    },
        +                    "type": {
        +                      "const": "long",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type",
        +                    "field"
        +                  ],
        +                  "title": "LineLongValuesRole",
        +                  "type": "object"
        +                },
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "aggregation": {
        +                      "enum": [
        +                        "sum",
        +                        "average",
        +                        "min",
        +                        "max",
        +                        "median"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "fields": {
        +                      "items": {
        +                        "minLength": 1,
        +                        "type": "string"
        +                      },
        +                      "minItems": 1,
        +                      "type": "array",
        +                      "uniqueItems": true
        +                    },
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "scale": {
        +                      "$ref": "#/$defs/ContinuousScale"
        +                    },
        +                    "type": {
        +                      "const": "wide",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type",
        +                    "fields"
        +                  ],
        +                  "title": "LineWideValuesRole",
        +                  "type": "object"
        +                },
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "scale": {
        +                      "oneOf": [
        +                        {
        +                          "$ref": "#/$defs/LinearScale"
        +                        },
        +                        {
        +                          "$ref": "#/$defs/LogScale"
        +                        }
        +                      ],
        +                      "title": "QuantitativeScale"
        +                    },
        +                    "series": {
        +                      "$ref": "#/$defs/SeriesRole"
        +                    },
        +                    "type": {
        +                      "const": "count",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type"
        +                  ],
        +                  "title": "CountValuesRole",
        +                  "type": "object"
        +                }
        +              ],
        +              "title": "LineValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "category",
        +            "values"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "type": {
        +                  "const": "stacked",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type"
        +              ],
        +              "type": "object"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/CategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/AreaLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "area",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "anyOf": [
        +                {
        +                  "oneOf": [
        +                    {
        +                      "additionalProperties": false,
        +                      "properties": {
        +                        "aggregation": {
        +                          "enum": [
        +                            "sum",
        +                            "average",
        +                            "min",
        +                            "max",
        +                            "median"
        +                          ],
        +                          "type": "string"
        +                        },
        +                        "field": {
        +                          "minLength": 1,
        +                          "type": "string"
        +                        },
        +                        "format": {
        +                          "type": "string"
        +                        },
        +                        "scale": {
        +                          "$ref": "#/$defs/LinearScale"
        +                        },
        +                        "series": {
        +                          "$ref": "#/$defs/SeriesRole"
        +                        },
        +                        "type": {
        +                          "const": "long",
        +                          "type": "string"
        +                        }
        +                      },
        +                      "required": [
        +                        "type",
        +                        "field"
        +                      ],
        +                      "title": "LinearLongValuesRole",
        +                      "type": "object"
        +                    },
        +                    {
        +                      "additionalProperties": false,
        +                      "properties": {
        +                        "aggregation": {
        +                          "enum": [
        +                            "sum",
        +                            "average",
        +                            "min",
        +                            "max",
        +                            "median"
        +                          ],
        +                          "type": "string"
        +                        },
        +                        "fields": {
        +                          "items": {
        +                            "minLength": 1,
        +                            "type": "string"
        +                          },
        +                          "minItems": 1,
        +                          "type": "array",
        +                          "uniqueItems": true
        +                        },
        +                        "format": {
        +                          "type": "string"
        +                        },
        +                        "scale": {
        +                          "$ref": "#/$defs/LinearScale"
        +                        },
        +                        "type": {
        +                          "const": "wide",
        +                          "type": "string"
        +                        }
        +                      },
        +                      "required": [
        +                        "type",
        +                        "fields"
        +                      ],
        +                      "title": "LinearWideValuesRole",
        +                      "type": "object"
        +                    },
        +                    {
        +                      "additionalProperties": false,
        +                      "properties": {
        +                        "format": {
        +                          "type": "string"
        +                        },
        +                        "scale": {
        +                          "$ref": "#/$defs/LinearScale"
        +                        },
        +                        "series": {
        +                          "$ref": "#/$defs/SeriesRole"
        +                        },
        +                        "type": {
        +                          "const": "count",
        +                          "type": "string"
        +                        }
        +                      },
        +                      "required": [
        +                        "type"
        +                      ],
        +                      "title": "LinearCountValuesRole",
        +                      "type": "object"
        +                    }
        +                  ],
        +                  "title": "LinearValuesRole"
        +                },
        +                {
        +                  "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +                }
        +              ],
        +              "title": "StackedLinearValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "category",
        +            "values"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/NormalizedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/CategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/AreaLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "area",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "category",
        +            "values",
        +            "arrangement"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/ScatterAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/ScatterColor"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "id": {
        +              "$ref": "#/$defs/FieldRole"
        +            },
        +            "interval": {
        +              "$ref": "#/$defs/ScatterInterval"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/ScatterLabels"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "radius": {
        +              "exclusiveMinimum": 0,
        +              "type": "number"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/ScatterReferences"
        +            },
        +            "size": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "field": {
        +                  "minLength": 1,
        +                  "type": "string"
        +                },
        +                "format": {
        +                  "type": "string"
        +                },
        +                "legend": {
        +                  "$ref": "#/$defs/LegendOptions"
        +                }
        +              },
        +              "required": [
        +                "field"
        +              ],
        +              "title": "SizeEncoding",
        +              "type": "object"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "scatter",
        +              "type": "string"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            },
        +            "x": {
        +              "$ref": "#/$defs/ScatterRole"
        +            },
        +            "xAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "y": {
        +              "$ref": "#/$defs/ScatterRole"
        +            },
        +            "yAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "x",
        +            "y"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/ScatterAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/ScatterColor"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "id": {
        +              "$ref": "#/$defs/FieldRole"
        +            },
        +            "interval": {
        +              "$ref": "#/$defs/ScatterInterval"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/ScatterLabels"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/ScatterReferences"
        +            },
        +            "size": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "field": {
        +                  "minLength": 1,
        +                  "type": "string"
        +                },
        +                "format": {
        +                  "type": "string"
        +                },
        +                "legend": {
        +                  "$ref": "#/$defs/LegendOptions"
        +                },
        +                "range": {
        +                  "items": [
        +                    {
        +                      "exclusiveMinimum": 0,
        +                      "type": "number"
        +                    },
        +                    {
        +                      "exclusiveMinimum": 0,
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                }
        +              },
        +              "required": [
        +                "field",
        +                "range"
        +              ],
        +              "title": "RangedSizeEncoding",
        +              "type": "object"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "scatter",
        +              "type": "string"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            },
        +            "x": {
        +              "$ref": "#/$defs/ScatterRole"
        +            },
        +            "xAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "y": {
        +              "$ref": "#/$defs/ScatterRole"
        +            },
        +            "yAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "x",
        +            "y",
        +            "size"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "items": {
        +                "additionalProperties": false,
        +                "properties": {
        +                  "align": {
        +                    "enum": [
        +                      "start",
        +                      "center",
        +                      "end"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "anchor": {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "category": {
        +                        "type": [
        +                          "string",
        +                          "number"
        +                        ]
        +                      },
        +                      "type": {
        +                        "const": "datum",
        +                        "type": "string"
        +                      }
        +                    },
        +                    "required": [
        +                      "type",
        +                      "category"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  "boxAnchor": {
        +                    "$ref": "#/$defs/AnnotationBoxAnchor"
        +                  },
        +                  "connector": {
        +                    "enum": [
        +                      "none",
        +                      "line",
        +                      "arrow"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "offset": {
        +                    "$ref": "#/$defs/AnnotationOffset"
        +                  },
        +                  "placement": {
        +                    "$ref": "#/$defs/AnnotationPlacement"
        +                  },
        +                  "reserveSpace": {
        +                    "$ref": "#/$defs/ReserveSpace"
        +                  },
        +                  "style": {
        +                    "$ref": "#/$defs/AnnotationTextStyle"
        +                  },
        +                  "text": {
        +                    "type": "string"
        +                  },
        +                  "visible": {
        +                    "type": "boolean"
        +                  },
        +                  "width": {
        +                    "anyOf": [
        +                      {
        +                        "exclusiveMinimum": 0,
        +                        "type": "number"
        +                      },
        +                      {
        +                        "const": "shape",
        +                        "type": "string"
        +                      }
        +                    ]
        +                  }
        +                },
        +                "required": [
        +                  "text",
        +                  "anchor"
        +                ],
        +                "title": "PieAnnotation",
        +                "type": "object"
        +              },
        +              "minItems": 1,
        +              "title": "PieAnnotations",
        +              "type": "array"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "field": {
        +                  "minLength": 1,
        +                  "type": "string"
        +                },
        +                "format": {
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "field"
        +              ],
        +              "type": "object"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "innerRadius": {
        +              "exclusiveMaximum": 1,
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "labels": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "content": {
        +                  "items": {
        +                    "enum": [
        +                      "category",
        +                      "value",
        +                      "percent"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "minItems": 1,
        +                  "type": "array",
        +                  "uniqueItems": true
        +                },
        +                "position": {
        +                  "enum": [
        +                    "auto",
        +                    "inside",
        +                    "outside"
        +                  ],
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "content"
        +              ],
        +              "type": "object"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "pie",
        +              "type": "string"
        +            },
        +            "values": {
        +              "oneOf": [
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "aggregation": {
        +                      "enum": [
        +                        "sum",
        +                        "average",
        +                        "min",
        +                        "max",
        +                        "median"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "field": {
        +                      "minLength": 1,
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "percentFormat": {
        +                      "type": "string"
        +                    },
        +                    "type": {
        +                      "const": "long",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type",
        +                    "field"
        +                  ],
        +                  "type": "object"
        +                },
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "percentFormat": {
        +                      "type": "string"
        +                    },
        +                    "type": {
        +                      "const": "count",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type"
        +                  ],
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "category",
        +            "values"
        +          ],
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "data": {
        +      "items": {
        +        "additionalProperties": {
        +          "type": [
        +            "string",
        +            "number",
        +            "null"
        +          ]
        +        },
        +        "propertyNames": {
        +          "type": "string"
        +        },
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "output": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "format": {
        +              "const": "svg",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "format"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "format": {
        +              "const": "png",
        +              "type": "string"
        +            },
        +            "scale": {
        +              "anyOf": [
        +                {
        +                  "const": 1,
        +                  "type": "number"
        +                },
        +                {
        +                  "const": 2,
        +                  "type": "number"
        +                },
        +                {
        +                  "const": 3,
        +                  "type": "number"
        +                },
        +                {
        +                  "const": 4,
        +                  "type": "number"
        +                }
        +              ]
        +            }
        +          },
        +          "required": [
        +            "format"
        +          ],
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "presentation": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "background": {
        +              "enum": [
        +                "opaque",
        +                "transparent"
        +              ],
        +              "type": "string"
        +            },
        +            "colorScheme": {
        +              "enum": [
        +                "light",
        +                "dark"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "colorScheme",
        +            "background"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "background": {
        +              "enum": [
        +                "opaque",
        +                "transparent"
        +              ],
        +              "type": "string"
        +            },
        +            "colorScheme": {
        +              "const": "system",
        +              "type": "string"
        +            },
        +            "systemFallback": {
        +              "enum": [
        +                "light",
        +                "dark"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "colorScheme",
        +            "systemFallback",
        +            "background"
        +          ],
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "size": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "height": {
        +              "maximum": 4096,
        +              "minimum": 1,
        +              "type": "integer"
        +            },
        +            "type": {
        +              "const": "canvas",
        +              "type": "string"
        +            },
        +            "width": {
        +              "maximum": 4096,
        +              "minimum": 1,
        +              "type": "integer"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "width",
        +            "height"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "height": {
        +              "maximum": 4096,
        +              "minimum": 1,
        +              "type": "integer"
        +            },
        +            "margin": {
        +              "additionalProperties": false,
        +              "minProperties": 1,
        +              "properties": {
        +                "bottom": {
        +                  "minimum": 0,
        +                  "type": "number"
        +                },
        +                "left": {
        +                  "minimum": 0,
        +                  "type": "number"
        +                },
        +                "right": {
        +                  "minimum": 0,
        +                  "type": "number"
        +                },
        +                "top": {
        +                  "minimum": 0,
        +                  "type": "number"
        +                }
        +              },
        +              "title": "Margin",
        +              "type": "object"
        +            },
        +            "type": {
        +              "const": "plot",
        +              "type": "string"
        +            },
        +            "width": {
        +              "maximum": 4096,
        +              "minimum": 1,
        +              "type": "integer"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "width",
        +            "height"
        +          ],
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "version": {
        +      "const": "2026-09-26",
        +      "type": "string"
        +    }
        +  },
        +  "required": [
        +    "version",
        +    "config",
        +    "data"
        +  ],
        +  "type": "object"
        +}
      • changedOutput schema / properties / validation / required
        Previous value: -[
        -  "valid",
        -  "message",
        -  "errors",
        -  "diagnostics"
        -]New value: +[
        +  "valid",
        +  "diagnostics"
        +]
      • changedOutput schema / required
        Previous value: -[
        -  "view",
        -  "id",
        -  "source",
        -  "title",
        -  "createdAt",
        -  "updatedAt",
        -  "sizeBytes",
        -  "publishedAt",
        -  "imageUrl",
        -  "embedUrl",
        -  "configUrl",
        -  "editUrl",
        -  "manageUrl",
        -  "validation"
        -]New value: +[
        +  "view",
        +  "id",
        +  "source",
        +  "title",
        +  "createdAt",
        +  "updatedAt",
        +  "sizeBytes",
        +  "publishedAt",
        +  "imageUrl",
        +  "embedUrl",
        +  "documentUrl",
        +  "editUrl",
        +  "manageUrl",
        +  "validation"
        +]
    • Changedvalidate_chart15 fields changed
      • addedInput schema / properties / chart
        Added value: +{
        +  "description": "Complete current ChartDocument JSON with version, config, and data, plus optional presentation, size, and output. Use the same document for validation, rendering, and saving; version must match config.version. Semantic field roles must match row keys. Chronological annual values use YYYY strings on an explicit UTC scale. Column and bar charts with long, wide, or count values, and all area charts, use linear value scales. Their inferred domains include zero, while an explicit domain excluding zero produces a warning. Base-10 log roles and explicit log domains require positive finite values; use line, scatter, or ranged columns and bars.",
        +  "type": "string"
        +}
      • removedInput schema / properties / config
        Removed value: -{
        -  "description": "Complete chart config JSON. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Bar and area value axes stay linear and include zero. Explicit base-10 log scales require positive finite values and domains; use line or dot. Configure scales with top-level x/y; hide with display: false. Put shared data at chart level; use mark data for distinct rows. When rows share a bar position, map a series field to fill or stroke before setting group or aggregate.",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "config"
        -]New value: +[
        +  "chart"
        +]
      • addedOutput schema / $defs
        Added value: +{
        +  "AnnotationBoxAnchor": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "x": {
        +        "enum": [
        +          "start",
        +          "center",
        +          "end"
        +        ],
        +        "type": "string"
        +      },
        +      "y": {
        +        "enum": [
        +          "top",
        +          "middle",
        +          "bottom"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "x",
        +      "y"
        +    ],
        +    "title": "AnnotationBoxAnchor",
        +    "type": "object"
        +  },
        +  "AnnotationOffset": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "x": {
        +        "type": "number"
        +      },
        +      "y": {
        +        "type": "number"
        +      }
        +    },
        +    "title": "AnnotationOffset",
        +    "type": "object"
        +  },
        +  "AnnotationPlacement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "align": {
        +        "enum": [
        +          "start",
        +          "center",
        +          "end"
        +        ],
        +        "type": "string"
        +      },
        +      "gap": {
        +        "minimum": 0,
        +        "type": "number"
        +      },
        +      "side": {
        +        "enum": [
        +          "above",
        +          "right",
        +          "below",
        +          "left"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "side"
        +    ],
        +    "title": "AnnotationPlacement",
        +    "type": "object"
        +  },
        +  "AnnotationTextStyle": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "background": {
        +        "type": "boolean"
        +      },
        +      "color": {
        +        "$ref": "#/$defs/Color"
        +      },
        +      "fontSize": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      },
        +      "fontWeight": {
        +        "anyOf": [
        +          {
        +            "const": 100,
        +            "type": "number"
        +          },
        +          {
        +            "const": 200,
        +            "type": "number"
        +          },
        +          {
        +            "const": 300,
        +            "type": "number"
        +          },
        +          {
        +            "const": 400,
        +            "type": "number"
        +          },
        +          {
        +            "const": 500,
        +            "type": "number"
        +          },
        +          {
        +            "const": 600,
        +            "type": "number"
        +          },
        +          {
        +            "const": 700,
        +            "type": "number"
        +          },
        +          {
        +            "const": 800,
        +            "type": "number"
        +          },
        +          {
        +            "const": 900,
        +            "type": "number"
        +          }
        +        ]
        +      }
        +    },
        +    "title": "AnnotationTextStyle",
        +    "type": "object"
        +  },
        +  "AreaLabels": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "points": {
        +        "$ref": "#/$defs/ConnectedPointLabels"
        +      },
        +      "series": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "content": {
        +            "items": {
        +              "enum": [
        +                "series",
        +                "value",
        +                "percent"
        +              ],
        +              "type": "string"
        +            },
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          }
        +        },
        +        "required": [
        +          "content"
        +        ],
        +        "type": "object"
        +      }
        +    },
        +    "title": "AreaLabels",
        +    "type": "object"
        +  },
        +  "AxisOptions": {
        +    "anyOf": [
        +      {
        +        "type": "boolean"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "grid": {
        +            "type": "boolean"
        +          },
        +          "line": {
        +            "type": "boolean"
        +          },
        +          "title": {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        },
        +        "type": "object"
        +      }
        +    ],
        +    "title": "AxisOptions"
        +  },
        +  "BandScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "band",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "BandScale",
        +    "type": "object"
        +  },
        +  "BarCategoryRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "oneOf": [
        +          {
        +            "$ref": "#/$defs/BandScale"
        +          },
        +          {
        +            "$ref": "#/$defs/UtcScale"
        +          }
        +        ],
        +        "title": "BarCategoryScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "BarCategoryRole",
        +    "type": "object"
        +  },
        +  "BarSpacingPreference": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "category": {
        +        "exclusiveMaximum": 1,
        +        "minimum": 0,
        +        "type": "number"
        +      },
        +      "series": {
        +        "exclusiveMaximum": 1,
        +        "minimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "BarSpacingPreference",
        +    "type": "object"
        +  },
        +  "CartesianAnnotations": {
        +    "items": {
        +      "additionalProperties": false,
        +      "properties": {
        +        "align": {
        +          "enum": [
        +            "start",
        +            "center",
        +            "end"
        +          ],
        +          "type": "string"
        +        },
        +        "anchor": {
        +          "oneOf": [
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "category": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "category",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "category"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "category": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "series": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "datum",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "category"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "category": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "coordinate",
        +                  "type": "string"
        +                },
        +                "value": {
        +                  "type": "number"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "category",
        +                "value"
        +              ],
        +              "type": "object"
        +            }
        +          ],
        +          "title": "CartesianAnnotationAnchor"
        +        },
        +        "boxAnchor": {
        +          "$ref": "#/$defs/AnnotationBoxAnchor"
        +        },
        +        "connector": {
        +          "enum": [
        +            "none",
        +            "line",
        +            "arrow"
        +          ],
        +          "type": "string"
        +        },
        +        "offset": {
        +          "$ref": "#/$defs/AnnotationOffset"
        +        },
        +        "placement": {
        +          "$ref": "#/$defs/AnnotationPlacement"
        +        },
        +        "reserveSpace": {
        +          "$ref": "#/$defs/ReserveSpace"
        +        },
        +        "style": {
        +          "$ref": "#/$defs/AnnotationTextStyle"
        +        },
        +        "text": {
        +          "type": "string"
        +        },
        +        "visible": {
        +          "type": "boolean"
        +        },
        +        "width": {
        +          "anyOf": [
        +            {
        +              "exclusiveMinimum": 0,
        +              "type": "number"
        +            },
        +            {
        +              "const": "shape",
        +              "type": "string"
        +            }
        +          ]
        +        }
        +      },
        +      "required": [
        +        "text",
        +        "anchor"
        +      ],
        +      "title": "CartesianAnnotation",
        +      "type": "object"
        +    },
        +    "minItems": 1,
        +    "title": "CartesianAnnotations",
        +    "type": "array"
        +  },
        +  "CategoricalColor": {
        +    "anyOf": [
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "$ref": "#/$defs/CategoricalColorMapping"
        +      }
        +    ],
        +    "title": "CategoricalColor"
        +  },
        +  "CategoricalColorMapping": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "domain": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "legend": {
        +        "$ref": "#/$defs/LegendOptions"
        +      },
        +      "range": {
        +        "$ref": "#/$defs/ColorRange"
        +      }
        +    },
        +    "title": "CategoricalColorMapping",
        +    "type": "object"
        +  },
        +  "CategoricalReferences": {
        +    "items": {
        +      "anyOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "const": "category",
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "value": {
        +              "type": [
        +                "string",
        +                "number"
        +              ]
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "value"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "value": {
        +              "type": "number"
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "value"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "statistic": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "basis": {
        +                  "enum": [
        +                    "values",
        +                    "categoryTotals"
        +                  ],
        +                  "type": "string"
        +                },
        +                "operation": {
        +                  "enum": [
        +                    "average",
        +                    "median",
        +                    "min",
        +                    "max"
        +                  ],
        +                  "type": "string"
        +                },
        +                "scope": {
        +                  "enum": [
        +                    "visible",
        +                    "all"
        +                  ],
        +                  "type": "string"
        +                },
        +                "series": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                }
        +              },
        +              "required": [
        +                "operation",
        +                "scope"
        +              ],
        +              "title": "CategoricalReferenceStatistic",
        +              "type": "object"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "statistic",
        +              "type": "string"
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "statistic"
        +          ],
        +          "type": "object"
        +        }
        +      ],
        +      "title": "CategoricalReference"
        +    },
        +    "minItems": 1,
        +    "title": "CategoricalReferences",
        +    "type": "array"
        +  },
        +  "CategoryOrder": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "direction": {
        +            "enum": [
        +              "ascending",
        +              "descending"
        +            ],
        +            "type": "string"
        +          },
        +          "type": {
        +            "enum": [
        +              "category",
        +              "value"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "direction"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "$ref": "#/$defs/ExplicitCategoryOrder"
        +      }
        +    ],
        +    "title": "CategoryOrder"
        +  },
        +  "CategoryRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/CategoryScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "CategoryRole",
        +    "type": "object"
        +  },
        +  "CategoryScale": {
        +    "oneOf": [
        +      {
        +        "$ref": "#/$defs/BandScale"
        +      },
        +      {
        +        "$ref": "#/$defs/LinearScale"
        +      },
        +      {
        +        "$ref": "#/$defs/LogScale"
        +      },
        +      {
        +        "$ref": "#/$defs/UtcScale"
        +      }
        +    ],
        +    "title": "CategoryScale"
        +  },
        +  "CategorySpacing": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "category": {
        +        "exclusiveMaximum": 1,
        +        "minimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "required": [
        +      "category"
        +    ],
        +    "title": "CategorySpacing",
        +    "type": "object"
        +  },
        +  "Color": {
        +    "anyOf": [
        +      {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      {
        +        "anyOf": [
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "dark": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "light": {
        +                "minLength": 1,
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "light"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "dark": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "light": {
        +                "minLength": 1,
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "dark"
        +            ],
        +            "type": "object"
        +          }
        +        ]
        +      }
        +    ],
        +    "title": "Color"
        +  },
        +  "ColorRange": {
        +    "items": {
        +      "$ref": "#/$defs/Color"
        +    },
        +    "minItems": 1,
        +    "title": "ColorRange",
        +    "type": "array"
        +  },
        +  "ConnectedPointLabels": {
        +    "anyOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "at": {
        +            "enum": [
        +              "extrema",
        +              "all",
        +              "ends"
        +            ],
        +            "type": "string"
        +          },
        +          "content": {
        +            "items": {
        +              "enum": [
        +                "category",
        +                "value"
        +              ],
        +              "type": "string"
        +            },
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "position": {
        +            "enum": [
        +              "above",
        +              "side"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "at",
        +          "content"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "at": {
        +            "enum": [
        +              "extrema",
        +              "all",
        +              "ends"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "position": {
        +            "enum": [
        +              "above",
        +              "side"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "at",
        +          "field"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "ConnectedPointLabels"
        +  },
        +  "ContinuousScale": {
        +    "oneOf": [
        +      {
        +        "$ref": "#/$defs/LinearScale"
        +      },
        +      {
        +        "$ref": "#/$defs/LogScale"
        +      },
        +      {
        +        "$ref": "#/$defs/UtcScale"
        +      }
        +    ],
        +    "title": "ContinuousScale"
        +  },
        +  "ExplicitCategoryOrder": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "categories": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "type": {
        +        "const": "explicit",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "categories"
        +    ],
        +    "title": "ExplicitCategoryOrder",
        +    "type": "object"
        +  },
        +  "FieldRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "FieldRole",
        +    "type": "object"
        +  },
        +  "GoogleFontFamily": {
        +    "enum": [
        +      "ABeeZee",
        +      "ADLaM Display",
        +      "AR One Sans",
        +      "Abel",
        +      "Abhaya Libre",
        +      "Aboreto",
        +      "Abril Fatface",
        +      "Abyssinica SIL",
        +      "Aclonica",
        +      "Acme",
        +      "Actor",
        +      "Adamina",
        +      "Advent Pro",
        +      "Afacad",
        +      "Afacad Flux",
        +      "Agbalumo",
        +      "Agdasima",
        +      "Agu Display",
        +      "Aguafina Script",
        +      "Akatab",
        +      "Akaya Kanadaka",
        +      "Akaya Telivigala",
        +      "Akronim",
        +      "Akshar",
        +      "Akt",
        +      "Aladin",
        +      "Alan Sans",
        +      "Alata",
        +      "Alatsi",
        +      "Albert Sans",
        +      "Aldrich",
        +      "Alef",
        +      "Alegreya",
        +      "Alegreya SC",
        +      "Alegreya Sans",
        +      "Alegreya Sans SC",
        +      "Aleo",
        +      "Alex Brush",
        +      "Alexandria",
        +      "Alfa Slab One",
        +      "Alice",
        +      "Alien Block",
        +      "Alike",
        +      "Alike Angular",
        +      "Alkalami",
        +      "Alkatra",
        +      "Allan",
        +      "Allerta",
        +      "Allerta Stencil",
        +      "Allison",
        +      "Allkin",
        +      "Allura",
        +      "Almarai",
        +      "Almendra",
        +      "Almendra Display",
        +      "Almendra SC",
        +      "Alumni Sans",
        +      "Alumni Sans Collegiate One",
        +      "Alumni Sans Inline One",
        +      "Alumni Sans Pinstripe",
        +      "Alumni Sans SC",
        +      "Alyamama",
        +      "Amarante",
        +      "Amaranth",
        +      "Amarna",
        +      "Amatic SC",
        +      "Amethysta",
        +      "Amiko",
        +      "Amiri",
        +      "Amiri Quran",
        +      "Amita",
        +      "Anaheim",
        +      "Ancizar Sans",
        +      "Ancizar Serif",
        +      "Andada Pro",
        +      "Andika",
        +      "Anek Bangla",
        +      "Anek Devanagari",
        +      "Anek Gujarati",
        +      "Anek Gurmukhi",
        +      "Anek Kannada",
        +      "Anek Latin",
        +      "Anek Malayalam",
        +      "Anek Odia",
        +      "Anek Tamil",
        +      "Anek Telugu",
        +      "Angkor",
        +      "Annapurna SIL",
        +      "Annie Use Your Telescope",
        +      "Anonymous Pro",
        +      "Anta",
        +      "Antic",
        +      "Antic Didone",
        +      "Antic Slab",
        +      "Anton",
        +      "Anton SC",
        +      "Antonio",
        +      "Anuphan",
        +      "Anybody",
        +      "Aoboshi One",
        +      "Arapey",
        +      "Arbutus",
        +      "Arbutus Slab",
        +      "Architects Daughter",
        +      "Archivo",
        +      "Archivo Black",
        +      "Archivo Narrow",
        +      "Are You Serious",
        +      "Aref Ruqaa",
        +      "Aref Ruqaa Ink",
        +      "Arima",
        +      "Arimo",
        +      "Arizonia",
        +      "Armata",
        +      "Arsenal",
        +      "Arsenal SC",
        +      "Artifika",
        +      "Arvo",
        +      "Arya",
        +      "Asap",
        +      "Asap Condensed",
        +      "Asar",
        +      "Asimovian",
        +      "Asset",
        +      "Assistant",
        +      "Asta Sans",
        +      "Astloch",
        +      "Asul",
        +      "Athiti",
        +      "Atkinson Hyperlegible",
        +      "Atkinson Hyperlegible Mono",
        +      "Atkinson Hyperlegible Next",
        +      "Atma",
        +      "Atomic Age",
        +      "Aubrey",
        +      "Audiowide",
        +      "Autour One",
        +      "Average",
        +      "Average Sans",
        +      "Averia Gruesa Libre",
        +      "Averia Libre",
        +      "Averia Sans Libre",
        +      "Averia Serif Libre",
        +      "Azeret Mono",
        +      "B612",
        +      "B612 Mono",
        +      "BBH Bartle",
        +      "BBH Bogle",
        +      "BBH Hegarty",
        +      "BIZ UDGothic",
        +      "BIZ UDMincho",
        +      "BIZ UDPGothic",
        +      "BIZ UDPMincho",
        +      "BJCree",
        +      "Babylonica",
        +      "Bacasime Antique",
        +      "Bad Script",
        +      "Badeen Display",
        +      "Bagel Fat One",
        +      "Bahiana",
        +      "Bahianita",
        +      "Bai Jamjuree",
        +      "Bakbak One",
        +      "Ballet",
        +      "Baloo 2",
        +      "Baloo Bhai 2",
        +      "Baloo Bhaijaan 2",
        +      "Baloo Bhaina 2",
        +      "Baloo Chettan 2",
        +      "Baloo Da 2",
        +      "Baloo Paaji 2",
        +      "Baloo Tamma 2",
        +      "Baloo Tammudu 2",
        +      "Baloo Thambi 2",
        +      "Balsamiq Sans",
        +      "Balthazar",
        +      "Bangers",
        +      "Barlow",
        +      "Barlow Condensed",
        +      "Barlow Semi Condensed",
        +      "Barriecito",
        +      "Barrio",
        +      "Basic",
        +      "Baskervville",
        +      "Baskervville SC",
        +      "Battambang",
        +      "Baumans",
        +      "Bayon",
        +      "Be Vietnam Pro",
        +      "Beau Rivage",
        +      "Bebas Neue",
        +      "Beiruti",
        +      "Belanosima",
        +      "Belgrano",
        +      "Bellefair",
        +      "Belleza",
        +      "Bellota",
        +      "Bellota Text",
        +      "BenchNine",
        +      "Benne",
        +      "Bentham",
        +      "Berkshire Swash",
        +      "Besley",
        +      "Betania Patmos",
        +      "Betania Patmos GDL",
        +      "Betania Patmos In",
        +      "Betania Patmos In GDL",
        +      "Beth Ellen",
        +      "Bevan",
        +      "BhuTuka Expanded One",
        +      "Big Shoulders",
        +      "Big Shoulders Inline",
        +      "Big Shoulders Stencil",
        +      "Bigelow Rules",
        +      "Bigshot One",
        +      "Bilbo",
        +      "Bilbo Swash Caps",
        +      "BioRhyme",
        +      "BioRhyme Expanded",
        +      "Birthstone",
        +      "Birthstone Bounce",
        +      "Biryani",
        +      "Bitcount",
        +      "Bitcount Grid Double",
        +      "Bitcount Grid Double Ink",
        +      "Bitcount Grid Single",
        +      "Bitcount Grid Single Ink",
        +      "Bitcount Ink",
        +      "Bitcount Prop Double",
        +      "Bitcount Prop Double Ink",
        +      "Bitcount Prop Single",
        +      "Bitcount Prop Single Ink",
        +      "Bitcount Single",
        +      "Bitcount Single Ink",
        +      "Bitter",
        +      "Black And White Picture",
        +      "Black Han Sans",
        +      "Black Ops One",
        +      "Blaka",
        +      "Blaka Hollow",
        +      "Blaka Ink",
        +      "Blinker",
        +      "Bodoni Moda",
        +      "Bodoni Moda SC",
        +      "Bokor",
        +      "Boldonse",
        +      "Bona Nova",
        +      "Bona Nova SC",
        +      "Bonbon",
        +      "Bonheur Royale",
        +      "Boogaloo",
        +      "Borel",
        +      "Bowlby One",
        +      "Bowlby One SC",
        +      "Bpmf Huninn",
        +      "Bpmf Iansui",
        +      "Bpmf Zihi Kai Std",
        +      "Braah One",
        +      "Brawler",
        +      "Bree Serif",
        +      "Bricolage Grotesque",
        +      "Bruno Ace",
        +      "Bruno Ace SC",
        +      "Brygada 1918",
        +      "Bubblegum Sans",
        +      "Bubbler One",
        +      "Buda",
        +      "Buenard",
        +      "Bungee",
        +      "Bungee Hairline",
        +      "Bungee Inline",
        +      "Bungee Outline",
        +      "Bungee Shade",
        +      "Bungee Spice",
        +      "Bungee Tint",
        +      "Butcherman",
        +      "Butterfly Kids",
        +      "Bytesized",
        +      "Cabin",
        +      "Cabin Condensed",
        +      "Cabin Sketch",
        +      "Cactus Classical Serif",
        +      "Caesar Dressing",
        +      "Cagliostro",
        +      "Cairo",
        +      "Cairo Play",
        +      "Cal Sans",
        +      "Caladea",
        +      "Calistoga",
        +      "Calligraffitti",
        +      "Cambay",
        +      "Cambo",
        +      "Candal",
        +      "Cantarell",
        +      "Cantata One",
        +      "Cantora One",
        +      "Caprasimo",
        +      "Capriola",
        +      "Caramel",
        +      "Carattere",
        +      "Cardo",
        +      "Carlito",
        +      "Carme",
        +      "Carrois Gothic",
        +      "Carrois Gothic SC",
        +      "Carter One",
        +      "Cascadia Code",
        +      "Cascadia Mono",
        +      "Castoro",
        +      "Castoro Titling",
        +      "Catamaran",
        +      "Caudex",
        +      "Cause",
        +      "Caveat",
        +      "Caveat Brush",
        +      "Cedarville Cursive",
        +      "Ceviche One",
        +      "Chakra Petch",
        +      "Changa",
        +      "Changa One",
        +      "Chango",
        +      "Charis SIL",
        +      "Charm",
        +      "Charmonman",
        +      "Chathura",
        +      "Chau Philomene One",
        +      "Chela One",
        +      "Chelsea Market",
        +      "Chenla",
        +      "Cherish",
        +      "Cherry Bomb One",
        +      "Cherry Cream Soda",
        +      "Cherry Swash",
        +      "Chewy",
        +      "Chicle",
        +      "Chilanka",
        +      "Chiron GoRound TC",
        +      "Chiron Hei HK",
        +      "Chiron Sung HK",
        +      "Chivo",
        +      "Chivo Mono",
        +      "Chocolate Classical Sans",
        +      "Chokokutai",
        +      "Chonburi",
        +      "Cinzel",
        +      "Cinzel Decorative",
        +      "Clicker Script",
        +      "Climate Crisis",
        +      "Coda",
        +      "Codystar",
        +      "Coiny",
        +      "Combo",
        +      "Comfortaa",
        +      "Comforter",
        +      "Comforter Brush",
        +      "Comic Neue",
        +      "Comic Relief",
        +      "Coming Soon",
        +      "Comme",
        +      "Commissioner",
        +      "Concert One",
        +      "Condiment",
        +      "Content",
        +      "Contrail One",
        +      "Convergence",
        +      "Cookie",
        +      "Copse",
        +      "Coral Pixels",
        +      "Corben",
        +      "Corinthia",
        +      "Cormorant",
        +      "Cormorant Garamond",
        +      "Cormorant Infant",
        +      "Cormorant SC",
        +      "Cormorant Unicase",
        +      "Cormorant Upright",
        +      "Cossette Texte",
        +      "Cossette Titre",
        +      "Courgette",
        +      "Courier Prime",
        +      "Cousine",
        +      "Coustard",
        +      "Covered By Your Grace",
        +      "Crafty Girls",
        +      "Creepster",
        +      "Crete Round",
        +      "Crimson Pro",
        +      "Crimson Text",
        +      "Croissant One",
        +      "Crushed",
        +      "Cuprum",
        +      "Cute Font",
        +      "Cutive",
        +      "Cutive Mono",
        +      "DM Mono",
        +      "DM Sans",
        +      "DM Serif Display",
        +      "DM Serif Text",
        +      "Dai Banna SIL",
        +      "Damion",
        +      "Dancing Script",
        +      "Danfo",
        +      "Dangrek",
        +      "Darker Grotesque",
        +      "Darumadrop One",
        +      "Datatype",
        +      "David Libre",
        +      "Dawning of a New Day",
        +      "Days One",
        +      "Dekko",
        +      "Dela Gothic One",
        +      "Delicious Handrawn",
        +      "Delius",
        +      "Delius Swash Caps",
        +      "Delius Unicase",
        +      "Della Respira",
        +      "Denk One",
        +      "Devonshire",
        +      "Dhurjati",
        +      "Didact Gothic",
        +      "Diphylleia",
        +      "Diplomata",
        +      "Diplomata SC",
        +      "Do Hyeon",
        +      "Dokdo",
        +      "Domine",
        +      "Donegal One",
        +      "Dongle",
        +      "Doppio One",
        +      "Dorsa",
        +      "Dosis",
        +      "DotGothic16",
        +      "Doto",
        +      "Dr Sugiyama",
        +      "Duru Sans",
        +      "DynaPuff",
        +      "Dynalight",
        +      "EB Garamond",
        +      "Eagle Lake",
        +      "East Sea Dokdo",
        +      "Eater",
        +      "Economica",
        +      "Eczar",
        +      "Edu AU VIC WA NT Arrows",
        +      "Edu AU VIC WA NT Dots",
        +      "Edu AU VIC WA NT Guides",
        +      "Edu AU VIC WA NT Hand",
        +      "Edu AU VIC WA NT Pre",
        +      "Edu NSW ACT Cursive",
        +      "Edu NSW ACT Foundation",
        +      "Edu NSW ACT Hand Pre",
        +      "Edu QLD Beginner",
        +      "Edu QLD Hand",
        +      "Edu SA Beginner",
        +      "Edu SA Hand",
        +      "Edu TAS Beginner",
        +      "Edu VIC WA NT Beginner",
        +      "Edu VIC WA NT Hand",
        +      "Edu VIC WA NT Hand Pre",
        +      "El Messiri",
        +      "Electrolize",
        +      "Elms Sans",
        +      "Elsie",
        +      "Elsie Swash Caps",
        +      "Emblema One",
        +      "Emilys Candy",
        +      "Encode Sans",
        +      "Encode Sans Condensed",
        +      "Encode Sans Expanded",
        +      "Encode Sans SC",
        +      "Encode Sans Semi Condensed",
        +      "Encode Sans Semi Expanded",
        +      "Engagement",
        +      "Englebert",
        +      "Enriqueta",
        +      "Ephesis",
        +      "Epilogue",
        +      "Epunda Sans",
        +      "Epunda Slab",
        +      "Erica One",
        +      "Esteban",
        +      "Estedad",
        +      "Estonia",
        +      "Euphoria Script",
        +      "Ewert",
        +      "Exile",
        +      "Exo",
        +      "Exo 2",
        +      "Expletus Sans",
        +      "Explora",
        +      "Faculty Glyphic",
        +      "Fahkwang",
        +      "Familjen Grotesk",
        +      "Fanwood Text",
        +      "Farro",
        +      "Farsan",
        +      "Fascinate",
        +      "Fascinate Inline",
        +      "Faster One",
        +      "Fasthand",
        +      "Fauna One",
        +      "Faustina",
        +      "Federant",
        +      "Federo",
        +      "Felipa",
        +      "Fenix",
        +      "Festive",
        +      "Figtree",
        +      "Finger Paint",
        +      "Finlandica Headline",
        +      "Finlandica Text",
        +      "Fira Code",
        +      "Fira Mono",
        +      "Fira Sans",
        +      "Fira Sans Condensed",
        +      "Fira Sans Extra Condensed",
        +      "Fjalla One",
        +      "Fjord One",
        +      "Flamenco",
        +      "Flavors",
        +      "Fleur De Leah",
        +      "Flow Block",
        +      "Flow Circular",
        +      "Flow Rounded",
        +      "Foldit",
        +      "Fondamento",
        +      "Fontdiner Swanky",
        +      "Forum",
        +      "Fragment Mono",
        +      "Francois One",
        +      "Frank Ruhl Libre",
        +      "Fraunces",
        +      "Freckle Face",
        +      "Fredericka the Great",
        +      "Fredoka",
        +      "Freehand",
        +      "Freeman",
        +      "Fresca",
        +      "Frijole",
        +      "Fruktur",
        +      "Fugaz One",
        +      "Fuggles",
        +      "Funnel Display",
        +      "Funnel Sans",
        +      "Fustat",
        +      "Fuzzy Bubbles",
        +      "GFS Didot",
        +      "GFS Neohellenic",
        +      "Ga Maamli",
        +      "Gabarito",
        +      "Gabriela",
        +      "Gaegu",
        +      "Gafata",
        +      "Gajraj One",
        +      "Galada",
        +      "Galdeano",
        +      "Galindo",
        +      "Gamja Flower",
        +      "Gantari",
        +      "Gasoek One",
        +      "Gayathri",
        +      "Geist",
        +      "Geist Mono",
        +      "Geist Pixel",
        +      "Gelasio",
        +      "Gemunu Libre",
        +      "Genos",
        +      "Gentium Book Plus",
        +      "Gentium Plus",
        +      "Geo",
        +      "Geologica",
        +      "Geom",
        +      "Geomini",
        +      "Georama",
        +      "Geostar",
        +      "Geostar Fill",
        +      "Germania One",
        +      "Gideon Roman",
        +      "Gidole",
        +      "Gidugu",
        +      "Gilda Display",
        +      "Girassol",
        +      "Give You Glory",
        +      "Glass Antiqua",
        +      "Glegoo",
        +      "Gloock",
        +      "Gloria Hallelujah",
        +      "Glory",
        +      "Gluten",
        +      "Goblin One",
        +      "Gochi Hand",
        +      "Goldman",
        +      "Golos Text",
        +      "Google Sans",
        +      "Google Sans Code",
        +      "Google Sans Flex",
        +      "Gorditas",
        +      "Gothic A1",
        +      "Gotu",
        +      "Goudy Bookletter 1911",
        +      "Gowun Batang",
        +      "Gowun Dodum",
        +      "Graduate",
        +      "Grand Hotel",
        +      "Grandiflora One",
        +      "Grandstander",
        +      "Grape Nuts",
        +      "Gravitas One",
        +      "Great Vibes",
        +      "Grechen Fuemen",
        +      "Grenze",
        +      "Grenze Gotisch",
        +      "Grey Qo",
        +      "Griffy",
        +      "Gruppo",
        +      "Gudea",
        +      "Gugi",
        +      "Gulzar",
        +      "Gupter",
        +      "Gurajada",
        +      "Gveret Levin",
        +      "Gwendolyn",
        +      "Habibi",
        +      "Hachi Maru Pop",
        +      "Hahmlet",
        +      "Halant",
        +      "Hammersmith One",
        +      "Hanalei",
        +      "Hanalei Fill",
        +      "Handjet",
        +      "Handlee",
        +      "Hanken Grotesk",
        +      "Hanuman",
        +      "Happy Monkey",
        +      "Harmattan",
        +      "Headland One",
        +      "Hedvig Letters Sans",
        +      "Hedvig Letters Serif",
        +      "Heebo",
        +      "Henny Penny",
        +      "Hepta Slab",
        +      "Herr Von Muellerhoff",
        +      "Hi Melody",
        +      "Hibur Mono",
        +      "Hina Mincho",
        +      "Hind",
        +      "Hind Guntur",
        +      "Hind Madurai",
        +      "Hind Mysuru",
        +      "Hind Siliguri",
        +      "Hind Vadodara",
        +      "Holtwood One SC",
        +      "Homemade Apple",
        +      "Homenaje",
        +      "Honk",
        +      "Host Grotesk",
        +      "Hubballi",
        +      "Hubot Sans",
        +      "Huninn",
        +      "Hurricane",
        +      "IBM Plex Mono",
        +      "IBM Plex Sans",
        +      "IBM Plex Sans Arabic",
        +      "IBM Plex Sans Condensed",
        +      "IBM Plex Sans Devanagari",
        +      "IBM Plex Sans Hebrew",
        +      "IBM Plex Sans JP",
        +      "IBM Plex Sans KR",
        +      "IBM Plex Sans Thai",
        +      "IBM Plex Sans Thai Looped",
        +      "IBM Plex Serif",
        +      "IM Fell DW Pica",
        +      "IM Fell DW Pica SC",
        +      "IM Fell Double Pica",
        +      "IM Fell Double Pica SC",
        +      "IM Fell English",
        +      "IM Fell English SC",
        +      "IM Fell French Canon",
        +      "IM Fell French Canon SC",
        +      "IM Fell Great Primer",
        +      "IM Fell Great Primer SC",
        +      "Iansui",
        +      "Ibarra Real Nova",
        +      "Iceberg",
        +      "Iceland",
        +      "Idiqlat",
        +      "Imbue",
        +      "Imperial Script",
        +      "Imprima",
        +      "Inclusive Sans",
        +      "Inconsolata",
        +      "Inder",
        +      "Indie Flower",
        +      "Ingrid Darling",
        +      "Inika",
        +      "Inknut Antiqua",
        +      "Inria Sans",
        +      "Inria Serif",
        +      "Inspiration",
        +      "Instrument Sans",
        +      "Instrument Serif",
        +      "Intel One Mono",
        +      "Inter",
        +      "Inter Tight",
        +      "Iosevka Charon",
        +      "Iosevka Charon Mono",
        +      "Irish Grover",
        +      "Island Moments",
        +      "Istok Web",
        +      "Italiana",
        +      "Italianno",
        +      "Itim",
        +      "Jacquard 12",
        +      "Jacquard 12 Charted",
        +      "Jacquard 24",
        +      "Jacquard 24 Charted",
        +      "Jacquarda Bastarda 9",
        +      "Jacquarda Bastarda 9 Charted",
        +      "Jacques Francois",
        +      "Jacques Francois Shadow",
        +      "Jaini",
        +      "Jaini Purva",
        +      "Jaldi",
        +      "Jaro",
        +      "Jersey 10",
        +      "Jersey 10 Charted",
        +      "Jersey 15",
        +      "Jersey 15 Charted",
        +      "Jersey 20",
        +      "Jersey 20 Charted",
        +      "Jersey 25",
        +      "Jersey 25 Charted",
        +      "JetBrains Mono",
        +      "Jim Nightshade",
        +      "Joan",
        +      "Jockey One",
        +      "Jolly Lodger",
        +      "Jomhuria",
        +      "Jomolhari",
        +      "Josefin Sans",
        +      "Josefin Slab",
        +      "Jost",
        +      "Joti One",
        +      "Jua",
        +      "Judson",
        +      "Julee",
        +      "Julius Sans One",
        +      "Junge",
        +      "Jura",
        +      "Just Another Hand",
        +      "Just Me Again Down Here",
        +      "K2D",
        +      "Kablammo",
        +      "Kadwa",
        +      "Kaisei Decol",
        +      "Kaisei HarunoUmi",
        +      "Kaisei Opti",
        +      "Kaisei Tokumin",
        +      "Kalam",
        +      "Kalnia",
        +      "Kalnia Glaze",
        +      "Kameron",
        +      "Kanchenjunga",
        +      "Kanit",
        +      "Kantumruy Pro",
        +      "Kapakana",
        +      "Karantina",
        +      "Karla",
        +      "Karla Tamil Inclined",
        +      "Karla Tamil Upright",
        +      "Karma",
        +      "Katibeh",
        +      "Kaushan Script",
        +      "Kavivanar",
        +      "Kavoon",
        +      "Kay Pho Du",
        +      "Kdam Thmor Pro",
        +      "Keania One",
        +      "Kedebideri",
        +      "Kelly Slab",
        +      "Kenia",
        +      "Khand",
        +      "Khmer",
        +      "Khula",
        +      "Kings",
        +      "Kirang Haerang",
        +      "Kite One",
        +      "Kiwi Maru",
        +      "Klee One",
        +      "Knewave",
        +      "KoHo",
        +      "Kodchasan",
        +      "Kode Mono",
        +      "Koh Santepheap",
        +      "Kolker Brush",
        +      "Konkhmer Sleokchher",
        +      "Kosugi",
        +      "Kosugi Maru",
        +      "Kotta One",
        +      "Koulen",
        +      "Kranky",
        +      "Kreon",
        +      "Kristi",
        +      "Krona One",
        +      "Krub",
        +      "Kufam",
        +      "Kulim Park",
        +      "Kumar One",
        +      "Kumar One Outline",
        +      "Kumbh Sans",
        +      "Kurale",
        +      "LINE Seed JP",
        +      "LXGW Marker Gothic",
        +      "LXGW WenKai Mono TC",
        +      "LXGW WenKai TC",
        +      "La Belle Aurore",
        +      "Labrada",
        +      "Lacquer",
        +      "Laila",
        +      "Lakki Reddy",
        +      "Lalezar",
        +      "Lancelot",
        +      "Langar",
        +      "Lateef",
        +      "Lato",
        +      "Lavishly Yours",
        +      "League Gothic",
        +      "League Script",
        +      "League Spartan",
        +      "Leckerli One",
        +      "Ledger",
        +      "Lekton",
        +      "Lemon",
        +      "Lemonada",
        +      "Lexend",
        +      "Lexend Deca",
        +      "Lexend Exa",
        +      "Lexend Giga",
        +      "Lexend Mega",
        +      "Lexend Peta",
        +      "Lexend Tera",
        +      "Lexend Zetta",
        +      "Libertinus Keyboard",
        +      "Libertinus Math",
        +      "Libertinus Mono",
        +      "Libertinus Sans",
        +      "Libertinus Serif",
        +      "Libertinus Serif Display",
        +      "Libre Barcode 128",
        +      "Libre Barcode 128 Text",
        +      "Libre Barcode 39",
        +      "Libre Barcode 39 Extended",
        +      "Libre Barcode 39 Extended Text",
        +      "Libre Barcode 39 Text",
        +      "Libre Barcode EAN13 Text",
        +      "Libre Baskerville",
        +      "Libre Bodoni",
        +      "Libre Caslon Display",
        +      "Libre Caslon Text",
        +      "Libre Franklin",
        +      "Licorice",
        +      "Life Savers",
        +      "Lilex",
        +      "Lilita One",
        +      "Lily Script One",
        +      "Limelight",
        +      "Linden Hill",
        +      "Linefont",
        +      "Lisu Bosa",
        +      "Liter",
        +      "Literata",
        +      "Liu Jian Mao Cao",
        +      "Livvic",
        +      "Lobster",
        +      "Lobster Two",
        +      "Londrina Outline",
        +      "Londrina Shadow",
        +      "Londrina Sketch",
        +      "Londrina Solid",
        +      "Long Cang",
        +      "Lora",
        +      "Love Light",
        +      "Love Ya Like A Sister",
        +      "Loved by the King",
        +      "Lovers Quarrel",
        +      "Luckiest Guy",
        +      "Lugrasimo",
        +      "Lumanosimo",
        +      "Lunasima",
        +      "Lusitana",
        +      "Lustria",
        +      "Luxurious Roman",
        +      "Luxurious Script",
        +      "M PLUS 1",
        +      "M PLUS 1 Code",
        +      "M PLUS 1p",
        +      "M PLUS 2",
        +      "M PLUS Code Latin",
        +      "M PLUS Rounded 1c",
        +      "M PLUS U",
        +      "Ma Shan Zheng",
        +      "Macondo",
        +      "Macondo Swash Caps",
        +      "Mada",
        +      "Madimi One",
        +      "Magra",
        +      "Maiden Orange",
        +      "Maitree",
        +      "Major Mono Display",
        +      "Mako",
        +      "Mali",
        +      "Mallanna",
        +      "Maname",
        +      "Mandali",
        +      "Manjari",
        +      "Manrope",
        +      "Mansalva",
        +      "Manuale",
        +      "Manufacturing Consent",
        +      "Marcellus",
        +      "Marcellus SC",
        +      "Marck Script",
        +      "Margarine",
        +      "Marhey",
        +      "Markazi Text",
        +      "Marko One",
        +      "Marmelad",
        +      "Martel",
        +      "Martel Sans",
        +      "Martian Mono",
        +      "Marvel",
        +      "Matangi",
        +      "Mate",
        +      "Mate SC",
        +      "Matemasie",
        +      "Material Icons",
        +      "Material Icons Outlined",
        +      "Material Icons Round",
        +      "Material Icons Sharp",
        +      "Material Icons Two Tone",
        +      "Material Symbols",
        +      "Material Symbols Outlined",
        +      "Material Symbols Rounded",
        +      "Material Symbols Sharp",
        +      "Maven Pro",
        +      "McLaren",
        +      "Mea Culpa",
        +      "Meddon",
        +      "MedievalSharp",
        +      "Medula One",
        +      "Meera Inimai",
        +      "Megrim",
        +      "Meie Script",
        +      "Menbere",
        +      "Meow Script",
        +      "Merienda",
        +      "Merriweather",
        +      "Merriweather Sans",
        +      "Metal",
        +      "Metal Mania",
        +      "Metamorphous",
        +      "Metrophobic",
        +      "Michroma",
        +      "Micro 5",
        +      "Micro 5 Charted",
        +      "Milonga",
        +      "Miltonian",
        +      "Miltonian Tattoo",
        +      "Mina",
        +      "Mingzat",
        +      "Miniver",
        +      "Miranda Sans",
        +      "Miriam Libre",
        +      "Mirza",
        +      "Miss Fajardose",
        +      "Mitr",
        +      "Mochiy Pop One",
        +      "Mochiy Pop P One",
        +      "Modak",
        +      "Modern Antiqua",
        +      "Moderustic",
        +      "Mogra",
        +      "Mohave",
        +      "Moirai One",
        +      "Molengo",
        +      "Molle",
        +      "Momo Signature",
        +      "Momo Trust Display",
        +      "Momo Trust Sans",
        +      "Mona Sans",
        +      "Monda",
        +      "Monofett",
        +      "Monomakh",
        +      "Monomaniac One",
        +      "Monoton",
        +      "Monsieur La Doulaise",
        +      "Montaga",
        +      "Montagu Slab",
        +      "MonteCarlo",
        +      "Montenegrin Gothic One",
        +      "Montez",
        +      "Montserrat",
        +      "Montserrat Alternates",
        +      "Montserrat Underline",
        +      "Moo Lah Lah",
        +      "Mooli",
        +      "Moon Dance",
        +      "Moul",
        +      "Moulpali",
        +      "Mountains of Christmas",
        +      "Mouse Memoirs",
        +      "Mozilla Headline",
        +      "Mozilla Text",
        +      "Mr Bedfort",
        +      "Mr Dafoe",
        +      "Mr De Haviland",
        +      "Mrs Saint Delafield",
        +      "Mrs Sheppards",
        +      "Ms Madi",
        +      "Mukta",
        +      "Mukta Mahee",
        +      "Mukta Malar",
        +      "Mukta Vaani",
        +      "Mulish",
        +      "Murecho",
        +      "MuseoModerno",
        +      "My Soul",
        +      "Mynerve",
        +      "Mystery Quest",
        +      "NTR",
        +      "Nabla",
        +      "Namdhinggo",
        +      "Nanum Brush Script",
        +      "Nanum Gothic",
        +      "Nanum Gothic Coding",
        +      "Nanum Myeongjo",
        +      "Nanum Pen Script",
        +      "Narnoor",
        +      "Nata Sans",
        +      "National Park",
        +      "Neonderthaw",
        +      "Nerko One",
        +      "Neucha",
        +      "Neuton",
        +      "New Amsterdam",
        +      "New Rocker",
        +      "New Tegomin",
        +      "News Cycle",
        +      "Newsreader",
        +      "Niconne",
        +      "Niramit",
        +      "Nixie One",
        +      "Nobile",
        +      "Nokora",
        +      "Norican",
        +      "Nosifer",
        +      "Notable",
        +      "Nothing You Could Do",
        +      "Noticia Text",
        +      "Noto Color Emoji",
        +      "Noto Emoji",
        +      "Noto Kufi Arabic",
        +      "Noto Music",
        +      "Noto Naskh Arabic",
        +      "Noto Nastaliq Urdu",
        +      "Noto Rashi Hebrew",
        +      "Noto Sans",
        +      "Noto Sans Adlam",
        +      "Noto Sans Adlam Unjoined",
        +      "Noto Sans Anatolian Hieroglyphs",
        +      "Noto Sans Arabic",
        +      "Noto Sans Armenian",
        +      "Noto Sans Avestan",
        +      "Noto Sans Balinese",
        +      "Noto Sans Bamum",
        +      "Noto Sans Bassa Vah",
        +      "Noto Sans Batak",
        +      "Noto Sans Bengali",
        +      "Noto Sans Bhaiksuki",
        +      "Noto Sans Brahmi",
        +      "Noto Sans Buginese",
        +      "Noto Sans Buhid",
        +      "Noto Sans Canadian Aboriginal",
        +      "Noto Sans Carian",
        +      "Noto Sans Caucasian Albanian",
        +      "Noto Sans Chakma",
        +      "Noto Sans Cham",
        +      "Noto Sans Cherokee",
        +      "Noto Sans Chorasmian",
        +      "Noto Sans Coptic",
        +      "Noto Sans Cuneiform",
        +      "Noto Sans Cypriot",
        +      "Noto Sans Cypro Minoan",
        +      "Noto Sans Deseret",
        +      "Noto Sans Devanagari",
        +      "Noto Sans Display",
        +      "Noto Sans Duployan",
        +      "Noto Sans Egyptian Hieroglyphs",
        +      "Noto Sans Elbasan",
        +      "Noto Sans Elymaic",
        +      "Noto Sans Ethiopic",
        +      "Noto Sans Georgian",
        +      "Noto Sans Glagolitic",
        +      "Noto Sans Gothic",
        +      "Noto Sans Grantha",
        +      "Noto Sans Gujarati",
        +      "Noto Sans Gunjala Gondi",
        +      "Noto Sans Gurmukhi",
        +      "Noto Sans HK",
        +      "Noto Sans Hanifi Rohingya",
        +      "Noto Sans Hanunoo",
        +      "Noto Sans Hatran",
        +      "Noto Sans Hebrew",
        +      "Noto Sans Imperial Aramaic",
        +      "Noto Sans Indic Siyaq Numbers",
        +      "Noto Sans Inscriptional Pahlavi",
        +      "Noto Sans Inscriptional Parthian",
        +      "Noto Sans JP",
        +      "Noto Sans Javanese",
        +      "Noto Sans KR",
        +      "Noto Sans Kaithi",
        +      "Noto Sans Kannada",
        +      "Noto Sans Kawi",
        +      "Noto Sans Kayah Li",
        +      "Noto Sans Kharoshthi",
        +      "Noto Sans Khmer",
        +      "Noto Sans Khojki",
        +      "Noto Sans Khudawadi",
        +      "Noto Sans Lao",
        +      "Noto Sans Lao Looped",
        +      "Noto Sans Lepcha",
        +      "Noto Sans Limbu",
        +      "Noto Sans Linear A",
        +      "Noto Sans Linear B",
        +      "Noto Sans Lisu",
        +      "Noto Sans Lycian",
        +      "Noto Sans Lydian",
        +      "Noto Sans Mahajani",
        +      "Noto Sans Malayalam",
        +      "Noto Sans Mandaic",
        +      "Noto Sans Manichaean",
        +      "Noto Sans Marchen",
        +      "Noto Sans Masaram Gondi",
        +      "Noto Sans Math",
        +      "Noto Sans Mayan Numerals",
        +      "Noto Sans Medefaidrin",
        +      "Noto Sans Meetei Mayek",
        +      "Noto Sans Mende Kikakui",
        +      "Noto Sans Meroitic",
        +      "Noto Sans Miao",
        +      "Noto Sans Modi",
        +      "Noto Sans Mongolian",
        +      "Noto Sans Mono",
        +      "Noto Sans Mro",
        +      "Noto Sans Multani",
        +      "Noto Sans Myanmar",
        +      "Noto Sans NKo",
        +      "Noto Sans NKo Unjoined",
        +      "Noto Sans Nabataean",
        +      "Noto Sans Nag Mundari",
        +      "Noto Sans Nandinagari",
        +      "Noto Sans New Tai Lue",
        +      "Noto Sans Newa",
        +      "Noto Sans Nushu",
        +      "Noto Sans Ogham",
        +      "Noto Sans Ol Chiki",
        +      "Noto Sans Old Hungarian",
        +      "Noto Sans Old Italic",
        +      "Noto Sans Old North Arabian",
        +      "Noto Sans Old Permic",
        +      "Noto Sans Old Persian",
        +      "Noto Sans Old Sogdian",
        +      "Noto Sans Old South Arabian",
        +      "Noto Sans Old Turkic",
        +      "Noto Sans Oriya",
        +      "Noto Sans Osage",
        +      "Noto Sans Osmanya",
        +      "Noto Sans Pahawh Hmong",
        +      "Noto Sans Palmyrene",
        +      "Noto Sans Pau Cin Hau",
        +      "Noto Sans PhagsPa",
        +      "Noto Sans Phoenician",
        +      "Noto Sans Psalter Pahlavi",
        +      "Noto Sans Rejang",
        +      "Noto Sans Runic",
        +      "Noto Sans SC",
        +      "Noto Sans Samaritan",
        +      "Noto Sans Saurashtra",
        +      "Noto Sans Sharada",
        +      "Noto Sans Shavian",
        +      "Noto Sans Siddham",
        +      "Noto Sans SignWriting",
        +      "Noto Sans Sinhala",
        +      "Noto Sans Sogdian",
        +      "Noto Sans Sora Sompeng",
        +      "Noto Sans Soyombo",
        +      "Noto Sans Sundanese",
        +      "Noto Sans Sunuwar",
        +      "Noto Sans Syloti Nagri",
        +      "Noto Sans Symbols",
        +      "Noto Sans Symbols 2",
        +      "Noto Sans Syriac",
        +      "Noto Sans Syriac Eastern",
        +      "Noto Sans Syriac Western",
        +      "Noto Sans TC",
        +      "Noto Sans Tagalog",
        +      "Noto Sans Tagbanwa",
        +      "Noto Sans Tai Le",
        +      "Noto Sans Tai Tham",
        +      "Noto Sans Tai Viet",
        +      "Noto Sans Takri",
        +      "Noto Sans Tamil",
        +      "Noto Sans Tamil Supplement",
        +      "Noto Sans Tangsa",
        +      "Noto Sans Telugu",
        +      "Noto Sans Thaana",
        +      "Noto Sans Thai",
        +      "Noto Sans Thai Looped",
        +      "Noto Sans Tifinagh",
        +      "Noto Sans Tirhuta",
        +      "Noto Sans Ugaritic",
        +      "Noto Sans Vai",
        +      "Noto Sans Vithkuqi",
        +      "Noto Sans Wancho",
        +      "Noto Sans Warang Citi",
        +      "Noto Sans Yi",
        +      "Noto Sans Zanabazar Square",
        +      "Noto Serif",
        +      "Noto Serif Ahom",
        +      "Noto Serif Armenian",
        +      "Noto Serif Balinese",
        +      "Noto Serif Bengali",
        +      "Noto Serif Devanagari",
        +      "Noto Serif Display",
        +      "Noto Serif Dives Akuru",
        +      "Noto Serif Dogra",
        +      "Noto Serif Ethiopic",
        +      "Noto Serif Georgian",
        +      "Noto Serif Grantha",
        +      "Noto Serif Gujarati",
        +      "Noto Serif Gurmukhi",
        +      "Noto Serif HK",
        +      "Noto Serif Hebrew",
        +      "Noto Serif Hentaigana",
        +      "Noto Serif JP",
        +      "Noto Serif KR",
        +      "Noto Serif Kannada",
        +      "Noto Serif Khitan Small Script",
        +      "Noto Serif Khmer",
        +      "Noto Serif Khojki",
        +      "Noto Serif Lao",
        +      "Noto Serif Makasar",
        +      "Noto Serif Malayalam",
        +      "Noto Serif Myanmar",
        +      "Noto Serif NP Hmong",
        +      "Noto Serif Old Uyghur",
        +      "Noto Serif Oriya",
        +      "Noto Serif Ottoman Siyaq",
        +      "Noto Serif SC",
        +      "Noto Serif Sinhala",
        +      "Noto Serif TC",
        +      "Noto Serif Tamil",
        +      "Noto Serif Tangut",
        +      "Noto Serif Telugu",
        +      "Noto Serif Thai",
        +      "Noto Serif Tibetan",
        +      "Noto Serif Todhri",
        +      "Noto Serif Toto",
        +      "Noto Serif Vithkuqi",
        +      "Noto Serif Yezidi",
        +      "Noto Traditional Nushu",
        +      "Noto Znamenny Musical Notation",
        +      "Nova Cut",
        +      "Nova Flat",
        +      "Nova Mono",
        +      "Nova Oval",
        +      "Nova Round",
        +      "Nova Script",
        +      "Nova Slim",
        +      "Nova Square",
        +      "Numans",
        +      "Nunito",
        +      "Nunito Sans",
        +      "Nuosu SIL",
        +      "Odibee Sans",
        +      "Odor Mean Chey",
        +      "Offside",
        +      "Oi",
        +      "Ojuju",
        +      "Old Standard TT",
        +      "Oldenburg",
        +      "Ole",
        +      "Oleo Script",
        +      "Oleo Script Swash Caps",
        +      "Onest",
        +      "Oooh Baby",
        +      "Open Sans",
        +      "Oranienbaum",
        +      "Orbit",
        +      "Orbitron",
        +      "Oregano",
        +      "Orelega One",
        +      "Orienta",
        +      "Original Surfer",
        +      "Oswald",
        +      "Outfit",
        +      "Over the Rainbow",
        +      "Overlock",
        +      "Overlock SC",
        +      "Overpass",
        +      "Overpass Mono",
        +      "Ovo",
        +      "Oxanium",
        +      "Oxygen",
        +      "Oxygen Mono",
        +      "PT Mono",
        +      "PT Sans",
        +      "PT Sans Caption",
        +      "PT Sans Narrow",
        +      "PT Serif",
        +      "PT Serif Caption",
        +      "Pacifico",
        +      "Padauk",
        +      "Padyakke Expanded One",
        +      "Palanquin",
        +      "Palanquin Dark",
        +      "Palette Mosaic",
        +      "Pangolin",
        +      "Paprika",
        +      "Parastoo",
        +      "Parisienne",
        +      "Parkinsans",
        +      "Passero One",
        +      "Passion One",
        +      "Passions Conflict",
        +      "Pathway Extreme",
        +      "Pathway Gothic One",
        +      "Patrick Hand",
        +      "Patrick Hand SC",
        +      "Pattaya",
        +      "Patua One",
        +      "Pavanam",
        +      "Paytone One",
        +      "Peddana",
        +      "Peralta",
        +      "Permanent Marker",
        +      "Petemoss",
        +      "Petit Formal Script",
        +      "Petrona",
        +      "Phetsarath",
        +      "Philosopher",
        +      "Phudu",
        +      "Piazzolla",
        +      "Piedra",
        +      "Pinyon Script",
        +      "Pirata One",
        +      "Pixelify Sans",
        +      "Plaster",
        +      "Platypi",
        +      "Play",
        +      "Playball",
        +      "Playfair",
        +      "Playfair Display",
        +      "Playfair Display SC",
        +      "Playpen Sans",
        +      "Playpen Sans Arabic",
        +      "Playpen Sans Deva",
        +      "Playpen Sans Hebrew",
        +      "Playpen Sans Thai",
        +      "Playwrite AR",
        +      "Playwrite AR Guides",
        +      "Playwrite AT",
        +      "Playwrite AT Guides",
        +      "Playwrite AU NSW",
        +      "Playwrite AU NSW Guides",
        +      "Playwrite AU QLD",
        +      "Playwrite AU QLD Guides",
        +      "Playwrite AU SA",
        +      "Playwrite AU SA Guides",
        +      "Playwrite AU TAS",
        +      "Playwrite AU TAS Guides",
        +      "Playwrite AU VIC",
        +      "Playwrite AU VIC Guides",
        +      "Playwrite BE VLG",
        +      "Playwrite BE VLG Guides",
        +      "Playwrite BE WAL",
        +      "Playwrite BE WAL Guides",
        +      "Playwrite BR",
        +      "Playwrite BR Guides",
        +      "Playwrite CA",
        +      "Playwrite CA Guides",
        +      "Playwrite CL",
        +      "Playwrite CL Guides",
        +      "Playwrite CO",
        +      "Playwrite CO Guides",
        +      "Playwrite CU",
        +      "Playwrite CU Guides",
        +      "Playwrite CZ",
        +      "Playwrite CZ Guides",
        +      "Playwrite DE Grund",
        +      "Playwrite DE Grund Guides",
        +      "Playwrite DE LA",
        +      "Playwrite DE LA Guides",
        +      "Playwrite DE SAS",
        +      "Playwrite DE SAS Guides",
        +      "Playwrite DE VA",
        +      "Playwrite DE VA Guides",
        +      "Playwrite DK Loopet",
        +      "Playwrite DK Loopet Guides",
        +      "Playwrite DK Uloopet",
        +      "Playwrite DK Uloopet Guides",
        +      "Playwrite ES",
        +      "Playwrite ES Deco",
        +      "Playwrite ES Deco Guides",
        +      "Playwrite ES Guides",
        +      "Playwrite FR Moderne",
        +      "Playwrite FR Moderne Guides",
        +      "Playwrite FR Trad",
        +      "Playwrite FR Trad Guides",
        +      "Playwrite GB J",
        +      "Playwrite GB J Guides",
        +      "Playwrite GB S",
        +      "Playwrite GB S Guides",
        +      "Playwrite HR",
        +      "Playwrite HR Guides",
        +      "Playwrite HR Lijeva",
        +      "Playwrite HR Lijeva Guides",
        +      "Playwrite HU",
        +      "Playwrite HU Guides",
        +      "Playwrite ID",
        +      "Playwrite ID Guides",
        +      "Playwrite IE",
        +      "Playwrite IE Guides",
        +      "Playwrite IN",
        +      "Playwrite IN Guides",
        +      "Playwrite IS",
        +      "Playwrite IS Guides",
        +      "Playwrite IT Moderna",
        +      "Playwrite IT Moderna Guides",
        +      "Playwrite IT Trad",
        +      "Playwrite IT Trad Guides",
        +      "Playwrite MX",
        +      "Playwrite MX Guides",
        +      "Playwrite NG Modern",
        +      "Playwrite NG Modern Guides",
        +      "Playwrite NL",
        +      "Playwrite NL Guides",
        +      "Playwrite NO",
        +      "Playwrite NO Guides",
        +      "Playwrite NZ",
        +      "Playwrite NZ Basic",
        +      "Playwrite NZ Basic Guides",
        +      "Playwrite NZ Guides",
        +      "Playwrite PE",
        +      "Playwrite PE Guides",
        +      "Playwrite PL",
        +      "Playwrite PL Guides",
        +      "Playwrite PT",
        +      "Playwrite PT Guides",
        +      "Playwrite RO",
        +      "Playwrite RO Guides",
        +      "Playwrite SK",
        +      "Playwrite SK Guides",
        +      "Playwrite TZ",
        +      "Playwrite TZ Guides",
        +      "Playwrite US Modern",
        +      "Playwrite US Modern Guides",
        +      "Playwrite US Trad",
        +      "Playwrite US Trad Guides",
        +      "Playwrite VN",
        +      "Playwrite VN Guides",
        +      "Playwrite ZA",
        +      "Playwrite ZA Guides",
        +      "Pliant",
        +      "Plus Jakarta Sans",
        +      "Pochaevsk",
        +      "Podkova",
        +      "Poetsen One",
        +      "Poiret One",
        +      "Poller One",
        +      "Poltawski Nowy",
        +      "Poly",
        +      "Pompiere",
        +      "Ponnala",
        +      "Ponomar",
        +      "Pontano Sans",
        +      "Poor Story",
        +      "Poppins",
        +      "Port Lligat Sans",
        +      "Port Lligat Slab",
        +      "Potta One",
        +      "Pragati Narrow",
        +      "Praise",
        +      "Prata",
        +      "Preahvihear",
        +      "Press Start 2P",
        +      "Pridi",
        +      "Princess Sofia",
        +      "Prociono",
        +      "Prompt",
        +      "Prosto One",
        +      "Protest Guerrilla",
        +      "Protest Revolution",
        +      "Protest Riot",
        +      "Protest Strike",
        +      "Proza Libre",
        +      "Public Sans",
        +      "Puppies Play",
        +      "Puritan",
        +      "Purple Purse",
        +      "Qahiri",
        +      "Quando",
        +      "Quantico",
        +      "Quattrocento",
        +      "Quattrocento Sans",
        +      "Questrial",
        +      "Quicksand",
        +      "Quintessential",
        +      "Qwigley",
        +      "Qwitcher Grypen",
        +      "REM",
        +      "Racing Sans One",
        +      "Radio Canada",
        +      "Radio Canada Big",
        +      "Radley",
        +      "Rajdhani",
        +      "Rakkas",
        +      "Raleway",
        +      "Raleway Dots",
        +      "Ramabhadra",
        +      "Ramaraja",
        +      "Rambla",
        +      "Rammetto One",
        +      "Rampart One",
        +      "Ramsina",
        +      "Ranchers",
        +      "Rancho",
        +      "Ranga",
        +      "Rasa",
        +      "Rationale",
        +      "Ravi Prakash",
        +      "Readex Pro",
        +      "Recursive",
        +      "Red Hat Display",
        +      "Red Hat Mono",
        +      "Red Hat Text",
        +      "Red Rose",
        +      "Redacted",
        +      "Redacted Script",
        +      "Reddit Mono",
        +      "Reddit Sans",
        +      "Reddit Sans Condensed",
        +      "Redressed",
        +      "Reem Kufi",
        +      "Reem Kufi Fun",
        +      "Reem Kufi Ink",
        +      "Reenie Beanie",
        +      "Reggae One",
        +      "Rethink Sans",
        +      "Revalia",
        +      "Rhodium Libre",
        +      "Ribeye",
        +      "Ribeye Marrow",
        +      "Righteous",
        +      "Risque",
        +      "Road Rage",
        +      "Roboto",
        +      "Roboto Condensed",
        +      "Roboto Flex",
        +      "Roboto Mono",
        +      "Roboto Serif",
        +      "Roboto Slab",
        +      "Rochester",
        +      "Rock 3D",
        +      "Rock Salt",
        +      "RocknRoll One",
        +      "Rokkitt",
        +      "Romanesco",
        +      "Ropa Sans",
        +      "Rosario",
        +      "Rosarivo",
        +      "Rouge Script",
        +      "Rowdies",
        +      "Rozha One",
        +      "Rubik",
        +      "Rubik 80s Fade",
        +      "Rubik Beastly",
        +      "Rubik Broken Fax",
        +      "Rubik Bubbles",
        +      "Rubik Burned",
        +      "Rubik Dirt",
        +      "Rubik Distressed",
        +      "Rubik Doodle Shadow",
        +      "Rubik Doodle Triangles",
        +      "Rubik Gemstones",
        +      "Rubik Glitch",
        +      "Rubik Glitch Pop",
        +      "Rubik Iso",
        +      "Rubik Lines",
        +      "Rubik Maps",
        +      "Rubik Marker Hatch",
        +      "Rubik Maze",
        +      "Rubik Microbe",
        +      "Rubik Mono One",
        +      "Rubik Moonrocks",
        +      "Rubik Pixels",
        +      "Rubik Puddles",
        +      "Rubik Scribble",
        +      "Rubik Spray Paint",
        +      "Rubik Storm",
        +      "Rubik Vinyl",
        +      "Rubik Wet Paint",
        +      "Ruda",
        +      "Rufina",
        +      "Ruge Boogie",
        +      "Ruluko",
        +      "Rum Raisin",
        +      "Ruslan Display",
        +      "Russo One",
        +      "Ruthie",
        +      "Ruwudu",
        +      "Rye",
        +      "SN Pro",
        +      "STIX Two Math",
        +      "STIX Two Text",
        +      "SUSE",
        +      "SUSE Mono",
        +      "Sacramento",
        +      "Sahitya",
        +      "Sail",
        +      "Saira",
        +      "Saira Condensed",
        +      "Saira Extra Condensed",
        +      "Saira Semi Condensed",
        +      "Saira Stencil",
        +      "Salsa",
        +      "Sanchez",
        +      "Sancreek",
        +      "Sankofa Display",
        +      "Sansation",
        +      "Sansita",
        +      "Sansita Swashed",
        +      "Sarabun",
        +      "Sarala",
        +      "Sarina",
        +      "Sarpanch",
        +      "Sassy Frass",
        +      "Satisfy",
        +      "Savate",
        +      "Sawarabi Gothic",
        +      "Sawarabi Mincho",
        +      "Scada",
        +      "Scheherazade New",
        +      "Schibsted Grotesk",
        +      "Schoolbell",
        +      "Science Gothic",
        +      "Scope One",
        +      "Seaweed Script",
        +      "Secular One",
        +      "Sedan",
        +      "Sedan SC",
        +      "Sedgwick Ave",
        +      "Sedgwick Ave Display",
        +      "Sekuya",
        +      "Sen",
        +      "Send Flowers",
        +      "Sevillana",
        +      "Seymour One",
        +      "Shadows Into Light",
        +      "Shadows Into Light Two",
        +      "Shafarik",
        +      "Shalimar",
        +      "Shantell Sans",
        +      "Shanti",
        +      "Share",
        +      "Share Tech",
        +      "Share Tech Mono",
        +      "Shippori Antique",
        +      "Shippori Antique B1",
        +      "Shippori Mincho",
        +      "Shippori Mincho B1",
        +      "Shizuru",
        +      "Shojumaru",
        +      "Short Stack",
        +      "Shrikhand",
        +      "Siemreap",
        +      "Sigmar",
        +      "Sigmar One",
        +      "Signika",
        +      "Signika Negative",
        +      "Silkscreen",
        +      "Simonetta",
        +      "Single Day",
        +      "Sintony",
        +      "Sirin Stencil",
        +      "Sirivennela",
        +      "Six Caps",
        +      "Sixtyfour",
        +      "Sixtyfour Convergence",
        +      "Skranji",
        +      "Slabo 13px",
        +      "Slabo 27px",
        +      "Slackey",
        +      "Slackside One",
        +      "Smokum",
        +      "Smooch",
        +      "Smooch Sans",
        +      "Smythe",
        +      "Sniglet",
        +      "Snippet",
        +      "Snowburst One",
        +      "Sofadi One",
        +      "Sofia",
        +      "Sofia Sans",
        +      "Sofia Sans Condensed",
        +      "Sofia Sans Extra Condensed",
        +      "Sofia Sans Semi Condensed",
        +      "Solitreo",
        +      "Solway",
        +      "Sometype Mono",
        +      "Song Myung",
        +      "Sono",
        +      "Sonsie One",
        +      "Sora",
        +      "Sorts Mill Goudy",
        +      "Sour Gummy",
        +      "Source Code Pro",
        +      "Source Sans 3",
        +      "Source Serif 4",
        +      "Space Grotesk",
        +      "Space Mono",
        +      "Special Elite",
        +      "Special Gothic",
        +      "Special Gothic Condensed One",
        +      "Special Gothic Expanded One",
        +      "Spectral",
        +      "Spectral SC",
        +      "Spicy Rice",
        +      "Spinnaker",
        +      "Spirax",
        +      "Splash",
        +      "Spline Sans",
        +      "Spline Sans Mono",
        +      "Squada One",
        +      "Square Peg",
        +      "Sree Krushnadevaraya",
        +      "Sriracha",
        +      "Srisakdi",
        +      "Staatliches",
        +      "Stack Sans Headline",
        +      "Stack Sans Notch",
        +      "Stack Sans Text",
        +      "Stalemate",
        +      "Stalinist One",
        +      "Stardos Stencil",
        +      "Stick",
        +      "Stick No Bills",
        +      "Stint Ultra Condensed",
        +      "Stint Ultra Expanded",
        +      "Stoke",
        +      "Story Script",
        +      "Strait",
        +      "Strichpunkt Sans",
        +      "Style Script",
        +      "Stylish",
        +      "Sue Ellen Francisco",
        +      "Suez One",
        +      "Sulphur Point",
        +      "Sumana",
        +      "Sunflower",
        +      "Sunshiney",
        +      "Supermercado One",
        +      "Sura",
        +      "Suranna",
        +      "Suravaram",
        +      "Suwannaphum",
        +      "Swanky and Moo Moo",
        +      "Syncopate",
        +      "Syne",
        +      "Syne Mono",
        +      "Syne Tactile",
        +      "TASA Explorer",
        +      "TASA Orbiter",
        +      "Tac One",
        +      "Tagesschrift",
        +      "Tai Heritage Pro",
        +      "Tajawal",
        +      "Tangerine",
        +      "Tapestry",
        +      "Taprom",
        +      "Tauri",
        +      "Taviraj",
        +      "Teachers",
        +      "Teko",
        +      "Tektur",
        +      "Telex",
        +      "Tenali Ramakrishna",
        +      "Tenor Sans",
        +      "Text Me One",
        +      "Texturina",
        +      "Thasadith",
        +      "The Girl Next Door",
        +      "The Nautigal",
        +      "Tienne",
        +      "TikTok Sans",
        +      "Tillana",
        +      "Tilt Neon",
        +      "Tilt Prism",
        +      "Tilt Warp",
        +      "Timmana",
        +      "Tinos",
        +      "Tiny5",
        +      "Tiro Bangla",
        +      "Tiro Devanagari Hindi",
        +      "Tiro Devanagari Marathi",
        +      "Tiro Devanagari Sanskrit",
        +      "Tiro Gurmukhi",
        +      "Tiro Kannada",
        +      "Tiro Tamil",
        +      "Tiro Telugu",
        +      "Tirra",
        +      "Titan One",
        +      "Titillium Web",
        +      "Tomorrow",
        +      "Tourney",
        +      "Trade Winds",
        +      "Train One",
        +      "Triodion",
        +      "Trirong",
        +      "Trispace",
        +      "Trocchi",
        +      "Trochut",
        +      "Truculenta",
        +      "Trykker",
        +      "Tsukimi Rounded",
        +      "Tuffy",
        +      "Tulpen One",
        +      "Turret Road",
        +      "Twinkle Star",
        +      "Ubuntu",
        +      "Ubuntu Condensed",
        +      "Ubuntu Mono",
        +      "Ubuntu Sans",
        +      "Ubuntu Sans Mono",
        +      "Uchen",
        +      "Ultra",
        +      "Unbounded",
        +      "Uncial Antiqua",
        +      "Underdog",
        +      "Unica One",
        +      "UnifrakturCook",
        +      "UnifrakturMaguntia",
        +      "Unkempt",
        +      "Unlock",
        +      "Unna",
        +      "UoqMunThenKhung",
        +      "Updock",
        +      "Urbanist",
        +      "VT323",
        +      "Vampiro One",
        +      "Varela",
        +      "Varela Round",
        +      "Varta",
        +      "Vast Shadow",
        +      "Vazirmatn",
        +      "Vend Sans",
        +      "Vesper Libre",
        +      "Viaoda Libre",
        +      "Vibes",
        +      "Vibur",
        +      "Victor Mono",
        +      "Vidaloka",
        +      "Viga",
        +      "Vina Sans",
        +      "Voces",
        +      "Volkhov",
        +      "Vollkorn",
        +      "Vollkorn SC",
        +      "Voltaire",
        +      "Vujahday Script",
        +      "WDXL Lubrifont JP N",
        +      "WDXL Lubrifont SC",
        +      "WDXL Lubrifont TC",
        +      "Waiting for the Sunrise",
        +      "Wallpoet",
        +      "Walter Turncoat",
        +      "Warnes",
        +      "Water Brush",
        +      "Waterfall",
        +      "Wavefont",
        +      "Wellfleet",
        +      "Wendy One",
        +      "Whisper",
        +      "WindSong",
        +      "Winky Rough",
        +      "Winky Sans",
        +      "Wire One",
        +      "Wittgenstein",
        +      "Wix Madefor Display",
        +      "Wix Madefor Text",
        +      "Work Sans",
        +      "Workbench",
        +      "Xanh Mono",
        +      "Yaldevi",
        +      "Yanone Kaffeesatz",
        +      "Yantramanav",
        +      "Yarndings 12",
        +      "Yarndings 12 Charted",
        +      "Yarndings 20",
        +      "Yarndings 20 Charted",
        +      "Yatra One",
        +      "Yellowtail",
        +      "Yeon Sung",
        +      "Yeseva One",
        +      "Yesteryear",
        +      "Yomogi",
        +      "Young Serif",
        +      "Yrsa",
        +      "Ysabeau",
        +      "Ysabeau Infant",
        +      "Ysabeau Office",
        +      "Ysabeau SC",
        +      "Yuji Boku",
        +      "Yuji Hentaigana Akari",
        +      "Yuji Hentaigana Akebono",
        +      "Yuji Mai",
        +      "Yuji Syuku",
        +      "Yusei Magic",
        +      "Yuyu",
        +      "Yuyu Short",
        +      "ZCOOL KuaiLe",
        +      "ZCOOL QingKe HuangYou",
        +      "ZCOOL XiaoWei",
        +      "Zain",
        +      "Zalando Sans",
        +      "Zalando Sans Expanded",
        +      "Zalando Sans SemiExpanded",
        +      "Zen Antique",
        +      "Zen Antique Soft",
        +      "Zen Dots",
        +      "Zen Kaku Gothic Antique",
        +      "Zen Kaku Gothic New",
        +      "Zen Kurenaido",
        +      "Zen Loop",
        +      "Zen Maru Gothic",
        +      "Zen Old Mincho",
        +      "Zen Tokyo Zoo",
        +      "Zeyada",
        +      "Zhi Mang Xing",
        +      "Zilla Slab",
        +      "Zilla Slab Highlight"
        +    ],
        +    "type": "string"
        +  },
        +  "GroupedArrangement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "type": {
        +        "const": "grouped",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "GroupedArrangement",
        +    "type": "object"
        +  },
        +  "LegendOptions": {
        +    "anyOf": [
        +      {
        +        "type": "boolean"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "title": {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        },
        +        "type": "object"
        +      }
        +    ],
        +    "title": "LegendOptions"
        +  },
        +  "LineLabels": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "points": {
        +        "$ref": "#/$defs/ConnectedPointLabels"
        +      },
        +      "series": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "content": {
        +            "items": {
        +              "enum": [
        +                "series",
        +                "value"
        +              ],
        +              "type": "string"
        +            },
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          }
        +        },
        +        "required": [
        +          "content"
        +        ],
        +        "type": "object"
        +      }
        +    },
        +    "title": "LineLabels",
        +    "type": "object"
        +  },
        +  "LineStroke": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "LineStroke",
        +    "type": "object"
        +  },
        +  "LinearScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": [
        +          {
        +            "type": "number"
        +          },
        +          {
        +            "type": "number"
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "linear",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "LinearScale",
        +    "type": "object"
        +  },
        +  "LogScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": [
        +          {
        +            "exclusiveMinimum": 0,
        +            "type": "number"
        +          },
        +          {
        +            "exclusiveMinimum": 0,
        +            "type": "number"
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "log",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "LogScale",
        +    "type": "object"
        +  },
        +  "NormalizedArrangement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "normalization": {
        +        "enum": [
        +          "percent"
        +        ],
        +        "type": "string"
        +      },
        +      "type": {
        +        "const": "stacked",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "normalization"
        +    ],
        +    "title": "NormalizedArrangement",
        +    "type": "object"
        +  },
        +  "PositionableBarLabels": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "content": {
        +        "items": {
        +          "enum": [
        +            "value",
        +            "percent",
        +            "category",
        +            "series"
        +          ],
        +          "type": "string"
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "position": {
        +        "enum": [
        +          "auto",
        +          "outside",
        +          "inside"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "content"
        +    ],
        +    "title": "PositionableBarLabels",
        +    "type": "object"
        +  },
        +  "PromotedLine": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "curve": {
        +        "enum": [
        +          "linear",
        +          "monotone",
        +          "step"
        +        ],
        +        "type": "string"
        +      },
        +      "labels": {
        +        "$ref": "#/$defs/LineLabels"
        +      },
        +      "points": {
        +        "anyOf": [
        +          {
        +            "type": "boolean"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "fill": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "radius": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              },
        +              "stroke": {
        +                "$ref": "#/$defs/Stroke"
        +              }
        +            },
        +            "type": "object"
        +          }
        +        ]
        +      },
        +      "series": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "stroke": {
        +        "$ref": "#/$defs/LineStroke"
        +      }
        +    },
        +    "required": [
        +      "series"
        +    ],
        +    "title": "PromotedLine",
        +    "type": "object"
        +  },
        +  "RangeCategoryOrder": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "direction": {
        +            "enum": [
        +              "ascending",
        +              "descending"
        +            ],
        +            "type": "string"
        +          },
        +          "type": {
        +            "const": "category",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "direction"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "$ref": "#/$defs/ExplicitCategoryOrder"
        +      }
        +    ],
        +    "title": "RangeCategoryOrder"
        +  },
        +  "RangeCategoryRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/BandScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "RangeCategoryRole",
        +    "type": "object"
        +  },
        +  "RangeValuesRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "end": {
        +        "$ref": "#/$defs/FieldRole"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/ContinuousScale"
        +      },
        +      "start": {
        +        "$ref": "#/$defs/FieldRole"
        +      },
        +      "type": {
        +        "const": "range",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "start",
        +      "end"
        +    ],
        +    "title": "RangeValuesRole",
        +    "type": "object"
        +  },
        +  "ReferenceLabel": {
        +    "additionalProperties": false,
        +    "description": "Omit for no label. content is an ordered array of text and/or value, without duplicates. text is required when text is included. Values follow the reference's statistic scope and formatting.",
        +    "properties": {
        +      "align": {
        +        "enum": [
        +          "start",
        +          "center",
        +          "end"
        +        ],
        +        "type": "string"
        +      },
        +      "content": {
        +        "items": {
        +          "enum": [
        +            "text",
        +            "value"
        +          ],
        +          "type": "string"
        +        },
        +        "maxItems": 2,
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "position": {
        +        "enum": [
        +          "before",
        +          "after",
        +          "outside-start",
        +          "outside-end"
        +        ],
        +        "type": "string"
        +      },
        +      "text": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "required": [
        +      "content"
        +    ],
        +    "title": "ReferenceLabel",
        +    "type": "object"
        +  },
        +  "ReferenceStroke": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "color": {
        +        "$ref": "#/$defs/Color"
        +      },
        +      "style": {
        +        "enum": [
        +          "solid",
        +          "dashed",
        +          "dotted"
        +        ],
        +        "type": "string"
        +      },
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "ReferenceStroke",
        +    "type": "object"
        +  },
        +  "ReserveSpace": {
        +    "anyOf": [
        +      {
        +        "type": "boolean"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "x": {
        +            "type": "boolean"
        +          },
        +          "y": {
        +            "type": "boolean"
        +          }
        +        },
        +        "required": [
        +          "x",
        +          "y"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "ReserveSpace"
        +  },
        +  "ScatterAnnotations": {
        +    "items": {
        +      "additionalProperties": false,
        +      "properties": {
        +        "align": {
        +          "enum": [
        +            "start",
        +            "center",
        +            "end"
        +          ],
        +          "type": "string"
        +        },
        +        "anchor": {
        +          "oneOf": [
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "id": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "type": {
        +                  "const": "datum",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "id"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "type": {
        +                  "const": "coordinate",
        +                  "type": "string"
        +                },
        +                "x": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "y": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                }
        +              },
        +              "required": [
        +                "type",
        +                "x",
        +                "y"
        +              ],
        +              "type": "object"
        +            }
        +          ],
        +          "title": "ScatterAnnotationAnchor"
        +        },
        +        "boxAnchor": {
        +          "$ref": "#/$defs/AnnotationBoxAnchor"
        +        },
        +        "connector": {
        +          "enum": [
        +            "none",
        +            "line",
        +            "arrow"
        +          ],
        +          "type": "string"
        +        },
        +        "offset": {
        +          "$ref": "#/$defs/AnnotationOffset"
        +        },
        +        "placement": {
        +          "$ref": "#/$defs/AnnotationPlacement"
        +        },
        +        "reserveSpace": {
        +          "$ref": "#/$defs/ReserveSpace"
        +        },
        +        "style": {
        +          "$ref": "#/$defs/AnnotationTextStyle"
        +        },
        +        "text": {
        +          "type": "string"
        +        },
        +        "visible": {
        +          "type": "boolean"
        +        },
        +        "width": {
        +          "anyOf": [
        +            {
        +              "exclusiveMinimum": 0,
        +              "type": "number"
        +            },
        +            {
        +              "const": "shape",
        +              "type": "string"
        +            }
        +          ]
        +        }
        +      },
        +      "required": [
        +        "text",
        +        "anchor"
        +      ],
        +      "title": "ScatterAnnotation",
        +      "type": "object"
        +    },
        +    "minItems": 1,
        +    "title": "ScatterAnnotations",
        +    "type": "array"
        +  },
        +  "ScatterColor": {
        +    "anyOf": [
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "oneOf": [
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "domain": {
        +                "items": {
        +                  "type": [
        +                    "string",
        +                    "number"
        +                  ]
        +                },
        +                "minItems": 1,
        +                "type": "array",
        +                "uniqueItems": true
        +              },
        +              "field": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "legend": {
        +                "$ref": "#/$defs/LegendOptions"
        +              },
        +              "range": {
        +                "$ref": "#/$defs/ColorRange"
        +              },
        +              "type": {
        +                "const": "categorical",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type",
        +              "field"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "domain": {
        +                "items": [
        +                  {
        +                    "type": "number"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ],
        +                "maxItems": 2,
        +                "minItems": 2,
        +                "type": "array"
        +              },
        +              "field": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "format": {
        +                "type": "string"
        +              },
        +              "legend": {
        +                "$ref": "#/$defs/LegendOptions"
        +              },
        +              "range": {
        +                "anyOf": [
        +                  {
        +                    "items": [
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      }
        +                    ],
        +                    "maxItems": 2,
        +                    "minItems": 2,
        +                    "type": "array"
        +                  },
        +                  {
        +                    "$ref": "#/$defs/ThreeColorRange"
        +                  }
        +                ],
        +                "title": "SequentialColorRange"
        +              },
        +              "type": {
        +                "const": "sequential",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type",
        +              "field"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": false,
        +            "properties": {
        +              "domain": {
        +                "items": [
        +                  {
        +                    "type": "number"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ],
        +                "maxItems": 2,
        +                "minItems": 2,
        +                "type": "array"
        +              },
        +              "field": {
        +                "minLength": 1,
        +                "type": "string"
        +              },
        +              "format": {
        +                "type": "string"
        +              },
        +              "legend": {
        +                "$ref": "#/$defs/LegendOptions"
        +              },
        +              "midpoint": {
        +                "type": "number"
        +              },
        +              "range": {
        +                "anyOf": [
        +                  {
        +                    "$ref": "#/$defs/ThreeColorRange"
        +                  },
        +                  {
        +                    "items": [
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      },
        +                      {
        +                        "$ref": "#/$defs/Color"
        +                      }
        +                    ],
        +                    "maxItems": 5,
        +                    "minItems": 5,
        +                    "type": "array"
        +                  }
        +                ],
        +                "title": "DivergingColorRange"
        +              },
        +              "type": {
        +                "const": "diverging",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type",
        +              "field",
        +              "domain",
        +              "midpoint"
        +            ],
        +            "type": "object"
        +          }
        +        ]
        +      }
        +    ],
        +    "title": "ScatterColor"
        +  },
        +  "ScatterInterval": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "axis": {
        +        "enum": [
        +          "x",
        +          "y"
        +        ],
        +        "type": "string"
        +      },
        +      "lower": {
        +        "$ref": "#/$defs/FieldRole"
        +      },
        +      "stroke": {
        +        "$ref": "#/$defs/Stroke"
        +      },
        +      "upper": {
        +        "$ref": "#/$defs/FieldRole"
        +      }
        +    },
        +    "required": [
        +      "axis",
        +      "lower",
        +      "upper"
        +    ],
        +    "title": "ScatterInterval",
        +    "type": "object"
        +  },
        +  "ScatterLabels": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "position": {
        +        "enum": [
        +          "above",
        +          "side"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "ScatterLabels",
        +    "type": "object"
        +  },
        +  "ScatterReferences": {
        +    "items": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "enum": [
        +                "x",
        +                "y"
        +              ],
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "value",
        +              "type": "string"
        +            },
        +            "value": {
        +              "type": [
        +                "string",
        +                "number"
        +              ]
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "value"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "axis": {
        +              "enum": [
        +                "x",
        +                "y"
        +              ],
        +              "type": "string"
        +            },
        +            "contributeToDomain": {
        +              "description": "Include this reference in automatic continuous-axis domains. Defaults to true. Explicit domains and normalized share bounds take precedence.",
        +              "type": "boolean"
        +            },
        +            "label": {
        +              "$ref": "#/$defs/ReferenceLabel"
        +            },
        +            "layer": {
        +              "enum": [
        +                "back",
        +                "front"
        +              ],
        +              "type": "string"
        +            },
        +            "reserveSpace": {
        +              "$ref": "#/$defs/ReserveSpace"
        +            },
        +            "statistic": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "operation": {
        +                  "enum": [
        +                    "average",
        +                    "median",
        +                    "min",
        +                    "max"
        +                  ],
        +                  "type": "string"
        +                },
        +                "scope": {
        +                  "enum": [
        +                    "visible",
        +                    "all"
        +                  ],
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "operation",
        +                "scope"
        +              ],
        +              "title": "ReferenceStatistic",
        +              "type": "object"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/ReferenceStroke"
        +            },
        +            "type": {
        +              "const": "statistic",
        +              "type": "string"
        +            },
        +            "visible": {
        +              "type": "boolean"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "axis",
        +            "statistic"
        +          ],
        +          "type": "object"
        +        }
        +      ],
        +      "title": "ScatterReference"
        +    },
        +    "minItems": 1,
        +    "title": "ScatterReferences",
        +    "type": "array"
        +  },
        +  "ScatterRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      },
        +      "scale": {
        +        "$ref": "#/$defs/CategoryScale"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "ScatterRole",
        +    "type": "object"
        +  },
        +  "SeriesLinearValuesRole": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "long",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "field",
        +          "series"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "minItems": 2,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "wide",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "fields"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "count",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "series"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "SeriesLinearValuesRole"
        +  },
        +  "SeriesLinearValuesRoleWithPercent": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "percentFormat": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "long",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "field",
        +          "series"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "minItems": 2,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "percentFormat": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "wide",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "fields"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "percentFormat": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "series": {
        +            "$ref": "#/$defs/SeriesRole"
        +          },
        +          "type": {
        +            "const": "count",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "series"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "SeriesLinearValuesRoleWithPercent"
        +  },
        +  "SeriesRole": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": {
        +          "type": [
        +            "string",
        +            "number"
        +          ]
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      },
        +      "field": {
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "format": {
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "field"
        +    ],
        +    "title": "SeriesRole",
        +    "type": "object"
        +  },
        +  "SimpleBarValuesRole": {
        +    "oneOf": [
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "field": {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "long",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "field"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "aggregation": {
        +            "enum": [
        +              "sum",
        +              "average",
        +              "min",
        +              "max",
        +              "median"
        +            ],
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": [
        +              {
        +                "minLength": 1,
        +                "type": "string"
        +              }
        +            ],
        +            "maxItems": 1,
        +            "minItems": 1,
        +            "type": "array",
        +            "uniqueItems": true
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "wide",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type",
        +          "fields"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "format": {
        +            "type": "string"
        +          },
        +          "scale": {
        +            "$ref": "#/$defs/LinearScale"
        +          },
        +          "type": {
        +            "const": "count",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type"
        +        ],
        +        "type": "object"
        +      }
        +    ],
        +    "title": "SimpleBarValuesRole"
        +  },
        +  "StackedArrangement": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "type": {
        +        "const": "stacked",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "StackedArrangement",
        +    "type": "object"
        +  },
        +  "StackedBarLabels": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "content": {
        +        "items": {
        +          "enum": [
        +            "value",
        +            "percent",
        +            "category",
        +            "series"
        +          ],
        +          "type": "string"
        +        },
        +        "minItems": 1,
        +        "type": "array",
        +        "uniqueItems": true
        +      }
        +    },
        +    "required": [
        +      "content"
        +    ],
        +    "title": "StackedBarLabels",
        +    "type": "object"
        +  },
        +  "Stroke": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "color": {
        +        "$ref": "#/$defs/Color"
        +      },
        +      "width": {
        +        "exclusiveMinimum": 0,
        +        "type": "number"
        +      }
        +    },
        +    "title": "Stroke",
        +    "type": "object"
        +  },
        +  "ThemeCategoricalPalette": {
        +    "items": {
        +      "minLength": 1,
        +      "type": "string"
        +    },
        +    "minItems": 1,
        +    "title": "ThemeCategoricalPalette",
        +    "type": "array"
        +  },
        +  "ThemeDivergingRange": {
        +    "anyOf": [
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 3,
        +        "minItems": 3,
        +        "type": "array"
        +      },
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 5,
        +        "minItems": 5,
        +        "type": "array"
        +      }
        +    ],
        +    "title": "ThemeDivergingRange"
        +  },
        +  "ThemeName": {
        +    "enum": [
        +      "editorial",
        +      "clean",
        +      "noir",
        +      "loud",
        +      "soft",
        +      "technical"
        +    ],
        +    "title": "ThemeName",
        +    "type": "string"
        +  },
        +  "ThemeOverrides": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "axes": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "gridLineWidth": {
        +            "minimum": 0,
        +            "type": "number"
        +          },
        +          "lineWidth": {
        +            "minimum": 0,
        +            "type": "number"
        +          },
        +          "tickPadding": {
        +            "minimum": 0,
        +            "type": "number"
        +          },
        +          "tickSize": {
        +            "minimum": 0,
        +            "type": "number"
        +          }
        +        },
        +        "title": "ThemeAxisOverrides",
        +        "type": "object"
        +      },
        +      "colors": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "axes": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "grid": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "line": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "tickLabel": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "title": {
        +                "$ref": "#/$defs/Color"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "background": {
        +            "$ref": "#/$defs/Color"
        +          },
        +          "caption": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "color": {
        +                "$ref": "#/$defs/Color"
        +              },
        +              "linkColor": {
        +                "$ref": "#/$defs/Color"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "categorical": {
        +            "anyOf": [
        +              {
        +                "$ref": "#/$defs/ThemeCategoricalPalette"
        +              },
        +              {
        +                "anyOf": [
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      }
        +                    },
        +                    "required": [
        +                      "light"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeCategoricalPalette"
        +                      }
        +                    },
        +                    "required": [
        +                      "dark"
        +                    ],
        +                    "type": "object"
        +                  }
        +                ]
        +              }
        +            ],
        +            "title": "ThemeCategoricalColors"
        +          },
        +          "diverging": {
        +            "anyOf": [
        +              {
        +                "$ref": "#/$defs/ThemeDivergingRange"
        +              },
        +              {
        +                "anyOf": [
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "light"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeDivergingRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "dark"
        +                    ],
        +                    "type": "object"
        +                  }
        +                ]
        +              }
        +            ],
        +            "title": "ThemeDivergingColors"
        +          },
        +          "label": {
        +            "$ref": "#/$defs/Color"
        +          },
        +          "sequential": {
        +            "anyOf": [
        +              {
        +                "$ref": "#/$defs/ThemeSequentialRange"
        +              },
        +              {
        +                "anyOf": [
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "light"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "dark": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      },
        +                      "light": {
        +                        "$ref": "#/$defs/ThemeSequentialRange"
        +                      }
        +                    },
        +                    "required": [
        +                      "dark"
        +                    ],
        +                    "type": "object"
        +                  }
        +                ]
        +              }
        +            ],
        +            "title": "ThemeSequentialColors"
        +          },
        +          "subtitle": {
        +            "$ref": "#/$defs/Color"
        +          },
        +          "title": {
        +            "$ref": "#/$defs/Color"
        +          }
        +        },
        +        "title": "ThemeColorOverrides",
        +        "type": "object"
        +      },
        +      "fonts": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "body": {
        +            "$ref": "#/$defs/GoogleFontFamily"
        +          },
        +          "numeric": {
        +            "$ref": "#/$defs/GoogleFontFamily"
        +          },
        +          "title": {
        +            "$ref": "#/$defs/GoogleFontFamily"
        +          }
        +        },
        +        "title": "ThemeFontOverrides",
        +        "type": "object"
        +      },
        +      "typography": {
        +        "additionalProperties": false,
        +        "minProperties": 1,
        +        "properties": {
        +          "axisTitle": {
        +            "$ref": "#/$defs/WeightTypography"
        +          },
        +          "baseSize": {
        +            "exclusiveMinimum": 0,
        +            "type": "number"
        +          },
        +          "caption": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "gap": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "header": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "gap": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "titleSubtitleGap": {
        +                "minimum": 0,
        +                "type": "number"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "label": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "haloWidth": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "mutedOpacity": {
        +                "maximum": 1,
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "mutedWeight": {
        +                "anyOf": [
        +                  {
        +                    "const": 100,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 200,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 300,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 400,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 500,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 600,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 700,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 800,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 900,
        +                    "type": "number"
        +                  }
        +                ]
        +              },
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              },
        +              "weight": {
        +                "anyOf": [
        +                  {
        +                    "const": 100,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 200,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 300,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 400,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 500,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 600,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 700,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 800,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 900,
        +                    "type": "number"
        +                  }
        +                ]
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "subtitle": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              }
        +            },
        +            "type": "object"
        +          },
        +          "tickLabel": {
        +            "$ref": "#/$defs/WeightTypography"
        +          },
        +          "title": {
        +            "additionalProperties": false,
        +            "minProperties": 1,
        +            "properties": {
        +              "size": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              },
        +              "weight": {
        +                "anyOf": [
        +                  {
        +                    "const": 100,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 200,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 300,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 400,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 500,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 600,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 700,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 800,
        +                    "type": "number"
        +                  },
        +                  {
        +                    "const": 900,
        +                    "type": "number"
        +                  }
        +                ]
        +              }
        +            },
        +            "type": "object"
        +          }
        +        },
        +        "title": "ThemeTypographyOverrides",
        +        "type": "object"
        +      }
        +    },
        +    "title": "ThemeOverrides",
        +    "type": "object"
        +  },
        +  "ThemeSequentialRange": {
        +    "anyOf": [
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      {
        +        "items": [
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          {
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 3,
        +        "minItems": 3,
        +        "type": "array"
        +      }
        +    ],
        +    "title": "ThemeSequentialRange"
        +  },
        +  "ThreeColorRange": {
        +    "items": [
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "$ref": "#/$defs/Color"
        +      },
        +      {
        +        "$ref": "#/$defs/Color"
        +      }
        +    ],
        +    "maxItems": 3,
        +    "minItems": 3,
        +    "title": "ThreeColorRange",
        +    "type": "array"
        +  },
        +  "UtcScale": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "domain": {
        +        "items": [
        +          {
        +            "type": [
        +              "string",
        +              "number"
        +            ]
        +          },
        +          {
        +            "type": [
        +              "string",
        +              "number"
        +            ]
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "reverse": {
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "utc",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "title": "UtcScale",
        +    "type": "object"
        +  },
        +  "WeightTypography": {
        +    "additionalProperties": false,
        +    "minProperties": 1,
        +    "properties": {
        +      "weight": {
        +        "anyOf": [
        +          {
        +            "const": 100,
        +            "type": "number"
        +          },
        +          {
        +            "const": 200,
        +            "type": "number"
        +          },
        +          {
        +            "const": 300,
        +            "type": "number"
        +          },
        +          {
        +            "const": 400,
        +            "type": "number"
        +          },
        +          {
        +            "const": 500,
        +            "type": "number"
        +          },
        +          {
        +            "const": 600,
        +            "type": "number"
        +          },
        +          {
        +            "const": 700,
        +            "type": "number"
        +          },
        +          {
        +            "const": 800,
        +            "type": "number"
        +          },
        +          {
        +            "const": 900,
        +            "type": "number"
        +          }
        +        ]
        +      }
        +    },
        +    "title": "WeightTypography",
        +    "type": "object"
        +  }
        +}
      • addedOutput schema / properties / compatibility
        Added value: +{
        +  "oneOf": [
        +    {
        +      "additionalProperties": false,
        +      "properties": {
        +        "classification": {
        +          "enum": [
        +            "exact",
        +            "normalized"
        +          ],
        +          "type": "string"
        +        },
        +        "lossCodes": {
        +          "maxItems": 0,
        +          "minItems": 0,
        +          "type": "array"
        +        }
        +      },
        +      "required": [
        +        "classification",
        +        "lossCodes"
        +      ],
        +      "type": "object"
        +    },
        +    {
        +      "additionalProperties": false,
        +      "properties": {
        +        "classification": {
        +          "const": "lossy",
        +          "type": "string"
        +        },
        +        "lossCodes": {
        +          "items": {
        +            "type": "string"
        +          },
        +          "minItems": 1,
        +          "type": "array"
        +        }
        +      },
        +      "required": [
        +        "classification",
        +        "lossCodes"
        +      ],
        +      "type": "object"
        +    },
        +    {
        +      "additionalProperties": false,
        +      "properties": {
        +        "classification": {
        +          "const": "unsupported",
        +          "type": "string"
        +        },
        +        "lossCodes": {
        +          "maxItems": 0,
        +          "minItems": 0,
        +          "type": "array"
        +        },
        +        "unsupportedCode": {
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "classification",
        +        "lossCodes",
        +        "unsupportedCode"
        +      ],
        +      "type": "object"
        +    }
        +  ]
        +}
      • removedOutput schema / properties / diagnostics / items / additionalProperties
        Removed value: -false
      • addedOutput schema / properties / diagnostics / items / oneOf
        Added value: +[
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "invalid_structure",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "actualBytes": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "maxBytes": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "reason": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "invalid_preference",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "actualItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "fields": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "format": {
        +            "type": "string"
        +          },
        +          "maximum": {
        +            "type": "number"
        +          },
        +          "minimum": {
        +            "type": "number"
        +          },
        +          "minimumItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "parts": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "property": {
        +            "type": "string"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "requiredItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "role": {
        +            "type": "string"
        +          },
        +          "samplePaths": {
        +            "items": {
        +              "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "sampleValues": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "syntax": {
        +            "enum": [
        +              "percent",
        +              "semantic"
        +            ],
        +            "type": "string"
        +          },
        +          "type": {
        +            "type": "string"
        +          },
        +          "value": {
        +            "type": [
        +              "string",
        +              "number"
        +            ]
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "incompatible_data",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "affectedCategories": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "affectedRows": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "aggregation": {
        +            "type": "string"
        +          },
        +          "axis": {
        +            "enum": [
        +              "x",
        +              "y"
        +            ],
        +            "type": "string"
        +          },
        +          "categoryField": {
        +            "type": "string"
        +          },
        +          "expected": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "field": {
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "omission": {
        +            "enum": [
        +              "incompatible",
        +              "missing"
        +            ],
        +            "type": "string"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "roles": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "rowCount": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "samplePaths": {
        +            "items": {
        +              "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "sampleValues": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "valueField": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "incompatible_scale",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "actualItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "affectedValues": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "axis": {
        +            "enum": [
        +              "x",
        +              "y"
        +            ],
        +            "type": "string"
        +          },
        +          "domain": {
        +            "items": [
        +              {
        +                "type": "number"
        +              },
        +              {
        +                "type": "number"
        +              }
        +            ],
        +            "maxItems": 2,
        +            "minItems": 2,
        +            "type": "array"
        +          },
        +          "expectedItems": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "markTypes": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "samplePaths": {
        +            "items": {
        +              "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "sampleValues": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "supportedTypes": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "type": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "duplicate_identity",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "affectedRows": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "categoryField": {
        +            "type": "string"
        +          },
        +          "field": {
        +            "type": "string"
        +          },
        +          "fields": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "samplePaths": {
        +            "items": {
        +              "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "seriesField": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "unresolved_decoration",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "annotationIndex": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "axis": {
        +            "enum": [
        +              "x",
        +              "y"
        +            ],
        +            "type": "string"
        +          },
        +          "reason": {
        +            "type": "string"
        +          },
        +          "referenceIndex": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "statistic": {
        +            "type": "string"
        +          },
        +          "value": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "const": "render_adjustment",
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "affectedCount": {
        +            "maximum": 9007199254740991,
        +            "minimum": 0,
        +            "type": "integer"
        +          },
        +          "labelRoles": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "reason": {
        +            "const": "label_collision_suppressed",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "reason",
        +          "affectedCount",
        +          "labelRoles"
        +        ],
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +        "type": "string"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "pattern": "^(?:\\/(?:[^~/]|~[01])*)*$",
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "severity",
        +      "path",
        +      "message",
        +      "code",
        +      "details"
        +    ],
        +    "type": "object"
        +  }
        +]
      • removedOutput schema / properties / diagnostics / items / properties
        Removed value: -{
        -  "code": {
        -    "type": "string"
        -  },
        -  "details": {
        -    "additionalProperties": {},
        -    "propertyNames": {
        -      "type": "string"
        -    },
        -    "type": "object"
        -  },
        -  "message": {
        -    "type": "string"
        -  },
        -  "path": {
        -    "items": {
        -      "anyOf": [
        -        {
        -          "type": "string"
        -        },
        -        {
        -          "type": "number"
        -        }
        -      ]
        -    },
        -    "type": "array"
        -  },
        -  "relatedPaths": {
        -    "items": {
        -      "items": {
        -        "anyOf": [
        -          {
        -            "type": "string"
        -          },
        -          {
        -            "type": "number"
        -          }
        -        ]
        -      },
        -      "type": "array"
        -    },
        -    "type": "array"
        -  },
        -  "severity": {
        -    "enum": [
        -      "error",
        -      "warning",
        -      "suggestion"
        -    ],
        -    "type": "string"
        -  }
        -}
      • removedOutput schema / properties / diagnostics / items / required
        Removed value: -[
        -  "code",
        -  "severity",
        -  "path",
        -  "message",
        -  "details"
        -]
      • removedOutput schema / properties / diagnostics / items / type
        Removed value: -"object"
      • removedOutput schema / properties / errors
        Removed value: -{
        -  "items": {
        -    "additionalProperties": false,
        -    "properties": {
        -      "code": {
        -        "type": "string"
        -      },
        -      "details": {
        -        "additionalProperties": {},
        -        "propertyNames": {
        -          "type": "string"
        -        },
        -        "type": "object"
        -      },
        -      "message": {
        -        "type": "string"
        -      },
        -      "path": {
        -        "items": {
        -          "anyOf": [
        -            {
        -              "type": "string"
        -            },
        -            {
        -              "type": "number"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "relatedPaths": {
        -        "items": {
        -          "items": {
        -            "anyOf": [
        -              {
        -                "type": "string"
        -              },
        -              {
        -                "type": "number"
        -              }
        -            ]
        -          },
        -          "type": "array"
        -        },
        -        "type": "array"
        -      },
        -      "severity": {
        -        "enum": [
        -          "error",
        -          "warning",
        -          "suggestion"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "code",
        -      "severity",
        -      "path",
        -      "message",
        -      "details"
        -    ],
        -    "type": "object"
        -  },
        -  "type": "array"
        -}
      • removedOutput schema / properties / message
        Removed value: -{
        -  "type": "string"
        -}
      • removedOutput schema / properties / suggestedConfig
        Removed value: -{
        -  "additionalProperties": {},
        -  "description": "Schema version 2026-03-20. Send this JSON to POST https://szum.io/validate to validate it or POST https://szum.io/chart to render a chart image.",
        -  "properties": {
        -    "attribution": {
        -      "description": "Show a small \"Made with Szum\" credit in the bottom-right. Always on for free and keyless renders; Creator and Pro omit it by default and set true to opt in.",
        -      "type": "boolean"
        -    },
        -    "color": {
        -      "anyOf": [
        -        {
        -          "additionalProperties": {},
        -          "properties": {
        -            "domain": {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            },
        -            "label": {
        -              "type": "string"
        -            },
        -            "range": {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            },
        -            "type": {
        -              "const": "categorical",
        -              "type": "string"
        -            }
        -          },
        -          "required": [
        -            "type"
        -          ],
        -          "type": "object"
        -        },
        -        {
        -          "additionalProperties": {},
        -          "properties": {
        -            "domain": {
        -              "items": [
        -                {
        -                  "type": "number"
        -                },
        -                {
        -                  "type": "number"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            "label": {
        -              "type": "string"
        -            },
        -            "range": {
        -              "items": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "string"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            "type": {
        -              "const": "sequential",
        -              "type": "string"
        -            }
        -          },
        -          "required": [
        -            "type"
        -          ],
        -          "type": "object"
        -        },
        -        {
        -          "additionalProperties": false,
        -          "properties": {
        -            "label": {
        -              "type": "string"
        -            }
        -          },
        -          "type": "object"
        -        }
        -      ]
        -    },
        -    "data": {
        -      "items": {
        -        "additionalProperties": {
        -          "anyOf": [
        -            {
        -              "type": "string"
        -            },
        -            {
        -              "type": "number"
        -            }
        -          ]
        -        },
        -        "propertyNames": {
        -          "type": "string"
        -        },
        -        "type": "object"
        -      },
        -      "type": "array"
        -    },
        -    "footer": {
        -      "description": "Caption below the chart (a source line, methodology note, date). URLs, bare domains, and [label](url) links in it are auto-detected and rendered as inline links on every surface.",
        -      "type": "string"
        -    },
        -    "format": {
        -      "enum": [
        -        "svg",
        -        "png"
        -      ],
        -      "type": "string"
        -    },
        -    "headerAlign": {
        -      "enum": [
        -        "left",
        -        "center",
        -        "right"
        -      ],
        -      "type": "string"
        -    },
        -    "height": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "locale": {
        -      "description": "Locale identifier accepted by JavaScript Intl and associated with the chart content, such as en, pl, or zh-Hant.",
        -      "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        -      "type": "string"
        -    },
        -    "margin": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "bottom": {
        -          "type": "number"
        -        },
        -        "left": {
        -          "type": "number"
        -        },
        -        "right": {
        -          "type": "number"
        -        },
        -        "top": {
        -          "type": "number"
        -        }
        -      },
        -      "type": "object"
        -    },
        -    "marks": {
        -      "items": {
        -        "oneOf": [
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "label": {
        -                "additionalProperties": {},
        -                "properties": {
        -                  "field": {
        -                    "type": "string"
        -                  },
        -                  "format": {
        -                    "type": "string"
        -                  }
        -                },
        -                "required": [
        -                  "field"
        -                ],
        -                "type": "object"
        -              },
        -              "r": {
        -                "type": "number"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "dot",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "curve": {
        -                "enum": [
        -                  "linear",
        -                  "monotone",
        -                  "step"
        -                ],
        -                "type": "string"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "end": {
        -                        "anyOf": [
        -                          {
        -                            "type": "boolean"
        -                          },
        -                          {
        -                            "items": {
        -                              "enum": [
        -                                "category",
        -                                "value"
        -                              ],
        -                              "type": "string"
        -                            },
        -                            "type": "array"
        -                          }
        -                        ],
        -                        "default": [
        -                          "category"
        -                        ]
        -                      },
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "points": {
        -                        "anyOf": [
        -                          {
        -                            "enum": [
        -                              "extrema",
        -                              "all",
        -                              "ends"
        -                            ],
        -                            "type": "string"
        -                          },
        -                          {
        -                            "const": false,
        -                            "type": "boolean"
        -                          },
        -                          {
        -                            "additionalProperties": {},
        -                            "properties": {
        -                              "at": {
        -                                "enum": [
        -                                  "extrema",
        -                                  "all",
        -                                  "ends"
        -                                ],
        -                                "type": "string"
        -                              },
        -                              "show": {
        -                                "default": [
        -                                  "value"
        -                                ],
        -                                "items": {
        -                                  "enum": [
        -                                    "value",
        -                                    "category"
        -                                  ],
        -                                  "type": "string"
        -                                },
        -                                "type": "array"
        -                              }
        -                            },
        -                            "required": [
        -                              "at"
        -                            ],
        -                            "type": "object"
        -                          }
        -                        ],
        -                        "default": false
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "line",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "cornerRadius": {
        -                "type": "number"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "group": {
        -                "default": "stack",
        -                "enum": [
        -                  "stack",
        -                  "dodge"
        -                ],
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "position": {
        -                        "default": "outside",
        -                        "enum": [
        -                          "auto",
        -                          "outside",
        -                          "inside"
        -                        ],
        -                        "type": "string"
        -                      },
        -                      "show": {
        -                        "default": [
        -                          "value"
        -                        ],
        -                        "items": {
        -                          "enum": [
        -                            "value",
        -                            "percent",
        -                            "category",
        -                            "total"
        -                          ],
        -                          "type": "string"
        -                        },
        -                        "type": "array"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "barY",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "cornerRadius": {
        -                "type": "number"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "group": {
        -                "default": "stack",
        -                "enum": [
        -                  "stack",
        -                  "dodge"
        -                ],
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "position": {
        -                        "default": "outside",
        -                        "enum": [
        -                          "auto",
        -                          "outside",
        -                          "inside"
        -                        ],
        -                        "type": "string"
        -                      },
        -                      "show": {
        -                        "default": [
        -                          "value"
        -                        ],
        -                        "items": {
        -                          "enum": [
        -                            "value",
        -                            "percent",
        -                            "category",
        -                            "total"
        -                          ],
        -                          "type": "string"
        -                        },
        -                        "type": "array"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "barX",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "curve": {
        -                "enum": [
        -                  "linear",
        -                  "monotone",
        -                  "step"
        -                ],
        -                "type": "string"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "end": {
        -                        "anyOf": [
        -                          {
        -                            "type": "boolean"
        -                          },
        -                          {
        -                            "items": {
        -                              "enum": [
        -                                "category",
        -                                "value",
        -                                "percent"
        -                              ],
        -                              "type": "string"
        -                            },
        -                            "type": "array"
        -                          }
        -                        ],
        -                        "default": [
        -                          "category"
        -                        ]
        -                      },
        -                      "format": {
        -                        "type": "string"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "areaY",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "curve": {
        -                "enum": [
        -                  "linear",
        -                  "monotone",
        -                  "step"
        -                ],
        -                "type": "string"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "areaX",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "cornerRadius": {
        -                "type": "number"
        -              },
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "innerRadius": {
        -                "default": 0,
        -                "maximum": 1,
        -                "minimum": 0,
        -                "type": "number"
        -              },
        -              "label": {
        -                "anyOf": [
        -                  {
        -                    "type": "boolean"
        -                  },
        -                  {
        -                    "additionalProperties": {},
        -                    "properties": {
        -                      "format": {
        -                        "type": "string"
        -                      },
        -                      "position": {
        -                        "default": "auto",
        -                        "enum": [
        -                          "auto",
        -                          "inside",
        -                          "outside"
        -                        ],
        -                        "type": "string"
        -                      },
        -                      "show": {
        -                        "default": [
        -                          "category",
        -                          "percent"
        -                        ],
        -                        "items": {
        -                          "enum": [
        -                            "value",
        -                            "percent",
        -                            "category"
        -                          ],
        -                          "type": "string"
        -                        },
        -                        "type": "array"
        -                      }
        -                    },
        -                    "type": "object"
        -                  }
        -                ]
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "pie",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "dx": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "dy": {
        -                "default": 0,
        -                "type": "number"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "fontSize": {
        -                "type": "number"
        -              },
        -              "fontWeight": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "text": {
        -                "default": "text",
        -                "type": "string"
        -              },
        -              "textAnchor": {
        -                "default": "center",
        -                "enum": [
        -                  "start",
        -                  "center",
        -                  "end"
        -                ],
        -                "type": "string"
        -              },
        -              "type": {
        -                "const": "text",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "ruleX",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          },
        -          {
        -            "additionalProperties": {},
        -            "properties": {
        -              "data": {
        -                "items": {
        -                  "additionalProperties": {
        -                    "anyOf": [
        -                      {
        -                        "type": "string"
        -                      },
        -                      {
        -                        "type": "number"
        -                      }
        -                    ]
        -                  },
        -                  "propertyNames": {
        -                    "type": "string"
        -                  },
        -                  "type": "object"
        -                },
        -                "type": "array"
        -              },
        -              "fill": {
        -                "type": "string"
        -              },
        -              "stroke": {
        -                "type": "string"
        -              },
        -              "strokeWidth": {
        -                "default": 1,
        -                "type": "number"
        -              },
        -              "type": {
        -                "const": "ruleY",
        -                "type": "string"
        -              },
        -              "x": {
        -                "default": "x",
        -                "type": "string"
        -              },
        -              "y": {
        -                "default": "y",
        -                "type": "string"
        -              }
        -            },
        -            "required": [
        -              "type"
        -            ],
        -            "type": "object"
        -          }
        -        ]
        -      },
        -      "minItems": 1,
        -      "type": "array"
        -    },
        -    "plotHeight": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "plotWidth": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "scale": {
        -      "maximum": 4,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "subtitle": {
        -      "type": "string"
        -    },
        -    "theme": {
        -      "default": "editorial",
        -      "enum": [
        -        "editorial",
        -        "clean",
        -        "noir",
        -        "loud",
        -        "soft",
        -        "technical"
        -      ],
        -      "type": "string"
        -    },
        -    "themeOverrides": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "axisColor": {
        -          "type": "string"
        -        },
        -        "axisFrame": {
        -          "enum": [
        -            "none",
        -            "baseline",
        -            "lShape",
        -            "full"
        -          ],
        -          "type": "string"
        -        },
        -        "axisLabelColor": {
        -          "type": "string"
        -        },
        -        "axisLabelFontWeight": {
        -          "type": "string"
        -        },
        -        "axisLineWidth": {
        -          "type": "number"
        -        },
        -        "backgroundColor": {
        -          "type": "string"
        -        },
        -        "barCornerRadius": {
        -          "type": "number"
        -        },
        -        "barPadding": {
        -          "type": "number"
        -        },
        -        "colors": {
        -          "items": {
        -            "type": "string"
        -          },
        -          "type": "array"
        -        },
        -        "curve": {
        -          "enum": [
        -            "linear",
        -            "monotone",
        -            "step"
        -          ],
        -          "type": "string"
        -        },
        -        "dotRadius": {
        -          "type": "number"
        -        },
        -        "fontFamily": {
        -          "enum": [
        -            "ABeeZee",
        -            "ADLaM Display",
        -            "AR One Sans",
        -            "Abel",
        -            "Abhaya Libre",
        -            "Aboreto",
        -            "Abril Fatface",
        -            "Abyssinica SIL",
        -            "Aclonica",
        -            "Acme",
        -            "Actor",
        -            "Adamina",
        -            "Advent Pro",
        -            "Afacad",
        -            "Afacad Flux",
        -            "Agbalumo",
        -            "Agdasima",
        -            "Agu Display",
        -            "Aguafina Script",
        -            "Akatab",
        -            "Akaya Kanadaka",
        -            "Akaya Telivigala",
        -            "Akronim",
        -            "Akshar",
        -            "Akt",
        -            "Aladin",
        -            "Alan Sans",
        -            "Alata",
        -            "Alatsi",
        -            "Albert Sans",
        -            "Aldrich",
        -            "Alef",
        -            "Alegreya",
        -            "Alegreya SC",
        -            "Alegreya Sans",
        -            "Alegreya Sans SC",
        -            "Aleo",
        -            "Alex Brush",
        -            "Alexandria",
        -            "Alfa Slab One",
        -            "Alice",
        -            "Alien Block",
        -            "Alike",
        -            "Alike Angular",
        -            "Alkalami",
        -            "Alkatra",
        -            "Allan",
        -            "Allerta",
        -            "Allerta Stencil",
        -            "Allison",
        -            "Allkin",
        -            "Allura",
        -            "Almarai",
        -            "Almendra",
        -            "Almendra Display",
        -            "Almendra SC",
        -            "Alumni Sans",
        -            "Alumni Sans Collegiate One",
        -            "Alumni Sans Inline One",
        -            "Alumni Sans Pinstripe",
        -            "Alumni Sans SC",
        -            "Alyamama",
        -            "Amarante",
        -            "Amaranth",
        -            "Amarna",
        -            "Amatic SC",
        -            "Amethysta",
        -            "Amiko",
        -            "Amiri",
        -            "Amiri Quran",
        -            "Amita",
        -            "Anaheim",
        -            "Ancizar Sans",
        -            "Ancizar Serif",
        -            "Andada Pro",
        -            "Andika",
        -            "Anek Bangla",
        -            "Anek Devanagari",
        -            "Anek Gujarati",
        -            "Anek Gurmukhi",
        -            "Anek Kannada",
        -            "Anek Latin",
        -            "Anek Malayalam",
        -            "Anek Odia",
        -            "Anek Tamil",
        -            "Anek Telugu",
        -            "Angkor",
        -            "Annapurna SIL",
        -            "Annie Use Your Telescope",
        -            "Anonymous Pro",
        -            "Anta",
        -            "Antic",
        -            "Antic Didone",
        -            "Antic Slab",
        -            "Anton",
        -            "Anton SC",
        -            "Antonio",
        -            "Anuphan",
        -            "Anybody",
        -            "Aoboshi One",
        -            "Arapey",
        -            "Arbutus",
        -            "Arbutus Slab",
        -            "Architects Daughter",
        -            "Archivo",
        -            "Archivo Black",
        -            "Archivo Narrow",
        -            "Are You Serious",
        -            "Aref Ruqaa",
        -            "Aref Ruqaa Ink",
        -            "Arima",
        -            "Arimo",
        -            "Arizonia",
        -            "Armata",
        -            "Arsenal",
        -            "Arsenal SC",
        -            "Artifika",
        -            "Arvo",
        -            "Arya",
        -            "Asap",
        -            "Asap Condensed",
        -            "Asar",
        -            "Asimovian",
        -            "Asset",
        -            "Assistant",
        -            "Asta Sans",
        -            "Astloch",
        -            "Asul",
        -            "Athiti",
        -            "Atkinson Hyperlegible",
        -            "Atkinson Hyperlegible Mono",
        -            "Atkinson Hyperlegible Next",
        -            "Atma",
        -            "Atomic Age",
        -            "Aubrey",
        -            "Audiowide",
        -            "Autour One",
        -            "Average",
        -            "Average Sans",
        -            "Averia Gruesa Libre",
        -            "Averia Libre",
        -            "Averia Sans Libre",
        -            "Averia Serif Libre",
        -            "Azeret Mono",
        -            "B612",
        -            "B612 Mono",
        -            "BBH Bartle",
        -            "BBH Bogle",
        -            "BBH Hegarty",
        -            "BIZ UDGothic",
        -            "BIZ UDMincho",
        -            "BIZ UDPGothic",
        -            "BIZ UDPMincho",
        -            "BJCree",
        -            "Babylonica",
        -            "Bacasime Antique",
        -            "Bad Script",
        -            "Badeen Display",
        -            "Bagel Fat One",
        -            "Bahiana",
        -            "Bahianita",
        -            "Bai Jamjuree",
        -            "Bakbak One",
        -            "Ballet",
        -            "Baloo 2",
        -            "Baloo Bhai 2",
        -            "Baloo Bhaijaan 2",
        -            "Baloo Bhaina 2",
        -            "Baloo Chettan 2",
        -            "Baloo Da 2",
        -            "Baloo Paaji 2",
        -            "Baloo Tamma 2",
        -            "Baloo Tammudu 2",
        -            "Baloo Thambi 2",
        -            "Balsamiq Sans",
        -            "Balthazar",
        -            "Bangers",
        -            "Barlow",
        -            "Barlow Condensed",
        -            "Barlow Semi Condensed",
        -            "Barriecito",
        -            "Barrio",
        -            "Basic",
        -            "Baskervville",
        -            "Baskervville SC",
        -            "Battambang",
        -            "Baumans",
        -            "Bayon",
        -            "Be Vietnam Pro",
        -            "Beau Rivage",
        -            "Bebas Neue",
        -            "Beiruti",
        -            "Belanosima",
        -            "Belgrano",
        -            "Bellefair",
        -            "Belleza",
        -            "Bellota",
        -            "Bellota Text",
        -            "BenchNine",
        -            "Benne",
        -            "Bentham",
        -            "Berkshire Swash",
        -            "Besley",
        -            "Betania Patmos",
        -            "Betania Patmos GDL",
        -            "Betania Patmos In",
        -            "Betania Patmos In GDL",
        -            "Beth Ellen",
        -            "Bevan",
        -            "BhuTuka Expanded One",
        -            "Big Shoulders",
        -            "Big Shoulders Inline",
        -            "Big Shoulders Stencil",
        -            "Bigelow Rules",
        -            "Bigshot One",
        -            "Bilbo",
        -            "Bilbo Swash Caps",
        -            "BioRhyme",
        -            "BioRhyme Expanded",
        -            "Birthstone",
        -            "Birthstone Bounce",
        -            "Biryani",
        -            "Bitcount",
        -            "Bitcount Grid Double",
        -            "Bitcount Grid Double Ink",
        -            "Bitcount Grid Single",
        -            "Bitcount Grid Single Ink",
        -            "Bitcount Ink",
        -            "Bitcount Prop Double",
        -            "Bitcount Prop Double Ink",
        -            "Bitcount Prop Single",
        -            "Bitcount Prop Single Ink",
        -            "Bitcount Single",
        -            "Bitcount Single Ink",
        -            "Bitter",
        -            "Black And White Picture",
        -            "Black Han Sans",
        -            "Black Ops One",
        -            "Blaka",
        -            "Blaka Hollow",
        -            "Blaka Ink",
        -            "Blinker",
        -            "Bodoni Moda",
        -            "Bodoni Moda SC",
        -            "Bokor",
        -            "Boldonse",
        -            "Bona Nova",
        -            "Bona Nova SC",
        -            "Bonbon",
        -            "Bonheur Royale",
        -            "Boogaloo",
        -            "Borel",
        -            "Bowlby One",
        -            "Bowlby One SC",
        -            "Bpmf Huninn",
        -            "Bpmf Iansui",
        -            "Bpmf Zihi Kai Std",
        -            "Braah One",
        -            "Brawler",
        -            "Bree Serif",
        -            "Bricolage Grotesque",
        -            "Bruno Ace",
        -            "Bruno Ace SC",
        -            "Brygada 1918",
        -            "Bubblegum Sans",
        -            "Bubbler One",
        -            "Buda",
        -            "Buenard",
        -            "Bungee",
        -            "Bungee Hairline",
        -            "Bungee Inline",
        -            "Bungee Outline",
        -            "Bungee Shade",
        -            "Bungee Spice",
        -            "Bungee Tint",
        -            "Butcherman",
        -            "Butterfly Kids",
        -            "Bytesized",
        -            "Cabin",
        -            "Cabin Condensed",
        -            "Cabin Sketch",
        -            "Cactus Classical Serif",
        -            "Caesar Dressing",
        -            "Cagliostro",
        -            "Cairo",
        -            "Cairo Play",
        -            "Cal Sans",
        -            "Caladea",
        -            "Calistoga",
        -            "Calligraffitti",
        -            "Cambay",
        -            "Cambo",
        -            "Candal",
        -            "Cantarell",
        -            "Cantata One",
        -            "Cantora One",
        -            "Caprasimo",
        -            "Capriola",
        -            "Caramel",
        -            "Carattere",
        -            "Cardo",
        -            "Carlito",
        -            "Carme",
        -            "Carrois Gothic",
        -            "Carrois Gothic SC",
        -            "Carter One",
        -            "Cascadia Code",
        -            "Cascadia Mono",
        -            "Castoro",
        -            "Castoro Titling",
        -            "Catamaran",
        -            "Caudex",
        -            "Cause",
        -            "Caveat",
        -            "Caveat Brush",
        -            "Cedarville Cursive",
        -            "Ceviche One",
        -            "Chakra Petch",
        -            "Changa",
        -            "Changa One",
        -            "Chango",
        -            "Charis SIL",
        -            "Charm",
        -            "Charmonman",
        -            "Chathura",
        -            "Chau Philomene One",
        -            "Chela One",
        -            "Chelsea Market",
        -            "Chenla",
        -            "Cherish",
        -            "Cherry Bomb One",
        -            "Cherry Cream Soda",
        -            "Cherry Swash",
        -            "Chewy",
        -            "Chicle",
        -            "Chilanka",
        -            "Chiron GoRound TC",
        -            "Chiron Hei HK",
        -            "Chiron Sung HK",
        -            "Chivo",
        -            "Chivo Mono",
        -            "Chocolate Classical Sans",
        -            "Chokokutai",
        -            "Chonburi",
        -            "Cinzel",
        -            "Cinzel Decorative",
        -            "Clicker Script",
        -            "Climate Crisis",
        -            "Coda",
        -            "Codystar",
        -            "Coiny",
        -            "Combo",
        -            "Comfortaa",
        -            "Comforter",
        -            "Comforter Brush",
        -            "Comic Neue",
        -            "Comic Relief",
        -            "Coming Soon",
        -            "Comme",
        -            "Commissioner",
        -            "Concert One",
        -            "Condiment",
        -            "Content",
        -            "Contrail One",
        -            "Convergence",
        -            "Cookie",
        -            "Copse",
        -            "Coral Pixels",
        -            "Corben",
        -            "Corinthia",
        -            "Cormorant",
        -            "Cormorant Garamond",
        -            "Cormorant Infant",
        -            "Cormorant SC",
        -            "Cormorant Unicase",
        -            "Cormorant Upright",
        -            "Cossette Texte",
        -            "Cossette Titre",
        -            "Courgette",
        -            "Courier Prime",
        -            "Cousine",
        -            "Coustard",
        -            "Covered By Your Grace",
        -            "Crafty Girls",
        -            "Creepster",
        -            "Crete Round",
        -            "Crimson Pro",
        -            "Crimson Text",
        -            "Croissant One",
        -            "Crushed",
        -            "Cuprum",
        -            "Cute Font",
        -            "Cutive",
        -            "Cutive Mono",
        -            "DM Mono",
        -            "DM Sans",
        -            "DM Serif Display",
        -            "DM Serif Text",
        -            "Dai Banna SIL",
        -            "Damion",
        -            "Dancing Script",
        -            "Danfo",
        -            "Dangrek",
        -            "Darker Grotesque",
        -            "Darumadrop One",
        -            "Datatype",
        -            "David Libre",
        -            "Dawning of a New Day",
        -            "Days One",
        -            "Dekko",
        -            "Dela Gothic One",
        -            "Delicious Handrawn",
        -            "Delius",
        -            "Delius Swash Caps",
        -            "Delius Unicase",
        -            "Della Respira",
        -            "Denk One",
        -            "Devonshire",
        -            "Dhurjati",
        -            "Didact Gothic",
        -            "Diphylleia",
        -            "Diplomata",
        -            "Diplomata SC",
        -            "Do Hyeon",
        -            "Dokdo",
        -            "Domine",
        -            "Donegal One",
        -            "Dongle",
        -            "Doppio One",
        -            "Dorsa",
        -            "Dosis",
        -            "DotGothic16",
        -            "Doto",
        -            "Dr Sugiyama",
        -            "Duru Sans",
        -            "DynaPuff",
        -            "Dynalight",
        -            "EB Garamond",
        -            "Eagle Lake",
        -            "East Sea Dokdo",
        -            "Eater",
        -            "Economica",
        -            "Eczar",
        -            "Edu AU VIC WA NT Arrows",
        -            "Edu AU VIC WA NT Dots",
        -            "Edu AU VIC WA NT Guides",
        -            "Edu AU VIC WA NT Hand",
        -            "Edu AU VIC WA NT Pre",
        -            "Edu NSW ACT Cursive",
        -            "Edu NSW ACT Foundation",
        -            "Edu NSW ACT Hand Pre",
        -            "Edu QLD Beginner",
        -            "Edu QLD Hand",
        -            "Edu SA Beginner",
        -            "Edu SA Hand",
        -            "Edu TAS Beginner",
        -            "Edu VIC WA NT Beginner",
        -            "Edu VIC WA NT Hand",
        -            "Edu VIC WA NT Hand Pre",
        -            "El Messiri",
        -            "Electrolize",
        -            "Elms Sans",
        -            "Elsie",
        -            "Elsie Swash Caps",
        -            "Emblema One",
        -            "Emilys Candy",
        -            "Encode Sans",
        -            "Encode Sans Condensed",
        -            "Encode Sans Expanded",
        -            "Encode Sans SC",
        -            "Encode Sans Semi Condensed",
        -            "Encode Sans Semi Expanded",
        -            "Engagement",
        -            "Englebert",
        -            "Enriqueta",
        -            "Ephesis",
        -            "Epilogue",
        -            "Epunda Sans",
        -            "Epunda Slab",
        -            "Erica One",
        -            "Esteban",
        -            "Estedad",
        -            "Estonia",
        -            "Euphoria Script",
        -            "Ewert",
        -            "Exile",
        -            "Exo",
        -            "Exo 2",
        -            "Expletus Sans",
        -            "Explora",
        -            "Faculty Glyphic",
        -            "Fahkwang",
        -            "Familjen Grotesk",
        -            "Fanwood Text",
        -            "Farro",
        -            "Farsan",
        -            "Fascinate",
        -            "Fascinate Inline",
        -            "Faster One",
        -            "Fasthand",
        -            "Fauna One",
        -            "Faustina",
        -            "Federant",
        -            "Federo",
        -            "Felipa",
        -            "Fenix",
        -            "Festive",
        -            "Figtree",
        -            "Finger Paint",
        -            "Finlandica Headline",
        -            "Finlandica Text",
        -            "Fira Code",
        -            "Fira Mono",
        -            "Fira Sans",
        -            "Fira Sans Condensed",
        -            "Fira Sans Extra Condensed",
        -            "Fjalla One",
        -            "Fjord One",
        -            "Flamenco",
        -            "Flavors",
        -            "Fleur De Leah",
        -            "Flow Block",
        -            "Flow Circular",
        -            "Flow Rounded",
        -            "Foldit",
        -            "Fondamento",
        -            "Fontdiner Swanky",
        -            "Forum",
        -            "Fragment Mono",
        -            "Francois One",
        -            "Frank Ruhl Libre",
        -            "Fraunces",
        -            "Freckle Face",
        -            "Fredericka the Great",
        -            "Fredoka",
        -            "Freehand",
        -            "Freeman",
        -            "Fresca",
        -            "Frijole",
        -            "Fruktur",
        -            "Fugaz One",
        -            "Fuggles",
        -            "Funnel Display",
        -            "Funnel Sans",
        -            "Fustat",
        -            "Fuzzy Bubbles",
        -            "GFS Didot",
        -            "GFS Neohellenic",
        -            "Ga Maamli",
        -            "Gabarito",
        -            "Gabriela",
        -            "Gaegu",
        -            "Gafata",
        -            "Gajraj One",
        -            "Galada",
        -            "Galdeano",
        -            "Galindo",
        -            "Gamja Flower",
        -            "Gantari",
        -            "Gasoek One",
        -            "Gayathri",
        -            "Geist",
        -            "Geist Mono",
        -            "Geist Pixel",
        -            "Gelasio",
        -            "Gemunu Libre",
        -            "Genos",
        -            "Gentium Book Plus",
        -            "Gentium Plus",
        -            "Geo",
        -            "Geologica",
        -            "Geom",
        -            "Geomini",
        -            "Georama",
        -            "Geostar",
        -            "Geostar Fill",
        -            "Germania One",
        -            "Gideon Roman",
        -            "Gidole",
        -            "Gidugu",
        -            "Gilda Display",
        -            "Girassol",
        -            "Give You Glory",
        -            "Glass Antiqua",
        -            "Glegoo",
        -            "Gloock",
        -            "Gloria Hallelujah",
        -            "Glory",
        -            "Gluten",
        -            "Goblin One",
        -            "Gochi Hand",
        -            "Goldman",
        -            "Golos Text",
        -            "Google Sans",
        -            "Google Sans Code",
        -            "Google Sans Flex",
        -            "Gorditas",
        -            "Gothic A1",
        -            "Gotu",
        -            "Goudy Bookletter 1911",
        -            "Gowun Batang",
        -            "Gowun Dodum",
        -            "Graduate",
        -            "Grand Hotel",
        -            "Grandiflora One",
        -            "Grandstander",
        -            "Grape Nuts",
        -            "Gravitas One",
        -            "Great Vibes",
        -            "Grechen Fuemen",
        -            "Grenze",
        -            "Grenze Gotisch",
        -            "Grey Qo",
        -            "Griffy",
        -            "Gruppo",
        -            "Gudea",
        -            "Gugi",
        -            "Gulzar",
        -            "Gupter",
        -            "Gurajada",
        -            "Gveret Levin",
        -            "Gwendolyn",
        -            "Habibi",
        -            "Hachi Maru Pop",
        -            "Hahmlet",
        -            "Halant",
        -            "Hammersmith One",
        -            "Hanalei",
        -            "Hanalei Fill",
        -            "Handjet",
        -            "Handlee",
        -            "Hanken Grotesk",
        -            "Hanuman",
        -            "Happy Monkey",
        -            "Harmattan",
        -            "Headland One",
        -            "Hedvig Letters Sans",
        -            "Hedvig Letters Serif",
        -            "Heebo",
        -            "Henny Penny",
        -            "Hepta Slab",
        -            "Herr Von Muellerhoff",
        -            "Hi Melody",
        -            "Hibur Mono",
        -            "Hina Mincho",
        -            "Hind",
        -            "Hind Guntur",
        -            "Hind Madurai",
        -            "Hind Mysuru",
        -            "Hind Siliguri",
        -            "Hind Vadodara",
        -            "Holtwood One SC",
        -            "Homemade Apple",
        -            "Homenaje",
        -            "Honk",
        -            "Host Grotesk",
        -            "Hubballi",
        -            "Hubot Sans",
        -            "Huninn",
        -            "Hurricane",
        -            "IBM Plex Mono",
        -            "IBM Plex Sans",
        -            "IBM Plex Sans Arabic",
        -            "IBM Plex Sans Condensed",
        -            "IBM Plex Sans Devanagari",
        -            "IBM Plex Sans Hebrew",
        -            "IBM Plex Sans JP",
        -            "IBM Plex Sans KR",
        -            "IBM Plex Sans Thai",
        -            "IBM Plex Sans Thai Looped",
        -            "IBM Plex Serif",
        -            "IM Fell DW Pica",
        -            "IM Fell DW Pica SC",
        -            "IM Fell Double Pica",
        -            "IM Fell Double Pica SC",
        -            "IM Fell English",
        -            "IM Fell English SC",
        -            "IM Fell French Canon",
        -            "IM Fell French Canon SC",
        -            "IM Fell Great Primer",
        -            "IM Fell Great Primer SC",
        -            "Iansui",
        -            "Ibarra Real Nova",
        -            "Iceberg",
        -            "Iceland",
        -            "Idiqlat",
        -            "Imbue",
        -            "Imperial Script",
        -            "Imprima",
        -            "Inclusive Sans",
        -            "Inconsolata",
        -            "Inder",
        -            "Indie Flower",
        -            "Ingrid Darling",
        -            "Inika",
        -            "Inknut Antiqua",
        -            "Inria Sans",
        -            "Inria Serif",
        -            "Inspiration",
        -            "Instrument Sans",
        -            "Instrument Serif",
        -            "Intel One Mono",
        -            "Inter",
        -            "Inter Tight",
        -            "Iosevka Charon",
        -            "Iosevka Charon Mono",
        -            "Irish Grover",
        -            "Island Moments",
        -            "Istok Web",
        -            "Italiana",
        -            "Italianno",
        -            "Itim",
        -            "Jacquard 12",
        -            "Jacquard 12 Charted",
        -            "Jacquard 24",
        -            "Jacquard 24 Charted",
        -            "Jacquarda Bastarda 9",
        -            "Jacquarda Bastarda 9 Charted",
        -            "Jacques Francois",
        -            "Jacques Francois Shadow",
        -            "Jaini",
        -            "Jaini Purva",
        -            "Jaldi",
        -            "Jaro",
        -            "Jersey 10",
        -            "Jersey 10 Charted",
        -            "Jersey 15",
        -            "Jersey 15 Charted",
        -            "Jersey 20",
        -            "Jersey 20 Charted",
        -            "Jersey 25",
        -            "Jersey 25 Charted",
        -            "JetBrains Mono",
        -            "Jim Nightshade",
        -            "Joan",
        -            "Jockey One",
        -            "Jolly Lodger",
        -            "Jomhuria",
        -            "Jomolhari",
        -            "Josefin Sans",
        -            "Josefin Slab",
        -            "Jost",
        -            "Joti One",
        -            "Jua",
        -            "Judson",
        -            "Julee",
        -            "Julius Sans One",
        -            "Junge",
        -            "Jura",
        -            "Just Another Hand",
        -            "Just Me Again Down Here",
        -            "K2D",
        -            "Kablammo",
        -            "Kadwa",
        -            "Kaisei Decol",
        -            "Kaisei HarunoUmi",
        -            "Kaisei Opti",
        -            "Kaisei Tokumin",
        -            "Kalam",
        -            "Kalnia",
        -            "Kalnia Glaze",
        -            "Kameron",
        -            "Kanchenjunga",
        -            "Kanit",
        -            "Kantumruy Pro",
        -            "Kapakana",
        -            "Karantina",
        -            "Karla",
        -            "Karla Tamil Inclined",
        -            "Karla Tamil Upright",
        -            "Karma",
        -            "Katibeh",
        -            "Kaushan Script",
        -            "Kavivanar",
        -            "Kavoon",
        -            "Kay Pho Du",
        -            "Kdam Thmor Pro",
        -            "Keania One",
        -            "Kedebideri",
        -            "Kelly Slab",
        -            "Kenia",
        -            "Khand",
        -            "Khmer",
        -            "Khula",
        -            "Kings",
        -            "Kirang Haerang",
        -            "Kite One",
        -            "Kiwi Maru",
        -            "Klee One",
        -            "Knewave",
        -            "KoHo",
        -            "Kodchasan",
        -            "Kode Mono",
        -            "Koh Santepheap",
        -            "Kolker Brush",
        -            "Konkhmer Sleokchher",
        -            "Kosugi",
        -            "Kosugi Maru",
        -            "Kotta One",
        -            "Koulen",
        -            "Kranky",
        -            "Kreon",
        -            "Kristi",
        -            "Krona One",
        -            "Krub",
        -            "Kufam",
        -            "Kulim Park",
        -            "Kumar One",
        -            "Kumar One Outline",
        -            "Kumbh Sans",
        -            "Kurale",
        -            "LINE Seed JP",
        -            "LXGW Marker Gothic",
        -            "LXGW WenKai Mono TC",
        -            "LXGW WenKai TC",
        -            "La Belle Aurore",
        -            "Labrada",
        -            "Lacquer",
        -            "Laila",
        -            "Lakki Reddy",
        -            "Lalezar",
        -            "Lancelot",
        -            "Langar",
        -            "Lateef",
        -            "Lato",
        -            "Lavishly Yours",
        -            "League Gothic",
        -            "League Script",
        -            "League Spartan",
        -            "Leckerli One",
        -            "Ledger",
        -            "Lekton",
        -            "Lemon",
        -            "Lemonada",
        -            "Lexend",
        -            "Lexend Deca",
        -            "Lexend Exa",
        -            "Lexend Giga",
        -            "Lexend Mega",
        -            "Lexend Peta",
        -            "Lexend Tera",
        -            "Lexend Zetta",
        -            "Libertinus Keyboard",
        -            "Libertinus Math",
        -            "Libertinus Mono",
        -            "Libertinus Sans",
        -            "Libertinus Serif",
        -            "Libertinus Serif Display",
        -            "Libre Barcode 128",
        -            "Libre Barcode 128 Text",
        -            "Libre Barcode 39",
        -            "Libre Barcode 39 Extended",
        -            "Libre Barcode 39 Extended Text",
        -            "Libre Barcode 39 Text",
        -            "Libre Barcode EAN13 Text",
        -            "Libre Baskerville",
        -            "Libre Bodoni",
        -            "Libre Caslon Display",
        -            "Libre Caslon Text",
        -            "Libre Franklin",
        -            "Licorice",
        -            "Life Savers",
        -            "Lilex",
        -            "Lilita One",
        -            "Lily Script One",
        -            "Limelight",
        -            "Linden Hill",
        -            "Linefont",
        -            "Lisu Bosa",
        -            "Liter",
        -            "Literata",
        -            "Liu Jian Mao Cao",
        -            "Livvic",
        -            "Lobster",
        -            "Lobster Two",
        -            "Londrina Outline",
        -            "Londrina Shadow",
        -            "Londrina Sketch",
        -            "Londrina Solid",
        -            "Long Cang",
        -            "Lora",
        -            "Love Light",
        -            "Love Ya Like A Sister",
        -            "Loved by the King",
        -            "Lovers Quarrel",
        -            "Luckiest Guy",
        -            "Lugrasimo",
        -            "Lumanosimo",
        -            "Lunasima",
        -            "Lusitana",
        -            "Lustria",
        -            "Luxurious Roman",
        -            "Luxurious Script",
        -            "M PLUS 1",
        -            "M PLUS 1 Code",
        -            "M PLUS 1p",
        -            "M PLUS 2",
        -            "M PLUS Code Latin",
        -            "M PLUS Rounded 1c",
        -            "M PLUS U",
        -            "Ma Shan Zheng",
        -            "Macondo",
        -            "Macondo Swash Caps",
        -            "Mada",
        -            "Madimi One",
        -            "Magra",
        -            "Maiden Orange",
        -            "Maitree",
        -            "Major Mono Display",
        -            "Mako",
        -            "Mali",
        -            "Mallanna",
        -            "Maname",
        -            "Mandali",
        -            "Manjari",
        -            "Manrope",
        -            "Mansalva",
        -            "Manuale",
        -            "Manufacturing Consent",
        -            "Marcellus",
        -            "Marcellus SC",
        -            "Marck Script",
        -            "Margarine",
        -            "Marhey",
        -            "Markazi Text",
        -            "Marko One",
        -            "Marmelad",
        -            "Martel",
        -            "Martel Sans",
        -            "Martian Mono",
        -            "Marvel",
        -            "Matangi",
        -            "Mate",
        -            "Mate SC",
        -            "Matemasie",
        -            "Material Icons",
        -            "Material Icons Outlined",
        -            "Material Icons Round",
        -            "Material Icons Sharp",
        -            "Material Icons Two Tone",
        -            "Material Symbols",
        -            "Material Symbols Outlined",
        -            "Material Symbols Rounded",
        -            "Material Symbols Sharp",
        -            "Maven Pro",
        -            "McLaren",
        -            "Mea Culpa",
        -            "Meddon",
        -            "MedievalSharp",
        -            "Medula One",
        -            "Meera Inimai",
        -            "Megrim",
        -            "Meie Script",
        -            "Menbere",
        -            "Meow Script",
        -            "Merienda",
        -            "Merriweather",
        -            "Merriweather Sans",
        -            "Metal",
        -            "Metal Mania",
        -            "Metamorphous",
        -            "Metrophobic",
        -            "Michroma",
        -            "Micro 5",
        -            "Micro 5 Charted",
        -            "Milonga",
        -            "Miltonian",
        -            "Miltonian Tattoo",
        -            "Mina",
        -            "Mingzat",
        -            "Miniver",
        -            "Miranda Sans",
        -            "Miriam Libre",
        -            "Mirza",
        -            "Miss Fajardose",
        -            "Mitr",
        -            "Mochiy Pop One",
        -            "Mochiy Pop P One",
        -            "Modak",
        -            "Modern Antiqua",
        -            "Moderustic",
        -            "Mogra",
        -            "Mohave",
        -            "Moirai One",
        -            "Molengo",
        -            "Molle",
        -            "Momo Signature",
        -            "Momo Trust Display",
        -            "Momo Trust Sans",
        -            "Mona Sans",
        -            "Monda",
        -            "Monofett",
        -            "Monomakh",
        -            "Monomaniac One",
        -            "Monoton",
        -            "Monsieur La Doulaise",
        -            "Montaga",
        -            "Montagu Slab",
        -            "MonteCarlo",
        -            "Montenegrin Gothic One",
        -            "Montez",
        -            "Montserrat",
        -            "Montserrat Alternates",
        -            "Montserrat Underline",
        -            "Moo Lah Lah",
        -            "Mooli",
        -            "Moon Dance",
        -            "Moul",
        -            "Moulpali",
        -            "Mountains of Christmas",
        -            "Mouse Memoirs",
        -            "Mozilla Headline",
        -            "Mozilla Text",
        -            "Mr Bedfort",
        -            "Mr Dafoe",
        -            "Mr De Haviland",
        -            "Mrs Saint Delafield",
        -            "Mrs Sheppards",
        -            "Ms Madi",
        -            "Mukta",
        -            "Mukta Mahee",
        -            "Mukta Malar",
        -            "Mukta Vaani",
        -            "Mulish",
        -            "Murecho",
        -            "MuseoModerno",
        -            "My Soul",
        -            "Mynerve",
        -            "Mystery Quest",
        -            "NTR",
        -            "Nabla",
        -            "Namdhinggo",
        -            "Nanum Brush Script",
        -            "Nanum Gothic",
        -            "Nanum Gothic Coding",
        -            "Nanum Myeongjo",
        -            "Nanum Pen Script",
        -            "Narnoor",
        -            "Nata Sans",
        -            "National Park",
        -            "Neonderthaw",
        -            "Nerko One",
        -            "Neucha",
        -            "Neuton",
        -            "New Amsterdam",
        -            "New Rocker",
        -            "New Tegomin",
        -            "News Cycle",
        -            "Newsreader",
        -            "Niconne",
        -            "Niramit",
        -            "Nixie One",
        -            "Nobile",
        -            "Nokora",
        -            "Norican",
        -            "Nosifer",
        -            "Notable",
        -            "Nothing You Could Do",
        -            "Noticia Text",
        -            "Noto Color Emoji",
        -            "Noto Emoji",
        -            "Noto Kufi Arabic",
        -            "Noto Music",
        -            "Noto Naskh Arabic",
        -            "Noto Nastaliq Urdu",
        -            "Noto Rashi Hebrew",
        -            "Noto Sans",
        -            "Noto Sans Adlam",
        -            "Noto Sans Adlam Unjoined",
        -            "Noto Sans Anatolian Hieroglyphs",
        -            "Noto Sans Arabic",
        -            "Noto Sans Armenian",
        -            "Noto Sans Avestan",
        -            "Noto Sans Balinese",
        -            "Noto Sans Bamum",
        -            "Noto Sans Bassa Vah",
        -            "Noto Sans Batak",
        -            "Noto Sans Bengali",
        -            "Noto Sans Bhaiksuki",
        -            "Noto Sans Brahmi",
        -            "Noto Sans Buginese",
        -            "Noto Sans Buhid",
        -            "Noto Sans Canadian Aboriginal",
        -            "Noto Sans Carian",
        -            "Noto Sans Caucasian Albanian",
        -            "Noto Sans Chakma",
        -            "Noto Sans Cham",
        -            "Noto Sans Cherokee",
        -            "Noto Sans Chorasmian",
        -            "Noto Sans Coptic",
        -            "Noto Sans Cuneiform",
        -            "Noto Sans Cypriot",
        -            "Noto Sans Cypro Minoan",
        -            "Noto Sans Deseret",
        -            "Noto Sans Devanagari",
        -            "Noto Sans Display",
        -            "Noto Sans Duployan",
        -            "Noto Sans Egyptian Hieroglyphs",
        -            "Noto Sans Elbasan",
        -            "Noto Sans Elymaic",
        -            "Noto Sans Ethiopic",
        -            "Noto Sans Georgian",
        -            "Noto Sans Glagolitic",
        -            "Noto Sans Gothic",
        -            "Noto Sans Grantha",
        -            "Noto Sans Gujarati",
        -            "Noto Sans Gunjala Gondi",
        -            "Noto Sans Gurmukhi",
        -            "Noto Sans HK",
        -            "Noto Sans Hanifi Rohingya",
        -            "Noto Sans Hanunoo",
        -            "Noto Sans Hatran",
        -            "Noto Sans Hebrew",
        -            "Noto Sans Imperial Aramaic",
        -            "Noto Sans Indic Siyaq Numbers",
        -            "Noto Sans Inscriptional Pahlavi",
        -            "Noto Sans Inscriptional Parthian",
        -            "Noto Sans JP",
        -            "Noto Sans Javanese",
        -            "Noto Sans KR",
        -            "Noto Sans Kaithi",
        -            "Noto Sans Kannada",
        -            "Noto Sans Kawi",
        -            "Noto Sans Kayah Li",
        -            "Noto Sans Kharoshthi",
        -            "Noto Sans Khmer",
        -            "Noto Sans Khojki",
        -            "Noto Sans Khudawadi",
        -            "Noto Sans Lao",
        -            "Noto Sans Lao Looped",
        -            "Noto Sans Lepcha",
        -            "Noto Sans Limbu",
        -            "Noto Sans Linear A",
        -            "Noto Sans Linear B",
        -            "Noto Sans Lisu",
        -            "Noto Sans Lycian",
        -            "Noto Sans Lydian",
        -            "Noto Sans Mahajani",
        -            "Noto Sans Malayalam",
        -            "Noto Sans Mandaic",
        -            "Noto Sans Manichaean",
        -            "Noto Sans Marchen",
        -            "Noto Sans Masaram Gondi",
        -            "Noto Sans Math",
        -            "Noto Sans Mayan Numerals",
        -            "Noto Sans Medefaidrin",
        -            "Noto Sans Meetei Mayek",
        -            "Noto Sans Mende Kikakui",
        -            "Noto Sans Meroitic",
        -            "Noto Sans Miao",
        -            "Noto Sans Modi",
        -            "Noto Sans Mongolian",
        -            "Noto Sans Mono",
        -            "Noto Sans Mro",
        -            "Noto Sans Multani",
        -            "Noto Sans Myanmar",
        -            "Noto Sans NKo",
        -            "Noto Sans NKo Unjoined",
        -            "Noto Sans Nabataean",
        -            "Noto Sans Nag Mundari",
        -            "Noto Sans Nandinagari",
        -            "Noto Sans New Tai Lue",
        -            "Noto Sans Newa",
        -            "Noto Sans Nushu",
        -            "Noto Sans Ogham",
        -            "Noto Sans Ol Chiki",
        -            "Noto Sans Old Hungarian",
        -            "Noto Sans Old Italic",
        -            "Noto Sans Old North Arabian",
        -            "Noto Sans Old Permic",
        -            "Noto Sans Old Persian",
        -            "Noto Sans Old Sogdian",
        -            "Noto Sans Old South Arabian",
        -            "Noto Sans Old Turkic",
        -            "Noto Sans Oriya",
        -            "Noto Sans Osage",
        -            "Noto Sans Osmanya",
        -            "Noto Sans Pahawh Hmong",
        -            "Noto Sans Palmyrene",
        -            "Noto Sans Pau Cin Hau",
        -            "Noto Sans PhagsPa",
        -            "Noto Sans Phoenician",
        -            "Noto Sans Psalter Pahlavi",
        -            "Noto Sans Rejang",
        -            "Noto Sans Runic",
        -            "Noto Sans SC",
        -            "Noto Sans Samaritan",
        -            "Noto Sans Saurashtra",
        -            "Noto Sans Sharada",
        -            "Noto Sans Shavian",
        -            "Noto Sans Siddham",
        -            "Noto Sans SignWriting",
        -            "Noto Sans Sinhala",
        -            "Noto Sans Sogdian",
        -            "Noto Sans Sora Sompeng",
        -            "Noto Sans Soyombo",
        -            "Noto Sans Sundanese",
        -            "Noto Sans Sunuwar",
        -            "Noto Sans Syloti Nagri",
        -            "Noto Sans Symbols",
        -            "Noto Sans Symbols 2",
        -            "Noto Sans Syriac",
        -            "Noto Sans Syriac Eastern",
        -            "Noto Sans Syriac Western",
        -            "Noto Sans TC",
        -            "Noto Sans Tagalog",
        -            "Noto Sans Tagbanwa",
        -            "Noto Sans Tai Le",
        -            "Noto Sans Tai Tham",
        -            "Noto Sans Tai Viet",
        -            "Noto Sans Takri",
        -            "Noto Sans Tamil",
        -            "Noto Sans Tamil Supplement",
        -            "Noto Sans Tangsa",
        -            "Noto Sans Telugu",
        -            "Noto Sans Thaana",
        -            "Noto Sans Thai",
        -            "Noto Sans Thai Looped",
        -            "Noto Sans Tifinagh",
        -            "Noto Sans Tirhuta",
        -            "Noto Sans Ugaritic",
        -            "Noto Sans Vai",
        -            "Noto Sans Vithkuqi",
        -            "Noto Sans Wancho",
        -            "Noto Sans Warang Citi",
        -            "Noto Sans Yi",
        -            "Noto Sans Zanabazar Square",
        -            "Noto Serif",
        -            "Noto Serif Ahom",
        -            "Noto Serif Armenian",
        -            "Noto Serif Balinese",
        -            "Noto Serif Bengali",
        -            "Noto Serif Devanagari",
        -            "Noto Serif Display",
        -            "Noto Serif Dives Akuru",
        -            "Noto Serif Dogra",
        -            "Noto Serif Ethiopic",
        -            "Noto Serif Georgian",
        -            "Noto Serif Grantha",
        -            "Noto Serif Gujarati",
        -            "Noto Serif Gurmukhi",
        -            "Noto Serif HK",
        -            "Noto Serif Hebrew",
        -            "Noto Serif Hentaigana",
        -            "Noto Serif JP",
        -            "Noto Serif KR",
        -            "Noto Serif Kannada",
        -            "Noto Serif Khitan Small Script",
        -            "Noto Serif Khmer",
        -            "Noto Serif Khojki",
        -            "Noto Serif Lao",
        -            "Noto Serif Makasar",
        -            "Noto Serif Malayalam",
        -            "Noto Serif Myanmar",
        -            "Noto Serif NP Hmong",
        -            "Noto Serif Old Uyghur",
        -            "Noto Serif Oriya",
        -            "Noto Serif Ottoman Siyaq",
        -            "Noto Serif SC",
        -            "Noto Serif Sinhala",
        -            "Noto Serif TC",
        -            "Noto Serif Tamil",
        -            "Noto Serif Tangut",
        -            "Noto Serif Telugu",
        -            "Noto Serif Thai",
        -            "Noto Serif Tibetan",
        -            "Noto Serif Todhri",
        -            "Noto Serif Toto",
        -            "Noto Serif Vithkuqi",
        -            "Noto Serif Yezidi",
        -            "Noto Traditional Nushu",
        -            "Noto Znamenny Musical Notation",
        -            "Nova Cut",
        -            "Nova Flat",
        -            "Nova Mono",
        -            "Nova Oval",
        -            "Nova Round",
        -            "Nova Script",
        -            "Nova Slim",
        -            "Nova Square",
        -            "Numans",
        -            "Nunito",
        -            "Nunito Sans",
        -            "Nuosu SIL",
        -            "Odibee Sans",
        -            "Odor Mean Chey",
        -            "Offside",
        -            "Oi",
        -            "Ojuju",
        -            "Old Standard TT",
        -            "Oldenburg",
        -            "Ole",
        -            "Oleo Script",
        -            "Oleo Script Swash Caps",
        -            "Onest",
        -            "Oooh Baby",
        -            "Open Sans",
        -            "Oranienbaum",
        -            "Orbit",
        -            "Orbitron",
        -            "Oregano",
        -            "Orelega One",
        -            "Orienta",
        -            "Original Surfer",
        -            "Oswald",
        -            "Outfit",
        -            "Over the Rainbow",
        -            "Overlock",
        -            "Overlock SC",
        -            "Overpass",
        -            "Overpass Mono",
        -            "Ovo",
        -            "Oxanium",
        -            "Oxygen",
        -            "Oxygen Mono",
        -            "PT Mono",
        -            "PT Sans",
        -            "PT Sans Caption",
        -            "PT Sans Narrow",
        -            "PT Serif",
        -            "PT Serif Caption",
        -            "Pacifico",
        -            "Padauk",
        -            "Padyakke Expanded One",
        -            "Palanquin",
        -            "Palanquin Dark",
        -            "Palette Mosaic",
        -            "Pangolin",
        -            "Paprika",
        -            "Parastoo",
        -            "Parisienne",
        -            "Parkinsans",
        -            "Passero One",
        -            "Passion One",
        -            "Passions Conflict",
        -            "Pathway Extreme",
        -            "Pathway Gothic One",
        -            "Patrick Hand",
        -            "Patrick Hand SC",
        -            "Pattaya",
        -            "Patua One",
        -            "Pavanam",
        -            "Paytone One",
        -            "Peddana",
        -            "Peralta",
        -            "Permanent Marker",
        -            "Petemoss",
        -            "Petit Formal Script",
        -            "Petrona",
        -            "Phetsarath",
        -            "Philosopher",
        -            "Phudu",
        -            "Piazzolla",
        -            "Piedra",
        -            "Pinyon Script",
        -            "Pirata One",
        -            "Pixelify Sans",
        -            "Plaster",
        -            "Platypi",
        -            "Play",
        -            "Playball",
        -            "Playfair",
        -            "Playfair Display",
        -            "Playfair Display SC",
        -            "Playpen Sans",
        -            "Playpen Sans Arabic",
        -            "Playpen Sans Deva",
        -            "Playpen Sans Hebrew",
        -            "Playpen Sans Thai",
        -            "Playwrite AR",
        -            "Playwrite AR Guides",
        -            "Playwrite AT",
        -            "Playwrite AT Guides",
        -            "Playwrite AU NSW",
        -            "Playwrite AU NSW Guides",
        -            "Playwrite AU QLD",
        -            "Playwrite AU QLD Guides",
        -            "Playwrite AU SA",
        -            "Playwrite AU SA Guides",
        -            "Playwrite AU TAS",
        -            "Playwrite AU TAS Guides",
        -            "Playwrite AU VIC",
        -            "Playwrite AU VIC Guides",
        -            "Playwrite BE VLG",
        -            "Playwrite BE VLG Guides",
        -            "Playwrite BE WAL",
        -            "Playwrite BE WAL Guides",
        -            "Playwrite BR",
        -            "Playwrite BR Guides",
        -            "Playwrite CA",
        -            "Playwrite CA Guides",
        -            "Playwrite CL",
        -            "Playwrite CL Guides",
        -            "Playwrite CO",
        -            "Playwrite CO Guides",
        -            "Playwrite CU",
        -            "Playwrite CU Guides",
        -            "Playwrite CZ",
        -            "Playwrite CZ Guides",
        -            "Playwrite DE Grund",
        -            "Playwrite DE Grund Guides",
        -            "Playwrite DE LA",
        -            "Playwrite DE LA Guides",
        -            "Playwrite DE SAS",
        -            "Playwrite DE SAS Guides",
        -            "Playwrite DE VA",
        -            "Playwrite DE VA Guides",
        -            "Playwrite DK Loopet",
        -            "Playwrite DK Loopet Guides",
        -            "Playwrite DK Uloopet",
        -            "Playwrite DK Uloopet Guides",
        -            "Playwrite ES",
        -            "Playwrite ES Deco",
        -            "Playwrite ES Deco Guides",
        -            "Playwrite ES Guides",
        -            "Playwrite FR Moderne",
        -            "Playwrite FR Moderne Guides",
        -            "Playwrite FR Trad",
        -            "Playwrite FR Trad Guides",
        -            "Playwrite GB J",
        -            "Playwrite GB J Guides",
        -            "Playwrite GB S",
        -            "Playwrite GB S Guides",
        -            "Playwrite HR",
        -            "Playwrite HR Guides",
        -            "Playwrite HR Lijeva",
        -            "Playwrite HR Lijeva Guides",
        -            "Playwrite HU",
        -            "Playwrite HU Guides",
        -            "Playwrite ID",
        -            "Playwrite ID Guides",
        -            "Playwrite IE",
        -            "Playwrite IE Guides",
        -            "Playwrite IN",
        -            "Playwrite IN Guides",
        -            "Playwrite IS",
        -            "Playwrite IS Guides",
        -            "Playwrite IT Moderna",
        -            "Playwrite IT Moderna Guides",
        -            "Playwrite IT Trad",
        -            "Playwrite IT Trad Guides",
        -            "Playwrite MX",
        -            "Playwrite MX Guides",
        -            "Playwrite NG Modern",
        -            "Playwrite NG Modern Guides",
        -            "Playwrite NL",
        -            "Playwrite NL Guides",
        -            "Playwrite NO",
        -            "Playwrite NO Guides",
        -            "Playwrite NZ",
        -            "Playwrite NZ Basic",
        -            "Playwrite NZ Basic Guides",
        -            "Playwrite NZ Guides",
        -            "Playwrite PE",
        -            "Playwrite PE Guides",
        -            "Playwrite PL",
        -            "Playwrite PL Guides",
        -            "Playwrite PT",
        -            "Playwrite PT Guides",
        -            "Playwrite RO",
        -            "Playwrite RO Guides",
        -            "Playwrite SK",
        -            "Playwrite SK Guides",
        -            "Playwrite TZ",
        -            "Playwrite TZ Guides",
        -            "Playwrite US Modern",
        -            "Playwrite US Modern Guides",
        -            "Playwrite US Trad",
        -            "Playwrite US Trad Guides",
        -            "Playwrite VN",
        -            "Playwrite VN Guides",
        -            "Playwrite ZA",
        -            "Playwrite ZA Guides",
        -            "Pliant",
        -            "Plus Jakarta Sans",
        -            "Pochaevsk",
        -            "Podkova",
        -            "Poetsen One",
        -            "Poiret One",
        -            "Poller One",
        -            "Poltawski Nowy",
        -            "Poly",
        -            "Pompiere",
        -            "Ponnala",
        -            "Ponomar",
        -            "Pontano Sans",
        -            "Poor Story",
        -            "Poppins",
        -            "Port Lligat Sans",
        -            "Port Lligat Slab",
        -            "Potta One",
        -            "Pragati Narrow",
        -            "Praise",
        -            "Prata",
        -            "Preahvihear",
        -            "Press Start 2P",
        -            "Pridi",
        -            "Princess Sofia",
        -            "Prociono",
        -            "Prompt",
        -            "Prosto One",
        -            "Protest Guerrilla",
        -            "Protest Revolution",
        -            "Protest Riot",
        -            "Protest Strike",
        -            "Proza Libre",
        -            "Public Sans",
        -            "Puppies Play",
        -            "Puritan",
        -            "Purple Purse",
        -            "Qahiri",
        -            "Quando",
        -            "Quantico",
        -            "Quattrocento",
        -            "Quattrocento Sans",
        -            "Questrial",
        -            "Quicksand",
        -            "Quintessential",
        -            "Qwigley",
        -            "Qwitcher Grypen",
        -            "REM",
        -            "Racing Sans One",
        -            "Radio Canada",
        -            "Radio Canada Big",
        -            "Radley",
        -            "Rajdhani",
        -            "Rakkas",
        -            "Raleway",
        -            "Raleway Dots",
        -            "Ramabhadra",
        -            "Ramaraja",
        -            "Rambla",
        -            "Rammetto One",
        -            "Rampart One",
        -            "Ramsina",
        -            "Ranchers",
        -            "Rancho",
        -            "Ranga",
        -            "Rasa",
        -            "Rationale",
        -            "Ravi Prakash",
        -            "Readex Pro",
        -            "Recursive",
        -            "Red Hat Display",
        -            "Red Hat Mono",
        -            "Red Hat Text",
        -            "Red Rose",
        -            "Redacted",
        -            "Redacted Script",
        -            "Reddit Mono",
        -            "Reddit Sans",
        -            "Reddit Sans Condensed",
        -            "Redressed",
        -            "Reem Kufi",
        -            "Reem Kufi Fun",
        -            "Reem Kufi Ink",
        -            "Reenie Beanie",
        -            "Reggae One",
        -            "Rethink Sans",
        -            "Revalia",
        -            "Rhodium Libre",
        -            "Ribeye",
        -            "Ribeye Marrow",
        -            "Righteous",
        -            "Risque",
        -            "Road Rage",
        -            "Roboto",
        -            "Roboto Condensed",
        -            "Roboto Flex",
        -            "Roboto Mono",
        -            "Roboto Serif",
        -            "Roboto Slab",
        -            "Rochester",
        -            "Rock 3D",
        -            "Rock Salt",
        -            "RocknRoll One",
        -            "Rokkitt",
        -            "Romanesco",
        -            "Ropa Sans",
        -            "Rosario",
        -            "Rosarivo",
        -            "Rouge Script",
        -            "Rowdies",
        -            "Rozha One",
        -            "Rubik",
        -            "Rubik 80s Fade",
        -            "Rubik Beastly",
        -            "Rubik Broken Fax",
        -            "Rubik Bubbles",
        -            "Rubik Burned",
        -            "Rubik Dirt",
        -            "Rubik Distressed",
        -            "Rubik Doodle Shadow",
        -            "Rubik Doodle Triangles",
        -            "Rubik Gemstones",
        -            "Rubik Glitch",
        -            "Rubik Glitch Pop",
        -            "Rubik Iso",
        -            "Rubik Lines",
        -            "Rubik Maps",
        -            "Rubik Marker Hatch",
        -            "Rubik Maze",
        -            "Rubik Microbe",
        -            "Rubik Mono One",
        -            "Rubik Moonrocks",
        -            "Rubik Pixels",
        -            "Rubik Puddles",
        -            "Rubik Scribble",
        -            "Rubik Spray Paint",
        -            "Rubik Storm",
        -            "Rubik Vinyl",
        -            "Rubik Wet Paint",
        -            "Ruda",
        -            "Rufina",
        -            "Ruge Boogie",
        -            "Ruluko",
        -            "Rum Raisin",
        -            "Ruslan Display",
        -            "Russo One",
        -            "Ruthie",
        -            "Ruwudu",
        -            "Rye",
        -            "SN Pro",
        -            "STIX Two Math",
        -            "STIX Two Text",
        -            "SUSE",
        -            "SUSE Mono",
        -            "Sacramento",
        -            "Sahitya",
        -            "Sail",
        -            "Saira",
        -            "Saira Condensed",
        -            "Saira Extra Condensed",
        -            "Saira Semi Condensed",
        -            "Saira Stencil",
        -            "Salsa",
        -            "Sanchez",
        -            "Sancreek",
        -            "Sankofa Display",
        -            "Sansation",
        -            "Sansita",
        -            "Sansita Swashed",
        -            "Sarabun",
        -            "Sarala",
        -            "Sarina",
        -            "Sarpanch",
        -            "Sassy Frass",
        -            "Satisfy",
        -            "Savate",
        -            "Sawarabi Gothic",
        -            "Sawarabi Mincho",
        -            "Scada",
        -            "Scheherazade New",
        -            "Schibsted Grotesk",
        -            "Schoolbell",
        -            "Science Gothic",
        -            "Scope One",
        -            "Seaweed Script",
        -            "Secular One",
        -            "Sedan",
        -            "Sedan SC",
        -            "Sedgwick Ave",
        -            "Sedgwick Ave Display",
        -            "Sekuya",
        -            "Sen",
        -            "Send Flowers",
        -            "Sevillana",
        -            "Seymour One",
        -            "Shadows Into Light",
        -            "Shadows Into Light Two",
        -            "Shafarik",
        -            "Shalimar",
        -            "Shantell Sans",
        -            "Shanti",
        -            "Share",
        -            "Share Tech",
        -            "Share Tech Mono",
        -            "Shippori Antique",
        -            "Shippori Antique B1",
        -            "Shippori Mincho",
        -            "Shippori Mincho B1",
        -            "Shizuru",
        -            "Shojumaru",
        -            "Short Stack",
        -            "Shrikhand",
        -            "Siemreap",
        -            "Sigmar",
        -            "Sigmar One",
        -            "Signika",
        -            "Signika Negative",
        -            "Silkscreen",
        -            "Simonetta",
        -            "Single Day",
        -            "Sintony",
        -            "Sirin Stencil",
        -            "Sirivennela",
        -            "Six Caps",
        -            "Sixtyfour",
        -            "Sixtyfour Convergence",
        -            "Skranji",
        -            "Slabo 13px",
        -            "Slabo 27px",
        -            "Slackey",
        -            "Slackside One",
        -            "Smokum",
        -            "Smooch",
        -            "Smooch Sans",
        -            "Smythe",
        -            "Sniglet",
        -            "Snippet",
        -            "Snowburst One",
        -            "Sofadi One",
        -            "Sofia",
        -            "Sofia Sans",
        -            "Sofia Sans Condensed",
        -            "Sofia Sans Extra Condensed",
        -            "Sofia Sans Semi Condensed",
        -            "Solitreo",
        -            "Solway",
        -            "Sometype Mono",
        -            "Song Myung",
        -            "Sono",
        -            "Sonsie One",
        -            "Sora",
        -            "Sorts Mill Goudy",
        -            "Sour Gummy",
        -            "Source Code Pro",
        -            "Source Sans 3",
        -            "Source Serif 4",
        -            "Space Grotesk",
        -            "Space Mono",
        -            "Special Elite",
        -            "Special Gothic",
        -            "Special Gothic Condensed One",
        -            "Special Gothic Expanded One",
        -            "Spectral",
        -            "Spectral SC",
        -            "Spicy Rice",
        -            "Spinnaker",
        -            "Spirax",
        -            "Splash",
        -            "Spline Sans",
        -            "Spline Sans Mono",
        -            "Squada One",
        -            "Square Peg",
        -            "Sree Krushnadevaraya",
        -            "Sriracha",
        -            "Srisakdi",
        -            "Staatliches",
        -            "Stack Sans Headline",
        -            "Stack Sans Notch",
        -            "Stack Sans Text",
        -            "Stalemate",
        -            "Stalinist One",
        -            "Stardos Stencil",
        -            "Stick",
        -            "Stick No Bills",
        -            "Stint Ultra Condensed",
        -            "Stint Ultra Expanded",
        -            "Stoke",
        -            "Story Script",
        -            "Strait",
        -            "Strichpunkt Sans",
        -            "Style Script",
        -            "Stylish",
        -            "Sue Ellen Francisco",
        -            "Suez One",
        -            "Sulphur Point",
        -            "Sumana",
        -            "Sunflower",
        -            "Sunshiney",
        -            "Supermercado One",
        -            "Sura",
        -            "Suranna",
        -            "Suravaram",
        -            "Suwannaphum",
        -            "Swanky and Moo Moo",
        -            "Syncopate",
        -            "Syne",
        -            "Syne Mono",
        -            "Syne Tactile",
        -            "TASA Explorer",
        -            "TASA Orbiter",
        -            "Tac One",
        -            "Tagesschrift",
        -            "Tai Heritage Pro",
        -            "Tajawal",
        -            "Tangerine",
        -            "Tapestry",
        -            "Taprom",
        -            "Tauri",
        -            "Taviraj",
        -            "Teachers",
        -            "Teko",
        -            "Tektur",
        -            "Telex",
        -            "Tenali Ramakrishna",
        -            "Tenor Sans",
        -            "Text Me One",
        -            "Texturina",
        -            "Thasadith",
        -            "The Girl Next Door",
        -            "The Nautigal",
        -            "Tienne",
        -            "TikTok Sans",
        -            "Tillana",
        -            "Tilt Neon",
        -            "Tilt Prism",
        -            "Tilt Warp",
        -            "Timmana",
        -            "Tinos",
        -            "Tiny5",
        -            "Tiro Bangla",
        -            "Tiro Devanagari Hindi",
        -            "Tiro Devanagari Marathi",
        -            "Tiro Devanagari Sanskrit",
        -            "Tiro Gurmukhi",
        -            "Tiro Kannada",
        -            "Tiro Tamil",
        -            "Tiro Telugu",
        -            "Tirra",
        -            "Titan One",
        -            "Titillium Web",
        -            "Tomorrow",
        -            "Tourney",
        -            "Trade Winds",
        -            "Train One",
        -            "Triodion",
        -            "Trirong",
        -            "Trispace",
        -            "Trocchi",
        -            "Trochut",
        -            "Truculenta",
        -            "Trykker",
        -            "Tsukimi Rounded",
        -            "Tuffy",
        -            "Tulpen One",
        -            "Turret Road",
        -            "Twinkle Star",
        -            "Ubuntu",
        -            "Ubuntu Condensed",
        -            "Ubuntu Mono",
        -            "Ubuntu Sans",
        -            "Ubuntu Sans Mono",
        -            "Uchen",
        -            "Ultra",
        -            "Unbounded",
        -            "Uncial Antiqua",
        -            "Underdog",
        -            "Unica One",
        -            "UnifrakturCook",
        -            "UnifrakturMaguntia",
        -            "Unkempt",
        -            "Unlock",
        -            "Unna",
        -            "UoqMunThenKhung",
        -            "Updock",
        -            "Urbanist",
        -            "VT323",
        -            "Vampiro One",
        -            "Varela",
        -            "Varela Round",
        -            "Varta",
        -            "Vast Shadow",
        -            "Vazirmatn",
        -            "Vend Sans",
        -            "Vesper Libre",
        -            "Viaoda Libre",
        -            "Vibes",
        -            "Vibur",
        -            "Victor Mono",
        -            "Vidaloka",
        -            "Viga",
        -            "Vina Sans",
        -            "Voces",
        -            "Volkhov",
        -            "Vollkorn",
        -            "Vollkorn SC",
        -            "Voltaire",
        -            "Vujahday Script",
        -            "WDXL Lubrifont JP N",
        -            "WDXL Lubrifont SC",
        -            "WDXL Lubrifont TC",
        -            "Waiting for the Sunrise",
        -            "Wallpoet",
        -            "Walter Turncoat",
        -            "Warnes",
        -            "Water Brush",
        -            "Waterfall",
        -            "Wavefont",
        -            "Wellfleet",
        -            "Wendy One",
        -            "Whisper",
        -            "WindSong",
        -            "Winky Rough",
        -            "Winky Sans",
        -            "Wire One",
        -            "Wittgenstein",
        -            "Wix Madefor Display",
        -            "Wix Madefor Text",
        -            "Work Sans",
        -            "Workbench",
        -            "Xanh Mono",
        -            "Yaldevi",
        -            "Yanone Kaffeesatz",
        -            "Yantramanav",
        -            "Yarndings 12",
        -            "Yarndings 12 Charted",
        -            "Yarndings 20",
        -            "Yarndings 20 Charted",
        -            "Yatra One",
        -            "Yellowtail",
        -            "Yeon Sung",
        -            "Yeseva One",
        -            "Yesteryear",
        -            "Yomogi",
        -            "Young Serif",
        -            "Yrsa",
        -            "Ysabeau",
        -            "Ysabeau Infant",
        -            "Ysabeau Office",
        -            "Ysabeau SC",
        -            "Yuji Boku",
        -            "Yuji Hentaigana Akari",
        -            "Yuji Hentaigana Akebono",
        -            "Yuji Mai",
        -            "Yuji Syuku",
        -            "Yusei Magic",
        -            "Yuyu",
        -            "Yuyu Short",
        -            "ZCOOL KuaiLe",
        -            "ZCOOL QingKe HuangYou",
        -            "ZCOOL XiaoWei",
        -            "Zain",
        -            "Zalando Sans",
        -            "Zalando Sans Expanded",
        -            "Zalando Sans SemiExpanded",
        -            "Zen Antique",
        -            "Zen Antique Soft",
        -            "Zen Dots",
        -            "Zen Kaku Gothic Antique",
        -            "Zen Kaku Gothic New",
        -            "Zen Kurenaido",
        -            "Zen Loop",
        -            "Zen Maru Gothic",
        -            "Zen Old Mincho",
        -            "Zen Tokyo Zoo",
        -            "Zeyada",
        -            "Zhi Mang Xing",
        -            "Zilla Slab",
        -            "Zilla Slab Highlight"
        -          ],
        -          "type": "string"
        -        },
        -        "fontSize": {
        -          "type": "number"
        -        },
        -        "footerColor": {
        -          "type": "string"
        -        },
        -        "footerFontSize": {
        -          "type": "number"
        -        },
        -        "footerGap": {
        -          "type": "number"
        -        },
        -        "footerLinkColor": {
        -          "type": "string"
        -        },
        -        "gridColor": {
        -          "type": "string"
        -        },
        -        "gridLineWidth": {
        -          "type": "number"
        -        },
        -        "gridLines": {
        -          "enum": [
        -            "none",
        -            "value",
        -            "both"
        -          ],
        -          "type": "string"
        -        },
        -        "headerGap": {
        -          "type": "number"
        -        },
        -        "labelColor": {
        -          "type": "string"
        -        },
        -        "labelFontSize": {
        -          "type": "number"
        -        },
        -        "labelFontWeight": {
        -          "type": "string"
        -        },
        -        "labelHaloWidth": {
        -          "type": "number"
        -        },
        -        "labelMutedFontWeight": {
        -          "type": "string"
        -        },
        -        "labelMutedOpacity": {
        -          "type": "number"
        -        },
        -        "lineStrokeWidth": {
        -          "type": "number"
        -        },
        -        "numericFontFamily": {
        -          "enum": [
        -            "ABeeZee",
        -            "ADLaM Display",
        -            "AR One Sans",
        -            "Abel",
        -            "Abhaya Libre",
        -            "Aboreto",
        -            "Abril Fatface",
        -            "Abyssinica SIL",
        -            "Aclonica",
        -            "Acme",
        -            "Actor",
        -            "Adamina",
        -            "Advent Pro",
        -            "Afacad",
        -            "Afacad Flux",
        -            "Agbalumo",
        -            "Agdasima",
        -            "Agu Display",
        -            "Aguafina Script",
        -            "Akatab",
        -            "Akaya Kanadaka",
        -            "Akaya Telivigala",
        -            "Akronim",
        -            "Akshar",
        -            "Akt",
        -            "Aladin",
        -            "Alan Sans",
        -            "Alata",
        -            "Alatsi",
        -            "Albert Sans",
        -            "Aldrich",
        -            "Alef",
        -            "Alegreya",
        -            "Alegreya SC",
        -            "Alegreya Sans",
        -            "Alegreya Sans SC",
        -            "Aleo",
        -            "Alex Brush",
        -            "Alexandria",
        -            "Alfa Slab One",
        -            "Alice",
        -            "Alien Block",
        -            "Alike",
        -            "Alike Angular",
        -            "Alkalami",
        -            "Alkatra",
        -            "Allan",
        -            "Allerta",
        -            "Allerta Stencil",
        -            "Allison",
        -            "Allkin",
        -            "Allura",
        -            "Almarai",
        -            "Almendra",
        -            "Almendra Display",
        -            "Almendra SC",
        -            "Alumni Sans",
        -            "Alumni Sans Collegiate One",
        -            "Alumni Sans Inline One",
        -            "Alumni Sans Pinstripe",
        -            "Alumni Sans SC",
        -            "Alyamama",
        -            "Amarante",
        -            "Amaranth",
        -            "Amarna",
        -            "Amatic SC",
        -            "Amethysta",
        -            "Amiko",
        -            "Amiri",
        -            "Amiri Quran",
        -            "Amita",
        -            "Anaheim",
        -            "Ancizar Sans",
        -            "Ancizar Serif",
        -            "Andada Pro",
        -            "Andika",
        -            "Anek Bangla",
        -            "Anek Devanagari",
        -            "Anek Gujarati",
        -            "Anek Gurmukhi",
        -            "Anek Kannada",
        -            "Anek Latin",
        -            "Anek Malayalam",
        -            "Anek Odia",
        -            "Anek Tamil",
        -            "Anek Telugu",
        -            "Angkor",
        -            "Annapurna SIL",
        -            "Annie Use Your Telescope",
        -            "Anonymous Pro",
        -            "Anta",
        -            "Antic",
        -            "Antic Didone",
        -            "Antic Slab",
        -            "Anton",
        -            "Anton SC",
        -            "Antonio",
        -            "Anuphan",
        -            "Anybody",
        -            "Aoboshi One",
        -            "Arapey",
        -            "Arbutus",
        -            "Arbutus Slab",
        -            "Architects Daughter",
        -            "Archivo",
        -            "Archivo Black",
        -            "Archivo Narrow",
        -            "Are You Serious",
        -            "Aref Ruqaa",
        -            "Aref Ruqaa Ink",
        -            "Arima",
        -            "Arimo",
        -            "Arizonia",
        -            "Armata",
        -            "Arsenal",
        -            "Arsenal SC",
        -            "Artifika",
        -            "Arvo",
        -            "Arya",
        -            "Asap",
        -            "Asap Condensed",
        -            "Asar",
        -            "Asimovian",
        -            "Asset",
        -            "Assistant",
        -            "Asta Sans",
        -            "Astloch",
        -            "Asul",
        -            "Athiti",
        -            "Atkinson Hyperlegible",
        -            "Atkinson Hyperlegible Mono",
        -            "Atkinson Hyperlegible Next",
        -            "Atma",
        -            "Atomic Age",
        -            "Aubrey",
        -            "Audiowide",
        -            "Autour One",
        -            "Average",
        -            "Average Sans",
        -            "Averia Gruesa Libre",
        -            "Averia Libre",
        -            "Averia Sans Libre",
        -            "Averia Serif Libre",
        -            "Azeret Mono",
        -            "B612",
        -            "B612 Mono",
        -            "BBH Bartle",
        -            "BBH Bogle",
        -            "BBH Hegarty",
        -            "BIZ UDGothic",
        -            "BIZ UDMincho",
        -            "BIZ UDPGothic",
        -            "BIZ UDPMincho",
        -            "BJCree",
        -            "Babylonica",
        -            "Bacasime Antique",
        -            "Bad Script",
        -            "Badeen Display",
        -            "Bagel Fat One",
        -            "Bahiana",
        -            "Bahianita",
        -            "Bai Jamjuree",
        -            "Bakbak One",
        -            "Ballet",
        -            "Baloo 2",
        -            "Baloo Bhai 2",
        -            "Baloo Bhaijaan 2",
        -            "Baloo Bhaina 2",
        -            "Baloo Chettan 2",
        -            "Baloo Da 2",
        -            "Baloo Paaji 2",
        -            "Baloo Tamma 2",
        -            "Baloo Tammudu 2",
        -            "Baloo Thambi 2",
        -            "Balsamiq Sans",
        -            "Balthazar",
        -            "Bangers",
        -            "Barlow",
        -            "Barlow Condensed",
        -            "Barlow Semi Condensed",
        -            "Barriecito",
        -            "Barrio",
        -            "Basic",
        -            "Baskervville",
        -            "Baskervville SC",
        -            "Battambang",
        -            "Baumans",
        -            "Bayon",
        -            "Be Vietnam Pro",
        -            "Beau Rivage",
        -            "Bebas Neue",
        -            "Beiruti",
        -            "Belanosima",
        -            "Belgrano",
        -            "Bellefair",
        -            "Belleza",
        -            "Bellota",
        -            "Bellota Text",
        -            "BenchNine",
        -            "Benne",
        -            "Bentham",
        -            "Berkshire Swash",
        -            "Besley",
        -            "Betania Patmos",
        -            "Betania Patmos GDL",
        -            "Betania Patmos In",
        -            "Betania Patmos In GDL",
        -            "Beth Ellen",
        -            "Bevan",
        -            "BhuTuka Expanded One",
        -            "Big Shoulders",
        -            "Big Shoulders Inline",
        -            "Big Shoulders Stencil",
        -            "Bigelow Rules",
        -            "Bigshot One",
        -            "Bilbo",
        -            "Bilbo Swash Caps",
        -            "BioRhyme",
        -            "BioRhyme Expanded",
        -            "Birthstone",
        -            "Birthstone Bounce",
        -            "Biryani",
        -            "Bitcount",
        -            "Bitcount Grid Double",
        -            "Bitcount Grid Double Ink",
        -            "Bitcount Grid Single",
        -            "Bitcount Grid Single Ink",
        -            "Bitcount Ink",
        -            "Bitcount Prop Double",
        -            "Bitcount Prop Double Ink",
        -            "Bitcount Prop Single",
        -            "Bitcount Prop Single Ink",
        -            "Bitcount Single",
        -            "Bitcount Single Ink",
        -            "Bitter",
        -            "Black And White Picture",
        -            "Black Han Sans",
        -            "Black Ops One",
        -            "Blaka",
        -            "Blaka Hollow",
        -            "Blaka Ink",
        -            "Blinker",
        -            "Bodoni Moda",
        -            "Bodoni Moda SC",
        -            "Bokor",
        -            "Boldonse",
        -            "Bona Nova",
        -            "Bona Nova SC",
        -            "Bonbon",
        -            "Bonheur Royale",
        -            "Boogaloo",
        -            "Borel",
        -            "Bowlby One",
        -            "Bowlby One SC",
        -            "Bpmf Huninn",
        -            "Bpmf Iansui",
        -            "Bpmf Zihi Kai Std",
        -            "Braah One",
        -            "Brawler",
        -            "Bree Serif",
        -            "Bricolage Grotesque",
        -            "Bruno Ace",
        -            "Bruno Ace SC",
        -            "Brygada 1918",
        -            "Bubblegum Sans",
        -            "Bubbler One",
        -            "Buda",
        -            "Buenard",
        -            "Bungee",
        -            "Bungee Hairline",
        -            "Bungee Inline",
        -            "Bungee Outline",
        -            "Bungee Shade",
        -            "Bungee Spice",
        -            "Bungee Tint",
        -            "Butcherman",
        -            "Butterfly Kids",
        -            "Bytesized",
        -            "Cabin",
        -            "Cabin Condensed",
        -            "Cabin Sketch",
        -            "Cactus Classical Serif",
        -            "Caesar Dressing",
        -            "Cagliostro",
        -            "Cairo",
        -            "Cairo Play",
        -            "Cal Sans",
        -            "Caladea",
        -            "Calistoga",
        -            "Calligraffitti",
        -            "Cambay",
        -            "Cambo",
        -            "Candal",
        -            "Cantarell",
        -            "Cantata One",
        -            "Cantora One",
        -            "Caprasimo",
        -            "Capriola",
        -            "Caramel",
        -            "Carattere",
        -            "Cardo",
        -            "Carlito",
        -            "Carme",
        -            "Carrois Gothic",
        -            "Carrois Gothic SC",
        -            "Carter One",
        -            "Cascadia Code",
        -            "Cascadia Mono",
        -            "Castoro",
        -            "Castoro Titling",
        -            "Catamaran",
        -            "Caudex",
        -            "Cause",
        -            "Caveat",
        -            "Caveat Brush",
        -            "Cedarville Cursive",
        -            "Ceviche One",
        -            "Chakra Petch",
        -            "Changa",
        -            "Changa One",
        -            "Chango",
        -            "Charis SIL",
        -            "Charm",
        -            "Charmonman",
        -            "Chathura",
        -            "Chau Philomene One",
        -            "Chela One",
        -            "Chelsea Market",
        -            "Chenla",
        -            "Cherish",
        -            "Cherry Bomb One",
        -            "Cherry Cream Soda",
        -            "Cherry Swash",
        -            "Chewy",
        -            "Chicle",
        -            "Chilanka",
        -            "Chiron GoRound TC",
        -            "Chiron Hei HK",
        -            "Chiron Sung HK",
        -            "Chivo",
        -            "Chivo Mono",
        -            "Chocolate Classical Sans",
        -            "Chokokutai",
        -            "Chonburi",
        -            "Cinzel",
        -            "Cinzel Decorative",
        -            "Clicker Script",
        -            "Climate Crisis",
        -            "Coda",
        -            "Codystar",
        -            "Coiny",
        -            "Combo",
        -            "Comfortaa",
        -            "Comforter",
        -            "Comforter Brush",
        -            "Comic Neue",
        -            "Comic Relief",
        -            "Coming Soon",
        -            "Comme",
        -            "Commissioner",
        -            "Concert One",
        -            "Condiment",
        -            "Content",
        -            "Contrail One",
        -            "Convergence",
        -            "Cookie",
        -            "Copse",
        -            "Coral Pixels",
        -            "Corben",
        -            "Corinthia",
        -            "Cormorant",
        -            "Cormorant Garamond",
        -            "Cormorant Infant",
        -            "Cormorant SC",
        -            "Cormorant Unicase",
        -            "Cormorant Upright",
        -            "Cossette Texte",
        -            "Cossette Titre",
        -            "Courgette",
        -            "Courier Prime",
        -            "Cousine",
        -            "Coustard",
        -            "Covered By Your Grace",
        -            "Crafty Girls",
        -            "Creepster",
        -            "Crete Round",
        -            "Crimson Pro",
        -            "Crimson Text",
        -            "Croissant One",
        -            "Crushed",
        -            "Cuprum",
        -            "Cute Font",
        -            "Cutive",
        -            "Cutive Mono",
        -            "DM Mono",
        -            "DM Sans",
        -            "DM Serif Display",
        -            "DM Serif Text",
        -            "Dai Banna SIL",
        -            "Damion",
        -            "Dancing Script",
        -            "Danfo",
        -            "Dangrek",
        -            "Darker Grotesque",
        -            "Darumadrop One",
        -            "Datatype",
        -            "David Libre",
        -            "Dawning of a New Day",
        -            "Days One",
        -            "Dekko",
        -            "Dela Gothic One",
        -            "Delicious Handrawn",
        -            "Delius",
        -            "Delius Swash Caps",
        -            "Delius Unicase",
        -            "Della Respira",
        -            "Denk One",
        -            "Devonshire",
        -            "Dhurjati",
        -            "Didact Gothic",
        -            "Diphylleia",
        -            "Diplomata",
        -            "Diplomata SC",
        -            "Do Hyeon",
        -            "Dokdo",
        -            "Domine",
        -            "Donegal One",
        -            "Dongle",
        -            "Doppio One",
        -            "Dorsa",
        -            "Dosis",
        -            "DotGothic16",
        -            "Doto",
        -            "Dr Sugiyama",
        -            "Duru Sans",
        -            "DynaPuff",
        -            "Dynalight",
        -            "EB Garamond",
        -            "Eagle Lake",
        -            "East Sea Dokdo",
        -            "Eater",
        -            "Economica",
        -            "Eczar",
        -            "Edu AU VIC WA NT Arrows",
        -            "Edu AU VIC WA NT Dots",
        -            "Edu AU VIC WA NT Guides",
        -            "Edu AU VIC WA NT Hand",
        -            "Edu AU VIC WA NT Pre",
        -            "Edu NSW ACT Cursive",
        -            "Edu NSW ACT Foundation",
        -            "Edu NSW ACT Hand Pre",
        -            "Edu QLD Beginner",
        -            "Edu QLD Hand",
        -            "Edu SA Beginner",
        -            "Edu SA Hand",
        -            "Edu TAS Beginner",
        -            "Edu VIC WA NT Beginner",
        -            "Edu VIC WA NT Hand",
        -            "Edu VIC WA NT Hand Pre",
        -            "El Messiri",
        -            "Electrolize",
        -            "Elms Sans",
        -            "Elsie",
        -            "Elsie Swash Caps",
        -            "Emblema One",
        -            "Emilys Candy",
        -            "Encode Sans",
        -            "Encode Sans Condensed",
        -            "Encode Sans Expanded",
        -            "Encode Sans SC",
        -            "Encode Sans Semi Condensed",
        -            "Encode Sans Semi Expanded",
        -            "Engagement",
        -            "Englebert",
        -            "Enriqueta",
        -            "Ephesis",
        -            "Epilogue",
        -            "Epunda Sans",
        -            "Epunda Slab",
        -            "Erica One",
        -            "Esteban",
        -            "Estedad",
        -            "Estonia",
        -            "Euphoria Script",
        -            "Ewert",
        -            "Exile",
        -            "Exo",
        -            "Exo 2",
        -            "Expletus Sans",
        -            "Explora",
        -            "Faculty Glyphic",
        -            "Fahkwang",
        -            "Familjen Grotesk",
        -            "Fanwood Text",
        -            "Farro",
        -            "Farsan",
        -            "Fascinate",
        -            "Fascinate Inline",
        -            "Faster One",
        -            "Fasthand",
        -            "Fauna One",
        -            "Faustina",
        -            "Federant",
        -            "Federo",
        -            "Felipa",
        -            "Fenix",
        -            "Festive",
        -            "Figtree",
        -            "Finger Paint",
        -            "Finlandica Headline",
        -            "Finlandica Text",
        -            "Fira Code",
        -            "Fira Mono",
        -            "Fira Sans",
        -            "Fira Sans Condensed",
        -            "Fira Sans Extra Condensed",
        -            "Fjalla One",
        -            "Fjord One",
        -            "Flamenco",
        -            "Flavors",
        -            "Fleur De Leah",
        -            "Flow Block",
        -            "Flow Circular",
        -            "Flow Rounded",
        -            "Foldit",
        -            "Fondamento",
        -            "Fontdiner Swanky",
        -            "Forum",
        -            "Fragment Mono",
        -            "Francois One",
        -            "Frank Ruhl Libre",
        -            "Fraunces",
        -            "Freckle Face",
        -            "Fredericka the Great",
        -            "Fredoka",
        -            "Freehand",
        -            "Freeman",
        -            "Fresca",
        -            "Frijole",
        -            "Fruktur",
        -            "Fugaz One",
        -            "Fuggles",
        -            "Funnel Display",
        -            "Funnel Sans",
        -            "Fustat",
        -            "Fuzzy Bubbles",
        -            "GFS Didot",
        -            "GFS Neohellenic",
        -            "Ga Maamli",
        -            "Gabarito",
        -            "Gabriela",
        -            "Gaegu",
        -            "Gafata",
        -            "Gajraj One",
        -            "Galada",
        -            "Galdeano",
        -            "Galindo",
        -            "Gamja Flower",
        -            "Gantari",
        -            "Gasoek One",
        -            "Gayathri",
        -            "Geist",
        -            "Geist Mono",
        -            "Geist Pixel",
        -            "Gelasio",
        -            "Gemunu Libre",
        -            "Genos",
        -            "Gentium Book Plus",
        -            "Gentium Plus",
        -            "Geo",
        -            "Geologica",
        -            "Geom",
        -            "Geomini",
        -            "Georama",
        -            "Geostar",
        -            "Geostar Fill",
        -            "Germania One",
        -            "Gideon Roman",
        -            "Gidole",
        -            "Gidugu",
        -            "Gilda Display",
        -            "Girassol",
        -            "Give You Glory",
        -            "Glass Antiqua",
        -            "Glegoo",
        -            "Gloock",
        -            "Gloria Hallelujah",
        -            "Glory",
        -            "Gluten",
        -            "Goblin One",
        -            "Gochi Hand",
        -            "Goldman",
        -            "Golos Text",
        -            "Google Sans",
        -            "Google Sans Code",
        -            "Google Sans Flex",
        -            "Gorditas",
        -            "Gothic A1",
        -            "Gotu",
        -            "Goudy Bookletter 1911",
        -            "Gowun Batang",
        -            "Gowun Dodum",
        -            "Graduate",
        -            "Grand Hotel",
        -            "Grandiflora One",
        -            "Grandstander",
        -            "Grape Nuts",
        -            "Gravitas One",
        -            "Great Vibes",
        -            "Grechen Fuemen",
        -            "Grenze",
        -            "Grenze Gotisch",
        -            "Grey Qo",
        -            "Griffy",
        -            "Gruppo",
        -            "Gudea",
        -            "Gugi",
        -            "Gulzar",
        -            "Gupter",
        -            "Gurajada",
        -            "Gveret Levin",
        -            "Gwendolyn",
        -            "Habibi",
        -            "Hachi Maru Pop",
        -            "Hahmlet",
        -            "Halant",
        -            "Hammersmith One",
        -            "Hanalei",
        -            "Hanalei Fill",
        -            "Handjet",
        -            "Handlee",
        -            "Hanken Grotesk",
        -            "Hanuman",
        -            "Happy Monkey",
        -            "Harmattan",
        -            "Headland One",
        -            "Hedvig Letters Sans",
        -            "Hedvig Letters Serif",
        -            "Heebo",
        -            "Henny Penny",
        -            "Hepta Slab",
        -            "Herr Von Muellerhoff",
        -            "Hi Melody",
        -            "Hibur Mono",
        -            "Hina Mincho",
        -            "Hind",
        -            "Hind Guntur",
        -            "Hind Madurai",
        -            "Hind Mysuru",
        -            "Hind Siliguri",
        -            "Hind Vadodara",
        -            "Holtwood One SC",
        -            "Homemade Apple",
        -            "Homenaje",
        -            "Honk",
        -            "Host Grotesk",
        -            "Hubballi",
        -            "Hubot Sans",
        -            "Huninn",
        -            "Hurricane",
        -            "IBM Plex Mono",
        -            "IBM Plex Sans",
        -            "IBM Plex Sans Arabic",
        -            "IBM Plex Sans Condensed",
        -            "IBM Plex Sans Devanagari",
        -            "IBM Plex Sans Hebrew",
        -            "IBM Plex Sans JP",
        -            "IBM Plex Sans KR",
        -            "IBM Plex Sans Thai",
        -            "IBM Plex Sans Thai Looped",
        -            "IBM Plex Serif",
        -            "IM Fell DW Pica",
        -            "IM Fell DW Pica SC",
        -            "IM Fell Double Pica",
        -            "IM Fell Double Pica SC",
        -            "IM Fell English",
        -            "IM Fell English SC",
        -            "IM Fell French Canon",
        -            "IM Fell French Canon SC",
        -            "IM Fell Great Primer",
        -            "IM Fell Great Primer SC",
        -            "Iansui",
        -            "Ibarra Real Nova",
        -            "Iceberg",
        -            "Iceland",
        -            "Idiqlat",
        -            "Imbue",
        -            "Imperial Script",
        -            "Imprima",
        -            "Inclusive Sans",
        -            "Inconsolata",
        -            "Inder",
        -            "Indie Flower",
        -            "Ingrid Darling",
        -            "Inika",
        -            "Inknut Antiqua",
        -            "Inria Sans",
        -            "Inria Serif",
        -            "Inspiration",
        -            "Instrument Sans",
        -            "Instrument Serif",
        -            "Intel One Mono",
        -            "Inter",
        -            "Inter Tight",
        -            "Iosevka Charon",
        -            "Iosevka Charon Mono",
        -            "Irish Grover",
        -            "Island Moments",
        -            "Istok Web",
        -            "Italiana",
        -            "Italianno",
        -            "Itim",
        -            "Jacquard 12",
        -            "Jacquard 12 Charted",
        -            "Jacquard 24",
        -            "Jacquard 24 Charted",
        -            "Jacquarda Bastarda 9",
        -            "Jacquarda Bastarda 9 Charted",
        -            "Jacques Francois",
        -            "Jacques Francois Shadow",
        -            "Jaini",
        -            "Jaini Purva",
        -            "Jaldi",
        -            "Jaro",
        -            "Jersey 10",
        -            "Jersey 10 Charted",
        -            "Jersey 15",
        -            "Jersey 15 Charted",
        -            "Jersey 20",
        -            "Jersey 20 Charted",
        -            "Jersey 25",
        -            "Jersey 25 Charted",
        -            "JetBrains Mono",
        -            "Jim Nightshade",
        -            "Joan",
        -            "Jockey One",
        -            "Jolly Lodger",
        -            "Jomhuria",
        -            "Jomolhari",
        -            "Josefin Sans",
        -            "Josefin Slab",
        -            "Jost",
        -            "Joti One",
        -            "Jua",
        -            "Judson",
        -            "Julee",
        -            "Julius Sans One",
        -            "Junge",
        -            "Jura",
        -            "Just Another Hand",
        -            "Just Me Again Down Here",
        -            "K2D",
        -            "Kablammo",
        -            "Kadwa",
        -            "Kaisei Decol",
        -            "Kaisei HarunoUmi",
        -            "Kaisei Opti",
        -            "Kaisei Tokumin",
        -            "Kalam",
        -            "Kalnia",
        -            "Kalnia Glaze",
        -            "Kameron",
        -            "Kanchenjunga",
        -            "Kanit",
        -            "Kantumruy Pro",
        -            "Kapakana",
        -            "Karantina",
        -            "Karla",
        -            "Karla Tamil Inclined",
        -            "Karla Tamil Upright",
        -            "Karma",
        -            "Katibeh",
        -            "Kaushan Script",
        -            "Kavivanar",
        -            "Kavoon",
        -            "Kay Pho Du",
        -            "Kdam Thmor Pro",
        -            "Keania One",
        -            "Kedebideri",
        -            "Kelly Slab",
        -            "Kenia",
        -            "Khand",
        -            "Khmer",
        -            "Khula",
        -            "Kings",
        -            "Kirang Haerang",
        -            "Kite One",
        -            "Kiwi Maru",
        -            "Klee One",
        -            "Knewave",
        -            "KoHo",
        -            "Kodchasan",
        -            "Kode Mono",
        -            "Koh Santepheap",
        -            "Kolker Brush",
        -            "Konkhmer Sleokchher",
        -            "Kosugi",
        -            "Kosugi Maru",
        -            "Kotta One",
        -            "Koulen",
        -            "Kranky",
        -            "Kreon",
        -            "Kristi",
        -            "Krona One",
        -            "Krub",
        -            "Kufam",
        -            "Kulim Park",
        -            "Kumar One",
        -            "Kumar One Outline",
        -            "Kumbh Sans",
        -            "Kurale",
        -            "LINE Seed JP",
        -            "LXGW Marker Gothic",
        -            "LXGW WenKai Mono TC",
        -            "LXGW WenKai TC",
        -            "La Belle Aurore",
        -            "Labrada",
        -            "Lacquer",
        -            "Laila",
        -            "Lakki Reddy",
        -            "Lalezar",
        -            "Lancelot",
        -            "Langar",
        -            "Lateef",
        -            "Lato",
        -            "Lavishly Yours",
        -            "League Gothic",
        -            "League Script",
        -            "League Spartan",
        -            "Leckerli One",
        -            "Ledger",
        -            "Lekton",
        -            "Lemon",
        -            "Lemonada",
        -            "Lexend",
        -            "Lexend Deca",
        -            "Lexend Exa",
        -            "Lexend Giga",
        -            "Lexend Mega",
        -            "Lexend Peta",
        -            "Lexend Tera",
        -            "Lexend Zetta",
        -            "Libertinus Keyboard",
        -            "Libertinus Math",
        -            "Libertinus Mono",
        -            "Libertinus Sans",
        -            "Libertinus Serif",
        -            "Libertinus Serif Display",
        -            "Libre Barcode 128",
        -            "Libre Barcode 128 Text",
        -            "Libre Barcode 39",
        -            "Libre Barcode 39 Extended",
        -            "Libre Barcode 39 Extended Text",
        -            "Libre Barcode 39 Text",
        -            "Libre Barcode EAN13 Text",
        -            "Libre Baskerville",
        -            "Libre Bodoni",
        -            "Libre Caslon Display",
        -            "Libre Caslon Text",
        -            "Libre Franklin",
        -            "Licorice",
        -            "Life Savers",
        -            "Lilex",
        -            "Lilita One",
        -            "Lily Script One",
        -            "Limelight",
        -            "Linden Hill",
        -            "Linefont",
        -            "Lisu Bosa",
        -            "Liter",
        -            "Literata",
        -            "Liu Jian Mao Cao",
        -            "Livvic",
        -            "Lobster",
        -            "Lobster Two",
        -            "Londrina Outline",
        -            "Londrina Shadow",
        -            "Londrina Sketch",
        -            "Londrina Solid",
        -            "Long Cang",
        -            "Lora",
        -            "Love Light",
        -            "Love Ya Like A Sister",
        -            "Loved by the King",
        -            "Lovers Quarrel",
        -            "Luckiest Guy",
        -            "Lugrasimo",
        -            "Lumanosimo",
        -            "Lunasima",
        -            "Lusitana",
        -            "Lustria",
        -            "Luxurious Roman",
        -            "Luxurious Script",
        -            "M PLUS 1",
        -            "M PLUS 1 Code",
        -            "M PLUS 1p",
        -            "M PLUS 2",
        -            "M PLUS Code Latin",
        -            "M PLUS Rounded 1c",
        -            "M PLUS U",
        -            "Ma Shan Zheng",
        -            "Macondo",
        -            "Macondo Swash Caps",
        -            "Mada",
        -            "Madimi One",
        -            "Magra",
        -            "Maiden Orange",
        -            "Maitree",
        -            "Major Mono Display",
        -            "Mako",
        -            "Mali",
        -            "Mallanna",
        -            "Maname",
        -            "Mandali",
        -            "Manjari",
        -            "Manrope",
        -            "Mansalva",
        -            "Manuale",
        -            "Manufacturing Consent",
        -            "Marcellus",
        -            "Marcellus SC",
        -            "Marck Script",
        -            "Margarine",
        -            "Marhey",
        -            "Markazi Text",
        -            "Marko One",
        -            "Marmelad",
        -            "Martel",
        -            "Martel Sans",
        -            "Martian Mono",
        -            "Marvel",
        -            "Matangi",
        -            "Mate",
        -            "Mate SC",
        -            "Matemasie",
        -            "Material Icons",
        -            "Material Icons Outlined",
        -            "Material Icons Round",
        -            "Material Icons Sharp",
        -            "Material Icons Two Tone",
        -            "Material Symbols",
        -            "Material Symbols Outlined",
        -            "Material Symbols Rounded",
        -            "Material Symbols Sharp",
        -            "Maven Pro",
        -            "McLaren",
        -            "Mea Culpa",
        -            "Meddon",
        -            "MedievalSharp",
        -            "Medula One",
        -            "Meera Inimai",
        -            "Megrim",
        -            "Meie Script",
        -            "Menbere",
        -            "Meow Script",
        -            "Merienda",
        -            "Merriweather",
        -            "Merriweather Sans",
        -            "Metal",
        -            "Metal Mania",
        -            "Metamorphous",
        -            "Metrophobic",
        -            "Michroma",
        -            "Micro 5",
        -            "Micro 5 Charted",
        -            "Milonga",
        -            "Miltonian",
        -            "Miltonian Tattoo",
        -            "Mina",
        -            "Mingzat",
        -            "Miniver",
        -            "Miranda Sans",
        -            "Miriam Libre",
        -            "Mirza",
        -            "Miss Fajardose",
        -            "Mitr",
        -            "Mochiy Pop One",
        -            "Mochiy Pop P One",
        -            "Modak",
        -            "Modern Antiqua",
        -            "Moderustic",
        -            "Mogra",
        -            "Mohave",
        -            "Moirai One",
        -            "Molengo",
        -            "Molle",
        -            "Momo Signature",
        -            "Momo Trust Display",
        -            "Momo Trust Sans",
        -            "Mona Sans",
        -            "Monda",
        -            "Monofett",
        -            "Monomakh",
        -            "Monomaniac One",
        -            "Monoton",
        -            "Monsieur La Doulaise",
        -            "Montaga",
        -            "Montagu Slab",
        -            "MonteCarlo",
        -            "Montenegrin Gothic One",
        -            "Montez",
        -            "Montserrat",
        -            "Montserrat Alternates",
        -            "Montserrat Underline",
        -            "Moo Lah Lah",
        -            "Mooli",
        -            "Moon Dance",
        -            "Moul",
        -            "Moulpali",
        -            "Mountains of Christmas",
        -            "Mouse Memoirs",
        -            "Mozilla Headline",
        -            "Mozilla Text",
        -            "Mr Bedfort",
        -            "Mr Dafoe",
        -            "Mr De Haviland",
        -            "Mrs Saint Delafield",
        -            "Mrs Sheppards",
        -            "Ms Madi",
        -            "Mukta",
        -            "Mukta Mahee",
        -            "Mukta Malar",
        -            "Mukta Vaani",
        -            "Mulish",
        -            "Murecho",
        -            "MuseoModerno",
        -            "My Soul",
        -            "Mynerve",
        -            "Mystery Quest",
        -            "NTR",
        -            "Nabla",
        -            "Namdhinggo",
        -            "Nanum Brush Script",
        -            "Nanum Gothic",
        -            "Nanum Gothic Coding",
        -            "Nanum Myeongjo",
        -            "Nanum Pen Script",
        -            "Narnoor",
        -            "Nata Sans",
        -            "National Park",
        -            "Neonderthaw",
        -            "Nerko One",
        -            "Neucha",
        -            "Neuton",
        -            "New Amsterdam",
        -            "New Rocker",
        -            "New Tegomin",
        -            "News Cycle",
        -            "Newsreader",
        -            "Niconne",
        -            "Niramit",
        -            "Nixie One",
        -            "Nobile",
        -            "Nokora",
        -            "Norican",
        -            "Nosifer",
        -            "Notable",
        -            "Nothing You Could Do",
        -            "Noticia Text",
        -            "Noto Color Emoji",
        -            "Noto Emoji",
        -            "Noto Kufi Arabic",
        -            "Noto Music",
        -            "Noto Naskh Arabic",
        -            "Noto Nastaliq Urdu",
        -            "Noto Rashi Hebrew",
        -            "Noto Sans",
        -            "Noto Sans Adlam",
        -            "Noto Sans Adlam Unjoined",
        -            "Noto Sans Anatolian Hieroglyphs",
        -            "Noto Sans Arabic",
        -            "Noto Sans Armenian",
        -            "Noto Sans Avestan",
        -            "Noto Sans Balinese",
        -            "Noto Sans Bamum",
        -            "Noto Sans Bassa Vah",
        -            "Noto Sans Batak",
        -            "Noto Sans Bengali",
        -            "Noto Sans Bhaiksuki",
        -            "Noto Sans Brahmi",
        -            "Noto Sans Buginese",
        -            "Noto Sans Buhid",
        -            "Noto Sans Canadian Aboriginal",
        -            "Noto Sans Carian",
        -            "Noto Sans Caucasian Albanian",
        -            "Noto Sans Chakma",
        -            "Noto Sans Cham",
        -            "Noto Sans Cherokee",
        -            "Noto Sans Chorasmian",
        -            "Noto Sans Coptic",
        -            "Noto Sans Cuneiform",
        -            "Noto Sans Cypriot",
        -            "Noto Sans Cypro Minoan",
        -            "Noto Sans Deseret",
        -            "Noto Sans Devanagari",
        -            "Noto Sans Display",
        -            "Noto Sans Duployan",
        -            "Noto Sans Egyptian Hieroglyphs",
        -            "Noto Sans Elbasan",
        -            "Noto Sans Elymaic",
        -            "Noto Sans Ethiopic",
        -            "Noto Sans Georgian",
        -            "Noto Sans Glagolitic",
        -            "Noto Sans Gothic",
        -            "Noto Sans Grantha",
        -            "Noto Sans Gujarati",
        -            "Noto Sans Gunjala Gondi",
        -            "Noto Sans Gurmukhi",
        -            "Noto Sans HK",
        -            "Noto Sans Hanifi Rohingya",
        -            "Noto Sans Hanunoo",
        -            "Noto Sans Hatran",
        -            "Noto Sans Hebrew",
        -            "Noto Sans Imperial Aramaic",
        -            "Noto Sans Indic Siyaq Numbers",
        -            "Noto Sans Inscriptional Pahlavi",
        -            "Noto Sans Inscriptional Parthian",
        -            "Noto Sans JP",
        -            "Noto Sans Javanese",
        -            "Noto Sans KR",
        -            "Noto Sans Kaithi",
        -            "Noto Sans Kannada",
        -            "Noto Sans Kawi",
        -            "Noto Sans Kayah Li",
        -            "Noto Sans Kharoshthi",
        -            "Noto Sans Khmer",
        -            "Noto Sans Khojki",
        -            "Noto Sans Khudawadi",
        -            "Noto Sans Lao",
        -            "Noto Sans Lao Looped",
        -            "Noto Sans Lepcha",
        -            "Noto Sans Limbu",
        -            "Noto Sans Linear A",
        -            "Noto Sans Linear B",
        -            "Noto Sans Lisu",
        -            "Noto Sans Lycian",
        -            "Noto Sans Lydian",
        -            "Noto Sans Mahajani",
        -            "Noto Sans Malayalam",
        -            "Noto Sans Mandaic",
        -            "Noto Sans Manichaean",
        -            "Noto Sans Marchen",
        -            "Noto Sans Masaram Gondi",
        -            "Noto Sans Math",
        -            "Noto Sans Mayan Numerals",
        -            "Noto Sans Medefaidrin",
        -            "Noto Sans Meetei Mayek",
        -            "Noto Sans Mende Kikakui",
        -            "Noto Sans Meroitic",
        -            "Noto Sans Miao",
        -            "Noto Sans Modi",
        -            "Noto Sans Mongolian",
        -            "Noto Sans Mono",
        -            "Noto Sans Mro",
        -            "Noto Sans Multani",
        -            "Noto Sans Myanmar",
        -            "Noto Sans NKo",
        -            "Noto Sans NKo Unjoined",
        -            "Noto Sans Nabataean",
        -            "Noto Sans Nag Mundari",
        -            "Noto Sans Nandinagari",
        -            "Noto Sans New Tai Lue",
        -            "Noto Sans Newa",
        -            "Noto Sans Nushu",
        -            "Noto Sans Ogham",
        -            "Noto Sans Ol Chiki",
        -            "Noto Sans Old Hungarian",
        -            "Noto Sans Old Italic",
        -            "Noto Sans Old North Arabian",
        -            "Noto Sans Old Permic",
        -            "Noto Sans Old Persian",
        -            "Noto Sans Old Sogdian",
        -            "Noto Sans Old South Arabian",
        -            "Noto Sans Old Turkic",
        -            "Noto Sans Oriya",
        -            "Noto Sans Osage",
        -            "Noto Sans Osmanya",
        -            "Noto Sans Pahawh Hmong",
        -            "Noto Sans Palmyrene",
        -            "Noto Sans Pau Cin Hau",
        -            "Noto Sans PhagsPa",
        -            "Noto Sans Phoenician",
        -            "Noto Sans Psalter Pahlavi",
        -            "Noto Sans Rejang",
        -            "Noto Sans Runic",
        -            "Noto Sans SC",
        -            "Noto Sans Samaritan",
        -            "Noto Sans Saurashtra",
        -            "Noto Sans Sharada",
        -            "Noto Sans Shavian",
        -            "Noto Sans Siddham",
        -            "Noto Sans SignWriting",
        -            "Noto Sans Sinhala",
        -            "Noto Sans Sogdian",
        -            "Noto Sans Sora Sompeng",
        -            "Noto Sans Soyombo",
        -            "Noto Sans Sundanese",
        -            "Noto Sans Sunuwar",
        -            "Noto Sans Syloti Nagri",
        -            "Noto Sans Symbols",
        -            "Noto Sans Symbols 2",
        -            "Noto Sans Syriac",
        -            "Noto Sans Syriac Eastern",
        -            "Noto Sans Syriac Western",
        -            "Noto Sans TC",
        -            "Noto Sans Tagalog",
        -            "Noto Sans Tagbanwa",
        -            "Noto Sans Tai Le",
        -            "Noto Sans Tai Tham",
        -            "Noto Sans Tai Viet",
        -            "Noto Sans Takri",
        -            "Noto Sans Tamil",
        -            "Noto Sans Tamil Supplement",
        -            "Noto Sans Tangsa",
        -            "Noto Sans Telugu",
        -            "Noto Sans Thaana",
        -            "Noto Sans Thai",
        -            "Noto Sans Thai Looped",
        -            "Noto Sans Tifinagh",
        -            "Noto Sans Tirhuta",
        -            "Noto Sans Ugaritic",
        -            "Noto Sans Vai",
        -            "Noto Sans Vithkuqi",
        -            "Noto Sans Wancho",
        -            "Noto Sans Warang Citi",
        -            "Noto Sans Yi",
        -            "Noto Sans Zanabazar Square",
        -            "Noto Serif",
        -            "Noto Serif Ahom",
        -            "Noto Serif Armenian",
        -            "Noto Serif Balinese",
        -            "Noto Serif Bengali",
        -            "Noto Serif Devanagari",
        -            "Noto Serif Display",
        -            "Noto Serif Dives Akuru",
        -            "Noto Serif Dogra",
        -            "Noto Serif Ethiopic",
        -            "Noto Serif Georgian",
        -            "Noto Serif Grantha",
        -            "Noto Serif Gujarati",
        -            "Noto Serif Gurmukhi",
        -            "Noto Serif HK",
        -            "Noto Serif Hebrew",
        -            "Noto Serif Hentaigana",
        -            "Noto Serif JP",
        -            "Noto Serif KR",
        -            "Noto Serif Kannada",
        -            "Noto Serif Khitan Small Script",
        -            "Noto Serif Khmer",
        -            "Noto Serif Khojki",
        -            "Noto Serif Lao",
        -            "Noto Serif Makasar",
        -            "Noto Serif Malayalam",
        -            "Noto Serif Myanmar",
        -            "Noto Serif NP Hmong",
        -            "Noto Serif Old Uyghur",
        -            "Noto Serif Oriya",
        -            "Noto Serif Ottoman Siyaq",
        -            "Noto Serif SC",
        -            "Noto Serif Sinhala",
        -            "Noto Serif TC",
        -            "Noto Serif Tamil",
        -            "Noto Serif Tangut",
        -            "Noto Serif Telugu",
        -            "Noto Serif Thai",
        -            "Noto Serif Tibetan",
        -            "Noto Serif Todhri",
        -            "Noto Serif Toto",
        -            "Noto Serif Vithkuqi",
        -            "Noto Serif Yezidi",
        -            "Noto Traditional Nushu",
        -            "Noto Znamenny Musical Notation",
        -            "Nova Cut",
        -            "Nova Flat",
        -            "Nova Mono",
        -            "Nova Oval",
        -            "Nova Round",
        -            "Nova Script",
        -            "Nova Slim",
        -            "Nova Square",
        -            "Numans",
        -            "Nunito",
        -            "Nunito Sans",
        -            "Nuosu SIL",
        -            "Odibee Sans",
        -            "Odor Mean Chey",
        -            "Offside",
        -            "Oi",
        -            "Ojuju",
        -            "Old Standard TT",
        -            "Oldenburg",
        -            "Ole",
        -            "Oleo Script",
        -            "Oleo Script Swash Caps",
        -            "Onest",
        -            "Oooh Baby",
        -            "Open Sans",
        -            "Oranienbaum",
        -            "Orbit",
        -            "Orbitron",
        -            "Oregano",
        -            "Orelega One",
        -            "Orienta",
        -            "Original Surfer",
        -            "Oswald",
        -            "Outfit",
        -            "Over the Rainbow",
        -            "Overlock",
        -            "Overlock SC",
        -            "Overpass",
        -            "Overpass Mono",
        -            "Ovo",
        -            "Oxanium",
        -            "Oxygen",
        -            "Oxygen Mono",
        -            "PT Mono",
        -            "PT Sans",
        -            "PT Sans Caption",
        -            "PT Sans Narrow",
        -            "PT Serif",
        -            "PT Serif Caption",
        -            "Pacifico",
        -            "Padauk",
        -            "Padyakke Expanded One",
        -            "Palanquin",
        -            "Palanquin Dark",
        -            "Palette Mosaic",
        -            "Pangolin",
        -            "Paprika",
        -            "Parastoo",
        -            "Parisienne",
        -            "Parkinsans",
        -            "Passero One",
        -            "Passion One",
        -            "Passions Conflict",
        -            "Pathway Extreme",
        -            "Pathway Gothic One",
        -            "Patrick Hand",
        -            "Patrick Hand SC",
        -            "Pattaya",
        -            "Patua One",
        -            "Pavanam",
        -            "Paytone One",
        -            "Peddana",
        -            "Peralta",
        -            "Permanent Marker",
        -            "Petemoss",
        -            "Petit Formal Script",
        -            "Petrona",
        -            "Phetsarath",
        -            "Philosopher",
        -            "Phudu",
        -            "Piazzolla",
        -            "Piedra",
        -            "Pinyon Script",
        -            "Pirata One",
        -            "Pixelify Sans",
        -            "Plaster",
        -            "Platypi",
        -            "Play",
        -            "Playball",
        -            "Playfair",
        -            "Playfair Display",
        -            "Playfair Display SC",
        -            "Playpen Sans",
        -            "Playpen Sans Arabic",
        -            "Playpen Sans Deva",
        -            "Playpen Sans Hebrew",
        -            "Playpen Sans Thai",
        -            "Playwrite AR",
        -            "Playwrite AR Guides",
        -            "Playwrite AT",
        -            "Playwrite AT Guides",
        -            "Playwrite AU NSW",
        -            "Playwrite AU NSW Guides",
        -            "Playwrite AU QLD",
        -            "Playwrite AU QLD Guides",
        -            "Playwrite AU SA",
        -            "Playwrite AU SA Guides",
        -            "Playwrite AU TAS",
        -            "Playwrite AU TAS Guides",
        -            "Playwrite AU VIC",
        -            "Playwrite AU VIC Guides",
        -            "Playwrite BE VLG",
        -            "Playwrite BE VLG Guides",
        -            "Playwrite BE WAL",
        -            "Playwrite BE WAL Guides",
        -            "Playwrite BR",
        -            "Playwrite BR Guides",
        -            "Playwrite CA",
        -            "Playwrite CA Guides",
        -            "Playwrite CL",
        -            "Playwrite CL Guides",
        -            "Playwrite CO",
        -            "Playwrite CO Guides",
        -            "Playwrite CU",
        -            "Playwrite CU Guides",
        -            "Playwrite CZ",
        -            "Playwrite CZ Guides",
        -            "Playwrite DE Grund",
        -            "Playwrite DE Grund Guides",
        -            "Playwrite DE LA",
        -            "Playwrite DE LA Guides",
        -            "Playwrite DE SAS",
        -            "Playwrite DE SAS Guides",
        -            "Playwrite DE VA",
        -            "Playwrite DE VA Guides",
        -            "Playwrite DK Loopet",
        -            "Playwrite DK Loopet Guides",
        -            "Playwrite DK Uloopet",
        -            "Playwrite DK Uloopet Guides",
        -            "Playwrite ES",
        -            "Playwrite ES Deco",
        -            "Playwrite ES Deco Guides",
        -            "Playwrite ES Guides",
        -            "Playwrite FR Moderne",
        -            "Playwrite FR Moderne Guides",
        -            "Playwrite FR Trad",
        -            "Playwrite FR Trad Guides",
        -            "Playwrite GB J",
        -            "Playwrite GB J Guides",
        -            "Playwrite GB S",
        -            "Playwrite GB S Guides",
        -            "Playwrite HR",
        -            "Playwrite HR Guides",
        -            "Playwrite HR Lijeva",
        -            "Playwrite HR Lijeva Guides",
        -            "Playwrite HU",
        -            "Playwrite HU Guides",
        -            "Playwrite ID",
        -            "Playwrite ID Guides",
        -            "Playwrite IE",
        -            "Playwrite IE Guides",
        -            "Playwrite IN",
        -            "Playwrite IN Guides",
        -            "Playwrite IS",
        -            "Playwrite IS Guides",
        -            "Playwrite IT Moderna",
        -            "Playwrite IT Moderna Guides",
        -            "Playwrite IT Trad",
        -            "Playwrite IT Trad Guides",
        -            "Playwrite MX",
        -            "Playwrite MX Guides",
        -            "Playwrite NG Modern",
        -            "Playwrite NG Modern Guides",
        -            "Playwrite NL",
        -            "Playwrite NL Guides",
        -            "Playwrite NO",
        -            "Playwrite NO Guides",
        -            "Playwrite NZ",
        -            "Playwrite NZ Basic",
        -            "Playwrite NZ Basic Guides",
        -            "Playwrite NZ Guides",
        -            "Playwrite PE",
        -            "Playwrite PE Guides",
        -            "Playwrite PL",
        -            "Playwrite PL Guides",
        -            "Playwrite PT",
        -            "Playwrite PT Guides",
        -            "Playwrite RO",
        -            "Playwrite RO Guides",
        -            "Playwrite SK",
        -            "Playwrite SK Guides",
        -            "Playwrite TZ",
        -            "Playwrite TZ Guides",
        -            "Playwrite US Modern",
        -            "Playwrite US Modern Guides",
        -            "Playwrite US Trad",
        -            "Playwrite US Trad Guides",
        -            "Playwrite VN",
        -            "Playwrite VN Guides",
        -            "Playwrite ZA",
        -            "Playwrite ZA Guides",
        -            "Pliant",
        -            "Plus Jakarta Sans",
        -            "Pochaevsk",
        -            "Podkova",
        -            "Poetsen One",
        -            "Poiret One",
        -            "Poller One",
        -            "Poltawski Nowy",
        -            "Poly",
        -            "Pompiere",
        -            "Ponnala",
        -            "Ponomar",
        -            "Pontano Sans",
        -            "Poor Story",
        -            "Poppins",
        -            "Port Lligat Sans",
        -            "Port Lligat Slab",
        -            "Potta One",
        -            "Pragati Narrow",
        -            "Praise",
        -            "Prata",
        -            "Preahvihear",
        -            "Press Start 2P",
        -            "Pridi",
        -            "Princess Sofia",
        -            "Prociono",
        -            "Prompt",
        -            "Prosto One",
        -            "Protest Guerrilla",
        -            "Protest Revolution",
        -            "Protest Riot",
        -            "Protest Strike",
        -            "Proza Libre",
        -            "Public Sans",
        -            "Puppies Play",
        -            "Puritan",
        -            "Purple Purse",
        -            "Qahiri",
        -            "Quando",
        -            "Quantico",
        -            "Quattrocento",
        -            "Quattrocento Sans",
        -            "Questrial",
        -            "Quicksand",
        -            "Quintessential",
        -            "Qwigley",
        -            "Qwitcher Grypen",
        -            "REM",
        -            "Racing Sans One",
        -            "Radio Canada",
        -            "Radio Canada Big",
        -            "Radley",
        -            "Rajdhani",
        -            "Rakkas",
        -            "Raleway",
        -            "Raleway Dots",
        -            "Ramabhadra",
        -            "Ramaraja",
        -            "Rambla",
        -            "Rammetto One",
        -            "Rampart One",
        -            "Ramsina",
        -            "Ranchers",
        -            "Rancho",
        -            "Ranga",
        -            "Rasa",
        -            "Rationale",
        -            "Ravi Prakash",
        -            "Readex Pro",
        -            "Recursive",
        -            "Red Hat Display",
        -            "Red Hat Mono",
        -            "Red Hat Text",
        -            "Red Rose",
        -            "Redacted",
        -            "Redacted Script",
        -            "Reddit Mono",
        -            "Reddit Sans",
        -            "Reddit Sans Condensed",
        -            "Redressed",
        -            "Reem Kufi",
        -            "Reem Kufi Fun",
        -            "Reem Kufi Ink",
        -            "Reenie Beanie",
        -            "Reggae One",
        -            "Rethink Sans",
        -            "Revalia",
        -            "Rhodium Libre",
        -            "Ribeye",
        -            "Ribeye Marrow",
        -            "Righteous",
        -            "Risque",
        -            "Road Rage",
        -            "Roboto",
        -            "Roboto Condensed",
        -            "Roboto Flex",
        -            "Roboto Mono",
        -            "Roboto Serif",
        -            "Roboto Slab",
        -            "Rochester",
        -            "Rock 3D",
        -            "Rock Salt",
        -            "RocknRoll One",
        -            "Rokkitt",
        -            "Romanesco",
        -            "Ropa Sans",
        -            "Rosario",
        -            "Rosarivo",
        -            "Rouge Script",
        -            "Rowdies",
        -            "Rozha One",
        -            "Rubik",
        -            "Rubik 80s Fade",
        -            "Rubik Beastly",
        -            "Rubik Broken Fax",
        -            "Rubik Bubbles",
        -            "Rubik Burned",
        -            "Rubik Dirt",
        -            "Rubik Distressed",
        -            "Rubik Doodle Shadow",
        -            "Rubik Doodle Triangles",
        -            "Rubik Gemstones",
        -            "Rubik Glitch",
        -            "Rubik Glitch Pop",
        -            "Rubik Iso",
        -            "Rubik Lines",
        -            "Rubik Maps",
        -            "Rubik Marker Hatch",
        -            "Rubik Maze",
        -            "Rubik Microbe",
        -            "Rubik Mono One",
        -            "Rubik Moonrocks",
        -            "Rubik Pixels",
        -            "Rubik Puddles",
        -            "Rubik Scribble",
        -            "Rubik Spray Paint",
        -            "Rubik Storm",
        -            "Rubik Vinyl",
        -            "Rubik Wet Paint",
        -            "Ruda",
        -            "Rufina",
        -            "Ruge Boogie",
        -            "Ruluko",
        -            "Rum Raisin",
        -            "Ruslan Display",
        -            "Russo One",
        -            "Ruthie",
        -            "Ruwudu",
        -            "Rye",
        -            "SN Pro",
        -            "STIX Two Math",
        -            "STIX Two Text",
        -            "SUSE",
        -            "SUSE Mono",
        -            "Sacramento",
        -            "Sahitya",
        -            "Sail",
        -            "Saira",
        -            "Saira Condensed",
        -            "Saira Extra Condensed",
        -            "Saira Semi Condensed",
        -            "Saira Stencil",
        -            "Salsa",
        -            "Sanchez",
        -            "Sancreek",
        -            "Sankofa Display",
        -            "Sansation",
        -            "Sansita",
        -            "Sansita Swashed",
        -            "Sarabun",
        -            "Sarala",
        -            "Sarina",
        -            "Sarpanch",
        -            "Sassy Frass",
        -            "Satisfy",
        -            "Savate",
        -            "Sawarabi Gothic",
        -            "Sawarabi Mincho",
        -            "Scada",
        -            "Scheherazade New",
        -            "Schibsted Grotesk",
        -            "Schoolbell",
        -            "Science Gothic",
        -            "Scope One",
        -            "Seaweed Script",
        -            "Secular One",
        -            "Sedan",
        -            "Sedan SC",
        -            "Sedgwick Ave",
        -            "Sedgwick Ave Display",
        -            "Sekuya",
        -            "Sen",
        -            "Send Flowers",
        -            "Sevillana",
        -            "Seymour One",
        -            "Shadows Into Light",
        -            "Shadows Into Light Two",
        -            "Shafarik",
        -            "Shalimar",
        -            "Shantell Sans",
        -            "Shanti",
        -            "Share",
        -            "Share Tech",
        -            "Share Tech Mono",
        -            "Shippori Antique",
        -            "Shippori Antique B1",
        -            "Shippori Mincho",
        -            "Shippori Mincho B1",
        -            "Shizuru",
        -            "Shojumaru",
        -            "Short Stack",
        -            "Shrikhand",
        -            "Siemreap",
        -            "Sigmar",
        -            "Sigmar One",
        -            "Signika",
        -            "Signika Negative",
        -            "Silkscreen",
        -            "Simonetta",
        -            "Single Day",
        -            "Sintony",
        -            "Sirin Stencil",
        -            "Sirivennela",
        -            "Six Caps",
        -            "Sixtyfour",
        -            "Sixtyfour Convergence",
        -            "Skranji",
        -            "Slabo 13px",
        -            "Slabo 27px",
        -            "Slackey",
        -            "Slackside One",
        -            "Smokum",
        -            "Smooch",
        -            "Smooch Sans",
        -            "Smythe",
        -            "Sniglet",
        -            "Snippet",
        -            "Snowburst One",
        -            "Sofadi One",
        -            "Sofia",
        -            "Sofia Sans",
        -            "Sofia Sans Condensed",
        -            "Sofia Sans Extra Condensed",
        -            "Sofia Sans Semi Condensed",
        -            "Solitreo",
        -            "Solway",
        -            "Sometype Mono",
        -            "Song Myung",
        -            "Sono",
        -            "Sonsie One",
        -            "Sora",
        -            "Sorts Mill Goudy",
        -            "Sour Gummy",
        -            "Source Code Pro",
        -            "Source Sans 3",
        -            "Source Serif 4",
        -            "Space Grotesk",
        -            "Space Mono",
        -            "Special Elite",
        -            "Special Gothic",
        -            "Special Gothic Condensed One",
        -            "Special Gothic Expanded One",
        -            "Spectral",
        -            "Spectral SC",
        -            "Spicy Rice",
        -            "Spinnaker",
        -            "Spirax",
        -            "Splash",
        -            "Spline Sans",
        -            "Spline Sans Mono",
        -            "Squada One",
        -            "Square Peg",
        -            "Sree Krushnadevaraya",
        -            "Sriracha",
        -            "Srisakdi",
        -            "Staatliches",
        -            "Stack Sans Headline",
        -            "Stack Sans Notch",
        -            "Stack Sans Text",
        -            "Stalemate",
        -            "Stalinist One",
        -            "Stardos Stencil",
        -            "Stick",
        -            "Stick No Bills",
        -            "Stint Ultra Condensed",
        -            "Stint Ultra Expanded",
        -            "Stoke",
        -            "Story Script",
        -            "Strait",
        -            "Strichpunkt Sans",
        -            "Style Script",
        -            "Stylish",
        -            "Sue Ellen Francisco",
        -            "Suez One",
        -            "Sulphur Point",
        -            "Sumana",
        -            "Sunflower",
        -            "Sunshiney",
        -            "Supermercado One",
        -            "Sura",
        -            "Suranna",
        -            "Suravaram",
        -            "Suwannaphum",
        -            "Swanky and Moo Moo",
        -            "Syncopate",
        -            "Syne",
        -            "Syne Mono",
        -            "Syne Tactile",
        -            "TASA Explorer",
        -            "TASA Orbiter",
        -            "Tac One",
        -            "Tagesschrift",
        -            "Tai Heritage Pro",
        -            "Tajawal",
        -            "Tangerine",
        -            "Tapestry",
        -            "Taprom",
        -            "Tauri",
        -            "Taviraj",
        -            "Teachers",
        -            "Teko",
        -            "Tektur",
        -            "Telex",
        -            "Tenali Ramakrishna",
        -            "Tenor Sans",
        -            "Text Me One",
        -            "Texturina",
        -            "Thasadith",
        -            "The Girl Next Door",
        -            "The Nautigal",
        -            "Tienne",
        -            "TikTok Sans",
        -            "Tillana",
        -            "Tilt Neon",
        -            "Tilt Prism",
        -            "Tilt Warp",
        -            "Timmana",
        -            "Tinos",
        -            "Tiny5",
        -            "Tiro Bangla",
        -            "Tiro Devanagari Hindi",
        -            "Tiro Devanagari Marathi",
        -            "Tiro Devanagari Sanskrit",
        -            "Tiro Gurmukhi",
        -            "Tiro Kannada",
        -            "Tiro Tamil",
        -            "Tiro Telugu",
        -            "Tirra",
        -            "Titan One",
        -            "Titillium Web",
        -            "Tomorrow",
        -            "Tourney",
        -            "Trade Winds",
        -            "Train One",
        -            "Triodion",
        -            "Trirong",
        -            "Trispace",
        -            "Trocchi",
        -            "Trochut",
        -            "Truculenta",
        -            "Trykker",
        -            "Tsukimi Rounded",
        -            "Tuffy",
        -            "Tulpen One",
        -            "Turret Road",
        -            "Twinkle Star",
        -            "Ubuntu",
        -            "Ubuntu Condensed",
        -            "Ubuntu Mono",
        -            "Ubuntu Sans",
        -            "Ubuntu Sans Mono",
        -            "Uchen",
        -            "Ultra",
        -            "Unbounded",
        -            "Uncial Antiqua",
        -            "Underdog",
        -            "Unica One",
        -            "UnifrakturCook",
        -            "UnifrakturMaguntia",
        -            "Unkempt",
        -            "Unlock",
        -            "Unna",
        -            "UoqMunThenKhung",
        -            "Updock",
        -            "Urbanist",
        -            "VT323",
        -            "Vampiro One",
        -            "Varela",
        -            "Varela Round",
        -            "Varta",
        -            "Vast Shadow",
        -            "Vazirmatn",
        -            "Vend Sans",
        -            "Vesper Libre",
        -            "Viaoda Libre",
        -            "Vibes",
        -            "Vibur",
        -            "Victor Mono",
        -            "Vidaloka",
        -            "Viga",
        -            "Vina Sans",
        -            "Voces",
        -            "Volkhov",
        -            "Vollkorn",
        -            "Vollkorn SC",
        -            "Voltaire",
        -            "Vujahday Script",
        -            "WDXL Lubrifont JP N",
        -            "WDXL Lubrifont SC",
        -            "WDXL Lubrifont TC",
        -            "Waiting for the Sunrise",
        -            "Wallpoet",
        -            "Walter Turncoat",
        -            "Warnes",
        -            "Water Brush",
        -            "Waterfall",
        -            "Wavefont",
        -            "Wellfleet",
        -            "Wendy One",
        -            "Whisper",
        -            "WindSong",
        -            "Winky Rough",
        -            "Winky Sans",
        -            "Wire One",
        -            "Wittgenstein",
        -            "Wix Madefor Display",
        -            "Wix Madefor Text",
        -            "Work Sans",
        -            "Workbench",
        -            "Xanh Mono",
        -            "Yaldevi",
        -            "Yanone Kaffeesatz",
        -            "Yantramanav",
        -            "Yarndings 12",
        -            "Yarndings 12 Charted",
        -            "Yarndings 20",
        -            "Yarndings 20 Charted",
        -            "Yatra One",
        -            "Yellowtail",
        -            "Yeon Sung",
        -            "Yeseva One",
        -            "Yesteryear",
        -            "Yomogi",
        -            "Young Serif",
        -            "Yrsa",
        -            "Ysabeau",
        -            "Ysabeau Infant",
        -            "Ysabeau Office",
        -            "Ysabeau SC",
        -            "Yuji Boku",
        -            "Yuji Hentaigana Akari",
        -            "Yuji Hentaigana Akebono",
        -            "Yuji Mai",
        -            "Yuji Syuku",
        -            "Yusei Magic",
        -            "Yuyu",
        -            "Yuyu Short",
        -            "ZCOOL KuaiLe",
        -            "ZCOOL QingKe HuangYou",
        -            "ZCOOL XiaoWei",
        -            "Zain",
        -            "Zalando Sans",
        -            "Zalando Sans Expanded",
        -            "Zalando Sans SemiExpanded",
        -            "Zen Antique",
        -            "Zen Antique Soft",
        -            "Zen Dots",
        -            "Zen Kaku Gothic Antique",
        -            "Zen Kaku Gothic New",
        -            "Zen Kurenaido",
        -            "Zen Loop",
        -            "Zen Maru Gothic",
        -            "Zen Old Mincho",
        -            "Zen Tokyo Zoo",
        -            "Zeyada",
        -            "Zhi Mang Xing",
        -            "Zilla Slab",
        -            "Zilla Slab Highlight"
        -          ],
        -          "type": "string"
        -        },
        -        "pieCornerRadius": {
        -          "type": "number"
        -        },
        -        "sequentialRange": {
        -          "items": [
        -            {
        -              "type": "string"
        -            },
        -            {
        -              "type": "string"
        -            }
        -          ],
        -          "maxItems": 2,
        -          "minItems": 2,
        -          "type": "array"
        -        },
        -        "subtitleColor": {
        -          "type": "string"
        -        },
        -        "subtitleFontSize": {
        -          "type": "number"
        -        },
        -        "tickDensity": {
        -          "type": "number"
        -        },
        -        "tickLabelColor": {
        -          "type": "string"
        -        },
        -        "tickLabelFontWeight": {
        -          "type": "string"
        -        },
        -        "tickPadding": {
        -          "type": "number"
        -        },
        -        "tickSize": {
        -          "type": "number"
        -        },
        -        "titleColor": {
        -          "type": "string"
        -        },
        -        "titleFontFamily": {
        -          "enum": [
        -            "ABeeZee",
        -            "ADLaM Display",
        -            "AR One Sans",
        -            "Abel",
        -            "Abhaya Libre",
        -            "Aboreto",
        -            "Abril Fatface",
        -            "Abyssinica SIL",
        -            "Aclonica",
        -            "Acme",
        -            "Actor",
        -            "Adamina",
        -            "Advent Pro",
        -            "Afacad",
        -            "Afacad Flux",
        -            "Agbalumo",
        -            "Agdasima",
        -            "Agu Display",
        -            "Aguafina Script",
        -            "Akatab",
        -            "Akaya Kanadaka",
        -            "Akaya Telivigala",
        -            "Akronim",
        -            "Akshar",
        -            "Akt",
        -            "Aladin",
        -            "Alan Sans",
        -            "Alata",
        -            "Alatsi",
        -            "Albert Sans",
        -            "Aldrich",
        -            "Alef",
        -            "Alegreya",
        -            "Alegreya SC",
        -            "Alegreya Sans",
        -            "Alegreya Sans SC",
        -            "Aleo",
        -            "Alex Brush",
        -            "Alexandria",
        -            "Alfa Slab One",
        -            "Alice",
        -            "Alien Block",
        -            "Alike",
        -            "Alike Angular",
        -            "Alkalami",
        -            "Alkatra",
        -            "Allan",
        -            "Allerta",
        -            "Allerta Stencil",
        -            "Allison",
        -            "Allkin",
        -            "Allura",
        -            "Almarai",
        -            "Almendra",
        -            "Almendra Display",
        -            "Almendra SC",
        -            "Alumni Sans",
        -            "Alumni Sans Collegiate One",
        -            "Alumni Sans Inline One",
        -            "Alumni Sans Pinstripe",
        -            "Alumni Sans SC",
        -            "Alyamama",
        -            "Amarante",
        -            "Amaranth",
        -            "Amarna",
        -            "Amatic SC",
        -            "Amethysta",
        -            "Amiko",
        -            "Amiri",
        -            "Amiri Quran",
        -            "Amita",
        -            "Anaheim",
        -            "Ancizar Sans",
        -            "Ancizar Serif",
        -            "Andada Pro",
        -            "Andika",
        -            "Anek Bangla",
        -            "Anek Devanagari",
        -            "Anek Gujarati",
        -            "Anek Gurmukhi",
        -            "Anek Kannada",
        -            "Anek Latin",
        -            "Anek Malayalam",
        -            "Anek Odia",
        -            "Anek Tamil",
        -            "Anek Telugu",
        -            "Angkor",
        -            "Annapurna SIL",
        -            "Annie Use Your Telescope",
        -            "Anonymous Pro",
        -            "Anta",
        -            "Antic",
        -            "Antic Didone",
        -            "Antic Slab",
        -            "Anton",
        -            "Anton SC",
        -            "Antonio",
        -            "Anuphan",
        -            "Anybody",
        -            "Aoboshi One",
        -            "Arapey",
        -            "Arbutus",
        -            "Arbutus Slab",
        -            "Architects Daughter",
        -            "Archivo",
        -            "Archivo Black",
        -            "Archivo Narrow",
        -            "Are You Serious",
        -            "Aref Ruqaa",
        -            "Aref Ruqaa Ink",
        -            "Arima",
        -            "Arimo",
        -            "Arizonia",
        -            "Armata",
        -            "Arsenal",
        -            "Arsenal SC",
        -            "Artifika",
        -            "Arvo",
        -            "Arya",
        -            "Asap",
        -            "Asap Condensed",
        -            "Asar",
        -            "Asimovian",
        -            "Asset",
        -            "Assistant",
        -            "Asta Sans",
        -            "Astloch",
        -            "Asul",
        -            "Athiti",
        -            "Atkinson Hyperlegible",
        -            "Atkinson Hyperlegible Mono",
        -            "Atkinson Hyperlegible Next",
        -            "Atma",
        -            "Atomic Age",
        -            "Aubrey",
        -            "Audiowide",
        -            "Autour One",
        -            "Average",
        -            "Average Sans",
        -            "Averia Gruesa Libre",
        -            "Averia Libre",
        -            "Averia Sans Libre",
        -            "Averia Serif Libre",
        -            "Azeret Mono",
        -            "B612",
        -            "B612 Mono",
        -            "BBH Bartle",
        -            "BBH Bogle",
        -            "BBH Hegarty",
        -            "BIZ UDGothic",
        -            "BIZ UDMincho",
        -            "BIZ UDPGothic",
        -            "BIZ UDPMincho",
        -            "BJCree",
        -            "Babylonica",
        -            "Bacasime Antique",
        -            "Bad Script",
        -            "Badeen Display",
        -            "Bagel Fat One",
        -            "Bahiana",
        -            "Bahianita",
        -            "Bai Jamjuree",
        -            "Bakbak One",
        -            "Ballet",
        -            "Baloo 2",
        -            "Baloo Bhai 2",
        -            "Baloo Bhaijaan 2",
        -            "Baloo Bhaina 2",
        -            "Baloo Chettan 2",
        -            "Baloo Da 2",
        -            "Baloo Paaji 2",
        -            "Baloo Tamma 2",
        -            "Baloo Tammudu 2",
        -            "Baloo Thambi 2",
        -            "Balsamiq Sans",
        -            "Balthazar",
        -            "Bangers",
        -            "Barlow",
        -            "Barlow Condensed",
        -            "Barlow Semi Condensed",
        -            "Barriecito",
        -            "Barrio",
        -            "Basic",
        -            "Baskervville",
        -            "Baskervville SC",
        -            "Battambang",
        -            "Baumans",
        -            "Bayon",
        -            "Be Vietnam Pro",
        -            "Beau Rivage",
        -            "Bebas Neue",
        -            "Beiruti",
        -            "Belanosima",
        -            "Belgrano",
        -            "Bellefair",
        -            "Belleza",
        -            "Bellota",
        -            "Bellota Text",
        -            "BenchNine",
        -            "Benne",
        -            "Bentham",
        -            "Berkshire Swash",
        -            "Besley",
        -            "Betania Patmos",
        -            "Betania Patmos GDL",
        -            "Betania Patmos In",
        -            "Betania Patmos In GDL",
        -            "Beth Ellen",
        -            "Bevan",
        -            "BhuTuka Expanded One",
        -            "Big Shoulders",
        -            "Big Shoulders Inline",
        -            "Big Shoulders Stencil",
        -            "Bigelow Rules",
        -            "Bigshot One",
        -            "Bilbo",
        -            "Bilbo Swash Caps",
        -            "BioRhyme",
        -            "BioRhyme Expanded",
        -            "Birthstone",
        -            "Birthstone Bounce",
        -            "Biryani",
        -            "Bitcount",
        -            "Bitcount Grid Double",
        -            "Bitcount Grid Double Ink",
        -            "Bitcount Grid Single",
        -            "Bitcount Grid Single Ink",
        -            "Bitcount Ink",
        -            "Bitcount Prop Double",
        -            "Bitcount Prop Double Ink",
        -            "Bitcount Prop Single",
        -            "Bitcount Prop Single Ink",
        -            "Bitcount Single",
        -            "Bitcount Single Ink",
        -            "Bitter",
        -            "Black And White Picture",
        -            "Black Han Sans",
        -            "Black Ops One",
        -            "Blaka",
        -            "Blaka Hollow",
        -            "Blaka Ink",
        -            "Blinker",
        -            "Bodoni Moda",
        -            "Bodoni Moda SC",
        -            "Bokor",
        -            "Boldonse",
        -            "Bona Nova",
        -            "Bona Nova SC",
        -            "Bonbon",
        -            "Bonheur Royale",
        -            "Boogaloo",
        -            "Borel",
        -            "Bowlby One",
        -            "Bowlby One SC",
        -            "Bpmf Huninn",
        -            "Bpmf Iansui",
        -            "Bpmf Zihi Kai Std",
        -            "Braah One",
        -            "Brawler",
        -            "Bree Serif",
        -            "Bricolage Grotesque",
        -            "Bruno Ace",
        -            "Bruno Ace SC",
        -            "Brygada 1918",
        -            "Bubblegum Sans",
        -            "Bubbler One",
        -            "Buda",
        -            "Buenard",
        -            "Bungee",
        -            "Bungee Hairline",
        -            "Bungee Inline",
        -            "Bungee Outline",
        -            "Bungee Shade",
        -            "Bungee Spice",
        -            "Bungee Tint",
        -            "Butcherman",
        -            "Butterfly Kids",
        -            "Bytesized",
        -            "Cabin",
        -            "Cabin Condensed",
        -            "Cabin Sketch",
        -            "Cactus Classical Serif",
        -            "Caesar Dressing",
        -            "Cagliostro",
        -            "Cairo",
        -            "Cairo Play",
        -            "Cal Sans",
        -            "Caladea",
        -            "Calistoga",
        -            "Calligraffitti",
        -            "Cambay",
        -            "Cambo",
        -            "Candal",
        -            "Cantarell",
        -            "Cantata One",
        -            "Cantora One",
        -            "Caprasimo",
        -            "Capriola",
        -            "Caramel",
        -            "Carattere",
        -            "Cardo",
        -            "Carlito",
        -            "Carme",
        -            "Carrois Gothic",
        -            "Carrois Gothic SC",
        -            "Carter One",
        -            "Cascadia Code",
        -            "Cascadia Mono",
        -            "Castoro",
        -            "Castoro Titling",
        -            "Catamaran",
        -            "Caudex",
        -            "Cause",
        -            "Caveat",
        -            "Caveat Brush",
        -            "Cedarville Cursive",
        -            "Ceviche One",
        -            "Chakra Petch",
        -            "Changa",
        -            "Changa One",
        -            "Chango",
        -            "Charis SIL",
        -            "Charm",
        -            "Charmonman",
        -            "Chathura",
        -            "Chau Philomene One",
        -            "Chela One",
        -            "Chelsea Market",
        -            "Chenla",
        -            "Cherish",
        -            "Cherry Bomb One",
        -            "Cherry Cream Soda",
        -            "Cherry Swash",
        -            "Chewy",
        -            "Chicle",
        -            "Chilanka",
        -            "Chiron GoRound TC",
        -            "Chiron Hei HK",
        -            "Chiron Sung HK",
        -            "Chivo",
        -            "Chivo Mono",
        -            "Chocolate Classical Sans",
        -            "Chokokutai",
        -            "Chonburi",
        -            "Cinzel",
        -            "Cinzel Decorative",
        -            "Clicker Script",
        -            "Climate Crisis",
        -            "Coda",
        -            "Codystar",
        -            "Coiny",
        -            "Combo",
        -            "Comfortaa",
        -            "Comforter",
        -            "Comforter Brush",
        -            "Comic Neue",
        -            "Comic Relief",
        -            "Coming Soon",
        -            "Comme",
        -            "Commissioner",
        -            "Concert One",
        -            "Condiment",
        -            "Content",
        -            "Contrail One",
        -            "Convergence",
        -            "Cookie",
        -            "Copse",
        -            "Coral Pixels",
        -            "Corben",
        -            "Corinthia",
        -            "Cormorant",
        -            "Cormorant Garamond",
        -            "Cormorant Infant",
        -            "Cormorant SC",
        -            "Cormorant Unicase",
        -            "Cormorant Upright",
        -            "Cossette Texte",
        -            "Cossette Titre",
        -            "Courgette",
        -            "Courier Prime",
        -            "Cousine",
        -            "Coustard",
        -            "Covered By Your Grace",
        -            "Crafty Girls",
        -            "Creepster",
        -            "Crete Round",
        -            "Crimson Pro",
        -            "Crimson Text",
        -            "Croissant One",
        -            "Crushed",
        -            "Cuprum",
        -            "Cute Font",
        -            "Cutive",
        -            "Cutive Mono",
        -            "DM Mono",
        -            "DM Sans",
        -            "DM Serif Display",
        -            "DM Serif Text",
        -            "Dai Banna SIL",
        -            "Damion",
        -            "Dancing Script",
        -            "Danfo",
        -            "Dangrek",
        -            "Darker Grotesque",
        -            "Darumadrop One",
        -            "Datatype",
        -            "David Libre",
        -            "Dawning of a New Day",
        -            "Days One",
        -            "Dekko",
        -            "Dela Gothic One",
        -            "Delicious Handrawn",
        -            "Delius",
        -            "Delius Swash Caps",
        -            "Delius Unicase",
        -            "Della Respira",
        -            "Denk One",
        -            "Devonshire",
        -            "Dhurjati",
        -            "Didact Gothic",
        -            "Diphylleia",
        -            "Diplomata",
        -            "Diplomata SC",
        -            "Do Hyeon",
        -            "Dokdo",
        -            "Domine",
        -            "Donegal One",
        -            "Dongle",
        -            "Doppio One",
        -            "Dorsa",
        -            "Dosis",
        -            "DotGothic16",
        -            "Doto",
        -            "Dr Sugiyama",
        -            "Duru Sans",
        -            "DynaPuff",
        -            "Dynalight",
        -            "EB Garamond",
        -            "Eagle Lake",
        -            "East Sea Dokdo",
        -            "Eater",
        -            "Economica",
        -            "Eczar",
        -            "Edu AU VIC WA NT Arrows",
        -            "Edu AU VIC WA NT Dots",
        -            "Edu AU VIC WA NT Guides",
        -            "Edu AU VIC WA NT Hand",
        -            "Edu AU VIC WA NT Pre",
        -            "Edu NSW ACT Cursive",
        -            "Edu NSW ACT Foundation",
        -            "Edu NSW ACT Hand Pre",
        -            "Edu QLD Beginner",
        -            "Edu QLD Hand",
        -            "Edu SA Beginner",
        -            "Edu SA Hand",
        -            "Edu TAS Beginner",
        -            "Edu VIC WA NT Beginner",
        -            "Edu VIC WA NT Hand",
        -            "Edu VIC WA NT Hand Pre",
        -            "El Messiri",
        -            "Electrolize",
        -            "Elms Sans",
        -            "Elsie",
        -            "Elsie Swash Caps",
        -            "Emblema One",
        -            "Emilys Candy",
        -            "Encode Sans",
        -            "Encode Sans Condensed",
        -            "Encode Sans Expanded",
        -            "Encode Sans SC",
        -            "Encode Sans Semi Condensed",
        -            "Encode Sans Semi Expanded",
        -            "Engagement",
        -            "Englebert",
        -            "Enriqueta",
        -            "Ephesis",
        -            "Epilogue",
        -            "Epunda Sans",
        -            "Epunda Slab",
        -            "Erica One",
        -            "Esteban",
        -            "Estedad",
        -            "Estonia",
        -            "Euphoria Script",
        -            "Ewert",
        -            "Exile",
        -            "Exo",
        -            "Exo 2",
        -            "Expletus Sans",
        -            "Explora",
        -            "Faculty Glyphic",
        -            "Fahkwang",
        -            "Familjen Grotesk",
        -            "Fanwood Text",
        -            "Farro",
        -            "Farsan",
        -            "Fascinate",
        -            "Fascinate Inline",
        -            "Faster One",
        -            "Fasthand",
        -            "Fauna One",
        -            "Faustina",
        -            "Federant",
        -            "Federo",
        -            "Felipa",
        -            "Fenix",
        -            "Festive",
        -            "Figtree",
        -            "Finger Paint",
        -            "Finlandica Headline",
        -            "Finlandica Text",
        -            "Fira Code",
        -            "Fira Mono",
        -            "Fira Sans",
        -            "Fira Sans Condensed",
        -            "Fira Sans Extra Condensed",
        -            "Fjalla One",
        -            "Fjord One",
        -            "Flamenco",
        -            "Flavors",
        -            "Fleur De Leah",
        -            "Flow Block",
        -            "Flow Circular",
        -            "Flow Rounded",
        -            "Foldit",
        -            "Fondamento",
        -            "Fontdiner Swanky",
        -            "Forum",
        -            "Fragment Mono",
        -            "Francois One",
        -            "Frank Ruhl Libre",
        -            "Fraunces",
        -            "Freckle Face",
        -            "Fredericka the Great",
        -            "Fredoka",
        -            "Freehand",
        -            "Freeman",
        -            "Fresca",
        -            "Frijole",
        -            "Fruktur",
        -            "Fugaz One",
        -            "Fuggles",
        -            "Funnel Display",
        -            "Funnel Sans",
        -            "Fustat",
        -            "Fuzzy Bubbles",
        -            "GFS Didot",
        -            "GFS Neohellenic",
        -            "Ga Maamli",
        -            "Gabarito",
        -            "Gabriela",
        -            "Gaegu",
        -            "Gafata",
        -            "Gajraj One",
        -            "Galada",
        -            "Galdeano",
        -            "Galindo",
        -            "Gamja Flower",
        -            "Gantari",
        -            "Gasoek One",
        -            "Gayathri",
        -            "Geist",
        -            "Geist Mono",
        -            "Geist Pixel",
        -            "Gelasio",
        -            "Gemunu Libre",
        -            "Genos",
        -            "Gentium Book Plus",
        -            "Gentium Plus",
        -            "Geo",
        -            "Geologica",
        -            "Geom",
        -            "Geomini",
        -            "Georama",
        -            "Geostar",
        -            "Geostar Fill",
        -            "Germania One",
        -            "Gideon Roman",
        -            "Gidole",
        -            "Gidugu",
        -            "Gilda Display",
        -            "Girassol",
        -            "Give You Glory",
        -            "Glass Antiqua",
        -            "Glegoo",
        -            "Gloock",
        -            "Gloria Hallelujah",
        -            "Glory",
        -            "Gluten",
        -            "Goblin One",
        -            "Gochi Hand",
        -            "Goldman",
        -            "Golos Text",
        -            "Google Sans",
        -            "Google Sans Code",
        -            "Google Sans Flex",
        -            "Gorditas",
        -            "Gothic A1",
        -            "Gotu",
        -            "Goudy Bookletter 1911",
        -            "Gowun Batang",
        -            "Gowun Dodum",
        -            "Graduate",
        -            "Grand Hotel",
        -            "Grandiflora One",
        -            "Grandstander",
        -            "Grape Nuts",
        -            "Gravitas One",
        -            "Great Vibes",
        -            "Grechen Fuemen",
        -            "Grenze",
        -            "Grenze Gotisch",
        -            "Grey Qo",
        -            "Griffy",
        -            "Gruppo",
        -            "Gudea",
        -            "Gugi",
        -            "Gulzar",
        -            "Gupter",
        -            "Gurajada",
        -            "Gveret Levin",
        -            "Gwendolyn",
        -            "Habibi",
        -            "Hachi Maru Pop",
        -            "Hahmlet",
        -            "Halant",
        -            "Hammersmith One",
        -            "Hanalei",
        -            "Hanalei Fill",
        -            "Handjet",
        -            "Handlee",
        -            "Hanken Grotesk",
        -            "Hanuman",
        -            "Happy Monkey",
        -            "Harmattan",
        -            "Headland One",
        -            "Hedvig Letters Sans",
        -            "Hedvig Letters Serif",
        -            "Heebo",
        -            "Henny Penny",
        -            "Hepta Slab",
        -            "Herr Von Muellerhoff",
        -            "Hi Melody",
        -            "Hibur Mono",
        -            "Hina Mincho",
        -            "Hind",
        -            "Hind Guntur",
        -            "Hind Madurai",
        -            "Hind Mysuru",
        -            "Hind Siliguri",
        -            "Hind Vadodara",
        -            "Holtwood One SC",
        -            "Homemade Apple",
        -            "Homenaje",
        -            "Honk",
        -            "Host Grotesk",
        -            "Hubballi",
        -            "Hubot Sans",
        -            "Huninn",
        -            "Hurricane",
        -            "IBM Plex Mono",
        -            "IBM Plex Sans",
        -            "IBM Plex Sans Arabic",
        -            "IBM Plex Sans Condensed",
        -            "IBM Plex Sans Devanagari",
        -            "IBM Plex Sans Hebrew",
        -            "IBM Plex Sans JP",
        -            "IBM Plex Sans KR",
        -            "IBM Plex Sans Thai",
        -            "IBM Plex Sans Thai Looped",
        -            "IBM Plex Serif",
        -            "IM Fell DW Pica",
        -            "IM Fell DW Pica SC",
        -            "IM Fell Double Pica",
        -            "IM Fell Double Pica SC",
        -            "IM Fell English",
        -            "IM Fell English SC",
        -            "IM Fell French Canon",
        -            "IM Fell French Canon SC",
        -            "IM Fell Great Primer",
        -            "IM Fell Great Primer SC",
        -            "Iansui",
        -            "Ibarra Real Nova",
        -            "Iceberg",
        -            "Iceland",
        -            "Idiqlat",
        -            "Imbue",
        -            "Imperial Script",
        -            "Imprima",
        -            "Inclusive Sans",
        -            "Inconsolata",
        -            "Inder",
        -            "Indie Flower",
        -            "Ingrid Darling",
        -            "Inika",
        -            "Inknut Antiqua",
        -            "Inria Sans",
        -            "Inria Serif",
        -            "Inspiration",
        -            "Instrument Sans",
        -            "Instrument Serif",
        -            "Intel One Mono",
        -            "Inter",
        -            "Inter Tight",
        -            "Iosevka Charon",
        -            "Iosevka Charon Mono",
        -            "Irish Grover",
        -            "Island Moments",
        -            "Istok Web",
        -            "Italiana",
        -            "Italianno",
        -            "Itim",
        -            "Jacquard 12",
        -            "Jacquard 12 Charted",
        -            "Jacquard 24",
        -            "Jacquard 24 Charted",
        -            "Jacquarda Bastarda 9",
        -            "Jacquarda Bastarda 9 Charted",
        -            "Jacques Francois",
        -            "Jacques Francois Shadow",
        -            "Jaini",
        -            "Jaini Purva",
        -            "Jaldi",
        -            "Jaro",
        -            "Jersey 10",
        -            "Jersey 10 Charted",
        -            "Jersey 15",
        -            "Jersey 15 Charted",
        -            "Jersey 20",
        -            "Jersey 20 Charted",
        -            "Jersey 25",
        -            "Jersey 25 Charted",
        -            "JetBrains Mono",
        -            "Jim Nightshade",
        -            "Joan",
        -            "Jockey One",
        -            "Jolly Lodger",
        -            "Jomhuria",
        -            "Jomolhari",
        -            "Josefin Sans",
        -            "Josefin Slab",
        -            "Jost",
        -            "Joti One",
        -            "Jua",
        -            "Judson",
        -            "Julee",
        -            "Julius Sans One",
        -            "Junge",
        -            "Jura",
        -            "Just Another Hand",
        -            "Just Me Again Down Here",
        -            "K2D",
        -            "Kablammo",
        -            "Kadwa",
        -            "Kaisei Decol",
        -            "Kaisei HarunoUmi",
        -            "Kaisei Opti",
        -            "Kaisei Tokumin",
        -            "Kalam",
        -            "Kalnia",
        -            "Kalnia Glaze",
        -            "Kameron",
        -            "Kanchenjunga",
        -            "Kanit",
        -            "Kantumruy Pro",
        -            "Kapakana",
        -            "Karantina",
        -            "Karla",
        -            "Karla Tamil Inclined",
        -            "Karla Tamil Upright",
        -            "Karma",
        -            "Katibeh",
        -            "Kaushan Script",
        -            "Kavivanar",
        -            "Kavoon",
        -            "Kay Pho Du",
        -            "Kdam Thmor Pro",
        -            "Keania One",
        -            "Kedebideri",
        -            "Kelly Slab",
        -            "Kenia",
        -            "Khand",
        -            "Khmer",
        -            "Khula",
        -            "Kings",
        -            "Kirang Haerang",
        -            "Kite One",
        -            "Kiwi Maru",
        -            "Klee One",
        -            "Knewave",
        -            "KoHo",
        -            "Kodchasan",
        -            "Kode Mono",
        -            "Koh Santepheap",
        -            "Kolker Brush",
        -            "Konkhmer Sleokchher",
        -            "Kosugi",
        -            "Kosugi Maru",
        -            "Kotta One",
        -            "Koulen",
        -            "Kranky",
        -            "Kreon",
        -            "Kristi",
        -            "Krona One",
        -            "Krub",
        -            "Kufam",
        -            "Kulim Park",
        -            "Kumar One",
        -            "Kumar One Outline",
        -            "Kumbh Sans",
        -            "Kurale",
        -            "LINE Seed JP",
        -            "LXGW Marker Gothic",
        -            "LXGW WenKai Mono TC",
        -            "LXGW WenKai TC",
        -            "La Belle Aurore",
        -            "Labrada",
        -            "Lacquer",
        -            "Laila",
        -            "Lakki Reddy",
        -            "Lalezar",
        -            "Lancelot",
        -            "Langar",
        -            "Lateef",
        -            "Lato",
        -            "Lavishly Yours",
        -            "League Gothic",
        -            "League Script",
        -            "League Spartan",
        -            "Leckerli One",
        -            "Ledger",
        -            "Lekton",
        -            "Lemon",
        -            "Lemonada",
        -            "Lexend",
        -            "Lexend Deca",
        -            "Lexend Exa",
        -            "Lexend Giga",
        -            "Lexend Mega",
        -            "Lexend Peta",
        -            "Lexend Tera",
        -            "Lexend Zetta",
        -            "Libertinus Keyboard",
        -            "Libertinus Math",
        -            "Libertinus Mono",
        -            "Libertinus Sans",
        -            "Libertinus Serif",
        -            "Libertinus Serif Display",
        -            "Libre Barcode 128",
        -            "Libre Barcode 128 Text",
        -            "Libre Barcode 39",
        -            "Libre Barcode 39 Extended",
        -            "Libre Barcode 39 Extended Text",
        -            "Libre Barcode 39 Text",
        -            "Libre Barcode EAN13 Text",
        -            "Libre Baskerville",
        -            "Libre Bodoni",
        -            "Libre Caslon Display",
        -            "Libre Caslon Text",
        -            "Libre Franklin",
        -            "Licorice",
        -            "Life Savers",
        -            "Lilex",
        -            "Lilita One",
        -            "Lily Script One",
        -            "Limelight",
        -            "Linden Hill",
        -            "Linefont",
        -            "Lisu Bosa",
        -            "Liter",
        -            "Literata",
        -            "Liu Jian Mao Cao",
        -            "Livvic",
        -            "Lobster",
        -            "Lobster Two",
        -            "Londrina Outline",
        -            "Londrina Shadow",
        -            "Londrina Sketch",
        -            "Londrina Solid",
        -            "Long Cang",
        -            "Lora",
        -            "Love Light",
        -            "Love Ya Like A Sister",
        -            "Loved by the King",
        -            "Lovers Quarrel",
        -            "Luckiest Guy",
        -            "Lugrasimo",
        -            "Lumanosimo",
        -            "Lunasima",
        -            "Lusitana",
        -            "Lustria",
        -            "Luxurious Roman",
        -            "Luxurious Script",
        -            "M PLUS 1",
        -            "M PLUS 1 Code",
        -            "M PLUS 1p",
        -            "M PLUS 2",
        -            "M PLUS Code Latin",
        -            "M PLUS Rounded 1c",
        -            "M PLUS U",
        -            "Ma Shan Zheng",
        -            "Macondo",
        -            "Macondo Swash Caps",
        -            "Mada",
        -            "Madimi One",
        -            "Magra",
        -            "Maiden Orange",
        -            "Maitree",
        -            "Major Mono Display",
        -            "Mako",
        -            "Mali",
        -            "Mallanna",
        -            "Maname",
        -            "Mandali",
        -            "Manjari",
        -            "Manrope",
        -            "Mansalva",
        -            "Manuale",
        -            "Manufacturing Consent",
        -            "Marcellus",
        -            "Marcellus SC",
        -            "Marck Script",
        -            "Margarine",
        -            "Marhey",
        -            "Markazi Text",
        -            "Marko One",
        -            "Marmelad",
        -            "Martel",
        -            "Martel Sans",
        -            "Martian Mono",
        -            "Marvel",
        -            "Matangi",
        -            "Mate",
        -            "Mate SC",
        -            "Matemasie",
        -            "Material Icons",
        -            "Material Icons Outlined",
        -            "Material Icons Round",
        -            "Material Icons Sharp",
        -            "Material Icons Two Tone",
        -            "Material Symbols",
        -            "Material Symbols Outlined",
        -            "Material Symbols Rounded",
        -            "Material Symbols Sharp",
        -            "Maven Pro",
        -            "McLaren",
        -            "Mea Culpa",
        -            "Meddon",
        -            "MedievalSharp",
        -            "Medula One",
        -            "Meera Inimai",
        -            "Megrim",
        -            "Meie Script",
        -            "Menbere",
        -            "Meow Script",
        -            "Merienda",
        -            "Merriweather",
        -            "Merriweather Sans",
        -            "Metal",
        -            "Metal Mania",
        -            "Metamorphous",
        -            "Metrophobic",
        -            "Michroma",
        -            "Micro 5",
        -            "Micro 5 Charted",
        -            "Milonga",
        -            "Miltonian",
        -            "Miltonian Tattoo",
        -            "Mina",
        -            "Mingzat",
        -            "Miniver",
        -            "Miranda Sans",
        -            "Miriam Libre",
        -            "Mirza",
        -            "Miss Fajardose",
        -            "Mitr",
        -            "Mochiy Pop One",
        -            "Mochiy Pop P One",
        -            "Modak",
        -            "Modern Antiqua",
        -            "Moderustic",
        -            "Mogra",
        -            "Mohave",
        -            "Moirai One",
        -            "Molengo",
        -            "Molle",
        -            "Momo Signature",
        -            "Momo Trust Display",
        -            "Momo Trust Sans",
        -            "Mona Sans",
        -            "Monda",
        -            "Monofett",
        -            "Monomakh",
        -            "Monomaniac One",
        -            "Monoton",
        -            "Monsieur La Doulaise",
        -            "Montaga",
        -            "Montagu Slab",
        -            "MonteCarlo",
        -            "Montenegrin Gothic One",
        -            "Montez",
        -            "Montserrat",
        -            "Montserrat Alternates",
        -            "Montserrat Underline",
        -            "Moo Lah Lah",
        -            "Mooli",
        -            "Moon Dance",
        -            "Moul",
        -            "Moulpali",
        -            "Mountains of Christmas",
        -            "Mouse Memoirs",
        -            "Mozilla Headline",
        -            "Mozilla Text",
        -            "Mr Bedfort",
        -            "Mr Dafoe",
        -            "Mr De Haviland",
        -            "Mrs Saint Delafield",
        -            "Mrs Sheppards",
        -            "Ms Madi",
        -            "Mukta",
        -            "Mukta Mahee",
        -            "Mukta Malar",
        -            "Mukta Vaani",
        -            "Mulish",
        -            "Murecho",
        -            "MuseoModerno",
        -            "My Soul",
        -            "Mynerve",
        -            "Mystery Quest",
        -            "NTR",
        -            "Nabla",
        -            "Namdhinggo",
        -            "Nanum Brush Script",
        -            "Nanum Gothic",
        -            "Nanum Gothic Coding",
        -            "Nanum Myeongjo",
        -            "Nanum Pen Script",
        -            "Narnoor",
        -            "Nata Sans",
        -            "National Park",
        -            "Neonderthaw",
        -            "Nerko One",
        -            "Neucha",
        -            "Neuton",
        -            "New Amsterdam",
        -            "New Rocker",
        -            "New Tegomin",
        -            "News Cycle",
        -            "Newsreader",
        -            "Niconne",
        -            "Niramit",
        -            "Nixie One",
        -            "Nobile",
        -            "Nokora",
        -            "Norican",
        -            "Nosifer",
        -            "Notable",
        -            "Nothing You Could Do",
        -            "Noticia Text",
        -            "Noto Color Emoji",
        -            "Noto Emoji",
        -            "Noto Kufi Arabic",
        -            "Noto Music",
        -            "Noto Naskh Arabic",
        -            "Noto Nastaliq Urdu",
        -            "Noto Rashi Hebrew",
        -            "Noto Sans",
        -            "Noto Sans Adlam",
        -            "Noto Sans Adlam Unjoined",
        -            "Noto Sans Anatolian Hieroglyphs",
        -            "Noto Sans Arabic",
        -            "Noto Sans Armenian",
        -            "Noto Sans Avestan",
        -            "Noto Sans Balinese",
        -            "Noto Sans Bamum",
        -            "Noto Sans Bassa Vah",
        -            "Noto Sans Batak",
        -            "Noto Sans Bengali",
        -            "Noto Sans Bhaiksuki",
        -            "Noto Sans Brahmi",
        -            "Noto Sans Buginese",
        -            "Noto Sans Buhid",
        -            "Noto Sans Canadian Aboriginal",
        -            "Noto Sans Carian",
        -            "Noto Sans Caucasian Albanian",
        -            "Noto Sans Chakma",
        -            "Noto Sans Cham",
        -            "Noto Sans Cherokee",
        -            "Noto Sans Chorasmian",
        -            "Noto Sans Coptic",
        -            "Noto Sans Cuneiform",
        -            "Noto Sans Cypriot",
        -            "Noto Sans Cypro Minoan",
        -            "Noto Sans Deseret",
        -            "Noto Sans Devanagari",
        -            "Noto Sans Display",
        -            "Noto Sans Duployan",
        -            "Noto Sans Egyptian Hieroglyphs",
        -            "Noto Sans Elbasan",
        -            "Noto Sans Elymaic",
        -            "Noto Sans Ethiopic",
        -            "Noto Sans Georgian",
        -            "Noto Sans Glagolitic",
        -            "Noto Sans Gothic",
        -            "Noto Sans Grantha",
        -            "Noto Sans Gujarati",
        -            "Noto Sans Gunjala Gondi",
        -            "Noto Sans Gurmukhi",
        -            "Noto Sans HK",
        -            "Noto Sans Hanifi Rohingya",
        -            "Noto Sans Hanunoo",
        -            "Noto Sans Hatran",
        -            "Noto Sans Hebrew",
        -            "Noto Sans Imperial Aramaic",
        -            "Noto Sans Indic Siyaq Numbers",
        -            "Noto Sans Inscriptional Pahlavi",
        -            "Noto Sans Inscriptional Parthian",
        -            "Noto Sans JP",
        -            "Noto Sans Javanese",
        -            "Noto Sans KR",
        -            "Noto Sans Kaithi",
        -            "Noto Sans Kannada",
        -            "Noto Sans Kawi",
        -            "Noto Sans Kayah Li",
        -            "Noto Sans Kharoshthi",
        -            "Noto Sans Khmer",
        -            "Noto Sans Khojki",
        -            "Noto Sans Khudawadi",
        -            "Noto Sans Lao",
        -            "Noto Sans Lao Looped",
        -            "Noto Sans Lepcha",
        -            "Noto Sans Limbu",
        -            "Noto Sans Linear A",
        -            "Noto Sans Linear B",
        -            "Noto Sans Lisu",
        -            "Noto Sans Lycian",
        -            "Noto Sans Lydian",
        -            "Noto Sans Mahajani",
        -            "Noto Sans Malayalam",
        -            "Noto Sans Mandaic",
        -            "Noto Sans Manichaean",
        -            "Noto Sans Marchen",
        -            "Noto Sans Masaram Gondi",
        -            "Noto Sans Math",
        -            "Noto Sans Mayan Numerals",
        -            "Noto Sans Medefaidrin",
        -            "Noto Sans Meetei Mayek",
        -            "Noto Sans Mende Kikakui",
        -            "Noto Sans Meroitic",
        -            "Noto Sans Miao",
        -            "Noto Sans Modi",
        -            "Noto Sans Mongolian",
        -            "Noto Sans Mono",
        -            "Noto Sans Mro",
        -            "Noto Sans Multani",
        -            "Noto Sans Myanmar",
        -            "Noto Sans NKo",
        -            "Noto Sans NKo Unjoined",
        -            "Noto Sans Nabataean",
        -            "Noto Sans Nag Mundari",
        -            "Noto Sans Nandinagari",
        -            "Noto Sans New Tai Lue",
        -            "Noto Sans Newa",
        -            "Noto Sans Nushu",
        -            "Noto Sans Ogham",
        -            "Noto Sans Ol Chiki",
        -            "Noto Sans Old Hungarian",
        -            "Noto Sans Old Italic",
        -            "Noto Sans Old North Arabian",
        -            "Noto Sans Old Permic",
        -            "Noto Sans Old Persian",
        -            "Noto Sans Old Sogdian",
        -            "Noto Sans Old South Arabian",
        -            "Noto Sans Old Turkic",
        -            "Noto Sans Oriya",
        -            "Noto Sans Osage",
        -            "Noto Sans Osmanya",
        -            "Noto Sans Pahawh Hmong",
        -            "Noto Sans Palmyrene",
        -            "Noto Sans Pau Cin Hau",
        -            "Noto Sans PhagsPa",
        -            "Noto Sans Phoenician",
        -            "Noto Sans Psalter Pahlavi",
        -            "Noto Sans Rejang",
        -            "Noto Sans Runic",
        -            "Noto Sans SC",
        -            "Noto Sans Samaritan",
        -            "Noto Sans Saurashtra",
        -            "Noto Sans Sharada",
        -            "Noto Sans Shavian",
        -            "Noto Sans Siddham",
        -            "Noto Sans SignWriting",
        -            "Noto Sans Sinhala",
        -            "Noto Sans Sogdian",
        -            "Noto Sans Sora Sompeng",
        -            "Noto Sans Soyombo",
        -            "Noto Sans Sundanese",
        -            "Noto Sans Sunuwar",
        -            "Noto Sans Syloti Nagri",
        -            "Noto Sans Symbols",
        -            "Noto Sans Symbols 2",
        -            "Noto Sans Syriac",
        -            "Noto Sans Syriac Eastern",
        -            "Noto Sans Syriac Western",
        -            "Noto Sans TC",
        -            "Noto Sans Tagalog",
        -            "Noto Sans Tagbanwa",
        -            "Noto Sans Tai Le",
        -            "Noto Sans Tai Tham",
        -            "Noto Sans Tai Viet",
        -            "Noto Sans Takri",
        -            "Noto Sans Tamil",
        -            "Noto Sans Tamil Supplement",
        -            "Noto Sans Tangsa",
        -            "Noto Sans Telugu",
        -            "Noto Sans Thaana",
        -            "Noto Sans Thai",
        -            "Noto Sans Thai Looped",
        -            "Noto Sans Tifinagh",
        -            "Noto Sans Tirhuta",
        -            "Noto Sans Ugaritic",
        -            "Noto Sans Vai",
        -            "Noto Sans Vithkuqi",
        -            "Noto Sans Wancho",
        -            "Noto Sans Warang Citi",
        -            "Noto Sans Yi",
        -            "Noto Sans Zanabazar Square",
        -            "Noto Serif",
        -            "Noto Serif Ahom",
        -            "Noto Serif Armenian",
        -            "Noto Serif Balinese",
        -            "Noto Serif Bengali",
        -            "Noto Serif Devanagari",
        -            "Noto Serif Display",
        -            "Noto Serif Dives Akuru",
        -            "Noto Serif Dogra",
        -            "Noto Serif Ethiopic",
        -            "Noto Serif Georgian",
        -            "Noto Serif Grantha",
        -            "Noto Serif Gujarati",
        -            "Noto Serif Gurmukhi",
        -            "Noto Serif HK",
        -            "Noto Serif Hebrew",
        -            "Noto Serif Hentaigana",
        -            "Noto Serif JP",
        -            "Noto Serif KR",
        -            "Noto Serif Kannada",
        -            "Noto Serif Khitan Small Script",
        -            "Noto Serif Khmer",
        -            "Noto Serif Khojki",
        -            "Noto Serif Lao",
        -            "Noto Serif Makasar",
        -            "Noto Serif Malayalam",
        -            "Noto Serif Myanmar",
        -            "Noto Serif NP Hmong",
        -            "Noto Serif Old Uyghur",
        -            "Noto Serif Oriya",
        -            "Noto Serif Ottoman Siyaq",
        -            "Noto Serif SC",
        -            "Noto Serif Sinhala",
        -            "Noto Serif TC",
        -            "Noto Serif Tamil",
        -            "Noto Serif Tangut",
        -            "Noto Serif Telugu",
        -            "Noto Serif Thai",
        -            "Noto Serif Tibetan",
        -            "Noto Serif Todhri",
        -            "Noto Serif Toto",
        -            "Noto Serif Vithkuqi",
        -            "Noto Serif Yezidi",
        -            "Noto Traditional Nushu",
        -            "Noto Znamenny Musical Notation",
        -            "Nova Cut",
        -            "Nova Flat",
        -            "Nova Mono",
        -            "Nova Oval",
        -            "Nova Round",
        -            "Nova Script",
        -            "Nova Slim",
        -            "Nova Square",
        -            "Numans",
        -            "Nunito",
        -            "Nunito Sans",
        -            "Nuosu SIL",
        -            "Odibee Sans",
        -            "Odor Mean Chey",
        -            "Offside",
        -            "Oi",
        -            "Ojuju",
        -            "Old Standard TT",
        -            "Oldenburg",
        -            "Ole",
        -            "Oleo Script",
        -            "Oleo Script Swash Caps",
        -            "Onest",
        -            "Oooh Baby",
        -            "Open Sans",
        -            "Oranienbaum",
        -            "Orbit",
        -            "Orbitron",
        -            "Oregano",
        -            "Orelega One",
        -            "Orienta",
        -            "Original Surfer",
        -            "Oswald",
        -            "Outfit",
        -            "Over the Rainbow",
        -            "Overlock",
        -            "Overlock SC",
        -            "Overpass",
        -            "Overpass Mono",
        -            "Ovo",
        -            "Oxanium",
        -            "Oxygen",
        -            "Oxygen Mono",
        -            "PT Mono",
        -            "PT Sans",
        -            "PT Sans Caption",
        -            "PT Sans Narrow",
        -            "PT Serif",
        -            "PT Serif Caption",
        -            "Pacifico",
        -            "Padauk",
        -            "Padyakke Expanded One",
        -            "Palanquin",
        -            "Palanquin Dark",
        -            "Palette Mosaic",
        -            "Pangolin",
        -            "Paprika",
        -            "Parastoo",
        -            "Parisienne",
        -            "Parkinsans",
        -            "Passero One",
        -            "Passion One",
        -            "Passions Conflict",
        -            "Pathway Extreme",
        -            "Pathway Gothic One",
        -            "Patrick Hand",
        -            "Patrick Hand SC",
        -            "Pattaya",
        -            "Patua One",
        -            "Pavanam",
        -            "Paytone One",
        -            "Peddana",
        -            "Peralta",
        -            "Permanent Marker",
        -            "Petemoss",
        -            "Petit Formal Script",
        -            "Petrona",
        -            "Phetsarath",
        -            "Philosopher",
        -            "Phudu",
        -            "Piazzolla",
        -            "Piedra",
        -            "Pinyon Script",
        -            "Pirata One",
        -            "Pixelify Sans",
        -            "Plaster",
        -            "Platypi",
        -            "Play",
        -            "Playball",
        -            "Playfair",
        -            "Playfair Display",
        -            "Playfair Display SC",
        -            "Playpen Sans",
        -            "Playpen Sans Arabic",
        -            "Playpen Sans Deva",
        -            "Playpen Sans Hebrew",
        -            "Playpen Sans Thai",
        -            "Playwrite AR",
        -            "Playwrite AR Guides",
        -            "Playwrite AT",
        -            "Playwrite AT Guides",
        -            "Playwrite AU NSW",
        -            "Playwrite AU NSW Guides",
        -            "Playwrite AU QLD",
        -            "Playwrite AU QLD Guides",
        -            "Playwrite AU SA",
        -            "Playwrite AU SA Guides",
        -            "Playwrite AU TAS",
        -            "Playwrite AU TAS Guides",
        -            "Playwrite AU VIC",
        -            "Playwrite AU VIC Guides",
        -            "Playwrite BE VLG",
        -            "Playwrite BE VLG Guides",
        -            "Playwrite BE WAL",
        -            "Playwrite BE WAL Guides",
        -            "Playwrite BR",
        -            "Playwrite BR Guides",
        -            "Playwrite CA",
        -            "Playwrite CA Guides",
        -            "Playwrite CL",
        -            "Playwrite CL Guides",
        -            "Playwrite CO",
        -            "Playwrite CO Guides",
        -            "Playwrite CU",
        -            "Playwrite CU Guides",
        -            "Playwrite CZ",
        -            "Playwrite CZ Guides",
        -            "Playwrite DE Grund",
        -            "Playwrite DE Grund Guides",
        -            "Playwrite DE LA",
        -            "Playwrite DE LA Guides",
        -            "Playwrite DE SAS",
        -            "Playwrite DE SAS Guides",
        -            "Playwrite DE VA",
        -            "Playwrite DE VA Guides",
        -            "Playwrite DK Loopet",
        -            "Playwrite DK Loopet Guides",
        -            "Playwrite DK Uloopet",
        -            "Playwrite DK Uloopet Guides",
        -            "Playwrite ES",
        -            "Playwrite ES Deco",
        -            "Playwrite ES Deco Guides",
        -            "Playwrite ES Guides",
        -            "Playwrite FR Moderne",
        -            "Playwrite FR Moderne Guides",
        -            "Playwrite FR Trad",
        -            "Playwrite FR Trad Guides",
        -            "Playwrite GB J",
        -            "Playwrite GB J Guides",
        -            "Playwrite GB S",
        -            "Playwrite GB S Guides",
        -            "Playwrite HR",
        -            "Playwrite HR Guides",
        -            "Playwrite HR Lijeva",
        -            "Playwrite HR Lijeva Guides",
        -            "Playwrite HU",
        -            "Playwrite HU Guides",
        -            "Playwrite ID",
        -            "Playwrite ID Guides",
        -            "Playwrite IE",
        -            "Playwrite IE Guides",
        -            "Playwrite IN",
        -            "Playwrite IN Guides",
        -            "Playwrite IS",
        -            "Playwrite IS Guides",
        -            "Playwrite IT Moderna",
        -            "Playwrite IT Moderna Guides",
        -            "Playwrite IT Trad",
        -            "Playwrite IT Trad Guides",
        -            "Playwrite MX",
        -            "Playwrite MX Guides",
        -            "Playwrite NG Modern",
        -            "Playwrite NG Modern Guides",
        -            "Playwrite NL",
        -            "Playwrite NL Guides",
        -            "Playwrite NO",
        -            "Playwrite NO Guides",
        -            "Playwrite NZ",
        -            "Playwrite NZ Basic",
        -            "Playwrite NZ Basic Guides",
        -            "Playwrite NZ Guides",
        -            "Playwrite PE",
        -            "Playwrite PE Guides",
        -            "Playwrite PL",
        -            "Playwrite PL Guides",
        -            "Playwrite PT",
        -            "Playwrite PT Guides",
        -            "Playwrite RO",
        -            "Playwrite RO Guides",
        -            "Playwrite SK",
        -            "Playwrite SK Guides",
        -            "Playwrite TZ",
        -            "Playwrite TZ Guides",
        -            "Playwrite US Modern",
        -            "Playwrite US Modern Guides",
        -            "Playwrite US Trad",
        -            "Playwrite US Trad Guides",
        -            "Playwrite VN",
        -            "Playwrite VN Guides",
        -            "Playwrite ZA",
        -            "Playwrite ZA Guides",
        -            "Pliant",
        -            "Plus Jakarta Sans",
        -            "Pochaevsk",
        -            "Podkova",
        -            "Poetsen One",
        -            "Poiret One",
        -            "Poller One",
        -            "Poltawski Nowy",
        -            "Poly",
        -            "Pompiere",
        -            "Ponnala",
        -            "Ponomar",
        -            "Pontano Sans",
        -            "Poor Story",
        -            "Poppins",
        -            "Port Lligat Sans",
        -            "Port Lligat Slab",
        -            "Potta One",
        -            "Pragati Narrow",
        -            "Praise",
        -            "Prata",
        -            "Preahvihear",
        -            "Press Start 2P",
        -            "Pridi",
        -            "Princess Sofia",
        -            "Prociono",
        -            "Prompt",
        -            "Prosto One",
        -            "Protest Guerrilla",
        -            "Protest Revolution",
        -            "Protest Riot",
        -            "Protest Strike",
        -            "Proza Libre",
        -            "Public Sans",
        -            "Puppies Play",
        -            "Puritan",
        -            "Purple Purse",
        -            "Qahiri",
        -            "Quando",
        -            "Quantico",
        -            "Quattrocento",
        -            "Quattrocento Sans",
        -            "Questrial",
        -            "Quicksand",
        -            "Quintessential",
        -            "Qwigley",
        -            "Qwitcher Grypen",
        -            "REM",
        -            "Racing Sans One",
        -            "Radio Canada",
        -            "Radio Canada Big",
        -            "Radley",
        -            "Rajdhani",
        -            "Rakkas",
        -            "Raleway",
        -            "Raleway Dots",
        -            "Ramabhadra",
        -            "Ramaraja",
        -            "Rambla",
        -            "Rammetto One",
        -            "Rampart One",
        -            "Ramsina",
        -            "Ranchers",
        -            "Rancho",
        -            "Ranga",
        -            "Rasa",
        -            "Rationale",
        -            "Ravi Prakash",
        -            "Readex Pro",
        -            "Recursive",
        -            "Red Hat Display",
        -            "Red Hat Mono",
        -            "Red Hat Text",
        -            "Red Rose",
        -            "Redacted",
        -            "Redacted Script",
        -            "Reddit Mono",
        -            "Reddit Sans",
        -            "Reddit Sans Condensed",
        -            "Redressed",
        -            "Reem Kufi",
        -            "Reem Kufi Fun",
        -            "Reem Kufi Ink",
        -            "Reenie Beanie",
        -            "Reggae One",
        -            "Rethink Sans",
        -            "Revalia",
        -            "Rhodium Libre",
        -            "Ribeye",
        -            "Ribeye Marrow",
        -            "Righteous",
        -            "Risque",
        -            "Road Rage",
        -            "Roboto",
        -            "Roboto Condensed",
        -            "Roboto Flex",
        -            "Roboto Mono",
        -            "Roboto Serif",
        -            "Roboto Slab",
        -            "Rochester",
        -            "Rock 3D",
        -            "Rock Salt",
        -            "RocknRoll One",
        -            "Rokkitt",
        -            "Romanesco",
        -            "Ropa Sans",
        -            "Rosario",
        -            "Rosarivo",
        -            "Rouge Script",
        -            "Rowdies",
        -            "Rozha One",
        -            "Rubik",
        -            "Rubik 80s Fade",
        -            "Rubik Beastly",
        -            "Rubik Broken Fax",
        -            "Rubik Bubbles",
        -            "Rubik Burned",
        -            "Rubik Dirt",
        -            "Rubik Distressed",
        -            "Rubik Doodle Shadow",
        -            "Rubik Doodle Triangles",
        -            "Rubik Gemstones",
        -            "Rubik Glitch",
        -            "Rubik Glitch Pop",
        -            "Rubik Iso",
        -            "Rubik Lines",
        -            "Rubik Maps",
        -            "Rubik Marker Hatch",
        -            "Rubik Maze",
        -            "Rubik Microbe",
        -            "Rubik Mono One",
        -            "Rubik Moonrocks",
        -            "Rubik Pixels",
        -            "Rubik Puddles",
        -            "Rubik Scribble",
        -            "Rubik Spray Paint",
        -            "Rubik Storm",
        -            "Rubik Vinyl",
        -            "Rubik Wet Paint",
        -            "Ruda",
        -            "Rufina",
        -            "Ruge Boogie",
        -            "Ruluko",
        -            "Rum Raisin",
        -            "Ruslan Display",
        -            "Russo One",
        -            "Ruthie",
        -            "Ruwudu",
        -            "Rye",
        -            "SN Pro",
        -            "STIX Two Math",
        -            "STIX Two Text",
        -            "SUSE",
        -            "SUSE Mono",
        -            "Sacramento",
        -            "Sahitya",
        -            "Sail",
        -            "Saira",
        -            "Saira Condensed",
        -            "Saira Extra Condensed",
        -            "Saira Semi Condensed",
        -            "Saira Stencil",
        -            "Salsa",
        -            "Sanchez",
        -            "Sancreek",
        -            "Sankofa Display",
        -            "Sansation",
        -            "Sansita",
        -            "Sansita Swashed",
        -            "Sarabun",
        -            "Sarala",
        -            "Sarina",
        -            "Sarpanch",
        -            "Sassy Frass",
        -            "Satisfy",
        -            "Savate",
        -            "Sawarabi Gothic",
        -            "Sawarabi Mincho",
        -            "Scada",
        -            "Scheherazade New",
        -            "Schibsted Grotesk",
        -            "Schoolbell",
        -            "Science Gothic",
        -            "Scope One",
        -            "Seaweed Script",
        -            "Secular One",
        -            "Sedan",
        -            "Sedan SC",
        -            "Sedgwick Ave",
        -            "Sedgwick Ave Display",
        -            "Sekuya",
        -            "Sen",
        -            "Send Flowers",
        -            "Sevillana",
        -            "Seymour One",
        -            "Shadows Into Light",
        -            "Shadows Into Light Two",
        -            "Shafarik",
        -            "Shalimar",
        -            "Shantell Sans",
        -            "Shanti",
        -            "Share",
        -            "Share Tech",
        -            "Share Tech Mono",
        -            "Shippori Antique",
        -            "Shippori Antique B1",
        -            "Shippori Mincho",
        -            "Shippori Mincho B1",
        -            "Shizuru",
        -            "Shojumaru",
        -            "Short Stack",
        -            "Shrikhand",
        -            "Siemreap",
        -            "Sigmar",
        -            "Sigmar One",
        -            "Signika",
        -            "Signika Negative",
        -            "Silkscreen",
        -            "Simonetta",
        -            "Single Day",
        -            "Sintony",
        -            "Sirin Stencil",
        -            "Sirivennela",
        -            "Six Caps",
        -            "Sixtyfour",
        -            "Sixtyfour Convergence",
        -            "Skranji",
        -            "Slabo 13px",
        -            "Slabo 27px",
        -            "Slackey",
        -            "Slackside One",
        -            "Smokum",
        -            "Smooch",
        -            "Smooch Sans",
        -            "Smythe",
        -            "Sniglet",
        -            "Snippet",
        -            "Snowburst One",
        -            "Sofadi One",
        -            "Sofia",
        -            "Sofia Sans",
        -            "Sofia Sans Condensed",
        -            "Sofia Sans Extra Condensed",
        -            "Sofia Sans Semi Condensed",
        -            "Solitreo",
        -            "Solway",
        -            "Sometype Mono",
        -            "Song Myung",
        -            "Sono",
        -            "Sonsie One",
        -            "Sora",
        -            "Sorts Mill Goudy",
        -            "Sour Gummy",
        -            "Source Code Pro",
        -            "Source Sans 3",
        -            "Source Serif 4",
        -            "Space Grotesk",
        -            "Space Mono",
        -            "Special Elite",
        -            "Special Gothic",
        -            "Special Gothic Condensed One",
        -            "Special Gothic Expanded One",
        -            "Spectral",
        -            "Spectral SC",
        -            "Spicy Rice",
        -            "Spinnaker",
        -            "Spirax",
        -            "Splash",
        -            "Spline Sans",
        -            "Spline Sans Mono",
        -            "Squada One",
        -            "Square Peg",
        -            "Sree Krushnadevaraya",
        -            "Sriracha",
        -            "Srisakdi",
        -            "Staatliches",
        -            "Stack Sans Headline",
        -            "Stack Sans Notch",
        -            "Stack Sans Text",
        -            "Stalemate",
        -            "Stalinist One",
        -            "Stardos Stencil",
        -            "Stick",
        -            "Stick No Bills",
        -            "Stint Ultra Condensed",
        -            "Stint Ultra Expanded",
        -            "Stoke",
        -            "Story Script",
        -            "Strait",
        -            "Strichpunkt Sans",
        -            "Style Script",
        -            "Stylish",
        -            "Sue Ellen Francisco",
        -            "Suez One",
        -            "Sulphur Point",
        -            "Sumana",
        -            "Sunflower",
        -            "Sunshiney",
        -            "Supermercado One",
        -            "Sura",
        -            "Suranna",
        -            "Suravaram",
        -            "Suwannaphum",
        -            "Swanky and Moo Moo",
        -            "Syncopate",
        -            "Syne",
        -            "Syne Mono",
        -            "Syne Tactile",
        -            "TASA Explorer",
        -            "TASA Orbiter",
        -            "Tac One",
        -            "Tagesschrift",
        -            "Tai Heritage Pro",
        -            "Tajawal",
        -            "Tangerine",
        -            "Tapestry",
        -            "Taprom",
        -            "Tauri",
        -            "Taviraj",
        -            "Teachers",
        -            "Teko",
        -            "Tektur",
        -            "Telex",
        -            "Tenali Ramakrishna",
        -            "Tenor Sans",
        -            "Text Me One",
        -            "Texturina",
        -            "Thasadith",
        -            "The Girl Next Door",
        -            "The Nautigal",
        -            "Tienne",
        -            "TikTok Sans",
        -            "Tillana",
        -            "Tilt Neon",
        -            "Tilt Prism",
        -            "Tilt Warp",
        -            "Timmana",
        -            "Tinos",
        -            "Tiny5",
        -            "Tiro Bangla",
        -            "Tiro Devanagari Hindi",
        -            "Tiro Devanagari Marathi",
        -            "Tiro Devanagari Sanskrit",
        -            "Tiro Gurmukhi",
        -            "Tiro Kannada",
        -            "Tiro Tamil",
        -            "Tiro Telugu",
        -            "Tirra",
        -            "Titan One",
        -            "Titillium Web",
        -            "Tomorrow",
        -            "Tourney",
        -            "Trade Winds",
        -            "Train One",
        -            "Triodion",
        -            "Trirong",
        -            "Trispace",
        -            "Trocchi",
        -            "Trochut",
        -            "Truculenta",
        -            "Trykker",
        -            "Tsukimi Rounded",
        -            "Tuffy",
        -            "Tulpen One",
        -            "Turret Road",
        -            "Twinkle Star",
        -            "Ubuntu",
        -            "Ubuntu Condensed",
        -            "Ubuntu Mono",
        -            "Ubuntu Sans",
        -            "Ubuntu Sans Mono",
        -            "Uchen",
        -            "Ultra",
        -            "Unbounded",
        -            "Uncial Antiqua",
        -            "Underdog",
        -            "Unica One",
        -            "UnifrakturCook",
        -            "UnifrakturMaguntia",
        -            "Unkempt",
        -            "Unlock",
        -            "Unna",
        -            "UoqMunThenKhung",
        -            "Updock",
        -            "Urbanist",
        -            "VT323",
        -            "Vampiro One",
        -            "Varela",
        -            "Varela Round",
        -            "Varta",
        -            "Vast Shadow",
        -            "Vazirmatn",
        -            "Vend Sans",
        -            "Vesper Libre",
        -            "Viaoda Libre",
        -            "Vibes",
        -            "Vibur",
        -            "Victor Mono",
        -            "Vidaloka",
        -            "Viga",
        -            "Vina Sans",
        -            "Voces",
        -            "Volkhov",
        -            "Vollkorn",
        -            "Vollkorn SC",
        -            "Voltaire",
        -            "Vujahday Script",
        -            "WDXL Lubrifont JP N",
        -            "WDXL Lubrifont SC",
        -            "WDXL Lubrifont TC",
        -            "Waiting for the Sunrise",
        -            "Wallpoet",
        -            "Walter Turncoat",
        -            "Warnes",
        -            "Water Brush",
        -            "Waterfall",
        -            "Wavefont",
        -            "Wellfleet",
        -            "Wendy One",
        -            "Whisper",
        -            "WindSong",
        -            "Winky Rough",
        -            "Winky Sans",
        -            "Wire One",
        -            "Wittgenstein",
        -            "Wix Madefor Display",
        -            "Wix Madefor Text",
        -            "Work Sans",
        -            "Workbench",
        -            "Xanh Mono",
        -            "Yaldevi",
        -            "Yanone Kaffeesatz",
        -            "Yantramanav",
        -            "Yarndings 12",
        -            "Yarndings 12 Charted",
        -            "Yarndings 20",
        -            "Yarndings 20 Charted",
        -            "Yatra One",
        -            "Yellowtail",
        -            "Yeon Sung",
        -            "Yeseva One",
        -            "Yesteryear",
        -            "Yomogi",
        -            "Young Serif",
        -            "Yrsa",
        -            "Ysabeau",
        -            "Ysabeau Infant",
        -            "Ysabeau Office",
        -            "Ysabeau SC",
        -            "Yuji Boku",
        -            "Yuji Hentaigana Akari",
        -            "Yuji Hentaigana Akebono",
        -            "Yuji Mai",
        -            "Yuji Syuku",
        -            "Yusei Magic",
        -            "Yuyu",
        -            "Yuyu Short",
        -            "ZCOOL KuaiLe",
        -            "ZCOOL QingKe HuangYou",
        -            "ZCOOL XiaoWei",
        -            "Zain",
        -            "Zalando Sans",
        -            "Zalando Sans Expanded",
        -            "Zalando Sans SemiExpanded",
        -            "Zen Antique",
        -            "Zen Antique Soft",
        -            "Zen Dots",
        -            "Zen Kaku Gothic Antique",
        -            "Zen Kaku Gothic New",
        -            "Zen Kurenaido",
        -            "Zen Loop",
        -            "Zen Maru Gothic",
        -            "Zen Old Mincho",
        -            "Zen Tokyo Zoo",
        -            "Zeyada",
        -            "Zhi Mang Xing",
        -            "Zilla Slab",
        -            "Zilla Slab Highlight"
        -          ],
        -          "type": "string"
        -        },
        -        "titleFontSize": {
        -          "type": "number"
        -        },
        -        "titleFontWeight": {
        -          "type": "string"
        -        },
        -        "titleSubtitleGap": {
        -          "type": "number"
        -        }
        -      },
        -      "type": "object"
        -    },
        -    "title": {
        -      "type": "string"
        -    },
        -    "version": {
        -      "const": "2026-03-20",
        -      "type": "string"
        -    },
        -    "width": {
        -      "maximum": 4096,
        -      "minimum": 1,
        -      "type": "integer"
        -    },
        -    "x": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "display": {
        -          "default": true,
        -          "type": "boolean"
        -        },
        -        "domain": {
        -          "anyOf": [
        -            {
        -              "items": [
        -                {
        -                  "type": "number"
        -                },
        -                {
        -                  "type": "number"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            }
        -          ]
        -        },
        -        "label": {
        -          "type": "string"
        -        },
        -        "nice": {
        -          "type": "boolean"
        -        },
        -        "tickFormat": {
        -          "type": "string"
        -        },
        -        "type": {
        -          "enum": [
        -            "linear",
        -            "log",
        -            "utc",
        -            "band"
        -          ],
        -          "type": "string"
        -        }
        -      },
        -      "type": "object"
        -    },
        -    "y": {
        -      "additionalProperties": {},
        -      "properties": {
        -        "display": {
        -          "default": true,
        -          "type": "boolean"
        -        },
        -        "domain": {
        -          "anyOf": [
        -            {
        -              "items": [
        -                {
        -                  "type": "number"
        -                },
        -                {
        -                  "type": "number"
        -                }
        -              ],
        -              "maxItems": 2,
        -              "minItems": 2,
        -              "type": "array"
        -            },
        -            {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            }
        -          ]
        -        },
        -        "label": {
        -          "type": "string"
        -        },
        -        "nice": {
        -          "type": "boolean"
        -        },
        -        "tickFormat": {
        -          "type": "string"
        -        },
        -        "type": {
        -          "enum": [
        -            "linear",
        -            "log",
        -            "utc",
        -            "band"
        -          ],
        -          "type": "string"
        -        }
        -      },
        -      "type": "object"
        -    }
        -  },
        -  "required": [
        -    "version",
        -    "format",
        -    "marks"
        -  ],
        -  "title": "Szum Chart Configuration",
        -  "type": "object"
        -}
      • addedOutput schema / properties / suggestedDocument
        Added value: +{
        +  "additionalProperties": false,
        +  "properties": {
        +    "config": {
        +      "anyOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/PositionableBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SimpleBarValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/RangeCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/RangeCategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/RangeValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/StackedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/StackedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "totals": {
        +              "type": "boolean"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "totals",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/GroupedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/PositionableBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/BarSpacingPreference"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "arrangement",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/NormalizedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "column",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "arrangement",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/PositionableBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SimpleBarValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/RangeCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/RangeCategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/RangeValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/StackedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/StackedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "totals": {
        +              "type": "boolean"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "totals",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/GroupedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/PositionableBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/BarSpacingPreference"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "arrangement",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/NormalizedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/BarCategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/StackedBarLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "spacing": {
        +              "$ref": "#/$defs/CategorySpacing"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "bar",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "category",
        +            "values",
        +            "arrangement",
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/CategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/LineLabels"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "points": {
        +              "anyOf": [
        +                {
        +                  "type": "boolean"
        +                },
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "fill": {
        +                      "$ref": "#/$defs/Color"
        +                    },
        +                    "radius": {
        +                      "exclusiveMinimum": 0,
        +                      "type": "number"
        +                    },
        +                    "series": {
        +                      "items": {
        +                        "type": [
        +                          "string",
        +                          "number"
        +                        ]
        +                      },
        +                      "minItems": 1,
        +                      "type": "array",
        +                      "uniqueItems": true
        +                    },
        +                    "stroke": {
        +                      "$ref": "#/$defs/Stroke"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/LineStroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "line",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "oneOf": [
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "aggregation": {
        +                      "enum": [
        +                        "sum",
        +                        "average",
        +                        "min",
        +                        "max",
        +                        "median"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "field": {
        +                      "minLength": 1,
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "scale": {
        +                      "$ref": "#/$defs/ContinuousScale"
        +                    },
        +                    "series": {
        +                      "$ref": "#/$defs/SeriesRole"
        +                    },
        +                    "type": {
        +                      "const": "long",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type",
        +                    "field"
        +                  ],
        +                  "title": "LineLongValuesRole",
        +                  "type": "object"
        +                },
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "aggregation": {
        +                      "enum": [
        +                        "sum",
        +                        "average",
        +                        "min",
        +                        "max",
        +                        "median"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "fields": {
        +                      "items": {
        +                        "minLength": 1,
        +                        "type": "string"
        +                      },
        +                      "minItems": 1,
        +                      "type": "array",
        +                      "uniqueItems": true
        +                    },
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "scale": {
        +                      "$ref": "#/$defs/ContinuousScale"
        +                    },
        +                    "type": {
        +                      "const": "wide",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type",
        +                    "fields"
        +                  ],
        +                  "title": "LineWideValuesRole",
        +                  "type": "object"
        +                },
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "scale": {
        +                      "oneOf": [
        +                        {
        +                          "$ref": "#/$defs/LinearScale"
        +                        },
        +                        {
        +                          "$ref": "#/$defs/LogScale"
        +                        }
        +                      ],
        +                      "title": "QuantitativeScale"
        +                    },
        +                    "series": {
        +                      "$ref": "#/$defs/SeriesRole"
        +                    },
        +                    "type": {
        +                      "const": "count",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type"
        +                  ],
        +                  "title": "CountValuesRole",
        +                  "type": "object"
        +                }
        +              ],
        +              "title": "LineValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "category",
        +            "values"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "type": {
        +                  "const": "stacked",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type"
        +              ],
        +              "type": "object"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/CategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColor"
        +            },
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/AreaLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "area",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "anyOf": [
        +                {
        +                  "oneOf": [
        +                    {
        +                      "additionalProperties": false,
        +                      "properties": {
        +                        "aggregation": {
        +                          "enum": [
        +                            "sum",
        +                            "average",
        +                            "min",
        +                            "max",
        +                            "median"
        +                          ],
        +                          "type": "string"
        +                        },
        +                        "field": {
        +                          "minLength": 1,
        +                          "type": "string"
        +                        },
        +                        "format": {
        +                          "type": "string"
        +                        },
        +                        "scale": {
        +                          "$ref": "#/$defs/LinearScale"
        +                        },
        +                        "series": {
        +                          "$ref": "#/$defs/SeriesRole"
        +                        },
        +                        "type": {
        +                          "const": "long",
        +                          "type": "string"
        +                        }
        +                      },
        +                      "required": [
        +                        "type",
        +                        "field"
        +                      ],
        +                      "title": "LinearLongValuesRole",
        +                      "type": "object"
        +                    },
        +                    {
        +                      "additionalProperties": false,
        +                      "properties": {
        +                        "aggregation": {
        +                          "enum": [
        +                            "sum",
        +                            "average",
        +                            "min",
        +                            "max",
        +                            "median"
        +                          ],
        +                          "type": "string"
        +                        },
        +                        "fields": {
        +                          "items": {
        +                            "minLength": 1,
        +                            "type": "string"
        +                          },
        +                          "minItems": 1,
        +                          "type": "array",
        +                          "uniqueItems": true
        +                        },
        +                        "format": {
        +                          "type": "string"
        +                        },
        +                        "scale": {
        +                          "$ref": "#/$defs/LinearScale"
        +                        },
        +                        "type": {
        +                          "const": "wide",
        +                          "type": "string"
        +                        }
        +                      },
        +                      "required": [
        +                        "type",
        +                        "fields"
        +                      ],
        +                      "title": "LinearWideValuesRole",
        +                      "type": "object"
        +                    },
        +                    {
        +                      "additionalProperties": false,
        +                      "properties": {
        +                        "format": {
        +                          "type": "string"
        +                        },
        +                        "scale": {
        +                          "$ref": "#/$defs/LinearScale"
        +                        },
        +                        "series": {
        +                          "$ref": "#/$defs/SeriesRole"
        +                        },
        +                        "type": {
        +                          "const": "count",
        +                          "type": "string"
        +                        }
        +                      },
        +                      "required": [
        +                        "type"
        +                      ],
        +                      "title": "LinearCountValuesRole",
        +                      "type": "object"
        +                    }
        +                  ],
        +                  "title": "LinearValuesRole"
        +                },
        +                {
        +                  "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +                }
        +              ],
        +              "title": "StackedLinearValuesRole"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "category",
        +            "values"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/CartesianAnnotations"
        +            },
        +            "arrangement": {
        +              "$ref": "#/$defs/NormalizedArrangement"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "$ref": "#/$defs/CategoryRole"
        +            },
        +            "categoryAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/AreaLabels"
        +            },
        +            "line": {
        +              "$ref": "#/$defs/PromotedLine"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/CategoricalReferences"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "area",
        +              "type": "string"
        +            },
        +            "valueAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "values": {
        +              "$ref": "#/$defs/SeriesLinearValuesRoleWithPercent"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "category",
        +            "values",
        +            "arrangement"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/ScatterAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/ScatterColor"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "id": {
        +              "$ref": "#/$defs/FieldRole"
        +            },
        +            "interval": {
        +              "$ref": "#/$defs/ScatterInterval"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/ScatterLabels"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "radius": {
        +              "exclusiveMinimum": 0,
        +              "type": "number"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/ScatterReferences"
        +            },
        +            "size": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "field": {
        +                  "minLength": 1,
        +                  "type": "string"
        +                },
        +                "format": {
        +                  "type": "string"
        +                },
        +                "legend": {
        +                  "$ref": "#/$defs/LegendOptions"
        +                }
        +              },
        +              "required": [
        +                "field"
        +              ],
        +              "title": "SizeEncoding",
        +              "type": "object"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "scatter",
        +              "type": "string"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            },
        +            "x": {
        +              "$ref": "#/$defs/ScatterRole"
        +            },
        +            "xAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "y": {
        +              "$ref": "#/$defs/ScatterRole"
        +            },
        +            "yAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "x",
        +            "y"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "$ref": "#/$defs/ScatterAnnotations"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/ScatterColor"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "id": {
        +              "$ref": "#/$defs/FieldRole"
        +            },
        +            "interval": {
        +              "$ref": "#/$defs/ScatterInterval"
        +            },
        +            "labels": {
        +              "$ref": "#/$defs/ScatterLabels"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "plotBorder": {
        +              "type": "boolean"
        +            },
        +            "references": {
        +              "$ref": "#/$defs/ScatterReferences"
        +            },
        +            "size": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "field": {
        +                  "minLength": 1,
        +                  "type": "string"
        +                },
        +                "format": {
        +                  "type": "string"
        +                },
        +                "legend": {
        +                  "$ref": "#/$defs/LegendOptions"
        +                },
        +                "range": {
        +                  "items": [
        +                    {
        +                      "exclusiveMinimum": 0,
        +                      "type": "number"
        +                    },
        +                    {
        +                      "exclusiveMinimum": 0,
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                }
        +              },
        +              "required": [
        +                "field",
        +                "range"
        +              ],
        +              "title": "RangedSizeEncoding",
        +              "type": "object"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "scatter",
        +              "type": "string"
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            },
        +            "x": {
        +              "$ref": "#/$defs/ScatterRole"
        +            },
        +            "xAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            },
        +            "y": {
        +              "$ref": "#/$defs/ScatterRole"
        +            },
        +            "yAxis": {
        +              "$ref": "#/$defs/AxisOptions"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "x",
        +            "y",
        +            "size"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "accessibilityDescription": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "annotations": {
        +              "items": {
        +                "additionalProperties": false,
        +                "properties": {
        +                  "align": {
        +                    "enum": [
        +                      "start",
        +                      "center",
        +                      "end"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "anchor": {
        +                    "additionalProperties": false,
        +                    "properties": {
        +                      "category": {
        +                        "type": [
        +                          "string",
        +                          "number"
        +                        ]
        +                      },
        +                      "type": {
        +                        "const": "datum",
        +                        "type": "string"
        +                      }
        +                    },
        +                    "required": [
        +                      "type",
        +                      "category"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  "boxAnchor": {
        +                    "$ref": "#/$defs/AnnotationBoxAnchor"
        +                  },
        +                  "connector": {
        +                    "enum": [
        +                      "none",
        +                      "line",
        +                      "arrow"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "offset": {
        +                    "$ref": "#/$defs/AnnotationOffset"
        +                  },
        +                  "placement": {
        +                    "$ref": "#/$defs/AnnotationPlacement"
        +                  },
        +                  "reserveSpace": {
        +                    "$ref": "#/$defs/ReserveSpace"
        +                  },
        +                  "style": {
        +                    "$ref": "#/$defs/AnnotationTextStyle"
        +                  },
        +                  "text": {
        +                    "type": "string"
        +                  },
        +                  "visible": {
        +                    "type": "boolean"
        +                  },
        +                  "width": {
        +                    "anyOf": [
        +                      {
        +                        "exclusiveMinimum": 0,
        +                        "type": "number"
        +                      },
        +                      {
        +                        "const": "shape",
        +                        "type": "string"
        +                      }
        +                    ]
        +                  }
        +                },
        +                "required": [
        +                  "text",
        +                  "anchor"
        +                ],
        +                "title": "PieAnnotation",
        +                "type": "object"
        +              },
        +              "minItems": 1,
        +              "title": "PieAnnotations",
        +              "type": "array"
        +            },
        +            "caption": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "category": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "field": {
        +                  "minLength": 1,
        +                  "type": "string"
        +                },
        +                "format": {
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "field"
        +              ],
        +              "type": "object"
        +            },
        +            "color": {
        +              "$ref": "#/$defs/CategoricalColorMapping"
        +            },
        +            "cornerRadius": {
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "headerAlign": {
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "innerRadius": {
        +              "exclusiveMaximum": 1,
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "labels": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "content": {
        +                  "items": {
        +                    "enum": [
        +                      "category",
        +                      "value",
        +                      "percent"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "minItems": 1,
        +                  "type": "array",
        +                  "uniqueItems": true
        +                },
        +                "position": {
        +                  "enum": [
        +                    "auto",
        +                    "inside",
        +                    "outside"
        +                  ],
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "content"
        +              ],
        +              "type": "object"
        +            },
        +            "locale": {
        +              "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +              "type": "string"
        +            },
        +            "order": {
        +              "$ref": "#/$defs/CategoryOrder"
        +            },
        +            "stroke": {
        +              "$ref": "#/$defs/Stroke"
        +            },
        +            "subtitle": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "theme": {
        +              "$ref": "#/$defs/ThemeName"
        +            },
        +            "themeOverrides": {
        +              "$ref": "#/$defs/ThemeOverrides"
        +            },
        +            "title": {
        +              "minLength": 1,
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "pie",
        +              "type": "string"
        +            },
        +            "values": {
        +              "oneOf": [
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "aggregation": {
        +                      "enum": [
        +                        "sum",
        +                        "average",
        +                        "min",
        +                        "max",
        +                        "median"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "field": {
        +                      "minLength": 1,
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "percentFormat": {
        +                      "type": "string"
        +                    },
        +                    "type": {
        +                      "const": "long",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type",
        +                    "field"
        +                  ],
        +                  "type": "object"
        +                },
        +                {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "percentFormat": {
        +                      "type": "string"
        +                    },
        +                    "type": {
        +                      "const": "count",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "type"
        +                  ],
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            "version": {
        +              "const": "2026-09-26",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "version",
        +            "type",
        +            "category",
        +            "values"
        +          ],
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "data": {
        +      "items": {
        +        "additionalProperties": {
        +          "type": [
        +            "string",
        +            "number",
        +            "null"
        +          ]
        +        },
        +        "propertyNames": {
        +          "type": "string"
        +        },
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "output": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "format": {
        +              "const": "svg",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "format"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "format": {
        +              "const": "png",
        +              "type": "string"
        +            },
        +            "scale": {
        +              "anyOf": [
        +                {
        +                  "const": 1,
        +                  "type": "number"
        +                },
        +                {
        +                  "const": 2,
        +                  "type": "number"
        +                },
        +                {
        +                  "const": 3,
        +                  "type": "number"
        +                },
        +                {
        +                  "const": 4,
        +                  "type": "number"
        +                }
        +              ]
        +            }
        +          },
        +          "required": [
        +            "format"
        +          ],
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "presentation": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "background": {
        +              "enum": [
        +                "opaque",
        +                "transparent"
        +              ],
        +              "type": "string"
        +            },
        +            "colorScheme": {
        +              "enum": [
        +                "light",
        +                "dark"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "colorScheme",
        +            "background"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "background": {
        +              "enum": [
        +                "opaque",
        +                "transparent"
        +              ],
        +              "type": "string"
        +            },
        +            "colorScheme": {
        +              "const": "system",
        +              "type": "string"
        +            },
        +            "systemFallback": {
        +              "enum": [
        +                "light",
        +                "dark"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "colorScheme",
        +            "systemFallback",
        +            "background"
        +          ],
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "size": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "height": {
        +              "maximum": 4096,
        +              "minimum": 1,
        +              "type": "integer"
        +            },
        +            "type": {
        +              "const": "canvas",
        +              "type": "string"
        +            },
        +            "width": {
        +              "maximum": 4096,
        +              "minimum": 1,
        +              "type": "integer"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "width",
        +            "height"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "height": {
        +              "maximum": 4096,
        +              "minimum": 1,
        +              "type": "integer"
        +            },
        +            "margin": {
        +              "additionalProperties": false,
        +              "minProperties": 1,
        +              "properties": {
        +                "bottom": {
        +                  "minimum": 0,
        +                  "type": "number"
        +                },
        +                "left": {
        +                  "minimum": 0,
        +                  "type": "number"
        +                },
        +                "right": {
        +                  "minimum": 0,
        +                  "type": "number"
        +                },
        +                "top": {
        +                  "minimum": 0,
        +                  "type": "number"
        +                }
        +              },
        +              "title": "Margin",
        +              "type": "object"
        +            },
        +            "type": {
        +              "const": "plot",
        +              "type": "string"
        +            },
        +            "width": {
        +              "maximum": 4096,
        +              "minimum": 1,
        +              "type": "integer"
        +            }
        +          },
        +          "required": [
        +            "type",
        +            "width",
        +            "height"
        +          ],
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "version": {
        +      "const": "2026-09-26",
        +      "type": "string"
        +    }
        +  },
        +  "required": [
        +    "version",
        +    "config",
        +    "data"
        +  ],
        +  "type": "object"
        +}
      • changedOutput schema / required
        Previous value: -[
        -  "valid",
        -  "message",
        -  "errors",
        -  "diagnostics"
        -]New value: +[
        +  "valid",
        +  "diagnostics"
        +]
  2. 6 tool updates
    • Changedget_chart_config2 fields changed
      • addedOutput schema / properties / themeOverrides / properties / numericFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
      • addedOutput schema / properties / themeOverrides / properties / titleFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
    • Changedget_examples2 fields changed
      • addedOutput schema / properties / examples / items / properties / config / properties / themeOverrides / properties / numericFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
      • addedOutput schema / properties / examples / items / properties / config / properties / themeOverrides / properties / titleFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
    • Changedrender_chart2 fields changed
      • addedOutput schema / properties / validation / properties / suggestedConfig / properties / themeOverrides / properties / numericFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
      • addedOutput schema / properties / validation / properties / suggestedConfig / properties / themeOverrides / properties / titleFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
    • Changedsave_chart2 fields changed
      • addedOutput schema / properties / validation / properties / suggestedConfig / properties / themeOverrides / properties / numericFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
      • addedOutput schema / properties / validation / properties / suggestedConfig / properties / themeOverrides / properties / titleFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
    • Changedupdate_chart2 fields changed
      • addedOutput schema / properties / validation / properties / suggestedConfig / properties / themeOverrides / properties / numericFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
      • addedOutput schema / properties / validation / properties / suggestedConfig / properties / themeOverrides / properties / titleFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
    • Changedvalidate_chart2 fields changed
      • addedOutput schema / properties / suggestedConfig / properties / themeOverrides / properties / numericFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
      • addedOutput schema / properties / suggestedConfig / properties / themeOverrides / properties / titleFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
  3. 6 tool updates
    • Changedget_chart_config2 fields changed
      • changedOutput schema / properties / x / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
      • changedOutput schema / properties / y / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
    • Changedget_examples2 fields changed
      • changedOutput schema / properties / examples / items / properties / config / properties / x / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
      • changedOutput schema / properties / examples / items / properties / config / properties / y / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
    • Changedrender_chart3 fields changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of a complete chart config. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Configure axes with top-level x and y; hide one with display: false, never axes, scales, or axis. Put shared data at chart level and distinct layer data on its mark. When rows share a bar position, map a series field to fill or stroke before setting group, or aggregate the rows."New value: +"Complete chart config JSON. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Bar and area value axes stay linear and include zero. Explicit base-10 log scales require positive finite values and domains; use line or dot. Configure scales with top-level x/y; hide with display: false. Put shared data at chart level; use mark data for distinct rows. When rows share a bar position, map a series field to fill or stroke before setting group or aggregate."
      • changedOutput schema / properties / validation / properties / suggestedConfig / properties / x / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
      • changedOutput schema / properties / validation / properties / suggestedConfig / properties / y / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
    • Changedsave_chart3 fields changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of a complete chart config. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Configure axes with top-level x and y; hide one with display: false, never axes, scales, or axis. Put shared data at chart level and distinct layer data on its mark. When rows share a bar position, map a series field to fill or stroke before setting group, or aggregate the rows."New value: +"Complete chart config JSON. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Bar and area value axes stay linear and include zero. Explicit base-10 log scales require positive finite values and domains; use line or dot. Configure scales with top-level x/y; hide with display: false. Put shared data at chart level; use mark data for distinct rows. When rows share a bar position, map a series field to fill or stroke before setting group or aggregate."
      • changedOutput schema / properties / validation / properties / suggestedConfig / properties / x / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
      • changedOutput schema / properties / validation / properties / suggestedConfig / properties / y / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
    • Changedupdate_chart3 fields changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of a complete chart config. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Configure axes with top-level x and y; hide one with display: false, never axes, scales, or axis. Put shared data at chart level and distinct layer data on its mark. When rows share a bar position, map a series field to fill or stroke before setting group, or aggregate the rows."New value: +"Complete chart config JSON. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Bar and area value axes stay linear and include zero. Explicit base-10 log scales require positive finite values and domains; use line or dot. Configure scales with top-level x/y; hide with display: false. Put shared data at chart level; use mark data for distinct rows. When rows share a bar position, map a series field to fill or stroke before setting group or aggregate."
      • changedOutput schema / properties / validation / properties / suggestedConfig / properties / x / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
      • changedOutput schema / properties / validation / properties / suggestedConfig / properties / y / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
    • Changedvalidate_chart3 fields changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of a complete chart config. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Configure axes with top-level x and y; hide one with display: false, never axes, scales, or axis. Put shared data at chart level and distinct layer data on its mark. When rows share a bar position, map a series field to fill or stroke before setting group, or aggregate the rows."New value: +"Complete chart config JSON. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Bar and area value axes stay linear and include zero. Explicit base-10 log scales require positive finite values and domains; use line or dot. Configure scales with top-level x/y; hide with display: false. Put shared data at chart level; use mark data for distinct rows. When rows share a bar position, map a series field to fill or stroke before setting group or aggregate."
      • changedOutput schema / properties / suggestedConfig / properties / x / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
      • changedOutput schema / properties / suggestedConfig / properties / y / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
  4. 6 tool updates
    • Changedget_chart_config2 fields changed
      • removedOutput schema / $id
        Removed value: -"https://szum.io/schema.json"
      • changedOutput schema / description
        Previous value: -"Schema version 2026-03-20. Send this JSON to POST https://szum.io/chart to render a chart image."New value: +"Schema version 2026-03-20. Send this JSON to POST https://szum.io/validate to validate it or POST https://szum.io/chart to render a chart image."
    • Changedget_examples6 fields changed
      • addedOutput schema / properties / examples / items / properties / config / additionalProperties
        Added value: +{}
      • addedOutput schema / properties / examples / items / properties / config / description
        Added value: +"Schema version 2026-03-20. Send this JSON to POST https://szum.io/validate to validate it or POST https://szum.io/chart to render a chart image."
      • addedOutput schema / properties / examples / items / properties / config / properties
        Added value: +{
        +  "attribution": {
        +    "description": "Show a small \"Made with Szum\" credit in the bottom-right. Always on for free and keyless renders; Creator and Pro omit it by default and set true to opt in.",
        +    "type": "boolean"
        +  },
        +  "color": {
        +    "anyOf": [
        +      {
        +        "additionalProperties": {},
        +        "properties": {
        +          "domain": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "label": {
        +            "type": "string"
        +          },
        +          "range": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "type": {
        +            "const": "categorical",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": {},
        +        "properties": {
        +          "domain": {
        +            "items": [
        +              {
        +                "type": "number"
        +              },
        +              {
        +                "type": "number"
        +              }
        +            ],
        +            "maxItems": 2,
        +            "minItems": 2,
        +            "type": "array"
        +          },
        +          "label": {
        +            "type": "string"
        +          },
        +          "range": {
        +            "items": [
        +              {
        +                "type": "string"
        +              },
        +              {
        +                "type": "string"
        +              }
        +            ],
        +            "maxItems": 2,
        +            "minItems": 2,
        +            "type": "array"
        +          },
        +          "type": {
        +            "const": "sequential",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "label": {
        +            "type": "string"
        +          }
        +        },
        +        "type": "object"
        +      }
        +    ]
        +  },
        +  "data": {
        +    "items": {
        +      "additionalProperties": {
        +        "anyOf": [
        +          {
        +            "type": "string"
        +          },
        +          {
        +            "type": "number"
        +          }
        +        ]
        +      },
        +      "propertyNames": {
        +        "type": "string"
        +      },
        +      "type": "object"
        +    },
        +    "type": "array"
        +  },
        +  "footer": {
        +    "description": "Caption below the chart (a source line, methodology note, date). URLs, bare domains, and [label](url) links in it are auto-detected and rendered as inline links on every surface.",
        +    "type": "string"
        +  },
        +  "format": {
        +    "enum": [
        +      "svg",
        +      "png"
        +    ],
        +    "type": "string"
        +  },
        +  "headerAlign": {
        +    "enum": [
        +      "left",
        +      "center",
        +      "right"
        +    ],
        +    "type": "string"
        +  },
        +  "height": {
        +    "maximum": 4096,
        +    "minimum": 1,
        +    "type": "integer"
        +  },
        +  "locale": {
        +    "description": "Locale identifier accepted by JavaScript Intl and associated with the chart content, such as en, pl, or zh-Hant.",
        +    "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +    "type": "string"
        +  },
        +  "margin": {
        +    "additionalProperties": {},
        +    "properties": {
        +      "bottom": {
        +        "type": "number"
        +      },
        +      "left": {
        +        "type": "number"
        +      },
        +      "right": {
        +        "type": "number"
        +      },
        +      "top": {
        +        "type": "number"
        +      }
        +    },
        +    "type": "object"
        +  },
        +  "marks": {
        +    "items": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "label": {
        +              "additionalProperties": {},
        +              "properties": {
        +                "field": {
        +                  "type": "string"
        +                },
        +                "format": {
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "field"
        +              ],
        +              "type": "object"
        +            },
        +            "r": {
        +              "type": "number"
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "default": 1,
        +              "type": "number"
        +            },
        +            "type": {
        +              "const": "dot",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "label": {
        +              "anyOf": [
        +                {
        +                  "type": "boolean"
        +                },
        +                {
        +                  "additionalProperties": {},
        +                  "properties": {
        +                    "end": {
        +                      "anyOf": [
        +                        {
        +                          "type": "boolean"
        +                        },
        +                        {
        +                          "items": {
        +                            "enum": [
        +                              "category",
        +                              "value"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "type": "array"
        +                        }
        +                      ],
        +                      "default": [
        +                        "category"
        +                      ]
        +                    },
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "points": {
        +                      "anyOf": [
        +                        {
        +                          "enum": [
        +                            "extrema",
        +                            "all",
        +                            "ends"
        +                          ],
        +                          "type": "string"
        +                        },
        +                        {
        +                          "const": false,
        +                          "type": "boolean"
        +                        },
        +                        {
        +                          "additionalProperties": {},
        +                          "properties": {
        +                            "at": {
        +                              "enum": [
        +                                "extrema",
        +                                "all",
        +                                "ends"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "show": {
        +                              "default": [
        +                                "value"
        +                              ],
        +                              "items": {
        +                                "enum": [
        +                                  "value",
        +                                  "category"
        +                                ],
        +                                "type": "string"
        +                              },
        +                              "type": "array"
        +                            }
        +                          },
        +                          "required": [
        +                            "at"
        +                          ],
        +                          "type": "object"
        +                        }
        +                      ],
        +                      "default": false
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "type": "number"
        +            },
        +            "type": {
        +              "const": "line",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "cornerRadius": {
        +              "type": "number"
        +            },
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "group": {
        +              "default": "stack",
        +              "enum": [
        +                "stack",
        +                "dodge"
        +              ],
        +              "type": "string"
        +            },
        +            "label": {
        +              "anyOf": [
        +                {
        +                  "type": "boolean"
        +                },
        +                {
        +                  "additionalProperties": {},
        +                  "properties": {
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "position": {
        +                      "default": "outside",
        +                      "enum": [
        +                        "auto",
        +                        "outside",
        +                        "inside"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "show": {
        +                      "default": [
        +                        "value"
        +                      ],
        +                      "items": {
        +                        "enum": [
        +                          "value",
        +                          "percent",
        +                          "category",
        +                          "total"
        +                        ],
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "default": 1,
        +              "type": "number"
        +            },
        +            "type": {
        +              "const": "barY",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "cornerRadius": {
        +              "type": "number"
        +            },
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "group": {
        +              "default": "stack",
        +              "enum": [
        +                "stack",
        +                "dodge"
        +              ],
        +              "type": "string"
        +            },
        +            "label": {
        +              "anyOf": [
        +                {
        +                  "type": "boolean"
        +                },
        +                {
        +                  "additionalProperties": {},
        +                  "properties": {
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "position": {
        +                      "default": "outside",
        +                      "enum": [
        +                        "auto",
        +                        "outside",
        +                        "inside"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "show": {
        +                      "default": [
        +                        "value"
        +                      ],
        +                      "items": {
        +                        "enum": [
        +                          "value",
        +                          "percent",
        +                          "category",
        +                          "total"
        +                        ],
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "default": 1,
        +              "type": "number"
        +            },
        +            "type": {
        +              "const": "barX",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "label": {
        +              "anyOf": [
        +                {
        +                  "type": "boolean"
        +                },
        +                {
        +                  "additionalProperties": {},
        +                  "properties": {
        +                    "end": {
        +                      "anyOf": [
        +                        {
        +                          "type": "boolean"
        +                        },
        +                        {
        +                          "items": {
        +                            "enum": [
        +                              "category",
        +                              "value",
        +                              "percent"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "type": "array"
        +                        }
        +                      ],
        +                      "default": [
        +                        "category"
        +                      ]
        +                    },
        +                    "format": {
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "default": 0,
        +              "type": "number"
        +            },
        +            "type": {
        +              "const": "areaY",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "default": 0,
        +              "type": "number"
        +            },
        +            "type": {
        +              "const": "areaX",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "cornerRadius": {
        +              "type": "number"
        +            },
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "innerRadius": {
        +              "default": 0,
        +              "maximum": 1,
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "label": {
        +              "anyOf": [
        +                {
        +                  "type": "boolean"
        +                },
        +                {
        +                  "additionalProperties": {},
        +                  "properties": {
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "position": {
        +                      "default": "auto",
        +                      "enum": [
        +                        "auto",
        +                        "inside",
        +                        "outside"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "show": {
        +                      "default": [
        +                        "category",
        +                        "percent"
        +                      ],
        +                      "items": {
        +                        "enum": [
        +                          "value",
        +                          "percent",
        +                          "category"
        +                        ],
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "default": 1,
        +              "type": "number"
        +            },
        +            "type": {
        +              "const": "pie",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "dx": {
        +              "default": 0,
        +              "type": "number"
        +            },
        +            "dy": {
        +              "default": 0,
        +              "type": "number"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "fontSize": {
        +              "type": "number"
        +            },
        +            "fontWeight": {
        +              "type": "string"
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "default": 1,
        +              "type": "number"
        +            },
        +            "text": {
        +              "default": "text",
        +              "type": "string"
        +            },
        +            "textAnchor": {
        +              "default": "center",
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "text",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "default": 1,
        +              "type": "number"
        +            },
        +            "type": {
        +              "const": "ruleX",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "default": 1,
        +              "type": "number"
        +            },
        +            "type": {
        +              "const": "ruleY",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "minItems": 1,
        +    "type": "array"
        +  },
        +  "plotHeight": {
        +    "maximum": 4096,
        +    "minimum": 1,
        +    "type": "integer"
        +  },
        +  "plotWidth": {
        +    "maximum": 4096,
        +    "minimum": 1,
        +    "type": "integer"
        +  },
        +  "scale": {
        +    "maximum": 4,
        +    "minimum": 1,
        +    "type": "integer"
        +  },
        +  "subtitle": {
        +    "type": "string"
        +  },
        +  "theme": {
        +    "default": "editorial",
        +    "enum": [
        +      "editorial",
        +      "clean",
        +      "noir",
        +      "loud",
        +      "soft",
        +      "technical"
        +    ],
        +    "type": "string"
        +  },
        +  "themeOverrides": {
        +    "additionalProperties": {},
        +    "properties": {
        +      "axisColor": {
        +        "type": "string"
        +      },
        +      "axisFrame": {
        +        "enum": [
        +          "none",
        +          "baseline",
        +          "lShape",
        +          "full"
        +        ],
        +        "type": "string"
        +      },
        +      "axisLabelColor": {
        +        "type": "string"
        +      },
        +      "axisLabelFontWeight": {
        +        "type": "string"
        +      },
        +      "axisLineWidth": {
        +        "type": "number"
        +      },
        +      "backgroundColor": {
        +        "type": "string"
        +      },
        +      "barCornerRadius": {
        +        "type": "number"
        +      },
        +      "barPadding": {
        +        "type": "number"
        +      },
        +      "colors": {
        +        "items": {
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "curve": {
        +        "enum": [
        +          "linear",
        +          "monotone",
        +          "step"
        +        ],
        +        "type": "string"
        +      },
        +      "dotRadius": {
        +        "type": "number"
        +      },
        +      "fontFamily": {
        +        "enum": [
        +          "ABeeZee",
        +          "ADLaM Display",
        +          "AR One Sans",
        +          "Abel",
        +          "Abhaya Libre",
        +          "Aboreto",
        +          "Abril Fatface",
        +          "Abyssinica SIL",
        +          "Aclonica",
        +          "Acme",
        +          "Actor",
        +          "Adamina",
        +          "Advent Pro",
        +          "Afacad",
        +          "Afacad Flux",
        +          "Agbalumo",
        +          "Agdasima",
        +          "Agu Display",
        +          "Aguafina Script",
        +          "Akatab",
        +          "Akaya Kanadaka",
        +          "Akaya Telivigala",
        +          "Akronim",
        +          "Akshar",
        +          "Akt",
        +          "Aladin",
        +          "Alan Sans",
        +          "Alata",
        +          "Alatsi",
        +          "Albert Sans",
        +          "Aldrich",
        +          "Alef",
        +          "Alegreya",
        +          "Alegreya SC",
        +          "Alegreya Sans",
        +          "Alegreya Sans SC",
        +          "Aleo",
        +          "Alex Brush",
        +          "Alexandria",
        +          "Alfa Slab One",
        +          "Alice",
        +          "Alien Block",
        +          "Alike",
        +          "Alike Angular",
        +          "Alkalami",
        +          "Alkatra",
        +          "Allan",
        +          "Allerta",
        +          "Allerta Stencil",
        +          "Allison",
        +          "Allkin",
        +          "Allura",
        +          "Almarai",
        +          "Almendra",
        +          "Almendra Display",
        +          "Almendra SC",
        +          "Alumni Sans",
        +          "Alumni Sans Collegiate One",
        +          "Alumni Sans Inline One",
        +          "Alumni Sans Pinstripe",
        +          "Alumni Sans SC",
        +          "Alyamama",
        +          "Amarante",
        +          "Amaranth",
        +          "Amarna",
        +          "Amatic SC",
        +          "Amethysta",
        +          "Amiko",
        +          "Amiri",
        +          "Amiri Quran",
        +          "Amita",
        +          "Anaheim",
        +          "Ancizar Sans",
        +          "Ancizar Serif",
        +          "Andada Pro",
        +          "Andika",
        +          "Anek Bangla",
        +          "Anek Devanagari",
        +          "Anek Gujarati",
        +          "Anek Gurmukhi",
        +          "Anek Kannada",
        +          "Anek Latin",
        +          "Anek Malayalam",
        +          "Anek Odia",
        +          "Anek Tamil",
        +          "Anek Telugu",
        +          "Angkor",
        +          "Annapurna SIL",
        +          "Annie Use Your Telescope",
        +          "Anonymous Pro",
        +          "Anta",
        +          "Antic",
        +          "Antic Didone",
        +          "Antic Slab",
        +          "Anton",
        +          "Anton SC",
        +          "Antonio",
        +          "Anuphan",
        +          "Anybody",
        +          "Aoboshi One",
        +          "Arapey",
        +          "Arbutus",
        +          "Arbutus Slab",
        +          "Architects Daughter",
        +          "Archivo",
        +          "Archivo Black",
        +          "Archivo Narrow",
        +          "Are You Serious",
        +          "Aref Ruqaa",
        +          "Aref Ruqaa Ink",
        +          "Arima",
        +          "Arimo",
        +          "Arizonia",
        +          "Armata",
        +          "Arsenal",
        +          "Arsenal SC",
        +          "Artifika",
        +          "Arvo",
        +          "Arya",
        +          "Asap",
        +          "Asap Condensed",
        +          "Asar",
        +          "Asimovian",
        +          "Asset",
        +          "Assistant",
        +          "Asta Sans",
        +          "Astloch",
        +          "Asul",
        +          "Athiti",
        +          "Atkinson Hyperlegible",
        +          "Atkinson Hyperlegible Mono",
        +          "Atkinson Hyperlegible Next",
        +          "Atma",
        +          "Atomic Age",
        +          "Aubrey",
        +          "Audiowide",
        +          "Autour One",
        +          "Average",
        +          "Average Sans",
        +          "Averia Gruesa Libre",
        +          "Averia Libre",
        +          "Averia Sans Libre",
        +          "Averia Serif Libre",
        +          "Azeret Mono",
        +          "B612",
        +          "B612 Mono",
        +          "BBH Bartle",
        +          "BBH Bogle",
        +          "BBH Hegarty",
        +          "BIZ UDGothic",
        +          "BIZ UDMincho",
        +          "BIZ UDPGothic",
        +          "BIZ UDPMincho",
        +          "BJCree",
        +          "Babylonica",
        +          "Bacasime Antique",
        +          "Bad Script",
        +          "Badeen Display",
        +          "Bagel Fat One",
        +          "Bahiana",
        +          "Bahianita",
        +          "Bai Jamjuree",
        +          "Bakbak One",
        +          "Ballet",
        +          "Baloo 2",
        +          "Baloo Bhai 2",
        +          "Baloo Bhaijaan 2",
        +          "Baloo Bhaina 2",
        +          "Baloo Chettan 2",
        +          "Baloo Da 2",
        +          "Baloo Paaji 2",
        +          "Baloo Tamma 2",
        +          "Baloo Tammudu 2",
        +          "Baloo Thambi 2",
        +          "Balsamiq Sans",
        +          "Balthazar",
        +          "Bangers",
        +          "Barlow",
        +          "Barlow Condensed",
        +          "Barlow Semi Condensed",
        +          "Barriecito",
        +          "Barrio",
        +          "Basic",
        +          "Baskervville",
        +          "Baskervville SC",
        +          "Battambang",
        +          "Baumans",
        +          "Bayon",
        +          "Be Vietnam Pro",
        +          "Beau Rivage",
        +          "Bebas Neue",
        +          "Beiruti",
        +          "Belanosima",
        +          "Belgrano",
        +          "Bellefair",
        +          "Belleza",
        +          "Bellota",
        +          "Bellota Text",
        +          "BenchNine",
        +          "Benne",
        +          "Bentham",
        +          "Berkshire Swash",
        +          "Besley",
        +          "Betania Patmos",
        +          "Betania Patmos GDL",
        +          "Betania Patmos In",
        +          "Betania Patmos In GDL",
        +          "Beth Ellen",
        +          "Bevan",
        +          "BhuTuka Expanded One",
        +          "Big Shoulders",
        +          "Big Shoulders Inline",
        +          "Big Shoulders Stencil",
        +          "Bigelow Rules",
        +          "Bigshot One",
        +          "Bilbo",
        +          "Bilbo Swash Caps",
        +          "BioRhyme",
        +          "BioRhyme Expanded",
        +          "Birthstone",
        +          "Birthstone Bounce",
        +          "Biryani",
        +          "Bitcount",
        +          "Bitcount Grid Double",
        +          "Bitcount Grid Double Ink",
        +          "Bitcount Grid Single",
        +          "Bitcount Grid Single Ink",
        +          "Bitcount Ink",
        +          "Bitcount Prop Double",
        +          "Bitcount Prop Double Ink",
        +          "Bitcount Prop Single",
        +          "Bitcount Prop Single Ink",
        +          "Bitcount Single",
        +          "Bitcount Single Ink",
        +          "Bitter",
        +          "Black And White Picture",
        +          "Black Han Sans",
        +          "Black Ops One",
        +          "Blaka",
        +          "Blaka Hollow",
        +          "Blaka Ink",
        +          "Blinker",
        +          "Bodoni Moda",
        +          "Bodoni Moda SC",
        +          "Bokor",
        +          "Boldonse",
        +          "Bona Nova",
        +          "Bona Nova SC",
        +          "Bonbon",
        +          "Bonheur Royale",
        +          "Boogaloo",
        +          "Borel",
        +          "Bowlby One",
        +          "Bowlby One SC",
        +          "Bpmf Huninn",
        +          "Bpmf Iansui",
        +          "Bpmf Zihi Kai Std",
        +          "Braah One",
        +          "Brawler",
        +          "Bree Serif",
        +          "Bricolage Grotesque",
        +          "Bruno Ace",
        +          "Bruno Ace SC",
        +          "Brygada 1918",
        +          "Bubblegum Sans",
        +          "Bubbler One",
        +          "Buda",
        +          "Buenard",
        +          "Bungee",
        +          "Bungee Hairline",
        +          "Bungee Inline",
        +          "Bungee Outline",
        +          "Bungee Shade",
        +          "Bungee Spice",
        +          "Bungee Tint",
        +          "Butcherman",
        +          "Butterfly Kids",
        +          "Bytesized",
        +          "Cabin",
        +          "Cabin Condensed",
        +          "Cabin Sketch",
        +          "Cactus Classical Serif",
        +          "Caesar Dressing",
        +          "Cagliostro",
        +          "Cairo",
        +          "Cairo Play",
        +          "Cal Sans",
        +          "Caladea",
        +          "Calistoga",
        +          "Calligraffitti",
        +          "Cambay",
        +          "Cambo",
        +          "Candal",
        +          "Cantarell",
        +          "Cantata One",
        +          "Cantora One",
        +          "Caprasimo",
        +          "Capriola",
        +          "Caramel",
        +          "Carattere",
        +          "Cardo",
        +          "Carlito",
        +          "Carme",
        +          "Carrois Gothic",
        +          "Carrois Gothic SC",
        +          "Carter One",
        +          "Cascadia Code",
        +          "Cascadia Mono",
        +          "Castoro",
        +          "Castoro Titling",
        +          "Catamaran",
        +          "Caudex",
        +          "Cause",
        +          "Caveat",
        +          "Caveat Brush",
        +          "Cedarville Cursive",
        +          "Ceviche One",
        +          "Chakra Petch",
        +          "Changa",
        +          "Changa One",
        +          "Chango",
        +          "Charis SIL",
        +          "Charm",
        +          "Charmonman",
        +          "Chathura",
        +          "Chau Philomene One",
        +          "Chela One",
        +          "Chelsea Market",
        +          "Chenla",
        +          "Cherish",
        +          "Cherry Bomb One",
        +          "Cherry Cream Soda",
        +          "Cherry Swash",
        +          "Chewy",
        +          "Chicle",
        +          "Chilanka",
        +          "Chiron GoRound TC",
        +          "Chiron Hei HK",
        +          "Chiron Sung HK",
        +          "Chivo",
        +          "Chivo Mono",
        +          "Chocolate Classical Sans",
        +          "Chokokutai",
        +          "Chonburi",
        +          "Cinzel",
        +          "Cinzel Decorative",
        +          "Clicker Script",
        +          "Climate Crisis",
        +          "Coda",
        +          "Codystar",
        +          "Coiny",
        +          "Combo",
        +          "Comfortaa",
        +          "Comforter",
        +          "Comforter Brush",
        +          "Comic Neue",
        +          "Comic Relief",
        +          "Coming Soon",
        +          "Comme",
        +          "Commissioner",
        +          "Concert One",
        +          "Condiment",
        +          "Content",
        +          "Contrail One",
        +          "Convergence",
        +          "Cookie",
        +          "Copse",
        +          "Coral Pixels",
        +          "Corben",
        +          "Corinthia",
        +          "Cormorant",
        +          "Cormorant Garamond",
        +          "Cormorant Infant",
        +          "Cormorant SC",
        +          "Cormorant Unicase",
        +          "Cormorant Upright",
        +          "Cossette Texte",
        +          "Cossette Titre",
        +          "Courgette",
        +          "Courier Prime",
        +          "Cousine",
        +          "Coustard",
        +          "Covered By Your Grace",
        +          "Crafty Girls",
        +          "Creepster",
        +          "Crete Round",
        +          "Crimson Pro",
        +          "Crimson Text",
        +          "Croissant One",
        +          "Crushed",
        +          "Cuprum",
        +          "Cute Font",
        +          "Cutive",
        +          "Cutive Mono",
        +          "DM Mono",
        +          "DM Sans",
        +          "DM Serif Display",
        +          "DM Serif Text",
        +          "Dai Banna SIL",
        +          "Damion",
        +          "Dancing Script",
        +          "Danfo",
        +          "Dangrek",
        +          "Darker Grotesque",
        +          "Darumadrop One",
        +          "Datatype",
        +          "David Libre",
        +          "Dawning of a New Day",
        +          "Days One",
        +          "Dekko",
        +          "Dela Gothic One",
        +          "Delicious Handrawn",
        +          "Delius",
        +          "Delius Swash Caps",
        +          "Delius Unicase",
        +          "Della Respira",
        +          "Denk One",
        +          "Devonshire",
        +          "Dhurjati",
        +          "Didact Gothic",
        +          "Diphylleia",
        +          "Diplomata",
        +          "Diplomata SC",
        +          "Do Hyeon",
        +          "Dokdo",
        +          "Domine",
        +          "Donegal One",
        +          "Dongle",
        +          "Doppio One",
        +          "Dorsa",
        +          "Dosis",
        +          "DotGothic16",
        +          "Doto",
        +          "Dr Sugiyama",
        +          "Duru Sans",
        +          "DynaPuff",
        +          "Dynalight",
        +          "EB Garamond",
        +          "Eagle Lake",
        +          "East Sea Dokdo",
        +          "Eater",
        +          "Economica",
        +          "Eczar",
        +          "Edu AU VIC WA NT Arrows",
        +          "Edu AU VIC WA NT Dots",
        +          "Edu AU VIC WA NT Guides",
        +          "Edu AU VIC WA NT Hand",
        +          "Edu AU VIC WA NT Pre",
        +          "Edu NSW ACT Cursive",
        +          "Edu NSW ACT Foundation",
        +          "Edu NSW ACT Hand Pre",
        +          "Edu QLD Beginner",
        +          "Edu QLD Hand",
        +          "Edu SA Beginner",
        +          "Edu SA Hand",
        +          "Edu TAS Beginner",
        +          "Edu VIC WA NT Beginner",
        +          "Edu VIC WA NT Hand",
        +          "Edu VIC WA NT Hand Pre",
        +          "El Messiri",
        +          "Electrolize",
        +          "Elms Sans",
        +          "Elsie",
        +          "Elsie Swash Caps",
        +          "Emblema One",
        +          "Emilys Candy",
        +          "Encode Sans",
        +          "Encode Sans Condensed",
        +          "Encode Sans Expanded",
        +          "Encode Sans SC",
        +          "Encode Sans Semi Condensed",
        +          "Encode Sans Semi Expanded",
        +          "Engagement",
        +          "Englebert",
        +          "Enriqueta",
        +          "Ephesis",
        +          "Epilogue",
        +          "Epunda Sans",
        +          "Epunda Slab",
        +          "Erica One",
        +          "Esteban",
        +          "Estedad",
        +          "Estonia",
        +          "Euphoria Script",
        +          "Ewert",
        +          "Exile",
        +          "Exo",
        +          "Exo 2",
        +          "Expletus Sans",
        +          "Explora",
        +          "Faculty Glyphic",
        +          "Fahkwang",
        +          "Familjen Grotesk",
        +          "Fanwood Text",
        +          "Farro",
        +          "Farsan",
        +          "Fascinate",
        +          "Fascinate Inline",
        +          "Faster One",
        +          "Fasthand",
        +          "Fauna One",
        +          "Faustina",
        +          "Federant",
        +          "Federo",
        +          "Felipa",
        +          "Fenix",
        +          "Festive",
        +          "Figtree",
        +          "Finger Paint",
        +          "Finlandica Headline",
        +          "Finlandica Text",
        +          "Fira Code",
        +          "Fira Mono",
        +          "Fira Sans",
        +          "Fira Sans Condensed",
        +          "Fira Sans Extra Condensed",
        +          "Fjalla One",
        +          "Fjord One",
        +          "Flamenco",
        +          "Flavors",
        +          "Fleur De Leah",
        +          "Flow Block",
        +          "Flow Circular",
        +          "Flow Rounded",
        +          "Foldit",
        +          "Fondamento",
        +          "Fontdiner Swanky",
        +          "Forum",
        +          "Fragment Mono",
        +          "Francois One",
        +          "Frank Ruhl Libre",
        +          "Fraunces",
        +          "Freckle Face",
        +          "Fredericka the Great",
        +          "Fredoka",
        +          "Freehand",
        +          "Freeman",
        +          "Fresca",
        +          "Frijole",
        +          "Fruktur",
        +          "Fugaz One",
        +          "Fuggles",
        +          "Funnel Display",
        +          "Funnel Sans",
        +          "Fustat",
        +          "Fuzzy Bubbles",
        +          "GFS Didot",
        +          "GFS Neohellenic",
        +          "Ga Maamli",
        +          "Gabarito",
        +          "Gabriela",
        +          "Gaegu",
        +          "Gafata",
        +          "Gajraj One",
        +          "Galada",
        +          "Galdeano",
        +          "Galindo",
        +          "Gamja Flower",
        +          "Gantari",
        +          "Gasoek One",
        +          "Gayathri",
        +          "Geist",
        +          "Geist Mono",
        +          "Geist Pixel",
        +          "Gelasio",
        +          "Gemunu Libre",
        +          "Genos",
        +          "Gentium Book Plus",
        +          "Gentium Plus",
        +          "Geo",
        +          "Geologica",
        +          "Geom",
        +          "Geomini",
        +          "Georama",
        +          "Geostar",
        +          "Geostar Fill",
        +          "Germania One",
        +          "Gideon Roman",
        +          "Gidole",
        +          "Gidugu",
        +          "Gilda Display",
        +          "Girassol",
        +          "Give You Glory",
        +          "Glass Antiqua",
        +          "Glegoo",
        +          "Gloock",
        +          "Gloria Hallelujah",
        +          "Glory",
        +          "Gluten",
        +          "Goblin One",
        +          "Gochi Hand",
        +          "Goldman",
        +          "Golos Text",
        +          "Google Sans",
        +          "Google Sans Code",
        +          "Google Sans Flex",
        +          "Gorditas",
        +          "Gothic A1",
        +          "Gotu",
        +          "Goudy Bookletter 1911",
        +          "Gowun Batang",
        +          "Gowun Dodum",
        +          "Graduate",
        +          "Grand Hotel",
        +          "Grandiflora One",
        +          "Grandstander",
        +          "Grape Nuts",
        +          "Gravitas One",
        +          "Great Vibes",
        +          "Grechen Fuemen",
        +          "Grenze",
        +          "Grenze Gotisch",
        +          "Grey Qo",
        +          "Griffy",
        +          "Gruppo",
        +          "Gudea",
        +          "Gugi",
        +          "Gulzar",
        +          "Gupter",
        +          "Gurajada",
        +          "Gveret Levin",
        +          "Gwendolyn",
        +          "Habibi",
        +          "Hachi Maru Pop",
        +          "Hahmlet",
        +          "Halant",
        +          "Hammersmith One",
        +          "Hanalei",
        +          "Hanalei Fill",
        +          "Handjet",
        +          "Handlee",
        +          "Hanken Grotesk",
        +          "Hanuman",
        +          "Happy Monkey",
        +          "Harmattan",
        +          "Headland One",
        +          "Hedvig Letters Sans",
        +          "Hedvig Letters Serif",
        +          "Heebo",
        +          "Henny Penny",
        +          "Hepta Slab",
        +          "Herr Von Muellerhoff",
        +          "Hi Melody",
        +          "Hibur Mono",
        +          "Hina Mincho",
        +          "Hind",
        +          "Hind Guntur",
        +          "Hind Madurai",
        +          "Hind Mysuru",
        +          "Hind Siliguri",
        +          "Hind Vadodara",
        +          "Holtwood One SC",
        +          "Homemade Apple",
        +          "Homenaje",
        +          "Honk",
        +          "Host Grotesk",
        +          "Hubballi",
        +          "Hubot Sans",
        +          "Huninn",
        +          "Hurricane",
        +          "IBM Plex Mono",
        +          "IBM Plex Sans",
        +          "IBM Plex Sans Arabic",
        +          "IBM Plex Sans Condensed",
        +          "IBM Plex Sans Devanagari",
        +          "IBM Plex Sans Hebrew",
        +          "IBM Plex Sans JP",
        +          "IBM Plex Sans KR",
        +          "IBM Plex Sans Thai",
        +          "IBM Plex Sans Thai Looped",
        +          "IBM Plex Serif",
        +          "IM Fell DW Pica",
        +          "IM Fell DW Pica SC",
        +          "IM Fell Double Pica",
        +          "IM Fell Double Pica SC",
        +          "IM Fell English",
        +          "IM Fell English SC",
        +          "IM Fell French Canon",
        +          "IM Fell French Canon SC",
        +          "IM Fell Great Primer",
        +          "IM Fell Great Primer SC",
        +          "Iansui",
        +          "Ibarra Real Nova",
        +          "Iceberg",
        +          "Iceland",
        +          "Idiqlat",
        +          "Imbue",
        +          "Imperial Script",
        +          "Imprima",
        +          "Inclusive Sans",
        +          "Inconsolata",
        +          "Inder",
        +          "Indie Flower",
        +          "Ingrid Darling",
        +          "Inika",
        +          "Inknut Antiqua",
        +          "Inria Sans",
        +          "Inria Serif",
        +          "Inspiration",
        +          "Instrument Sans",
        +          "Instrument Serif",
        +          "Intel One Mono",
        +          "Inter",
        +          "Inter Tight",
        +          "Iosevka Charon",
        +          "Iosevka Charon Mono",
        +          "Irish Grover",
        +          "Island Moments",
        +          "Istok Web",
        +          "Italiana",
        +          "Italianno",
        +          "Itim",
        +          "Jacquard 12",
        +          "Jacquard 12 Charted",
        +          "Jacquard 24",
        +          "Jacquard 24 Charted",
        +          "Jacquarda Bastarda 9",
        +          "Jacquarda Bastarda 9 Charted",
        +          "Jacques Francois",
        +          "Jacques Francois Shadow",
        +          "Jaini",
        +          "Jaini Purva",
        +          "Jaldi",
        +          "Jaro",
        +          "Jersey 10",
        +          "Jersey 10 Charted",
        +          "Jersey 15",
        +          "Jersey 15 Charted",
        +          "Jersey 20",
        +          "Jersey 20 Charted",
        +          "Jersey 25",
        +          "Jersey 25 Charted",
        +          "JetBrains Mono",
        +          "Jim Nightshade",
        +          "Joan",
        +          "Jockey One",
        +          "Jolly Lodger",
        +          "Jomhuria",
        +          "Jomolhari",
        +          "Josefin Sans",
        +          "Josefin Slab",
        +          "Jost",
        +          "Joti One",
        +          "Jua",
        +          "Judson",
        +          "Julee",
        +          "Julius Sans One",
        +          "Junge",
        +          "Jura",
        +          "Just Another Hand",
        +          "Just Me Again Down Here",
        +          "K2D",
        +          "Kablammo",
        +          "Kadwa",
        +          "Kaisei Decol",
        +          "Kaisei HarunoUmi",
        +          "Kaisei Opti",
        +          "Kaisei Tokumin",
        +          "Kalam",
        +          "Kalnia",
        +          "Kalnia Glaze",
        +          "Kameron",
        +          "Kanchenjunga",
        +          "Kanit",
        +          "Kantumruy Pro",
        +          "Kapakana",
        +          "Karantina",
        +          "Karla",
        +          "Karla Tamil Inclined",
        +          "Karla Tamil Upright",
        +          "Karma",
        +          "Katibeh",
        +          "Kaushan Script",
        +          "Kavivanar",
        +          "Kavoon",
        +          "Kay Pho Du",
        +          "Kdam Thmor Pro",
        +          "Keania One",
        +          "Kedebideri",
        +          "Kelly Slab",
        +          "Kenia",
        +          "Khand",
        +          "Khmer",
        +          "Khula",
        +          "Kings",
        +          "Kirang Haerang",
        +          "Kite One",
        +          "Kiwi Maru",
        +          "Klee One",
        +          "Knewave",
        +          "KoHo",
        +          "Kodchasan",
        +          "Kode Mono",
        +          "Koh Santepheap",
        +          "Kolker Brush",
        +          "Konkhmer Sleokchher",
        +          "Kosugi",
        +          "Kosugi Maru",
        +          "Kotta One",
        +          "Koulen",
        +          "Kranky",
        +          "Kreon",
        +          "Kristi",
        +          "Krona One",
        +          "Krub",
        +          "Kufam",
        +          "Kulim Park",
        +          "Kumar One",
        +          "Kumar One Outline",
        +          "Kumbh Sans",
        +          "Kurale",
        +          "LINE Seed JP",
        +          "LXGW Marker Gothic",
        +          "LXGW WenKai Mono TC",
        +          "LXGW WenKai TC",
        +          "La Belle Aurore",
        +          "Labrada",
        +          "Lacquer",
        +          "Laila",
        +          "Lakki Reddy",
        +          "Lalezar",
        +          "Lancelot",
        +          "Langar",
        +          "Lateef",
        +          "Lato",
        +          "Lavishly Yours",
        +          "League Gothic",
        +          "League Script",
        +          "League Spartan",
        +          "Leckerli One",
        +          "Ledger",
        +          "Lekton",
        +          "Lemon",
        +          "Lemonada",
        +          "Lexend",
        +          "Lexend Deca",
        +          "Lexend Exa",
        +          "Lexend Giga",
        +          "Lexend Mega",
        +          "Lexend Peta",
        +          "Lexend Tera",
        +          "Lexend Zetta",
        +          "Libertinus Keyboard",
        +          "Libertinus Math",
        +          "Libertinus Mono",
        +          "Libertinus Sans",
        +          "Libertinus Serif",
        +          "Libertinus Serif Display",
        +          "Libre Barcode 128",
        +          "Libre Barcode 128 Text",
        +          "Libre Barcode 39",
        +          "Libre Barcode 39 Extended",
        +          "Libre Barcode 39 Extended Text",
        +          "Libre Barcode 39 Text",
        +          "Libre Barcode EAN13 Text",
        +          "Libre Baskerville",
        +          "Libre Bodoni",
        +          "Libre Caslon Display",
        +          "Libre Caslon Text",
        +          "Libre Franklin",
        +          "Licorice",
        +          "Life Savers",
        +          "Lilex",
        +          "Lilita One",
        +          "Lily Script One",
        +          "Limelight",
        +          "Linden Hill",
        +          "Linefont",
        +          "Lisu Bosa",
        +          "Liter",
        +          "Literata",
        +          "Liu Jian Mao Cao",
        +          "Livvic",
        +          "Lobster",
        +          "Lobster Two",
        +          "Londrina Outline",
        +          "Londrina Shadow",
        +          "Londrina Sketch",
        +          "Londrina Solid",
        +          "Long Cang",
        +          "Lora",
        +          "Love Light",
        +          "Love Ya Like A Sister",
        +          "Loved by the King",
        +          "Lovers Quarrel",
        +          "Luckiest Guy",
        +          "Lugrasimo",
        +          "Lumanosimo",
        +          "Lunasima",
        +          "Lusitana",
        +          "Lustria",
        +          "Luxurious Roman",
        +          "Luxurious Script",
        +          "M PLUS 1",
        +          "M PLUS 1 Code",
        +          "M PLUS 1p",
        +          "M PLUS 2",
        +          "M PLUS Code Latin",
        +          "M PLUS Rounded 1c",
        +          "M PLUS U",
        +          "Ma Shan Zheng",
        +          "Macondo",
        +          "Macondo Swash Caps",
        +          "Mada",
        +          "Madimi One",
        +          "Magra",
        +          "Maiden Orange",
        +          "Maitree",
        +          "Major Mono Display",
        +          "Mako",
        +          "Mali",
        +          "Mallanna",
        +          "Maname",
        +          "Mandali",
        +          "Manjari",
        +          "Manrope",
        +          "Mansalva",
        +          "Manuale",
        +          "Manufacturing Consent",
        +          "Marcellus",
        +          "Marcellus SC",
        +          "Marck Script",
        +          "Margarine",
        +          "Marhey",
        +          "Markazi Text",
        +          "Marko One",
        +          "Marmelad",
        +          "Martel",
        +          "Martel Sans",
        +          "Martian Mono",
        +          "Marvel",
        +          "Matangi",
        +          "Mate",
        +          "Mate SC",
        +          "Matemasie",
        +          "Material Icons",
        +          "Material Icons Outlined",
        +          "Material Icons Round",
        +          "Material Icons Sharp",
        +          "Material Icons Two Tone",
        +          "Material Symbols",
        +          "Material Symbols Outlined",
        +          "Material Symbols Rounded",
        +          "Material Symbols Sharp",
        +          "Maven Pro",
        +          "McLaren",
        +          "Mea Culpa",
        +          "Meddon",
        +          "MedievalSharp",
        +          "Medula One",
        +          "Meera Inimai",
        +          "Megrim",
        +          "Meie Script",
        +          "Menbere",
        +          "Meow Script",
        +          "Merienda",
        +          "Merriweather",
        +          "Merriweather Sans",
        +          "Metal",
        +          "Metal Mania",
        +          "Metamorphous",
        +          "Metrophobic",
        +          "Michroma",
        +          "Micro 5",
        +          "Micro 5 Charted",
        +          "Milonga",
        +          "Miltonian",
        +          "Miltonian Tattoo",
        +          "Mina",
        +          "Mingzat",
        +          "Miniver",
        +          "Miranda Sans",
        +          "Miriam Libre",
        +          "Mirza",
        +          "Miss Fajardose",
        +          "Mitr",
        +          "Mochiy Pop One",
        +          "Mochiy Pop P One",
        +          "Modak",
        +          "Modern Antiqua",
        +          "Moderustic",
        +          "Mogra",
        +          "Mohave",
        +          "Moirai One",
        +          "Molengo",
        +          "Molle",
        +          "Momo Signature",
        +          "Momo Trust Display",
        +          "Momo Trust Sans",
        +          "Mona Sans",
        +          "Monda",
        +          "Monofett",
        +          "Monomakh",
        +          "Monomaniac One",
        +          "Monoton",
        +          "Monsieur La Doulaise",
        +          "Montaga",
        +          "Montagu Slab",
        +          "MonteCarlo",
        +          "Montenegrin Gothic One",
        +          "Montez",
        +          "Montserrat",
        +          "Montserrat Alternates",
        +          "Montserrat Underline",
        +          "Moo Lah Lah",
        +          "Mooli",
        +          "Moon Dance",
        +          "Moul",
        +          "Moulpali",
        +          "Mountains of Christmas",
        +          "Mouse Memoirs",
        +          "Mozilla Headline",
        +          "Mozilla Text",
        +          "Mr Bedfort",
        +          "Mr Dafoe",
        +          "Mr De Haviland",
        +          "Mrs Saint Delafield",
        +          "Mrs Sheppards",
        +          "Ms Madi",
        +          "Mukta",
        +          "Mukta Mahee",
        +          "Mukta Malar",
        +          "Mukta Vaani",
        +          "Mulish",
        +          "Murecho",
        +          "MuseoModerno",
        +          "My Soul",
        +          "Mynerve",
        +          "Mystery Quest",
        +          "NTR",
        +          "Nabla",
        +          "Namdhinggo",
        +          "Nanum Brush Script",
        +          "Nanum Gothic",
        +          "Nanum Gothic Coding",
        +          "Nanum Myeongjo",
        +          "Nanum Pen Script",
        +          "Narnoor",
        +          "Nata Sans",
        +          "National Park",
        +          "Neonderthaw",
        +          "Nerko One",
        +          "Neucha",
        +          "Neuton",
        +          "New Amsterdam",
        +          "New Rocker",
        +          "New Tegomin",
        +          "News Cycle",
        +          "Newsreader",
        +          "Niconne",
        +          "Niramit",
        +          "Nixie One",
        +          "Nobile",
        +          "Nokora",
        +          "Norican",
        +          "Nosifer",
        +          "Notable",
        +          "Nothing You Could Do",
        +          "Noticia Text",
        +          "Noto Color Emoji",
        +          "Noto Emoji",
        +          "Noto Kufi Arabic",
        +          "Noto Music",
        +          "Noto Naskh Arabic",
        +          "Noto Nastaliq Urdu",
        +          "Noto Rashi Hebrew",
        +          "Noto Sans",
        +          "Noto Sans Adlam",
        +          "Noto Sans Adlam Unjoined",
        +          "Noto Sans Anatolian Hieroglyphs",
        +          "Noto Sans Arabic",
        +          "Noto Sans Armenian",
        +          "Noto Sans Avestan",
        +          "Noto Sans Balinese",
        +          "Noto Sans Bamum",
        +          "Noto Sans Bassa Vah",
        +          "Noto Sans Batak",
        +          "Noto Sans Bengali",
        +          "Noto Sans Bhaiksuki",
        +          "Noto Sans Brahmi",
        +          "Noto Sans Buginese",
        +          "Noto Sans Buhid",
        +          "Noto Sans Canadian Aboriginal",
        +          "Noto Sans Carian",
        +          "Noto Sans Caucasian Albanian",
        +          "Noto Sans Chakma",
        +          "Noto Sans Cham",
        +          "Noto Sans Cherokee",
        +          "Noto Sans Chorasmian",
        +          "Noto Sans Coptic",
        +          "Noto Sans Cuneiform",
        +          "Noto Sans Cypriot",
        +          "Noto Sans Cypro Minoan",
        +          "Noto Sans Deseret",
        +          "Noto Sans Devanagari",
        +          "Noto Sans Display",
        +          "Noto Sans Duployan",
        +          "Noto Sans Egyptian Hieroglyphs",
        +          "Noto Sans Elbasan",
        +          "Noto Sans Elymaic",
        +          "Noto Sans Ethiopic",
        +          "Noto Sans Georgian",
        +          "Noto Sans Glagolitic",
        +          "Noto Sans Gothic",
        +          "Noto Sans Grantha",
        +          "Noto Sans Gujarati",
        +          "Noto Sans Gunjala Gondi",
        +          "Noto Sans Gurmukhi",
        +          "Noto Sans HK",
        +          "Noto Sans Hanifi Rohingya",
        +          "Noto Sans Hanunoo",
        +          "Noto Sans Hatran",
        +          "Noto Sans Hebrew",
        +          "Noto Sans Imperial Aramaic",
        +          "Noto Sans Indic Siyaq Numbers",
        +          "Noto Sans Inscriptional Pahlavi",
        +          "Noto Sans Inscriptional Parthian",
        +          "Noto Sans JP",
        +          "Noto Sans Javanese",
        +          "Noto Sans KR",
        +          "Noto Sans Kaithi",
        +          "Noto Sans Kannada",
        +          "Noto Sans Kawi",
        +          "Noto Sans Kayah Li",
        +          "Noto Sans Kharoshthi",
        +          "Noto Sans Khmer",
        +          "Noto Sans Khojki",
        +          "Noto Sans Khudawadi",
        +          "Noto Sans Lao",
        +          "Noto Sans Lao Looped",
        +          "Noto Sans Lepcha",
        +          "Noto Sans Limbu",
        +          "Noto Sans Linear A",
        +          "Noto Sans Linear B",
        +          "Noto Sans Lisu",
        +          "Noto Sans Lycian",
        +          "Noto Sans Lydian",
        +          "Noto Sans Mahajani",
        +          "Noto Sans Malayalam",
        +          "Noto Sans Mandaic",
        +          "Noto Sans Manichaean",
        +          "Noto Sans Marchen",
        +          "Noto Sans Masaram Gondi",
        +          "Noto Sans Math",
        +          "Noto Sans Mayan Numerals",
        +          "Noto Sans Medefaidrin",
        +          "Noto Sans Meetei Mayek",
        +          "Noto Sans Mende Kikakui",
        +          "Noto Sans Meroitic",
        +          "Noto Sans Miao",
        +          "Noto Sans Modi",
        +          "Noto Sans Mongolian",
        +          "Noto Sans Mono",
        +          "Noto Sans Mro",
        +          "Noto Sans Multani",
        +          "Noto Sans Myanmar",
        +          "Noto Sans NKo",
        +          "Noto Sans NKo Unjoined",
        +          "Noto Sans Nabataean",
        +          "Noto Sans Nag Mundari",
        +          "Noto Sans Nandinagari",
        +          "Noto Sans New Tai Lue",
        +          "Noto Sans Newa",
        +          "Noto Sans Nushu",
        +          "Noto Sans Ogham",
        +          "Noto Sans Ol Chiki",
        +          "Noto Sans Old Hungarian",
        +          "Noto Sans Old Italic",
        +          "Noto Sans Old North Arabian",
        +          "Noto Sans Old Permic",
        +          "Noto Sans Old Persian",
        +          "Noto Sans Old Sogdian",
        +          "Noto Sans Old South Arabian",
        +          "Noto Sans Old Turkic",
        +          "Noto Sans Oriya",
        +          "Noto Sans Osage",
        +          "Noto Sans Osmanya",
        +          "Noto Sans Pahawh Hmong",
        +          "Noto Sans Palmyrene",
        +          "Noto Sans Pau Cin Hau",
        +          "Noto Sans PhagsPa",
        +          "Noto Sans Phoenician",
        +          "Noto Sans Psalter Pahlavi",
        +          "Noto Sans Rejang",
        +          "Noto Sans Runic",
        +          "Noto Sans SC",
        +          "Noto Sans Samaritan",
        +          "Noto Sans Saurashtra",
        +          "Noto Sans Sharada",
        +          "Noto Sans Shavian",
        +          "Noto Sans Siddham",
        +          "Noto Sans SignWriting",
        +          "Noto Sans Sinhala",
        +          "Noto Sans Sogdian",
        +          "Noto Sans Sora Sompeng",
        +          "Noto Sans Soyombo",
        +          "Noto Sans Sundanese",
        +          "Noto Sans Sunuwar",
        +          "Noto Sans Syloti Nagri",
        +          "Noto Sans Symbols",
        +          "Noto Sans Symbols 2",
        +          "Noto Sans Syriac",
        +          "Noto Sans Syriac Eastern",
        +          "Noto Sans Syriac Western",
        +          "Noto Sans TC",
        +          "Noto Sans Tagalog",
        +          "Noto Sans Tagbanwa",
        +          "Noto Sans Tai Le",
        +          "Noto Sans Tai Tham",
        +          "Noto Sans Tai Viet",
        +          "Noto Sans Takri",
        +          "Noto Sans Tamil",
        +          "Noto Sans Tamil Supplement",
        +          "Noto Sans Tangsa",
        +          "Noto Sans Telugu",
        +          "Noto Sans Thaana",
        +          "Noto Sans Thai",
        +          "Noto Sans Thai Looped",
        +          "Noto Sans Tifinagh",
        +          "Noto Sans Tirhuta",
        +          "Noto Sans Ugaritic",
        +          "Noto Sans Vai",
        +          "Noto Sans Vithkuqi",
        +          "Noto Sans Wancho",
        +          "Noto Sans Warang Citi",
        +          "Noto Sans Yi",
        +          "Noto Sans Zanabazar Square",
        +          "Noto Serif",
        +          "Noto Serif Ahom",
        +          "Noto Serif Armenian",
        +          "Noto Serif Balinese",
        +          "Noto Serif Bengali",
        +          "Noto Serif Devanagari",
        +          "Noto Serif Display",
        +          "Noto Serif Dives Akuru",
        +          "Noto Serif Dogra",
        +          "Noto Serif Ethiopic",
        +          "Noto Serif Georgian",
        +          "Noto Serif Grantha",
        +          "Noto Serif Gujarati",
        +          "Noto Serif Gurmukhi",
        +          "Noto Serif HK",
        +          "Noto Serif Hebrew",
        +          "Noto Serif Hentaigana",
        +          "Noto Serif JP",
        +          "Noto Serif KR",
        +          "Noto Serif Kannada",
        +          "Noto Serif Khitan Small Script",
        +          "Noto Serif Khmer",
        +          "Noto Serif Khojki",
        +          "Noto Serif Lao",
        +          "Noto Serif Makasar",
        +          "Noto Serif Malayalam",
        +          "Noto Serif Myanmar",
        +          "Noto Serif NP Hmong",
        +          "Noto Serif Old Uyghur",
        +          "Noto Serif Oriya",
        +          "Noto Serif Ottoman Siyaq",
        +          "Noto Serif SC",
        +          "Noto Serif Sinhala",
        +          "Noto Serif TC",
        +          "Noto Serif Tamil",
        +          "Noto Serif Tangut",
        +          "Noto Serif Telugu",
        +          "Noto Serif Thai",
        +          "Noto Serif Tibetan",
        +          "Noto Serif Todhri",
        +          "Noto Serif Toto",
        +          "Noto Serif Vithkuqi",
        +          "Noto Serif Yezidi",
        +          "Noto Traditional Nushu",
        +          "Noto Znamenny Musical Notation",
        +          "Nova Cut",
        +          "Nova Flat",
        +          "Nova Mono",
        +          "Nova Oval",
        +          "Nova Round",
        +          "Nova Script",
        +          "Nova Slim",
        +          "Nova Square",
        +          "Numans",
        +          "Nunito",
        +          "Nunito Sans",
        +          "Nuosu SIL",
        +          "Odibee Sans",
        +          "Odor Mean Chey",
        +          "Offside",
        +          "Oi",
        +          "Ojuju",
        +          "Old Standard TT",
        +          "Oldenburg",
        +          "Ole",
        +          "Oleo Script",
        +          "Oleo Script Swash Caps",
        +          "Onest",
        +          "Oooh Baby",
        +          "Open Sans",
        +          "Oranienbaum",
        +          "Orbit",
        +          "Orbitron",
        +          "Oregano",
        +          "Orelega One",
        +          "Orienta",
        +          "Original Surfer",
        +          "Oswald",
        +          "Outfit",
        +          "Over the Rainbow",
        +          "Overlock",
        +          "Overlock SC",
        +          "Overpass",
        +          "Overpass Mono",
        +          "Ovo",
        +          "Oxanium",
        +          "Oxygen",
        +          "Oxygen Mono",
        +          "PT Mono",
        +          "PT Sans",
        +          "PT Sans Caption",
        +          "PT Sans Narrow",
        +          "PT Serif",
        +          "PT Serif Caption",
        +          "Pacifico",
        +          "Padauk",
        +          "Padyakke Expanded One",
        +          "Palanquin",
        +          "Palanquin Dark",
        +          "Palette Mosaic",
        +          "Pangolin",
        +          "Paprika",
        +          "Parastoo",
        +          "Parisienne",
        +          "Parkinsans",
        +          "Passero One",
        +          "Passion One",
        +          "Passions Conflict",
        +          "Pathway Extreme",
        +          "Pathway Gothic One",
        +          "Patrick Hand",
        +          "Patrick Hand SC",
        +          "Pattaya",
        +          "Patua One",
        +          "Pavanam",
        +          "Paytone One",
        +          "Peddana",
        +          "Peralta",
        +          "Permanent Marker",
        +          "Petemoss",
        +          "Petit Formal Script",
        +          "Petrona",
        +          "Phetsarath",
        +          "Philosopher",
        +          "Phudu",
        +          "Piazzolla",
        +          "Piedra",
        +          "Pinyon Script",
        +          "Pirata One",
        +          "Pixelify Sans",
        +          "Plaster",
        +          "Platypi",
        +          "Play",
        +          "Playball",
        +          "Playfair",
        +          "Playfair Display",
        +          "Playfair Display SC",
        +          "Playpen Sans",
        +          "Playpen Sans Arabic",
        +          "Playpen Sans Deva",
        +          "Playpen Sans Hebrew",
        +          "Playpen Sans Thai",
        +          "Playwrite AR",
        +          "Playwrite AR Guides",
        +          "Playwrite AT",
        +          "Playwrite AT Guides",
        +          "Playwrite AU NSW",
        +          "Playwrite AU NSW Guides",
        +          "Playwrite AU QLD",
        +          "Playwrite AU QLD Guides",
        +          "Playwrite AU SA",
        +          "Playwrite AU SA Guides",
        +          "Playwrite AU TAS",
        +          "Playwrite AU TAS Guides",
        +          "Playwrite AU VIC",
        +          "Playwrite AU VIC Guides",
        +          "Playwrite BE VLG",
        +          "Playwrite BE VLG Guides",
        +          "Playwrite BE WAL",
        +          "Playwrite BE WAL Guides",
        +          "Playwrite BR",
        +          "Playwrite BR Guides",
        +          "Playwrite CA",
        +          "Playwrite CA Guides",
        +          "Playwrite CL",
        +          "Playwrite CL Guides",
        +          "Playwrite CO",
        +          "Playwrite CO Guides",
        +          "Playwrite CU",
        +          "Playwrite CU Guides",
        +          "Playwrite CZ",
        +          "Playwrite CZ Guides",
        +          "Playwrite DE Grund",
        +          "Playwrite DE Grund Guides",
        +          "Playwrite DE LA",
        +          "Playwrite DE LA Guides",
        +          "Playwrite DE SAS",
        +          "Playwrite DE SAS Guides",
        +          "Playwrite DE VA",
        +          "Playwrite DE VA Guides",
        +          "Playwrite DK Loopet",
        +          "Playwrite DK Loopet Guides",
        +          "Playwrite DK Uloopet",
        +          "Playwrite DK Uloopet Guides",
        +          "Playwrite ES",
        +          "Playwrite ES Deco",
        +          "Playwrite ES Deco Guides",
        +          "Playwrite ES Guides",
        +          "Playwrite FR Moderne",
        +          "Playwrite FR Moderne Guides",
        +          "Playwrite FR Trad",
        +          "Playwrite FR Trad Guides",
        +          "Playwrite GB J",
        +          "Playwrite GB J Guides",
        +          "Playwrite GB S",
        +          "Playwrite GB S Guides",
        +          "Playwrite HR",
        +          "Playwrite HR Guides",
        +          "Playwrite HR Lijeva",
        +          "Playwrite HR Lijeva Guides",
        +          "Playwrite HU",
        +          "Playwrite HU Guides",
        +          "Playwrite ID",
        +          "Playwrite ID Guides",
        +          "Playwrite IE",
        +          "Playwrite IE Guides",
        +          "Playwrite IN",
        +          "Playwrite IN Guides",
        +          "Playwrite IS",
        +          "Playwrite IS Guides",
        +          "Playwrite IT Moderna",
        +          "Playwrite IT Moderna Guides",
        +          "Playwrite IT Trad",
        +          "Playwrite IT Trad Guides",
        +          "Playwrite MX",
        +          "Playwrite MX Guides",
        +          "Playwrite NG Modern",
        +          "Playwrite NG Modern Guides",
        +          "Playwrite NL",
        +          "Playwrite NL Guides",
        +          "Playwrite NO",
        +          "Playwrite NO Guides",
        +          "Playwrite NZ",
        +          "Playwrite NZ Basic",
        +          "Playwrite NZ Basic Guides",
        +          "Playwrite NZ Guides",
        +          "Playwrite PE",
        +          "Playwrite PE Guides",
        +          "Playwrite PL",
        +          "Playwrite PL Guides",
        +          "Playwrite PT",
        +          "Playwrite PT Guides",
        +          "Playwrite RO",
        +          "Playwrite RO Guides",
        +          "Playwrite SK",
        +          "Playwrite SK Guides",
        +          "Playwrite TZ",
        +          "Playwrite TZ Guides",
        +          "Playwrite US Modern",
        +          "Playwrite US Modern Guides",
        +          "Playwrite US Trad",
        +          "Playwrite US Trad Guides",
        +          "Playwrite VN",
        +          "Playwrite VN Guides",
        +          "Playwrite ZA",
        +          "Playwrite ZA Guides",
        +          "Pliant",
        +          "Plus Jakarta Sans",
        +          "Pochaevsk",
        +          "Podkova",
        +          "Poetsen One",
        +          "Poiret One",
        +          "Poller One",
        +          "Poltawski Nowy",
        +          "Poly",
        +          "Pompiere",
        +          "Ponnala",
        +          "Ponomar",
        +          "Pontano Sans",
        +          "Poor Story",
        +          "Poppins",
        +          "Port Lligat Sans",
        +          "Port Lligat Slab",
        +          "Potta One",
        +          "Pragati Narrow",
        +          "Praise",
        +          "Prata",
        +          "Preahvihear",
        +          "Press Start 2P",
        +          "Pridi",
        +          "Princess Sofia",
        +          "Prociono",
        +          "Prompt",
        +          "Prosto One",
        +          "Protest Guerrilla",
        +          "Protest Revolution",
        +          "Protest Riot",
        +          "Protest Strike",
        +          "Proza Libre",
        +          "Public Sans",
        +          "Puppies Play",
        +          "Puritan",
        +          "Purple Purse",
        +          "Qahiri",
        +          "Quando",
        +          "Quantico",
        +          "Quattrocento",
        +          "Quattrocento Sans",
        +          "Questrial",
        +          "Quicksand",
        +          "Quintessential",
        +          "Qwigley",
        +          "Qwitcher Grypen",
        +          "REM",
        +          "Racing Sans One",
        +          "Radio Canada",
        +          "Radio Canada Big",
        +          "Radley",
        +          "Rajdhani",
        +          "Rakkas",
        +          "Raleway",
        +          "Raleway Dots",
        +          "Ramabhadra",
        +          "Ramaraja",
        +          "Rambla",
        +          "Rammetto One",
        +          "Rampart One",
        +          "Ramsina",
        +          "Ranchers",
        +          "Rancho",
        +          "Ranga",
        +          "Rasa",
        +          "Rationale",
        +          "Ravi Prakash",
        +          "Readex Pro",
        +          "Recursive",
        +          "Red Hat Display",
        +          "Red Hat Mono",
        +          "Red Hat Text",
        +          "Red Rose",
        +          "Redacted",
        +          "Redacted Script",
        +          "Reddit Mono",
        +          "Reddit Sans",
        +          "Reddit Sans Condensed",
        +          "Redressed",
        +          "Reem Kufi",
        +          "Reem Kufi Fun",
        +          "Reem Kufi Ink",
        +          "Reenie Beanie",
        +          "Reggae One",
        +          "Rethink Sans",
        +          "Revalia",
        +          "Rhodium Libre",
        +          "Ribeye",
        +          "Ribeye Marrow",
        +          "Righteous",
        +          "Risque",
        +          "Road Rage",
        +          "Roboto",
        +          "Roboto Condensed",
        +          "Roboto Flex",
        +          "Roboto Mono",
        +          "Roboto Serif",
        +          "Roboto Slab",
        +          "Rochester",
        +          "Rock 3D",
        +          "Rock Salt",
        +          "RocknRoll One",
        +          "Rokkitt",
        +          "Romanesco",
        +          "Ropa Sans",
        +          "Rosario",
        +          "Rosarivo",
        +          "Rouge Script",
        +          "Rowdies",
        +          "Rozha One",
        +          "Rubik",
        +          "Rubik 80s Fade",
        +          "Rubik Beastly",
        +          "Rubik Broken Fax",
        +          "Rubik Bubbles",
        +          "Rubik Burned",
        +          "Rubik Dirt",
        +          "Rubik Distressed",
        +          "Rubik Doodle Shadow",
        +          "Rubik Doodle Triangles",
        +          "Rubik Gemstones",
        +          "Rubik Glitch",
        +          "Rubik Glitch Pop",
        +          "Rubik Iso",
        +          "Rubik Lines",
        +          "Rubik Maps",
        +          "Rubik Marker Hatch",
        +          "Rubik Maze",
        +          "Rubik Microbe",
        +          "Rubik Mono One",
        +          "Rubik Moonrocks",
        +          "Rubik Pixels",
        +          "Rubik Puddles",
        +          "Rubik Scribble",
        +          "Rubik Spray Paint",
        +          "Rubik Storm",
        +          "Rubik Vinyl",
        +          "Rubik Wet Paint",
        +          "Ruda",
        +          "Rufina",
        +          "Ruge Boogie",
        +          "Ruluko",
        +          "Rum Raisin",
        +          "Ruslan Display",
        +          "Russo One",
        +          "Ruthie",
        +          "Ruwudu",
        +          "Rye",
        +          "SN Pro",
        +          "STIX Two Math",
        +          "STIX Two Text",
        +          "SUSE",
        +          "SUSE Mono",
        +          "Sacramento",
        +          "Sahitya",
        +          "Sail",
        +          "Saira",
        +          "Saira Condensed",
        +          "Saira Extra Condensed",
        +          "Saira Semi Condensed",
        +          "Saira Stencil",
        +          "Salsa",
        +          "Sanchez",
        +          "Sancreek",
        +          "Sankofa Display",
        +          "Sansation",
        +          "Sansita",
        +          "Sansita Swashed",
        +          "Sarabun",
        +          "Sarala",
        +          "Sarina",
        +          "Sarpanch",
        +          "Sassy Frass",
        +          "Satisfy",
        +          "Savate",
        +          "Sawarabi Gothic",
        +          "Sawarabi Mincho",
        +          "Scada",
        +          "Scheherazade New",
        +          "Schibsted Grotesk",
        +          "Schoolbell",
        +          "Science Gothic",
        +          "Scope One",
        +          "Seaweed Script",
        +          "Secular One",
        +          "Sedan",
        +          "Sedan SC",
        +          "Sedgwick Ave",
        +          "Sedgwick Ave Display",
        +          "Sekuya",
        +          "Sen",
        +          "Send Flowers",
        +          "Sevillana",
        +          "Seymour One",
        +          "Shadows Into Light",
        +          "Shadows Into Light Two",
        +          "Shafarik",
        +          "Shalimar",
        +          "Shantell Sans",
        +          "Shanti",
        +          "Share",
        +          "Share Tech",
        +          "Share Tech Mono",
        +          "Shippori Antique",
        +          "Shippori Antique B1",
        +          "Shippori Mincho",
        +          "Shippori Mincho B1",
        +          "Shizuru",
        +          "Shojumaru",
        +          "Short Stack",
        +          "Shrikhand",
        +          "Siemreap",
        +          "Sigmar",
        +          "Sigmar One",
        +          "Signika",
        +          "Signika Negative",
        +          "Silkscreen",
        +          "Simonetta",
        +          "Single Day",
        +          "Sintony",
        +          "Sirin Stencil",
        +          "Sirivennela",
        +          "Six Caps",
        +          "Sixtyfour",
        +          "Sixtyfour Convergence",
        +          "Skranji",
        +          "Slabo 13px",
        +          "Slabo 27px",
        +          "Slackey",
        +          "Slackside One",
        +          "Smokum",
        +          "Smooch",
        +          "Smooch Sans",
        +          "Smythe",
        +          "Sniglet",
        +          "Snippet",
        +          "Snowburst One",
        +          "Sofadi One",
        +          "Sofia",
        +          "Sofia Sans",
        +          "Sofia Sans Condensed",
        +          "Sofia Sans Extra Condensed",
        +          "Sofia Sans Semi Condensed",
        +          "Solitreo",
        +          "Solway",
        +          "Sometype Mono",
        +          "Song Myung",
        +          "Sono",
        +          "Sonsie One",
        +          "Sora",
        +          "Sorts Mill Goudy",
        +          "Sour Gummy",
        +          "Source Code Pro",
        +          "Source Sans 3",
        +          "Source Serif 4",
        +          "Space Grotesk",
        +          "Space Mono",
        +          "Special Elite",
        +          "Special Gothic",
        +          "Special Gothic Condensed One",
        +          "Special Gothic Expanded One",
        +          "Spectral",
        +          "Spectral SC",
        +          "Spicy Rice",
        +          "Spinnaker",
        +          "Spirax",
        +          "Splash",
        +          "Spline Sans",
        +          "Spline Sans Mono",
        +          "Squada One",
        +          "Square Peg",
        +          "Sree Krushnadevaraya",
        +          "Sriracha",
        +          "Srisakdi",
        +          "Staatliches",
        +          "Stack Sans Headline",
        +          "Stack Sans Notch",
        +          "Stack Sans Text",
        +          "Stalemate",
        +          "Stalinist One",
        +          "Stardos Stencil",
        +          "Stick",
        +          "Stick No Bills",
        +          "Stint Ultra Condensed",
        +          "Stint Ultra Expanded",
        +          "Stoke",
        +          "Story Script",
        +          "Strait",
        +          "Strichpunkt Sans",
        +          "Style Script",
        +          "Stylish",
        +          "Sue Ellen Francisco",
        +          "Suez One",
        +          "Sulphur Point",
        +          "Sumana",
        +          "Sunflower",
        +          "Sunshiney",
        +          "Supermercado One",
        +          "Sura",
        +          "Suranna",
        +          "Suravaram",
        +          "Suwannaphum",
        +          "Swanky and Moo Moo",
        +          "Syncopate",
        +          "Syne",
        +          "Syne Mono",
        +          "Syne Tactile",
        +          "TASA Explorer",
        +          "TASA Orbiter",
        +          "Tac One",
        +          "Tagesschrift",
        +          "Tai Heritage Pro",
        +          "Tajawal",
        +          "Tangerine",
        +          "Tapestry",
        +          "Taprom",
        +          "Tauri",
        +          "Taviraj",
        +          "Teachers",
        +          "Teko",
        +          "Tektur",
        +          "Telex",
        +          "Tenali Ramakrishna",
        +          "Tenor Sans",
        +          "Text Me One",
        +          "Texturina",
        +          "Thasadith",
        +          "The Girl Next Door",
        +          "The Nautigal",
        +          "Tienne",
        +          "TikTok Sans",
        +          "Tillana",
        +          "Tilt Neon",
        +          "Tilt Prism",
        +          "Tilt Warp",
        +          "Timmana",
        +          "Tinos",
        +          "Tiny5",
        +          "Tiro Bangla",
        +          "Tiro Devanagari Hindi",
        +          "Tiro Devanagari Marathi",
        +          "Tiro Devanagari Sanskrit",
        +          "Tiro Gurmukhi",
        +          "Tiro Kannada",
        +          "Tiro Tamil",
        +          "Tiro Telugu",
        +          "Tirra",
        +          "Titan One",
        +          "Titillium Web",
        +          "Tomorrow",
        +          "Tourney",
        +          "Trade Winds",
        +          "Train One",
        +          "Triodion",
        +          "Trirong",
        +          "Trispace",
        +          "Trocchi",
        +          "Trochut",
        +          "Truculenta",
        +          "Trykker",
        +          "Tsukimi Rounded",
        +          "Tuffy",
        +          "Tulpen One",
        +          "Turret Road",
        +          "Twinkle Star",
        +          "Ubuntu",
        +          "Ubuntu Condensed",
        +          "Ubuntu Mono",
        +          "Ubuntu Sans",
        +          "Ubuntu Sans Mono",
        +          "Uchen",
        +          "Ultra",
        +          "Unbounded",
        +          "Uncial Antiqua",
        +          "Underdog",
        +          "Unica One",
        +          "UnifrakturCook",
        +          "UnifrakturMaguntia",
        +          "Unkempt",
        +          "Unlock",
        +          "Unna",
        +          "UoqMunThenKhung",
        +          "Updock",
        +          "Urbanist",
        +          "VT323",
        +          "Vampiro One",
        +          "Varela",
        +          "Varela Round",
        +          "Varta",
        +          "Vast Shadow",
        +          "Vazirmatn",
        +          "Vend Sans",
        +          "Vesper Libre",
        +          "Viaoda Libre",
        +          "Vibes",
        +          "Vibur",
        +          "Victor Mono",
        +          "Vidaloka",
        +          "Viga",
        +          "Vina Sans",
        +          "Voces",
        +          "Volkhov",
        +          "Vollkorn",
        +          "Vollkorn SC",
        +          "Voltaire",
        +          "Vujahday Script",
        +          "WDXL Lubrifont JP N",
        +          "WDXL Lubrifont SC",
        +          "WDXL Lubrifont TC",
        +          "Waiting for the Sunrise",
        +          "Wallpoet",
        +          "Walter Turncoat",
        +          "Warnes",
        +          "Water Brush",
        +          "Waterfall",
        +          "Wavefont",
        +          "Wellfleet",
        +          "Wendy One",
        +          "Whisper",
        +          "WindSong",
        +          "Winky Rough",
        +          "Winky Sans",
        +          "Wire One",
        +          "Wittgenstein",
        +          "Wix Madefor Display",
        +          "Wix Madefor Text",
        +          "Work Sans",
        +          "Workbench",
        +          "Xanh Mono",
        +          "Yaldevi",
        +          "Yanone Kaffeesatz",
        +          "Yantramanav",
        +          "Yarndings 12",
        +          "Yarndings 12 Charted",
        +          "Yarndings 20",
        +          "Yarndings 20 Charted",
        +          "Yatra One",
        +          "Yellowtail",
        +          "Yeon Sung",
        +          "Yeseva One",
        +          "Yesteryear",
        +          "Yomogi",
        +          "Young Serif",
        +          "Yrsa",
        +          "Ysabeau",
        +          "Ysabeau Infant",
        +          "Ysabeau Office",
        +          "Ysabeau SC",
        +          "Yuji Boku",
        +          "Yuji Hentaigana Akari",
        +          "Yuji Hentaigana Akebono",
        +          "Yuji Mai",
        +          "Yuji Syuku",
        +          "Yusei Magic",
        +          "Yuyu",
        +          "Yuyu Short",
        +          "ZCOOL KuaiLe",
        +          "ZCOOL QingKe HuangYou",
        +          "ZCOOL XiaoWei",
        +          "Zain",
        +          "Zalando Sans",
        +          "Zalando Sans Expanded",
        +          "Zalando Sans SemiExpanded",
        +          "Zen Antique",
        +          "Zen Antique Soft",
        +          "Zen Dots",
        +          "Zen Kaku Gothic Antique",
        +          "Zen Kaku Gothic New",
        +          "Zen Kurenaido",
        +          "Zen Loop",
        +          "Zen Maru Gothic",
        +          "Zen Old Mincho",
        +          "Zen Tokyo Zoo",
        +          "Zeyada",
        +          "Zhi Mang Xing",
        +          "Zilla Slab",
        +          "Zilla Slab Highlight"
        +        ],
        +        "type": "string"
        +      },
        +      "fontSize": {
        +        "type": "number"
        +      },
        +      "footerColor": {
        +        "type": "string"
        +      },
        +      "footerFontSize": {
        +        "type": "number"
        +      },
        +      "footerGap": {
        +        "type": "number"
        +      },
        +      "footerLinkColor": {
        +        "type": "string"
        +      },
        +      "gridColor": {
        +        "type": "string"
        +      },
        +      "gridLineWidth": {
        +        "type": "number"
        +      },
        +      "gridLines": {
        +        "enum": [
        +          "none",
        +          "value",
        +          "both"
        +        ],
        +        "type": "string"
        +      },
        +      "headerGap": {
        +        "type": "number"
        +      },
        +      "labelColor": {
        +        "type": "string"
        +      },
        +      "labelFontSize": {
        +        "type": "number"
        +      },
        +      "labelFontWeight": {
        +        "type": "string"
        +      },
        +      "labelHaloWidth": {
        +        "type": "number"
        +      },
        +      "labelMutedFontWeight": {
        +        "type": "string"
        +      },
        +      "labelMutedOpacity": {
        +        "type": "number"
        +      },
        +      "lineStrokeWidth": {
        +        "type": "number"
        +      },
        +      "numericFontFamily": {
        +        "type": "string"
        +      },
        +      "pieCornerRadius": {
        +        "type": "number"
        +      },
        +      "sequentialRange": {
        +        "items": [
        +          {
        +            "type": "string"
        +          },
        +          {
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      "subtitleColor": {
        +        "type": "string"
        +      },
        +      "subtitleFontSize": {
        +        "type": "number"
        +      },
        +      "tickDensity": {
        +        "type": "number"
        +      },
        +      "tickLabelColor": {
        +        "type": "string"
        +      },
        +      "tickLabelFontWeight": {
        +        "type": "string"
        +      },
        +      "tickPadding": {
        +        "type": "number"
        +      },
        +      "tickSize": {
        +        "type": "number"
        +      },
        +      "titleColor": {
        +        "type": "string"
        +      },
        +      "titleFontFamily": {
        +        "type": "string"
        +      },
        +      "titleFontSize": {
        +        "type": "number"
        +      },
        +      "titleFontWeight": {
        +        "type": "string"
        +      },
        +      "titleSubtitleGap": {
        +        "type": "number"
        +      }
        +    },
        +    "type": "object"
        +  },
        +  "title": {
        +    "type": "string"
        +  },
        +  "version": {
        +    "const": "2026-03-20",
        +    "type": "string"
        +  },
        +  "width": {
        +    "maximum": 4096,
        +    "minimum": 1,
        +    "type": "integer"
        +  },
        +  "x": {
        +    "additionalProperties": {},
        +    "properties": {
        +      "display": {
        +        "default": true,
        +        "type": "boolean"
        +      },
        +      "domain": {
        +        "anyOf": [
        +          {
        +            "items": [
        +              {
        +                "type": "number"
        +              },
        +              {
        +                "type": "number"
        +              }
        +            ],
        +            "maxItems": 2,
        +            "minItems": 2,
        +            "type": "array"
        +          },
        +          {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          }
        +        ]
        +      },
        +      "label": {
        +        "type": "string"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "tickFormat": {
        +        "type": "string"
        +      },
        +      "type": {
        +        "enum": [
        +          "linear",
        +          "utc",
        +          "band"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "type": "object"
        +  },
        +  "y": {
        +    "additionalProperties": {},
        +    "properties": {
        +      "display": {
        +        "default": true,
        +        "type": "boolean"
        +      },
        +      "domain": {
        +        "anyOf": [
        +          {
        +            "items": [
        +              {
        +                "type": "number"
        +              },
        +              {
        +                "type": "number"
        +              }
        +            ],
        +            "maxItems": 2,
        +            "minItems": 2,
        +            "type": "array"
        +          },
        +          {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          }
        +        ]
        +      },
        +      "label": {
        +        "type": "string"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "tickFormat": {
        +        "type": "string"
        +      },
        +      "type": {
        +        "enum": [
        +          "linear",
        +          "utc",
        +          "band"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "type": "object"
        +  }
        +}
      • addedOutput schema / properties / examples / items / properties / config / required
        Added value: +[
        +  "version",
        +  "format",
        +  "marks"
        +]
      • addedOutput schema / properties / examples / items / properties / config / title
        Added value: +"Szum Chart Configuration"
      • addedOutput schema / properties / examples / items / properties / config / type
        Added value: +"object"
    • Changedrender_chart5 fields changed
      • addedInput schema / properties / acknowledgeWarnings
        Added value: +{
        +  "description": "Set true only after the user explicitly approves every warning returned for this exact config",
        +  "type": "boolean"
        +}
      • changedOutput schema / properties / format / enum
        Previous value: -[
        -  "png",
        -  "svg"
        -]New value: +[
        +  "svg",
        +  "png"
        +]
      • changedOutput schema / properties / mimeType / enum
        Previous value: -[
        -  "image/png",
        -  "image/svg+xml"
        -]New value: +[
        +  "image/svg+xml",
        +  "image/png"
        +]
      • addedOutput schema / properties / validation
        Added value: +{
        +  "additionalProperties": false,
        +  "properties": {
        +    "diagnostics": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "code": {
        +            "type": "string"
        +          },
        +          "details": {
        +            "additionalProperties": {},
        +            "propertyNames": {
        +              "type": "string"
        +            },
        +            "type": "object"
        +          },
        +          "message": {
        +            "type": "string"
        +          },
        +          "path": {
        +            "items": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ]
        +            },
        +            "type": "array"
        +          },
        +          "relatedPaths": {
        +            "items": {
        +              "items": {
        +                "anyOf": [
        +                  {
        +                    "type": "string"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ]
        +              },
        +              "type": "array"
        +            },
        +            "type": "array"
        +          },
        +          "severity": {
        +            "enum": [
        +              "error",
        +              "warning",
        +              "suggestion"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "code",
        +          "severity",
        +          "path",
        +          "message",
        +          "details"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "errors": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "code": {
        +            "type": "string"
        +          },
        +          "details": {
        +            "additionalProperties": {},
        +            "propertyNames": {
        +              "type": "string"
        +            },
        +            "type": "object"
        +          },
        +          "message": {
        +            "type": "string"
        +          },
        +          "path": {
        +            "items": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ]
        +            },
        +            "type": "array"
        +          },
        +          "relatedPaths": {
        +            "items": {
        +              "items": {
        +                "anyOf": [
        +                  {
        +                    "type": "string"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ]
        +              },
        +              "type": "array"
        +            },
        +            "type": "array"
        +          },
        +          "severity": {
        +            "enum": [
        +              "error",
        +              "warning",
        +              "suggestion"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "code",
        +          "severity",
        +          "path",
        +          "message",
        +          "details"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "message": {
        +      "type": "string"
        +    },
        +    "suggestedConfig": {
        +      "additionalProperties": {},
        +      "description": "Schema version 2026-03-20. Send this JSON to POST https://szum.io/validate to validate it or POST https://szum.io/chart to render a chart image.",
        +      "properties": {
        +        "attribution": {
        +          "description": "Show a small \"Made with Szum\" credit in the bottom-right. Always on for free and keyless renders; Creator and Pro omit it by default and set true to opt in.",
        +          "type": "boolean"
        +        },
        +        "color": {
        +          "anyOf": [
        +            {
        +              "additionalProperties": {},
        +              "properties": {
        +                "domain": {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                },
        +                "label": {
        +                  "type": "string"
        +                },
        +                "range": {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                },
        +                "type": {
        +                  "const": "categorical",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": {},
        +              "properties": {
        +                "domain": {
        +                  "items": [
        +                    {
        +                      "type": "number"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                "label": {
        +                  "type": "string"
        +                },
        +                "range": {
        +                  "items": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "string"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                "type": {
        +                  "const": "sequential",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "label": {
        +                  "type": "string"
        +                }
        +              },
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "data": {
        +          "items": {
        +            "additionalProperties": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ]
        +            },
        +            "propertyNames": {
        +              "type": "string"
        +            },
        +            "type": "object"
        +          },
        +          "type": "array"
        +        },
        +        "footer": {
        +          "description": "Caption below the chart (a source line, methodology note, date). URLs, bare domains, and [label](url) links in it are auto-detected and rendered as inline links on every surface.",
        +          "type": "string"
        +        },
        +        "format": {
        +          "enum": [
        +            "svg",
        +            "png"
        +          ],
        +          "type": "string"
        +        },
        +        "headerAlign": {
        +          "enum": [
        +            "left",
        +            "center",
        +            "right"
        +          ],
        +          "type": "string"
        +        },
        +        "height": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "locale": {
        +          "description": "Locale identifier accepted by JavaScript Intl and associated with the chart content, such as en, pl, or zh-Hant.",
        +          "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +          "type": "string"
        +        },
        +        "margin": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "bottom": {
        +              "type": "number"
        +            },
        +            "left": {
        +              "type": "number"
        +            },
        +            "right": {
        +              "type": "number"
        +            },
        +            "top": {
        +              "type": "number"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "marks": {
        +          "items": {
        +            "oneOf": [
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "additionalProperties": {},
        +                    "properties": {
        +                      "field": {
        +                        "type": "string"
        +                      },
        +                      "format": {
        +                        "type": "string"
        +                      }
        +                    },
        +                    "required": [
        +                      "field"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  "r": {
        +                    "type": "number"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "dot",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "curve": {
        +                    "enum": [
        +                      "linear",
        +                      "monotone",
        +                      "step"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "end": {
        +                            "anyOf": [
        +                              {
        +                                "type": "boolean"
        +                              },
        +                              {
        +                                "items": {
        +                                  "enum": [
        +                                    "category",
        +                                    "value"
        +                                  ],
        +                                  "type": "string"
        +                                },
        +                                "type": "array"
        +                              }
        +                            ],
        +                            "default": [
        +                              "category"
        +                            ]
        +                          },
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "points": {
        +                            "anyOf": [
        +                              {
        +                                "enum": [
        +                                  "extrema",
        +                                  "all",
        +                                  "ends"
        +                                ],
        +                                "type": "string"
        +                              },
        +                              {
        +                                "const": false,
        +                                "type": "boolean"
        +                              },
        +                              {
        +                                "additionalProperties": {},
        +                                "properties": {
        +                                  "at": {
        +                                    "enum": [
        +                                      "extrema",
        +                                      "all",
        +                                      "ends"
        +                                    ],
        +                                    "type": "string"
        +                                  },
        +                                  "show": {
        +                                    "default": [
        +                                      "value"
        +                                    ],
        +                                    "items": {
        +                                      "enum": [
        +                                        "value",
        +                                        "category"
        +                                      ],
        +                                      "type": "string"
        +                                    },
        +                                    "type": "array"
        +                                  }
        +                                },
        +                                "required": [
        +                                  "at"
        +                                ],
        +                                "type": "object"
        +                              }
        +                            ],
        +                            "default": false
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "line",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "cornerRadius": {
        +                    "type": "number"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "group": {
        +                    "default": "stack",
        +                    "enum": [
        +                      "stack",
        +                      "dodge"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "position": {
        +                            "default": "outside",
        +                            "enum": [
        +                              "auto",
        +                              "outside",
        +                              "inside"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "show": {
        +                            "default": [
        +                              "value"
        +                            ],
        +                            "items": {
        +                              "enum": [
        +                                "value",
        +                                "percent",
        +                                "category",
        +                                "total"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "barY",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "cornerRadius": {
        +                    "type": "number"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "group": {
        +                    "default": "stack",
        +                    "enum": [
        +                      "stack",
        +                      "dodge"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "position": {
        +                            "default": "outside",
        +                            "enum": [
        +                              "auto",
        +                              "outside",
        +                              "inside"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "show": {
        +                            "default": [
        +                              "value"
        +                            ],
        +                            "items": {
        +                              "enum": [
        +                                "value",
        +                                "percent",
        +                                "category",
        +                                "total"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "barX",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "curve": {
        +                    "enum": [
        +                      "linear",
        +                      "monotone",
        +                      "step"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "end": {
        +                            "anyOf": [
        +                              {
        +                                "type": "boolean"
        +                              },
        +                              {
        +                                "items": {
        +                                  "enum": [
        +                                    "category",
        +                                    "value",
        +                                    "percent"
        +                                  ],
        +                                  "type": "string"
        +                                },
        +                                "type": "array"
        +                              }
        +                            ],
        +                            "default": [
        +                              "category"
        +                            ]
        +                          },
        +                          "format": {
        +                            "type": "string"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "areaY",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "curve": {
        +                    "enum": [
        +                      "linear",
        +                      "monotone",
        +                      "step"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "areaX",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "cornerRadius": {
        +                    "type": "number"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "innerRadius": {
        +                    "default": 0,
        +                    "maximum": 1,
        +                    "minimum": 0,
        +                    "type": "number"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "position": {
        +                            "default": "auto",
        +                            "enum": [
        +                              "auto",
        +                              "inside",
        +                              "outside"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "show": {
        +                            "default": [
        +                              "category",
        +                              "percent"
        +                            ],
        +                            "items": {
        +                              "enum": [
        +                                "value",
        +                                "percent",
        +                                "category"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "pie",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "dx": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "dy": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "fontSize": {
        +                    "type": "number"
        +                  },
        +                  "fontWeight": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "text": {
        +                    "default": "text",
        +                    "type": "string"
        +                  },
        +                  "textAnchor": {
        +                    "default": "center",
        +                    "enum": [
        +                      "start",
        +                      "center",
        +                      "end"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "type": {
        +                    "const": "text",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "ruleX",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "ruleY",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              }
        +            ]
        +          },
        +          "minItems": 1,
        +          "type": "array"
        +        },
        +        "plotHeight": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "plotWidth": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "scale": {
        +          "maximum": 4,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "subtitle": {
        +          "type": "string"
        +        },
        +        "theme": {
        +          "default": "editorial",
        +          "enum": [
        +            "editorial",
        +            "clean",
        +            "noir",
        +            "loud",
        +            "soft",
        +            "technical"
        +          ],
        +          "type": "string"
        +        },
        +        "themeOverrides": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "axisColor": {
        +              "type": "string"
        +            },
        +            "axisFrame": {
        +              "enum": [
        +                "none",
        +                "baseline",
        +                "lShape",
        +                "full"
        +              ],
        +              "type": "string"
        +            },
        +            "axisLabelColor": {
        +              "type": "string"
        +            },
        +            "axisLabelFontWeight": {
        +              "type": "string"
        +            },
        +            "axisLineWidth": {
        +              "type": "number"
        +            },
        +            "backgroundColor": {
        +              "type": "string"
        +            },
        +            "barCornerRadius": {
        +              "type": "number"
        +            },
        +            "barPadding": {
        +              "type": "number"
        +            },
        +            "colors": {
        +              "items": {
        +                "type": "string"
        +              },
        +              "type": "array"
        +            },
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "dotRadius": {
        +              "type": "number"
        +            },
        +            "fontFamily": {
        +              "enum": [
        +                "ABeeZee",
        +                "ADLaM Display",
        +                "AR One Sans",
        +                "Abel",
        +                "Abhaya Libre",
        +                "Aboreto",
        +                "Abril Fatface",
        +                "Abyssinica SIL",
        +                "Aclonica",
        +                "Acme",
        +                "Actor",
        +                "Adamina",
        +                "Advent Pro",
        +                "Afacad",
        +                "Afacad Flux",
        +                "Agbalumo",
        +                "Agdasima",
        +                "Agu Display",
        +                "Aguafina Script",
        +                "Akatab",
        +                "Akaya Kanadaka",
        +                "Akaya Telivigala",
        +                "Akronim",
        +                "Akshar",
        +                "Akt",
        +                "Aladin",
        +                "Alan Sans",
        +                "Alata",
        +                "Alatsi",
        +                "Albert Sans",
        +                "Aldrich",
        +                "Alef",
        +                "Alegreya",
        +                "Alegreya SC",
        +                "Alegreya Sans",
        +                "Alegreya Sans SC",
        +                "Aleo",
        +                "Alex Brush",
        +                "Alexandria",
        +                "Alfa Slab One",
        +                "Alice",
        +                "Alien Block",
        +                "Alike",
        +                "Alike Angular",
        +                "Alkalami",
        +                "Alkatra",
        +                "Allan",
        +                "Allerta",
        +                "Allerta Stencil",
        +                "Allison",
        +                "Allkin",
        +                "Allura",
        +                "Almarai",
        +                "Almendra",
        +                "Almendra Display",
        +                "Almendra SC",
        +                "Alumni Sans",
        +                "Alumni Sans Collegiate One",
        +                "Alumni Sans Inline One",
        +                "Alumni Sans Pinstripe",
        +                "Alumni Sans SC",
        +                "Alyamama",
        +                "Amarante",
        +                "Amaranth",
        +                "Amarna",
        +                "Amatic SC",
        +                "Amethysta",
        +                "Amiko",
        +                "Amiri",
        +                "Amiri Quran",
        +                "Amita",
        +                "Anaheim",
        +                "Ancizar Sans",
        +                "Ancizar Serif",
        +                "Andada Pro",
        +                "Andika",
        +                "Anek Bangla",
        +                "Anek Devanagari",
        +                "Anek Gujarati",
        +                "Anek Gurmukhi",
        +                "Anek Kannada",
        +                "Anek Latin",
        +                "Anek Malayalam",
        +                "Anek Odia",
        +                "Anek Tamil",
        +                "Anek Telugu",
        +                "Angkor",
        +                "Annapurna SIL",
        +                "Annie Use Your Telescope",
        +                "Anonymous Pro",
        +                "Anta",
        +                "Antic",
        +                "Antic Didone",
        +                "Antic Slab",
        +                "Anton",
        +                "Anton SC",
        +                "Antonio",
        +                "Anuphan",
        +                "Anybody",
        +                "Aoboshi One",
        +                "Arapey",
        +                "Arbutus",
        +                "Arbutus Slab",
        +                "Architects Daughter",
        +                "Archivo",
        +                "Archivo Black",
        +                "Archivo Narrow",
        +                "Are You Serious",
        +                "Aref Ruqaa",
        +                "Aref Ruqaa Ink",
        +                "Arima",
        +                "Arimo",
        +                "Arizonia",
        +                "Armata",
        +                "Arsenal",
        +                "Arsenal SC",
        +                "Artifika",
        +                "Arvo",
        +                "Arya",
        +                "Asap",
        +                "Asap Condensed",
        +                "Asar",
        +                "Asimovian",
        +                "Asset",
        +                "Assistant",
        +                "Asta Sans",
        +                "Astloch",
        +                "Asul",
        +                "Athiti",
        +                "Atkinson Hyperlegible",
        +                "Atkinson Hyperlegible Mono",
        +                "Atkinson Hyperlegible Next",
        +                "Atma",
        +                "Atomic Age",
        +                "Aubrey",
        +                "Audiowide",
        +                "Autour One",
        +                "Average",
        +                "Average Sans",
        +                "Averia Gruesa Libre",
        +                "Averia Libre",
        +                "Averia Sans Libre",
        +                "Averia Serif Libre",
        +                "Azeret Mono",
        +                "B612",
        +                "B612 Mono",
        +                "BBH Bartle",
        +                "BBH Bogle",
        +                "BBH Hegarty",
        +                "BIZ UDGothic",
        +                "BIZ UDMincho",
        +                "BIZ UDPGothic",
        +                "BIZ UDPMincho",
        +                "BJCree",
        +                "Babylonica",
        +                "Bacasime Antique",
        +                "Bad Script",
        +                "Badeen Display",
        +                "Bagel Fat One",
        +                "Bahiana",
        +                "Bahianita",
        +                "Bai Jamjuree",
        +                "Bakbak One",
        +                "Ballet",
        +                "Baloo 2",
        +                "Baloo Bhai 2",
        +                "Baloo Bhaijaan 2",
        +                "Baloo Bhaina 2",
        +                "Baloo Chettan 2",
        +                "Baloo Da 2",
        +                "Baloo Paaji 2",
        +                "Baloo Tamma 2",
        +                "Baloo Tammudu 2",
        +                "Baloo Thambi 2",
        +                "Balsamiq Sans",
        +                "Balthazar",
        +                "Bangers",
        +                "Barlow",
        +                "Barlow Condensed",
        +                "Barlow Semi Condensed",
        +                "Barriecito",
        +                "Barrio",
        +                "Basic",
        +                "Baskervville",
        +                "Baskervville SC",
        +                "Battambang",
        +                "Baumans",
        +                "Bayon",
        +                "Be Vietnam Pro",
        +                "Beau Rivage",
        +                "Bebas Neue",
        +                "Beiruti",
        +                "Belanosima",
        +                "Belgrano",
        +                "Bellefair",
        +                "Belleza",
        +                "Bellota",
        +                "Bellota Text",
        +                "BenchNine",
        +                "Benne",
        +                "Bentham",
        +                "Berkshire Swash",
        +                "Besley",
        +                "Betania Patmos",
        +                "Betania Patmos GDL",
        +                "Betania Patmos In",
        +                "Betania Patmos In GDL",
        +                "Beth Ellen",
        +                "Bevan",
        +                "BhuTuka Expanded One",
        +                "Big Shoulders",
        +                "Big Shoulders Inline",
        +                "Big Shoulders Stencil",
        +                "Bigelow Rules",
        +                "Bigshot One",
        +                "Bilbo",
        +                "Bilbo Swash Caps",
        +                "BioRhyme",
        +                "BioRhyme Expanded",
        +                "Birthstone",
        +                "Birthstone Bounce",
        +                "Biryani",
        +                "Bitcount",
        +                "Bitcount Grid Double",
        +                "Bitcount Grid Double Ink",
        +                "Bitcount Grid Single",
        +                "Bitcount Grid Single Ink",
        +                "Bitcount Ink",
        +                "Bitcount Prop Double",
        +                "Bitcount Prop Double Ink",
        +                "Bitcount Prop Single",
        +                "Bitcount Prop Single Ink",
        +                "Bitcount Single",
        +                "Bitcount Single Ink",
        +                "Bitter",
        +                "Black And White Picture",
        +                "Black Han Sans",
        +                "Black Ops One",
        +                "Blaka",
        +                "Blaka Hollow",
        +                "Blaka Ink",
        +                "Blinker",
        +                "Bodoni Moda",
        +                "Bodoni Moda SC",
        +                "Bokor",
        +                "Boldonse",
        +                "Bona Nova",
        +                "Bona Nova SC",
        +                "Bonbon",
        +                "Bonheur Royale",
        +                "Boogaloo",
        +                "Borel",
        +                "Bowlby One",
        +                "Bowlby One SC",
        +                "Bpmf Huninn",
        +                "Bpmf Iansui",
        +                "Bpmf Zihi Kai Std",
        +                "Braah One",
        +                "Brawler",
        +                "Bree Serif",
        +                "Bricolage Grotesque",
        +                "Bruno Ace",
        +                "Bruno Ace SC",
        +                "Brygada 1918",
        +                "Bubblegum Sans",
        +                "Bubbler One",
        +                "Buda",
        +                "Buenard",
        +                "Bungee",
        +                "Bungee Hairline",
        +                "Bungee Inline",
        +                "Bungee Outline",
        +                "Bungee Shade",
        +                "Bungee Spice",
        +                "Bungee Tint",
        +                "Butcherman",
        +                "Butterfly Kids",
        +                "Bytesized",
        +                "Cabin",
        +                "Cabin Condensed",
        +                "Cabin Sketch",
        +                "Cactus Classical Serif",
        +                "Caesar Dressing",
        +                "Cagliostro",
        +                "Cairo",
        +                "Cairo Play",
        +                "Cal Sans",
        +                "Caladea",
        +                "Calistoga",
        +                "Calligraffitti",
        +                "Cambay",
        +                "Cambo",
        +                "Candal",
        +                "Cantarell",
        +                "Cantata One",
        +                "Cantora One",
        +                "Caprasimo",
        +                "Capriola",
        +                "Caramel",
        +                "Carattere",
        +                "Cardo",
        +                "Carlito",
        +                "Carme",
        +                "Carrois Gothic",
        +                "Carrois Gothic SC",
        +                "Carter One",
        +                "Cascadia Code",
        +                "Cascadia Mono",
        +                "Castoro",
        +                "Castoro Titling",
        +                "Catamaran",
        +                "Caudex",
        +                "Cause",
        +                "Caveat",
        +                "Caveat Brush",
        +                "Cedarville Cursive",
        +                "Ceviche One",
        +                "Chakra Petch",
        +                "Changa",
        +                "Changa One",
        +                "Chango",
        +                "Charis SIL",
        +                "Charm",
        +                "Charmonman",
        +                "Chathura",
        +                "Chau Philomene One",
        +                "Chela One",
        +                "Chelsea Market",
        +                "Chenla",
        +                "Cherish",
        +                "Cherry Bomb One",
        +                "Cherry Cream Soda",
        +                "Cherry Swash",
        +                "Chewy",
        +                "Chicle",
        +                "Chilanka",
        +                "Chiron GoRound TC",
        +                "Chiron Hei HK",
        +                "Chiron Sung HK",
        +                "Chivo",
        +                "Chivo Mono",
        +                "Chocolate Classical Sans",
        +                "Chokokutai",
        +                "Chonburi",
        +                "Cinzel",
        +                "Cinzel Decorative",
        +                "Clicker Script",
        +                "Climate Crisis",
        +                "Coda",
        +                "Codystar",
        +                "Coiny",
        +                "Combo",
        +                "Comfortaa",
        +                "Comforter",
        +                "Comforter Brush",
        +                "Comic Neue",
        +                "Comic Relief",
        +                "Coming Soon",
        +                "Comme",
        +                "Commissioner",
        +                "Concert One",
        +                "Condiment",
        +                "Content",
        +                "Contrail One",
        +                "Convergence",
        +                "Cookie",
        +                "Copse",
        +                "Coral Pixels",
        +                "Corben",
        +                "Corinthia",
        +                "Cormorant",
        +                "Cormorant Garamond",
        +                "Cormorant Infant",
        +                "Cormorant SC",
        +                "Cormorant Unicase",
        +                "Cormorant Upright",
        +                "Cossette Texte",
        +                "Cossette Titre",
        +                "Courgette",
        +                "Courier Prime",
        +                "Cousine",
        +                "Coustard",
        +                "Covered By Your Grace",
        +                "Crafty Girls",
        +                "Creepster",
        +                "Crete Round",
        +                "Crimson Pro",
        +                "Crimson Text",
        +                "Croissant One",
        +                "Crushed",
        +                "Cuprum",
        +                "Cute Font",
        +                "Cutive",
        +                "Cutive Mono",
        +                "DM Mono",
        +                "DM Sans",
        +                "DM Serif Display",
        +                "DM Serif Text",
        +                "Dai Banna SIL",
        +                "Damion",
        +                "Dancing Script",
        +                "Danfo",
        +                "Dangrek",
        +                "Darker Grotesque",
        +                "Darumadrop One",
        +                "Datatype",
        +                "David Libre",
        +                "Dawning of a New Day",
        +                "Days One",
        +                "Dekko",
        +                "Dela Gothic One",
        +                "Delicious Handrawn",
        +                "Delius",
        +                "Delius Swash Caps",
        +                "Delius Unicase",
        +                "Della Respira",
        +                "Denk One",
        +                "Devonshire",
        +                "Dhurjati",
        +                "Didact Gothic",
        +                "Diphylleia",
        +                "Diplomata",
        +                "Diplomata SC",
        +                "Do Hyeon",
        +                "Dokdo",
        +                "Domine",
        +                "Donegal One",
        +                "Dongle",
        +                "Doppio One",
        +                "Dorsa",
        +                "Dosis",
        +                "DotGothic16",
        +                "Doto",
        +                "Dr Sugiyama",
        +                "Duru Sans",
        +                "DynaPuff",
        +                "Dynalight",
        +                "EB Garamond",
        +                "Eagle Lake",
        +                "East Sea Dokdo",
        +                "Eater",
        +                "Economica",
        +                "Eczar",
        +                "Edu AU VIC WA NT Arrows",
        +                "Edu AU VIC WA NT Dots",
        +                "Edu AU VIC WA NT Guides",
        +                "Edu AU VIC WA NT Hand",
        +                "Edu AU VIC WA NT Pre",
        +                "Edu NSW ACT Cursive",
        +                "Edu NSW ACT Foundation",
        +                "Edu NSW ACT Hand Pre",
        +                "Edu QLD Beginner",
        +                "Edu QLD Hand",
        +                "Edu SA Beginner",
        +                "Edu SA Hand",
        +                "Edu TAS Beginner",
        +                "Edu VIC WA NT Beginner",
        +                "Edu VIC WA NT Hand",
        +                "Edu VIC WA NT Hand Pre",
        +                "El Messiri",
        +                "Electrolize",
        +                "Elms Sans",
        +                "Elsie",
        +                "Elsie Swash Caps",
        +                "Emblema One",
        +                "Emilys Candy",
        +                "Encode Sans",
        +                "Encode Sans Condensed",
        +                "Encode Sans Expanded",
        +                "Encode Sans SC",
        +                "Encode Sans Semi Condensed",
        +                "Encode Sans Semi Expanded",
        +                "Engagement",
        +                "Englebert",
        +                "Enriqueta",
        +                "Ephesis",
        +                "Epilogue",
        +                "Epunda Sans",
        +                "Epunda Slab",
        +                "Erica One",
        +                "Esteban",
        +                "Estedad",
        +                "Estonia",
        +                "Euphoria Script",
        +                "Ewert",
        +                "Exile",
        +                "Exo",
        +                "Exo 2",
        +                "Expletus Sans",
        +                "Explora",
        +                "Faculty Glyphic",
        +                "Fahkwang",
        +                "Familjen Grotesk",
        +                "Fanwood Text",
        +                "Farro",
        +                "Farsan",
        +                "Fascinate",
        +                "Fascinate Inline",
        +                "Faster One",
        +                "Fasthand",
        +                "Fauna One",
        +                "Faustina",
        +                "Federant",
        +                "Federo",
        +                "Felipa",
        +                "Fenix",
        +                "Festive",
        +                "Figtree",
        +                "Finger Paint",
        +                "Finlandica Headline",
        +                "Finlandica Text",
        +                "Fira Code",
        +                "Fira Mono",
        +                "Fira Sans",
        +                "Fira Sans Condensed",
        +                "Fira Sans Extra Condensed",
        +                "Fjalla One",
        +                "Fjord One",
        +                "Flamenco",
        +                "Flavors",
        +                "Fleur De Leah",
        +                "Flow Block",
        +                "Flow Circular",
        +                "Flow Rounded",
        +                "Foldit",
        +                "Fondamento",
        +                "Fontdiner Swanky",
        +                "Forum",
        +                "Fragment Mono",
        +                "Francois One",
        +                "Frank Ruhl Libre",
        +                "Fraunces",
        +                "Freckle Face",
        +                "Fredericka the Great",
        +                "Fredoka",
        +                "Freehand",
        +                "Freeman",
        +                "Fresca",
        +                "Frijole",
        +                "Fruktur",
        +                "Fugaz One",
        +                "Fuggles",
        +                "Funnel Display",
        +                "Funnel Sans",
        +                "Fustat",
        +                "Fuzzy Bubbles",
        +                "GFS Didot",
        +                "GFS Neohellenic",
        +                "Ga Maamli",
        +                "Gabarito",
        +                "Gabriela",
        +                "Gaegu",
        +                "Gafata",
        +                "Gajraj One",
        +                "Galada",
        +                "Galdeano",
        +                "Galindo",
        +                "Gamja Flower",
        +                "Gantari",
        +                "Gasoek One",
        +                "Gayathri",
        +                "Geist",
        +                "Geist Mono",
        +                "Geist Pixel",
        +                "Gelasio",
        +                "Gemunu Libre",
        +                "Genos",
        +                "Gentium Book Plus",
        +                "Gentium Plus",
        +                "Geo",
        +                "Geologica",
        +                "Geom",
        +                "Geomini",
        +                "Georama",
        +                "Geostar",
        +                "Geostar Fill",
        +                "Germania One",
        +                "Gideon Roman",
        +                "Gidole",
        +                "Gidugu",
        +                "Gilda Display",
        +                "Girassol",
        +                "Give You Glory",
        +                "Glass Antiqua",
        +                "Glegoo",
        +                "Gloock",
        +                "Gloria Hallelujah",
        +                "Glory",
        +                "Gluten",
        +                "Goblin One",
        +                "Gochi Hand",
        +                "Goldman",
        +                "Golos Text",
        +                "Google Sans",
        +                "Google Sans Code",
        +                "Google Sans Flex",
        +                "Gorditas",
        +                "Gothic A1",
        +                "Gotu",
        +                "Goudy Bookletter 1911",
        +                "Gowun Batang",
        +                "Gowun Dodum",
        +                "Graduate",
        +                "Grand Hotel",
        +                "Grandiflora One",
        +                "Grandstander",
        +                "Grape Nuts",
        +                "Gravitas One",
        +                "Great Vibes",
        +                "Grechen Fuemen",
        +                "Grenze",
        +                "Grenze Gotisch",
        +                "Grey Qo",
        +                "Griffy",
        +                "Gruppo",
        +                "Gudea",
        +                "Gugi",
        +                "Gulzar",
        +                "Gupter",
        +                "Gurajada",
        +                "Gveret Levin",
        +                "Gwendolyn",
        +                "Habibi",
        +                "Hachi Maru Pop",
        +                "Hahmlet",
        +                "Halant",
        +                "Hammersmith One",
        +                "Hanalei",
        +                "Hanalei Fill",
        +                "Handjet",
        +                "Handlee",
        +                "Hanken Grotesk",
        +                "Hanuman",
        +                "Happy Monkey",
        +                "Harmattan",
        +                "Headland One",
        +                "Hedvig Letters Sans",
        +                "Hedvig Letters Serif",
        +                "Heebo",
        +                "Henny Penny",
        +                "Hepta Slab",
        +                "Herr Von Muellerhoff",
        +                "Hi Melody",
        +                "Hibur Mono",
        +                "Hina Mincho",
        +                "Hind",
        +                "Hind Guntur",
        +                "Hind Madurai",
        +                "Hind Mysuru",
        +                "Hind Siliguri",
        +                "Hind Vadodara",
        +                "Holtwood One SC",
        +                "Homemade Apple",
        +                "Homenaje",
        +                "Honk",
        +                "Host Grotesk",
        +                "Hubballi",
        +                "Hubot Sans",
        +                "Huninn",
        +                "Hurricane",
        +                "IBM Plex Mono",
        +                "IBM Plex Sans",
        +                "IBM Plex Sans Arabic",
        +                "IBM Plex Sans Condensed",
        +                "IBM Plex Sans Devanagari",
        +                "IBM Plex Sans Hebrew",
        +                "IBM Plex Sans JP",
        +                "IBM Plex Sans KR",
        +                "IBM Plex Sans Thai",
        +                "IBM Plex Sans Thai Looped",
        +                "IBM Plex Serif",
        +                "IM Fell DW Pica",
        +                "IM Fell DW Pica SC",
        +                "IM Fell Double Pica",
        +                "IM Fell Double Pica SC",
        +                "IM Fell English",
        +                "IM Fell English SC",
        +                "IM Fell French Canon",
        +                "IM Fell French Canon SC",
        +                "IM Fell Great Primer",
        +                "IM Fell Great Primer SC",
        +                "Iansui",
        +                "Ibarra Real Nova",
        +                "Iceberg",
        +                "Iceland",
        +                "Idiqlat",
        +                "Imbue",
        +                "Imperial Script",
        +                "Imprima",
        +                "Inclusive Sans",
        +                "Inconsolata",
        +                "Inder",
        +                "Indie Flower",
        +                "Ingrid Darling",
        +                "Inika",
        +                "Inknut Antiqua",
        +                "Inria Sans",
        +                "Inria Serif",
        +                "Inspiration",
        +                "Instrument Sans",
        +                "Instrument Serif",
        +                "Intel One Mono",
        +                "Inter",
        +                "Inter Tight",
        +                "Iosevka Charon",
        +                "Iosevka Charon Mono",
        +                "Irish Grover",
        +                "Island Moments",
        +                "Istok Web",
        +                "Italiana",
        +                "Italianno",
        +                "Itim",
        +                "Jacquard 12",
        +                "Jacquard 12 Charted",
        +                "Jacquard 24",
        +                "Jacquard 24 Charted",
        +                "Jacquarda Bastarda 9",
        +                "Jacquarda Bastarda 9 Charted",
        +                "Jacques Francois",
        +                "Jacques Francois Shadow",
        +                "Jaini",
        +                "Jaini Purva",
        +                "Jaldi",
        +                "Jaro",
        +                "Jersey 10",
        +                "Jersey 10 Charted",
        +                "Jersey 15",
        +                "Jersey 15 Charted",
        +                "Jersey 20",
        +                "Jersey 20 Charted",
        +                "Jersey 25",
        +                "Jersey 25 Charted",
        +                "JetBrains Mono",
        +                "Jim Nightshade",
        +                "Joan",
        +                "Jockey One",
        +                "Jolly Lodger",
        +                "Jomhuria",
        +                "Jomolhari",
        +                "Josefin Sans",
        +                "Josefin Slab",
        +                "Jost",
        +                "Joti One",
        +                "Jua",
        +                "Judson",
        +                "Julee",
        +                "Julius Sans One",
        +                "Junge",
        +                "Jura",
        +                "Just Another Hand",
        +                "Just Me Again Down Here",
        +                "K2D",
        +                "Kablammo",
        +                "Kadwa",
        +                "Kaisei Decol",
        +                "Kaisei HarunoUmi",
        +                "Kaisei Opti",
        +                "Kaisei Tokumin",
        +                "Kalam",
        +                "Kalnia",
        +                "Kalnia Glaze",
        +                "Kameron",
        +                "Kanchenjunga",
        +                "Kanit",
        +                "Kantumruy Pro",
        +                "Kapakana",
        +                "Karantina",
        +                "Karla",
        +                "Karla Tamil Inclined",
        +                "Karla Tamil Upright",
        +                "Karma",
        +                "Katibeh",
        +                "Kaushan Script",
        +                "Kavivanar",
        +                "Kavoon",
        +                "Kay Pho Du",
        +                "Kdam Thmor Pro",
        +                "Keania One",
        +                "Kedebideri",
        +                "Kelly Slab",
        +                "Kenia",
        +                "Khand",
        +                "Khmer",
        +                "Khula",
        +                "Kings",
        +                "Kirang Haerang",
        +                "Kite One",
        +                "Kiwi Maru",
        +                "Klee One",
        +                "Knewave",
        +                "KoHo",
        +                "Kodchasan",
        +                "Kode Mono",
        +                "Koh Santepheap",
        +                "Kolker Brush",
        +                "Konkhmer Sleokchher",
        +                "Kosugi",
        +                "Kosugi Maru",
        +                "Kotta One",
        +                "Koulen",
        +                "Kranky",
        +                "Kreon",
        +                "Kristi",
        +                "Krona One",
        +                "Krub",
        +                "Kufam",
        +                "Kulim Park",
        +                "Kumar One",
        +                "Kumar One Outline",
        +                "Kumbh Sans",
        +                "Kurale",
        +                "LINE Seed JP",
        +                "LXGW Marker Gothic",
        +                "LXGW WenKai Mono TC",
        +                "LXGW WenKai TC",
        +                "La Belle Aurore",
        +                "Labrada",
        +                "Lacquer",
        +                "Laila",
        +                "Lakki Reddy",
        +                "Lalezar",
        +                "Lancelot",
        +                "Langar",
        +                "Lateef",
        +                "Lato",
        +                "Lavishly Yours",
        +                "League Gothic",
        +                "League Script",
        +                "League Spartan",
        +                "Leckerli One",
        +                "Ledger",
        +                "Lekton",
        +                "Lemon",
        +                "Lemonada",
        +                "Lexend",
        +                "Lexend Deca",
        +                "Lexend Exa",
        +                "Lexend Giga",
        +                "Lexend Mega",
        +                "Lexend Peta",
        +                "Lexend Tera",
        +                "Lexend Zetta",
        +                "Libertinus Keyboard",
        +                "Libertinus Math",
        +                "Libertinus Mono",
        +                "Libertinus Sans",
        +                "Libertinus Serif",
        +                "Libertinus Serif Display",
        +                "Libre Barcode 128",
        +                "Libre Barcode 128 Text",
        +                "Libre Barcode 39",
        +                "Libre Barcode 39 Extended",
        +                "Libre Barcode 39 Extended Text",
        +                "Libre Barcode 39 Text",
        +                "Libre Barcode EAN13 Text",
        +                "Libre Baskerville",
        +                "Libre Bodoni",
        +                "Libre Caslon Display",
        +                "Libre Caslon Text",
        +                "Libre Franklin",
        +                "Licorice",
        +                "Life Savers",
        +                "Lilex",
        +                "Lilita One",
        +                "Lily Script One",
        +                "Limelight",
        +                "Linden Hill",
        +                "Linefont",
        +                "Lisu Bosa",
        +                "Liter",
        +                "Literata",
        +                "Liu Jian Mao Cao",
        +                "Livvic",
        +                "Lobster",
        +                "Lobster Two",
        +                "Londrina Outline",
        +                "Londrina Shadow",
        +                "Londrina Sketch",
        +                "Londrina Solid",
        +                "Long Cang",
        +                "Lora",
        +                "Love Light",
        +                "Love Ya Like A Sister",
        +                "Loved by the King",
        +                "Lovers Quarrel",
        +                "Luckiest Guy",
        +                "Lugrasimo",
        +                "Lumanosimo",
        +                "Lunasima",
        +                "Lusitana",
        +                "Lustria",
        +                "Luxurious Roman",
        +                "Luxurious Script",
        +                "M PLUS 1",
        +                "M PLUS 1 Code",
        +                "M PLUS 1p",
        +                "M PLUS 2",
        +                "M PLUS Code Latin",
        +                "M PLUS Rounded 1c",
        +                "M PLUS U",
        +                "Ma Shan Zheng",
        +                "Macondo",
        +                "Macondo Swash Caps",
        +                "Mada",
        +                "Madimi One",
        +                "Magra",
        +                "Maiden Orange",
        +                "Maitree",
        +                "Major Mono Display",
        +                "Mako",
        +                "Mali",
        +                "Mallanna",
        +                "Maname",
        +                "Mandali",
        +                "Manjari",
        +                "Manrope",
        +                "Mansalva",
        +                "Manuale",
        +                "Manufacturing Consent",
        +                "Marcellus",
        +                "Marcellus SC",
        +                "Marck Script",
        +                "Margarine",
        +                "Marhey",
        +                "Markazi Text",
        +                "Marko One",
        +                "Marmelad",
        +                "Martel",
        +                "Martel Sans",
        +                "Martian Mono",
        +                "Marvel",
        +                "Matangi",
        +                "Mate",
        +                "Mate SC",
        +                "Matemasie",
        +                "Material Icons",
        +                "Material Icons Outlined",
        +                "Material Icons Round",
        +                "Material Icons Sharp",
        +                "Material Icons Two Tone",
        +                "Material Symbols",
        +                "Material Symbols Outlined",
        +                "Material Symbols Rounded",
        +                "Material Symbols Sharp",
        +                "Maven Pro",
        +                "McLaren",
        +                "Mea Culpa",
        +                "Meddon",
        +                "MedievalSharp",
        +                "Medula One",
        +                "Meera Inimai",
        +                "Megrim",
        +                "Meie Script",
        +                "Menbere",
        +                "Meow Script",
        +                "Merienda",
        +                "Merriweather",
        +                "Merriweather Sans",
        +                "Metal",
        +                "Metal Mania",
        +                "Metamorphous",
        +                "Metrophobic",
        +                "Michroma",
        +                "Micro 5",
        +                "Micro 5 Charted",
        +                "Milonga",
        +                "Miltonian",
        +                "Miltonian Tattoo",
        +                "Mina",
        +                "Mingzat",
        +                "Miniver",
        +                "Miranda Sans",
        +                "Miriam Libre",
        +                "Mirza",
        +                "Miss Fajardose",
        +                "Mitr",
        +                "Mochiy Pop One",
        +                "Mochiy Pop P One",
        +                "Modak",
        +                "Modern Antiqua",
        +                "Moderustic",
        +                "Mogra",
        +                "Mohave",
        +                "Moirai One",
        +                "Molengo",
        +                "Molle",
        +                "Momo Signature",
        +                "Momo Trust Display",
        +                "Momo Trust Sans",
        +                "Mona Sans",
        +                "Monda",
        +                "Monofett",
        +                "Monomakh",
        +                "Monomaniac One",
        +                "Monoton",
        +                "Monsieur La Doulaise",
        +                "Montaga",
        +                "Montagu Slab",
        +                "MonteCarlo",
        +                "Montenegrin Gothic One",
        +                "Montez",
        +                "Montserrat",
        +                "Montserrat Alternates",
        +                "Montserrat Underline",
        +                "Moo Lah Lah",
        +                "Mooli",
        +                "Moon Dance",
        +                "Moul",
        +                "Moulpali",
        +                "Mountains of Christmas",
        +                "Mouse Memoirs",
        +                "Mozilla Headline",
        +                "Mozilla Text",
        +                "Mr Bedfort",
        +                "Mr Dafoe",
        +                "Mr De Haviland",
        +                "Mrs Saint Delafield",
        +                "Mrs Sheppards",
        +                "Ms Madi",
        +                "Mukta",
        +                "Mukta Mahee",
        +                "Mukta Malar",
        +                "Mukta Vaani",
        +                "Mulish",
        +                "Murecho",
        +                "MuseoModerno",
        +                "My Soul",
        +                "Mynerve",
        +                "Mystery Quest",
        +                "NTR",
        +                "Nabla",
        +                "Namdhinggo",
        +                "Nanum Brush Script",
        +                "Nanum Gothic",
        +                "Nanum Gothic Coding",
        +                "Nanum Myeongjo",
        +                "Nanum Pen Script",
        +                "Narnoor",
        +                "Nata Sans",
        +                "National Park",
        +                "Neonderthaw",
        +                "Nerko One",
        +                "Neucha",
        +                "Neuton",
        +                "New Amsterdam",
        +                "New Rocker",
        +                "New Tegomin",
        +                "News Cycle",
        +                "Newsreader",
        +                "Niconne",
        +                "Niramit",
        +                "Nixie One",
        +                "Nobile",
        +                "Nokora",
        +                "Norican",
        +                "Nosifer",
        +                "Notable",
        +                "Nothing You Could Do",
        +                "Noticia Text",
        +                "Noto Color Emoji",
        +                "Noto Emoji",
        +                "Noto Kufi Arabic",
        +                "Noto Music",
        +                "Noto Naskh Arabic",
        +                "Noto Nastaliq Urdu",
        +                "Noto Rashi Hebrew",
        +                "Noto Sans",
        +                "Noto Sans Adlam",
        +                "Noto Sans Adlam Unjoined",
        +                "Noto Sans Anatolian Hieroglyphs",
        +                "Noto Sans Arabic",
        +                "Noto Sans Armenian",
        +                "Noto Sans Avestan",
        +                "Noto Sans Balinese",
        +                "Noto Sans Bamum",
        +                "Noto Sans Bassa Vah",
        +                "Noto Sans Batak",
        +                "Noto Sans Bengali",
        +                "Noto Sans Bhaiksuki",
        +                "Noto Sans Brahmi",
        +                "Noto Sans Buginese",
        +                "Noto Sans Buhid",
        +                "Noto Sans Canadian Aboriginal",
        +                "Noto Sans Carian",
        +                "Noto Sans Caucasian Albanian",
        +                "Noto Sans Chakma",
        +                "Noto Sans Cham",
        +                "Noto Sans Cherokee",
        +                "Noto Sans Chorasmian",
        +                "Noto Sans Coptic",
        +                "Noto Sans Cuneiform",
        +                "Noto Sans Cypriot",
        +                "Noto Sans Cypro Minoan",
        +                "Noto Sans Deseret",
        +                "Noto Sans Devanagari",
        +                "Noto Sans Display",
        +                "Noto Sans Duployan",
        +                "Noto Sans Egyptian Hieroglyphs",
        +                "Noto Sans Elbasan",
        +                "Noto Sans Elymaic",
        +                "Noto Sans Ethiopic",
        +                "Noto Sans Georgian",
        +                "Noto Sans Glagolitic",
        +                "Noto Sans Gothic",
        +                "Noto Sans Grantha",
        +                "Noto Sans Gujarati",
        +                "Noto Sans Gunjala Gondi",
        +                "Noto Sans Gurmukhi",
        +                "Noto Sans HK",
        +                "Noto Sans Hanifi Rohingya",
        +                "Noto Sans Hanunoo",
        +                "Noto Sans Hatran",
        +                "Noto Sans Hebrew",
        +                "Noto Sans Imperial Aramaic",
        +                "Noto Sans Indic Siyaq Numbers",
        +                "Noto Sans Inscriptional Pahlavi",
        +                "Noto Sans Inscriptional Parthian",
        +                "Noto Sans JP",
        +                "Noto Sans Javanese",
        +                "Noto Sans KR",
        +                "Noto Sans Kaithi",
        +                "Noto Sans Kannada",
        +                "Noto Sans Kawi",
        +                "Noto Sans Kayah Li",
        +                "Noto Sans Kharoshthi",
        +                "Noto Sans Khmer",
        +                "Noto Sans Khojki",
        +                "Noto Sans Khudawadi",
        +                "Noto Sans Lao",
        +                "Noto Sans Lao Looped",
        +                "Noto Sans Lepcha",
        +                "Noto Sans Limbu",
        +                "Noto Sans Linear A",
        +                "Noto Sans Linear B",
        +                "Noto Sans Lisu",
        +                "Noto Sans Lycian",
        +                "Noto Sans Lydian",
        +                "Noto Sans Mahajani",
        +                "Noto Sans Malayalam",
        +                "Noto Sans Mandaic",
        +                "Noto Sans Manichaean",
        +                "Noto Sans Marchen",
        +                "Noto Sans Masaram Gondi",
        +                "Noto Sans Math",
        +                "Noto Sans Mayan Numerals",
        +                "Noto Sans Medefaidrin",
        +                "Noto Sans Meetei Mayek",
        +                "Noto Sans Mende Kikakui",
        +                "Noto Sans Meroitic",
        +                "Noto Sans Miao",
        +                "Noto Sans Modi",
        +                "Noto Sans Mongolian",
        +                "Noto Sans Mono",
        +                "Noto Sans Mro",
        +                "Noto Sans Multani",
        +                "Noto Sans Myanmar",
        +                "Noto Sans NKo",
        +                "Noto Sans NKo Unjoined",
        +                "Noto Sans Nabataean",
        +                "Noto Sans Nag Mundari",
        +                "Noto Sans Nandinagari",
        +                "Noto Sans New Tai Lue",
        +                "Noto Sans Newa",
        +                "Noto Sans Nushu",
        +                "Noto Sans Ogham",
        +                "Noto Sans Ol Chiki",
        +                "Noto Sans Old Hungarian",
        +                "Noto Sans Old Italic",
        +                "Noto Sans Old North Arabian",
        +                "Noto Sans Old Permic",
        +                "Noto Sans Old Persian",
        +                "Noto Sans Old Sogdian",
        +                "Noto Sans Old South Arabian",
        +                "Noto Sans Old Turkic",
        +                "Noto Sans Oriya",
        +                "Noto Sans Osage",
        +                "Noto Sans Osmanya",
        +                "Noto Sans Pahawh Hmong",
        +                "Noto Sans Palmyrene",
        +                "Noto Sans Pau Cin Hau",
        +                "Noto Sans PhagsPa",
        +                "Noto Sans Phoenician",
        +                "Noto Sans Psalter Pahlavi",
        +                "Noto Sans Rejang",
        +                "Noto Sans Runic",
        +                "Noto Sans SC",
        +                "Noto Sans Samaritan",
        +                "Noto Sans Saurashtra",
        +                "Noto Sans Sharada",
        +                "Noto Sans Shavian",
        +                "Noto Sans Siddham",
        +                "Noto Sans SignWriting",
        +                "Noto Sans Sinhala",
        +                "Noto Sans Sogdian",
        +                "Noto Sans Sora Sompeng",
        +                "Noto Sans Soyombo",
        +                "Noto Sans Sundanese",
        +                "Noto Sans Sunuwar",
        +                "Noto Sans Syloti Nagri",
        +                "Noto Sans Symbols",
        +                "Noto Sans Symbols 2",
        +                "Noto Sans Syriac",
        +                "Noto Sans Syriac Eastern",
        +                "Noto Sans Syriac Western",
        +                "Noto Sans TC",
        +                "Noto Sans Tagalog",
        +                "Noto Sans Tagbanwa",
        +                "Noto Sans Tai Le",
        +                "Noto Sans Tai Tham",
        +                "Noto Sans Tai Viet",
        +                "Noto Sans Takri",
        +                "Noto Sans Tamil",
        +                "Noto Sans Tamil Supplement",
        +                "Noto Sans Tangsa",
        +                "Noto Sans Telugu",
        +                "Noto Sans Thaana",
        +                "Noto Sans Thai",
        +                "Noto Sans Thai Looped",
        +                "Noto Sans Tifinagh",
        +                "Noto Sans Tirhuta",
        +                "Noto Sans Ugaritic",
        +                "Noto Sans Vai",
        +                "Noto Sans Vithkuqi",
        +                "Noto Sans Wancho",
        +                "Noto Sans Warang Citi",
        +                "Noto Sans Yi",
        +                "Noto Sans Zanabazar Square",
        +                "Noto Serif",
        +                "Noto Serif Ahom",
        +                "Noto Serif Armenian",
        +                "Noto Serif Balinese",
        +                "Noto Serif Bengali",
        +                "Noto Serif Devanagari",
        +                "Noto Serif Display",
        +                "Noto Serif Dives Akuru",
        +                "Noto Serif Dogra",
        +                "Noto Serif Ethiopic",
        +                "Noto Serif Georgian",
        +                "Noto Serif Grantha",
        +                "Noto Serif Gujarati",
        +                "Noto Serif Gurmukhi",
        +                "Noto Serif HK",
        +                "Noto Serif Hebrew",
        +                "Noto Serif Hentaigana",
        +                "Noto Serif JP",
        +                "Noto Serif KR",
        +                "Noto Serif Kannada",
        +                "Noto Serif Khitan Small Script",
        +                "Noto Serif Khmer",
        +                "Noto Serif Khojki",
        +                "Noto Serif Lao",
        +                "Noto Serif Makasar",
        +                "Noto Serif Malayalam",
        +                "Noto Serif Myanmar",
        +                "Noto Serif NP Hmong",
        +                "Noto Serif Old Uyghur",
        +                "Noto Serif Oriya",
        +                "Noto Serif Ottoman Siyaq",
        +                "Noto Serif SC",
        +                "Noto Serif Sinhala",
        +                "Noto Serif TC",
        +                "Noto Serif Tamil",
        +                "Noto Serif Tangut",
        +                "Noto Serif Telugu",
        +                "Noto Serif Thai",
        +                "Noto Serif Tibetan",
        +                "Noto Serif Todhri",
        +                "Noto Serif Toto",
        +                "Noto Serif Vithkuqi",
        +                "Noto Serif Yezidi",
        +                "Noto Traditional Nushu",
        +                "Noto Znamenny Musical Notation",
        +                "Nova Cut",
        +                "Nova Flat",
        +                "Nova Mono",
        +                "Nova Oval",
        +                "Nova Round",
        +                "Nova Script",
        +                "Nova Slim",
        +                "Nova Square",
        +                "Numans",
        +                "Nunito",
        +                "Nunito Sans",
        +                "Nuosu SIL",
        +                "Odibee Sans",
        +                "Odor Mean Chey",
        +                "Offside",
        +                "Oi",
        +                "Ojuju",
        +                "Old Standard TT",
        +                "Oldenburg",
        +                "Ole",
        +                "Oleo Script",
        +                "Oleo Script Swash Caps",
        +                "Onest",
        +                "Oooh Baby",
        +                "Open Sans",
        +                "Oranienbaum",
        +                "Orbit",
        +                "Orbitron",
        +                "Oregano",
        +                "Orelega One",
        +                "Orienta",
        +                "Original Surfer",
        +                "Oswald",
        +                "Outfit",
        +                "Over the Rainbow",
        +                "Overlock",
        +                "Overlock SC",
        +                "Overpass",
        +                "Overpass Mono",
        +                "Ovo",
        +                "Oxanium",
        +                "Oxygen",
        +                "Oxygen Mono",
        +                "PT Mono",
        +                "PT Sans",
        +                "PT Sans Caption",
        +                "PT Sans Narrow",
        +                "PT Serif",
        +                "PT Serif Caption",
        +                "Pacifico",
        +                "Padauk",
        +                "Padyakke Expanded One",
        +                "Palanquin",
        +                "Palanquin Dark",
        +                "Palette Mosaic",
        +                "Pangolin",
        +                "Paprika",
        +                "Parastoo",
        +                "Parisienne",
        +                "Parkinsans",
        +                "Passero One",
        +                "Passion One",
        +                "Passions Conflict",
        +                "Pathway Extreme",
        +                "Pathway Gothic One",
        +                "Patrick Hand",
        +                "Patrick Hand SC",
        +                "Pattaya",
        +                "Patua One",
        +                "Pavanam",
        +                "Paytone One",
        +                "Peddana",
        +                "Peralta",
        +                "Permanent Marker",
        +                "Petemoss",
        +                "Petit Formal Script",
        +                "Petrona",
        +                "Phetsarath",
        +                "Philosopher",
        +                "Phudu",
        +                "Piazzolla",
        +                "Piedra",
        +                "Pinyon Script",
        +                "Pirata One",
        +                "Pixelify Sans",
        +                "Plaster",
        +                "Platypi",
        +                "Play",
        +                "Playball",
        +                "Playfair",
        +                "Playfair Display",
        +                "Playfair Display SC",
        +                "Playpen Sans",
        +                "Playpen Sans Arabic",
        +                "Playpen Sans Deva",
        +                "Playpen Sans Hebrew",
        +                "Playpen Sans Thai",
        +                "Playwrite AR",
        +                "Playwrite AR Guides",
        +                "Playwrite AT",
        +                "Playwrite AT Guides",
        +                "Playwrite AU NSW",
        +                "Playwrite AU NSW Guides",
        +                "Playwrite AU QLD",
        +                "Playwrite AU QLD Guides",
        +                "Playwrite AU SA",
        +                "Playwrite AU SA Guides",
        +                "Playwrite AU TAS",
        +                "Playwrite AU TAS Guides",
        +                "Playwrite AU VIC",
        +                "Playwrite AU VIC Guides",
        +                "Playwrite BE VLG",
        +                "Playwrite BE VLG Guides",
        +                "Playwrite BE WAL",
        +                "Playwrite BE WAL Guides",
        +                "Playwrite BR",
        +                "Playwrite BR Guides",
        +                "Playwrite CA",
        +                "Playwrite CA Guides",
        +                "Playwrite CL",
        +                "Playwrite CL Guides",
        +                "Playwrite CO",
        +                "Playwrite CO Guides",
        +                "Playwrite CU",
        +                "Playwrite CU Guides",
        +                "Playwrite CZ",
        +                "Playwrite CZ Guides",
        +                "Playwrite DE Grund",
        +                "Playwrite DE Grund Guides",
        +                "Playwrite DE LA",
        +                "Playwrite DE LA Guides",
        +                "Playwrite DE SAS",
        +                "Playwrite DE SAS Guides",
        +                "Playwrite DE VA",
        +                "Playwrite DE VA Guides",
        +                "Playwrite DK Loopet",
        +                "Playwrite DK Loopet Guides",
        +                "Playwrite DK Uloopet",
        +                "Playwrite DK Uloopet Guides",
        +                "Playwrite ES",
        +                "Playwrite ES Deco",
        +                "Playwrite ES Deco Guides",
        +                "Playwrite ES Guides",
        +                "Playwrite FR Moderne",
        +                "Playwrite FR Moderne Guides",
        +                "Playwrite FR Trad",
        +                "Playwrite FR Trad Guides",
        +                "Playwrite GB J",
        +                "Playwrite GB J Guides",
        +                "Playwrite GB S",
        +                "Playwrite GB S Guides",
        +                "Playwrite HR",
        +                "Playwrite HR Guides",
        +                "Playwrite HR Lijeva",
        +                "Playwrite HR Lijeva Guides",
        +                "Playwrite HU",
        +                "Playwrite HU Guides",
        +                "Playwrite ID",
        +                "Playwrite ID Guides",
        +                "Playwrite IE",
        +                "Playwrite IE Guides",
        +                "Playwrite IN",
        +                "Playwrite IN Guides",
        +                "Playwrite IS",
        +                "Playwrite IS Guides",
        +                "Playwrite IT Moderna",
        +                "Playwrite IT Moderna Guides",
        +                "Playwrite IT Trad",
        +                "Playwrite IT Trad Guides",
        +                "Playwrite MX",
        +                "Playwrite MX Guides",
        +                "Playwrite NG Modern",
        +                "Playwrite NG Modern Guides",
        +                "Playwrite NL",
        +                "Playwrite NL Guides",
        +                "Playwrite NO",
        +                "Playwrite NO Guides",
        +                "Playwrite NZ",
        +                "Playwrite NZ Basic",
        +                "Playwrite NZ Basic Guides",
        +                "Playwrite NZ Guides",
        +                "Playwrite PE",
        +                "Playwrite PE Guides",
        +                "Playwrite PL",
        +                "Playwrite PL Guides",
        +                "Playwrite PT",
        +                "Playwrite PT Guides",
        +                "Playwrite RO",
        +                "Playwrite RO Guides",
        +                "Playwrite SK",
        +                "Playwrite SK Guides",
        +                "Playwrite TZ",
        +                "Playwrite TZ Guides",
        +                "Playwrite US Modern",
        +                "Playwrite US Modern Guides",
        +                "Playwrite US Trad",
        +                "Playwrite US Trad Guides",
        +                "Playwrite VN",
        +                "Playwrite VN Guides",
        +                "Playwrite ZA",
        +                "Playwrite ZA Guides",
        +                "Pliant",
        +                "Plus Jakarta Sans",
        +                "Pochaevsk",
        +                "Podkova",
        +                "Poetsen One",
        +                "Poiret One",
        +                "Poller One",
        +                "Poltawski Nowy",
        +                "Poly",
        +                "Pompiere",
        +                "Ponnala",
        +                "Ponomar",
        +                "Pontano Sans",
        +                "Poor Story",
        +                "Poppins",
        +                "Port Lligat Sans",
        +                "Port Lligat Slab",
        +                "Potta One",
        +                "Pragati Narrow",
        +                "Praise",
        +                "Prata",
        +                "Preahvihear",
        +                "Press Start 2P",
        +                "Pridi",
        +                "Princess Sofia",
        +                "Prociono",
        +                "Prompt",
        +                "Prosto One",
        +                "Protest Guerrilla",
        +                "Protest Revolution",
        +                "Protest Riot",
        +                "Protest Strike",
        +                "Proza Libre",
        +                "Public Sans",
        +                "Puppies Play",
        +                "Puritan",
        +                "Purple Purse",
        +                "Qahiri",
        +                "Quando",
        +                "Quantico",
        +                "Quattrocento",
        +                "Quattrocento Sans",
        +                "Questrial",
        +                "Quicksand",
        +                "Quintessential",
        +                "Qwigley",
        +                "Qwitcher Grypen",
        +                "REM",
        +                "Racing Sans One",
        +                "Radio Canada",
        +                "Radio Canada Big",
        +                "Radley",
        +                "Rajdhani",
        +                "Rakkas",
        +                "Raleway",
        +                "Raleway Dots",
        +                "Ramabhadra",
        +                "Ramaraja",
        +                "Rambla",
        +                "Rammetto One",
        +                "Rampart One",
        +                "Ramsina",
        +                "Ranchers",
        +                "Rancho",
        +                "Ranga",
        +                "Rasa",
        +                "Rationale",
        +                "Ravi Prakash",
        +                "Readex Pro",
        +                "Recursive",
        +                "Red Hat Display",
        +                "Red Hat Mono",
        +                "Red Hat Text",
        +                "Red Rose",
        +                "Redacted",
        +                "Redacted Script",
        +                "Reddit Mono",
        +                "Reddit Sans",
        +                "Reddit Sans Condensed",
        +                "Redressed",
        +                "Reem Kufi",
        +                "Reem Kufi Fun",
        +                "Reem Kufi Ink",
        +                "Reenie Beanie",
        +                "Reggae One",
        +                "Rethink Sans",
        +                "Revalia",
        +                "Rhodium Libre",
        +                "Ribeye",
        +                "Ribeye Marrow",
        +                "Righteous",
        +                "Risque",
        +                "Road Rage",
        +                "Roboto",
        +                "Roboto Condensed",
        +                "Roboto Flex",
        +                "Roboto Mono",
        +                "Roboto Serif",
        +                "Roboto Slab",
        +                "Rochester",
        +                "Rock 3D",
        +                "Rock Salt",
        +                "RocknRoll One",
        +                "Rokkitt",
        +                "Romanesco",
        +                "Ropa Sans",
        +                "Rosario",
        +                "Rosarivo",
        +                "Rouge Script",
        +                "Rowdies",
        +                "Rozha One",
        +                "Rubik",
        +                "Rubik 80s Fade",
        +                "Rubik Beastly",
        +                "Rubik Broken Fax",
        +                "Rubik Bubbles",
        +                "Rubik Burned",
        +                "Rubik Dirt",
        +                "Rubik Distressed",
        +                "Rubik Doodle Shadow",
        +                "Rubik Doodle Triangles",
        +                "Rubik Gemstones",
        +                "Rubik Glitch",
        +                "Rubik Glitch Pop",
        +                "Rubik Iso",
        +                "Rubik Lines",
        +                "Rubik Maps",
        +                "Rubik Marker Hatch",
        +                "Rubik Maze",
        +                "Rubik Microbe",
        +                "Rubik Mono One",
        +                "Rubik Moonrocks",
        +                "Rubik Pixels",
        +                "Rubik Puddles",
        +                "Rubik Scribble",
        +                "Rubik Spray Paint",
        +                "Rubik Storm",
        +                "Rubik Vinyl",
        +                "Rubik Wet Paint",
        +                "Ruda",
        +                "Rufina",
        +                "Ruge Boogie",
        +                "Ruluko",
        +                "Rum Raisin",
        +                "Ruslan Display",
        +                "Russo One",
        +                "Ruthie",
        +                "Ruwudu",
        +                "Rye",
        +                "SN Pro",
        +                "STIX Two Math",
        +                "STIX Two Text",
        +                "SUSE",
        +                "SUSE Mono",
        +                "Sacramento",
        +                "Sahitya",
        +                "Sail",
        +                "Saira",
        +                "Saira Condensed",
        +                "Saira Extra Condensed",
        +                "Saira Semi Condensed",
        +                "Saira Stencil",
        +                "Salsa",
        +                "Sanchez",
        +                "Sancreek",
        +                "Sankofa Display",
        +                "Sansation",
        +                "Sansita",
        +                "Sansita Swashed",
        +                "Sarabun",
        +                "Sarala",
        +                "Sarina",
        +                "Sarpanch",
        +                "Sassy Frass",
        +                "Satisfy",
        +                "Savate",
        +                "Sawarabi Gothic",
        +                "Sawarabi Mincho",
        +                "Scada",
        +                "Scheherazade New",
        +                "Schibsted Grotesk",
        +                "Schoolbell",
        +                "Science Gothic",
        +                "Scope One",
        +                "Seaweed Script",
        +                "Secular One",
        +                "Sedan",
        +                "Sedan SC",
        +                "Sedgwick Ave",
        +                "Sedgwick Ave Display",
        +                "Sekuya",
        +                "Sen",
        +                "Send Flowers",
        +                "Sevillana",
        +                "Seymour One",
        +                "Shadows Into Light",
        +                "Shadows Into Light Two",
        +                "Shafarik",
        +                "Shalimar",
        +                "Shantell Sans",
        +                "Shanti",
        +                "Share",
        +                "Share Tech",
        +                "Share Tech Mono",
        +                "Shippori Antique",
        +                "Shippori Antique B1",
        +                "Shippori Mincho",
        +                "Shippori Mincho B1",
        +                "Shizuru",
        +                "Shojumaru",
        +                "Short Stack",
        +                "Shrikhand",
        +                "Siemreap",
        +                "Sigmar",
        +                "Sigmar One",
        +                "Signika",
        +                "Signika Negative",
        +                "Silkscreen",
        +                "Simonetta",
        +                "Single Day",
        +                "Sintony",
        +                "Sirin Stencil",
        +                "Sirivennela",
        +                "Six Caps",
        +                "Sixtyfour",
        +                "Sixtyfour Convergence",
        +                "Skranji",
        +                "Slabo 13px",
        +                "Slabo 27px",
        +                "Slackey",
        +                "Slackside One",
        +                "Smokum",
        +                "Smooch",
        +                "Smooch Sans",
        +                "Smythe",
        +                "Sniglet",
        +                "Snippet",
        +                "Snowburst One",
        +                "Sofadi One",
        +                "Sofia",
        +                "Sofia Sans",
        +                "Sofia Sans Condensed",
        +                "Sofia Sans Extra Condensed",
        +                "Sofia Sans Semi Condensed",
        +                "Solitreo",
        +                "Solway",
        +                "Sometype Mono",
        +                "Song Myung",
        +                "Sono",
        +                "Sonsie One",
        +                "Sora",
        +                "Sorts Mill Goudy",
        +                "Sour Gummy",
        +                "Source Code Pro",
        +                "Source Sans 3",
        +                "Source Serif 4",
        +                "Space Grotesk",
        +                "Space Mono",
        +                "Special Elite",
        +                "Special Gothic",
        +                "Special Gothic Condensed One",
        +                "Special Gothic Expanded One",
        +                "Spectral",
        +                "Spectral SC",
        +                "Spicy Rice",
        +                "Spinnaker",
        +                "Spirax",
        +                "Splash",
        +                "Spline Sans",
        +                "Spline Sans Mono",
        +                "Squada One",
        +                "Square Peg",
        +                "Sree Krushnadevaraya",
        +                "Sriracha",
        +                "Srisakdi",
        +                "Staatliches",
        +                "Stack Sans Headline",
        +                "Stack Sans Notch",
        +                "Stack Sans Text",
        +                "Stalemate",
        +                "Stalinist One",
        +                "Stardos Stencil",
        +                "Stick",
        +                "Stick No Bills",
        +                "Stint Ultra Condensed",
        +                "Stint Ultra Expanded",
        +                "Stoke",
        +                "Story Script",
        +                "Strait",
        +                "Strichpunkt Sans",
        +                "Style Script",
        +                "Stylish",
        +                "Sue Ellen Francisco",
        +                "Suez One",
        +                "Sulphur Point",
        +                "Sumana",
        +                "Sunflower",
        +                "Sunshiney",
        +                "Supermercado One",
        +                "Sura",
        +                "Suranna",
        +                "Suravaram",
        +                "Suwannaphum",
        +                "Swanky and Moo Moo",
        +                "Syncopate",
        +                "Syne",
        +                "Syne Mono",
        +                "Syne Tactile",
        +                "TASA Explorer",
        +                "TASA Orbiter",
        +                "Tac One",
        +                "Tagesschrift",
        +                "Tai Heritage Pro",
        +                "Tajawal",
        +                "Tangerine",
        +                "Tapestry",
        +                "Taprom",
        +                "Tauri",
        +                "Taviraj",
        +                "Teachers",
        +                "Teko",
        +                "Tektur",
        +                "Telex",
        +                "Tenali Ramakrishna",
        +                "Tenor Sans",
        +                "Text Me One",
        +                "Texturina",
        +                "Thasadith",
        +                "The Girl Next Door",
        +                "The Nautigal",
        +                "Tienne",
        +                "TikTok Sans",
        +                "Tillana",
        +                "Tilt Neon",
        +                "Tilt Prism",
        +                "Tilt Warp",
        +                "Timmana",
        +                "Tinos",
        +                "Tiny5",
        +                "Tiro Bangla",
        +                "Tiro Devanagari Hindi",
        +                "Tiro Devanagari Marathi",
        +                "Tiro Devanagari Sanskrit",
        +                "Tiro Gurmukhi",
        +                "Tiro Kannada",
        +                "Tiro Tamil",
        +                "Tiro Telugu",
        +                "Tirra",
        +                "Titan One",
        +                "Titillium Web",
        +                "Tomorrow",
        +                "Tourney",
        +                "Trade Winds",
        +                "Train One",
        +                "Triodion",
        +                "Trirong",
        +                "Trispace",
        +                "Trocchi",
        +                "Trochut",
        +                "Truculenta",
        +                "Trykker",
        +                "Tsukimi Rounded",
        +                "Tuffy",
        +                "Tulpen One",
        +                "Turret Road",
        +                "Twinkle Star",
        +                "Ubuntu",
        +                "Ubuntu Condensed",
        +                "Ubuntu Mono",
        +                "Ubuntu Sans",
        +                "Ubuntu Sans Mono",
        +                "Uchen",
        +                "Ultra",
        +                "Unbounded",
        +                "Uncial Antiqua",
        +                "Underdog",
        +                "Unica One",
        +                "UnifrakturCook",
        +                "UnifrakturMaguntia",
        +                "Unkempt",
        +                "Unlock",
        +                "Unna",
        +                "UoqMunThenKhung",
        +                "Updock",
        +                "Urbanist",
        +                "VT323",
        +                "Vampiro One",
        +                "Varela",
        +                "Varela Round",
        +                "Varta",
        +                "Vast Shadow",
        +                "Vazirmatn",
        +                "Vend Sans",
        +                "Vesper Libre",
        +                "Viaoda Libre",
        +                "Vibes",
        +                "Vibur",
        +                "Victor Mono",
        +                "Vidaloka",
        +                "Viga",
        +                "Vina Sans",
        +                "Voces",
        +                "Volkhov",
        +                "Vollkorn",
        +                "Vollkorn SC",
        +                "Voltaire",
        +                "Vujahday Script",
        +                "WDXL Lubrifont JP N",
        +                "WDXL Lubrifont SC",
        +                "WDXL Lubrifont TC",
        +                "Waiting for the Sunrise",
        +                "Wallpoet",
        +                "Walter Turncoat",
        +                "Warnes",
        +                "Water Brush",
        +                "Waterfall",
        +                "Wavefont",
        +                "Wellfleet",
        +                "Wendy One",
        +                "Whisper",
        +                "WindSong",
        +                "Winky Rough",
        +                "Winky Sans",
        +                "Wire One",
        +                "Wittgenstein",
        +                "Wix Madefor Display",
        +                "Wix Madefor Text",
        +                "Work Sans",
        +                "Workbench",
        +                "Xanh Mono",
        +                "Yaldevi",
        +                "Yanone Kaffeesatz",
        +                "Yantramanav",
        +                "Yarndings 12",
        +                "Yarndings 12 Charted",
        +                "Yarndings 20",
        +                "Yarndings 20 Charted",
        +                "Yatra One",
        +                "Yellowtail",
        +                "Yeon Sung",
        +                "Yeseva One",
        +                "Yesteryear",
        +                "Yomogi",
        +                "Young Serif",
        +                "Yrsa",
        +                "Ysabeau",
        +                "Ysabeau Infant",
        +                "Ysabeau Office",
        +                "Ysabeau SC",
        +                "Yuji Boku",
        +                "Yuji Hentaigana Akari",
        +                "Yuji Hentaigana Akebono",
        +                "Yuji Mai",
        +                "Yuji Syuku",
        +                "Yusei Magic",
        +                "Yuyu",
        +                "Yuyu Short",
        +                "ZCOOL KuaiLe",
        +                "ZCOOL QingKe HuangYou",
        +                "ZCOOL XiaoWei",
        +                "Zain",
        +                "Zalando Sans",
        +                "Zalando Sans Expanded",
        +                "Zalando Sans SemiExpanded",
        +                "Zen Antique",
        +                "Zen Antique Soft",
        +                "Zen Dots",
        +                "Zen Kaku Gothic Antique",
        +                "Zen Kaku Gothic New",
        +                "Zen Kurenaido",
        +                "Zen Loop",
        +                "Zen Maru Gothic",
        +                "Zen Old Mincho",
        +                "Zen Tokyo Zoo",
        +                "Zeyada",
        +                "Zhi Mang Xing",
        +                "Zilla Slab",
        +                "Zilla Slab Highlight"
        +              ],
        +              "type": "string"
        +            },
        +            "fontSize": {
        +              "type": "number"
        +            },
        +            "footerColor": {
        +              "type": "string"
        +            },
        +            "footerFontSize": {
        +              "type": "number"
        +            },
        +            "footerGap": {
        +              "type": "number"
        +            },
        +            "footerLinkColor": {
        +              "type": "string"
        +            },
        +            "gridColor": {
        +              "type": "string"
        +            },
        +            "gridLineWidth": {
        +              "type": "number"
        +            },
        +            "gridLines": {
        +              "enum": [
        +                "none",
        +                "value",
        +                "both"
        +              ],
        +              "type": "string"
        +            },
        +            "headerGap": {
        +              "type": "number"
        +            },
        +            "labelColor": {
        +              "type": "string"
        +            },
        +            "labelFontSize": {
        +              "type": "number"
        +            },
        +            "labelFontWeight": {
        +              "type": "string"
        +            },
        +            "labelHaloWidth": {
        +              "type": "number"
        +            },
        +            "labelMutedFontWeight": {
        +              "type": "string"
        +            },
        +            "labelMutedOpacity": {
        +              "type": "number"
        +            },
        +            "lineStrokeWidth": {
        +              "type": "number"
        +            },
        +            "numericFontFamily": {
        +              "type": "string"
        +            },
        +            "pieCornerRadius": {
        +              "type": "number"
        +            },
        +            "sequentialRange": {
        +              "items": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "string"
        +                }
        +              ],
        +              "maxItems": 2,
        +              "minItems": 2,
        +              "type": "array"
        +            },
        +            "subtitleColor": {
        +              "type": "string"
        +            },
        +            "subtitleFontSize": {
        +              "type": "number"
        +            },
        +            "tickDensity": {
        +              "type": "number"
        +            },
        +            "tickLabelColor": {
        +              "type": "string"
        +            },
        +            "tickLabelFontWeight": {
        +              "type": "string"
        +            },
        +            "tickPadding": {
        +              "type": "number"
        +            },
        +            "tickSize": {
        +              "type": "number"
        +            },
        +            "titleColor": {
        +              "type": "string"
        +            },
        +            "titleFontFamily": {
        +              "type": "string"
        +            },
        +            "titleFontSize": {
        +              "type": "number"
        +            },
        +            "titleFontWeight": {
        +              "type": "string"
        +            },
        +            "titleSubtitleGap": {
        +              "type": "number"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "title": {
        +          "type": "string"
        +        },
        +        "version": {
        +          "const": "2026-03-20",
        +          "type": "string"
        +        },
        +        "width": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "x": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "display": {
        +              "default": true,
        +              "type": "boolean"
        +            },
        +            "domain": {
        +              "anyOf": [
        +                {
        +                  "items": [
        +                    {
        +                      "type": "number"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                }
        +              ]
        +            },
        +            "label": {
        +              "type": "string"
        +            },
        +            "nice": {
        +              "type": "boolean"
        +            },
        +            "tickFormat": {
        +              "type": "string"
        +            },
        +            "type": {
        +              "enum": [
        +                "linear",
        +                "utc",
        +                "band"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "y": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "display": {
        +              "default": true,
        +              "type": "boolean"
        +            },
        +            "domain": {
        +              "anyOf": [
        +                {
        +                  "items": [
        +                    {
        +                      "type": "number"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                }
        +              ]
        +            },
        +            "label": {
        +              "type": "string"
        +            },
        +            "nice": {
        +              "type": "boolean"
        +            },
        +            "tickFormat": {
        +              "type": "string"
        +            },
        +            "type": {
        +              "enum": [
        +                "linear",
        +                "utc",
        +                "band"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "type": "object"
        +        }
        +      },
        +      "required": [
        +        "version",
        +        "format",
        +        "marks"
        +      ],
        +      "title": "Szum Chart Configuration",
        +      "type": "object"
        +    },
        +    "valid": {
        +      "type": "boolean"
        +    }
        +  },
        +  "required": [
        +    "valid",
        +    "message",
        +    "errors",
        +    "diagnostics"
        +  ],
        +  "type": "object"
        +}
      • changedOutput schema / required
        Previous value: -[
        -  "view",
        -  "title",
        -  "imageUrl",
        -  "format",
        -  "mimeType",
        -  "expiresAt"
        -]New value: +[
        +  "view",
        +  "title",
        +  "imageUrl",
        +  "format",
        +  "mimeType",
        +  "expiresAt",
        +  "validation"
        +]
    • Changedsave_chart6 fields changed
      • addedInput schema / properties / acknowledgeWarnings
        Added value: +{
        +  "description": "Set true only after the user explicitly approves every warning returned for this exact config",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / idempotencyKey
        Added value: +{
        +  "description": "Stable retry key of at most 255 characters; reuse only for the exact same config",
        +  "maxLength": 255,
        +  "minLength": 1,
        +  "type": "string"
        +}
      • changedOutput schema / properties / format / enum
        Previous value: -[
        -  "png",
        -  "svg"
        -]New value: +[
        +  "svg",
        +  "png"
        +]
      • changedOutput schema / properties / mimeType / enum
        Previous value: -[
        -  "image/png",
        -  "image/svg+xml"
        -]New value: +[
        +  "image/svg+xml",
        +  "image/png"
        +]
      • addedOutput schema / properties / validation
        Added value: +{
        +  "additionalProperties": false,
        +  "properties": {
        +    "diagnostics": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "code": {
        +            "type": "string"
        +          },
        +          "details": {
        +            "additionalProperties": {},
        +            "propertyNames": {
        +              "type": "string"
        +            },
        +            "type": "object"
        +          },
        +          "message": {
        +            "type": "string"
        +          },
        +          "path": {
        +            "items": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ]
        +            },
        +            "type": "array"
        +          },
        +          "relatedPaths": {
        +            "items": {
        +              "items": {
        +                "anyOf": [
        +                  {
        +                    "type": "string"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ]
        +              },
        +              "type": "array"
        +            },
        +            "type": "array"
        +          },
        +          "severity": {
        +            "enum": [
        +              "error",
        +              "warning",
        +              "suggestion"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "code",
        +          "severity",
        +          "path",
        +          "message",
        +          "details"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "errors": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "code": {
        +            "type": "string"
        +          },
        +          "details": {
        +            "additionalProperties": {},
        +            "propertyNames": {
        +              "type": "string"
        +            },
        +            "type": "object"
        +          },
        +          "message": {
        +            "type": "string"
        +          },
        +          "path": {
        +            "items": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ]
        +            },
        +            "type": "array"
        +          },
        +          "relatedPaths": {
        +            "items": {
        +              "items": {
        +                "anyOf": [
        +                  {
        +                    "type": "string"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ]
        +              },
        +              "type": "array"
        +            },
        +            "type": "array"
        +          },
        +          "severity": {
        +            "enum": [
        +              "error",
        +              "warning",
        +              "suggestion"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "code",
        +          "severity",
        +          "path",
        +          "message",
        +          "details"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "message": {
        +      "type": "string"
        +    },
        +    "suggestedConfig": {
        +      "additionalProperties": {},
        +      "description": "Schema version 2026-03-20. Send this JSON to POST https://szum.io/validate to validate it or POST https://szum.io/chart to render a chart image.",
        +      "properties": {
        +        "attribution": {
        +          "description": "Show a small \"Made with Szum\" credit in the bottom-right. Always on for free and keyless renders; Creator and Pro omit it by default and set true to opt in.",
        +          "type": "boolean"
        +        },
        +        "color": {
        +          "anyOf": [
        +            {
        +              "additionalProperties": {},
        +              "properties": {
        +                "domain": {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                },
        +                "label": {
        +                  "type": "string"
        +                },
        +                "range": {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                },
        +                "type": {
        +                  "const": "categorical",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": {},
        +              "properties": {
        +                "domain": {
        +                  "items": [
        +                    {
        +                      "type": "number"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                "label": {
        +                  "type": "string"
        +                },
        +                "range": {
        +                  "items": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "string"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                "type": {
        +                  "const": "sequential",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "label": {
        +                  "type": "string"
        +                }
        +              },
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "data": {
        +          "items": {
        +            "additionalProperties": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ]
        +            },
        +            "propertyNames": {
        +              "type": "string"
        +            },
        +            "type": "object"
        +          },
        +          "type": "array"
        +        },
        +        "footer": {
        +          "description": "Caption below the chart (a source line, methodology note, date). URLs, bare domains, and [label](url) links in it are auto-detected and rendered as inline links on every surface.",
        +          "type": "string"
        +        },
        +        "format": {
        +          "enum": [
        +            "svg",
        +            "png"
        +          ],
        +          "type": "string"
        +        },
        +        "headerAlign": {
        +          "enum": [
        +            "left",
        +            "center",
        +            "right"
        +          ],
        +          "type": "string"
        +        },
        +        "height": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "locale": {
        +          "description": "Locale identifier accepted by JavaScript Intl and associated with the chart content, such as en, pl, or zh-Hant.",
        +          "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +          "type": "string"
        +        },
        +        "margin": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "bottom": {
        +              "type": "number"
        +            },
        +            "left": {
        +              "type": "number"
        +            },
        +            "right": {
        +              "type": "number"
        +            },
        +            "top": {
        +              "type": "number"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "marks": {
        +          "items": {
        +            "oneOf": [
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "additionalProperties": {},
        +                    "properties": {
        +                      "field": {
        +                        "type": "string"
        +                      },
        +                      "format": {
        +                        "type": "string"
        +                      }
        +                    },
        +                    "required": [
        +                      "field"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  "r": {
        +                    "type": "number"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "dot",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "curve": {
        +                    "enum": [
        +                      "linear",
        +                      "monotone",
        +                      "step"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "end": {
        +                            "anyOf": [
        +                              {
        +                                "type": "boolean"
        +                              },
        +                              {
        +                                "items": {
        +                                  "enum": [
        +                                    "category",
        +                                    "value"
        +                                  ],
        +                                  "type": "string"
        +                                },
        +                                "type": "array"
        +                              }
        +                            ],
        +                            "default": [
        +                              "category"
        +                            ]
        +                          },
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "points": {
        +                            "anyOf": [
        +                              {
        +                                "enum": [
        +                                  "extrema",
        +                                  "all",
        +                                  "ends"
        +                                ],
        +                                "type": "string"
        +                              },
        +                              {
        +                                "const": false,
        +                                "type": "boolean"
        +                              },
        +                              {
        +                                "additionalProperties": {},
        +                                "properties": {
        +                                  "at": {
        +                                    "enum": [
        +                                      "extrema",
        +                                      "all",
        +                                      "ends"
        +                                    ],
        +                                    "type": "string"
        +                                  },
        +                                  "show": {
        +                                    "default": [
        +                                      "value"
        +                                    ],
        +                                    "items": {
        +                                      "enum": [
        +                                        "value",
        +                                        "category"
        +                                      ],
        +                                      "type": "string"
        +                                    },
        +                                    "type": "array"
        +                                  }
        +                                },
        +                                "required": [
        +                                  "at"
        +                                ],
        +                                "type": "object"
        +                              }
        +                            ],
        +                            "default": false
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "line",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "cornerRadius": {
        +                    "type": "number"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "group": {
        +                    "default": "stack",
        +                    "enum": [
        +                      "stack",
        +                      "dodge"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "position": {
        +                            "default": "outside",
        +                            "enum": [
        +                              "auto",
        +                              "outside",
        +                              "inside"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "show": {
        +                            "default": [
        +                              "value"
        +                            ],
        +                            "items": {
        +                              "enum": [
        +                                "value",
        +                                "percent",
        +                                "category",
        +                                "total"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "barY",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "cornerRadius": {
        +                    "type": "number"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "group": {
        +                    "default": "stack",
        +                    "enum": [
        +                      "stack",
        +                      "dodge"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "position": {
        +                            "default": "outside",
        +                            "enum": [
        +                              "auto",
        +                              "outside",
        +                              "inside"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "show": {
        +                            "default": [
        +                              "value"
        +                            ],
        +                            "items": {
        +                              "enum": [
        +                                "value",
        +                                "percent",
        +                                "category",
        +                                "total"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "barX",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "curve": {
        +                    "enum": [
        +                      "linear",
        +                      "monotone",
        +                      "step"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "end": {
        +                            "anyOf": [
        +                              {
        +                                "type": "boolean"
        +                              },
        +                              {
        +                                "items": {
        +                                  "enum": [
        +                                    "category",
        +                                    "value",
        +                                    "percent"
        +                                  ],
        +                                  "type": "string"
        +                                },
        +                                "type": "array"
        +                              }
        +                            ],
        +                            "default": [
        +                              "category"
        +                            ]
        +                          },
        +                          "format": {
        +                            "type": "string"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "areaY",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "curve": {
        +                    "enum": [
        +                      "linear",
        +                      "monotone",
        +                      "step"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "areaX",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "cornerRadius": {
        +                    "type": "number"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "innerRadius": {
        +                    "default": 0,
        +                    "maximum": 1,
        +                    "minimum": 0,
        +                    "type": "number"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "position": {
        +                            "default": "auto",
        +                            "enum": [
        +                              "auto",
        +                              "inside",
        +                              "outside"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "show": {
        +                            "default": [
        +                              "category",
        +                              "percent"
        +                            ],
        +                            "items": {
        +                              "enum": [
        +                                "value",
        +                                "percent",
        +                                "category"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "pie",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "dx": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "dy": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "fontSize": {
        +                    "type": "number"
        +                  },
        +                  "fontWeight": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "text": {
        +                    "default": "text",
        +                    "type": "string"
        +                  },
        +                  "textAnchor": {
        +                    "default": "center",
        +                    "enum": [
        +                      "start",
        +                      "center",
        +                      "end"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "type": {
        +                    "const": "text",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "ruleX",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "ruleY",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              }
        +            ]
        +          },
        +          "minItems": 1,
        +          "type": "array"
        +        },
        +        "plotHeight": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "plotWidth": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "scale": {
        +          "maximum": 4,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "subtitle": {
        +          "type": "string"
        +        },
        +        "theme": {
        +          "default": "editorial",
        +          "enum": [
        +            "editorial",
        +            "clean",
        +            "noir",
        +            "loud",
        +            "soft",
        +            "technical"
        +          ],
        +          "type": "string"
        +        },
        +        "themeOverrides": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "axisColor": {
        +              "type": "string"
        +            },
        +            "axisFrame": {
        +              "enum": [
        +                "none",
        +                "baseline",
        +                "lShape",
        +                "full"
        +              ],
        +              "type": "string"
        +            },
        +            "axisLabelColor": {
        +              "type": "string"
        +            },
        +            "axisLabelFontWeight": {
        +              "type": "string"
        +            },
        +            "axisLineWidth": {
        +              "type": "number"
        +            },
        +            "backgroundColor": {
        +              "type": "string"
        +            },
        +            "barCornerRadius": {
        +              "type": "number"
        +            },
        +            "barPadding": {
        +              "type": "number"
        +            },
        +            "colors": {
        +              "items": {
        +                "type": "string"
        +              },
        +              "type": "array"
        +            },
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "dotRadius": {
        +              "type": "number"
        +            },
        +            "fontFamily": {
        +              "enum": [
        +                "ABeeZee",
        +                "ADLaM Display",
        +                "AR One Sans",
        +                "Abel",
        +                "Abhaya Libre",
        +                "Aboreto",
        +                "Abril Fatface",
        +                "Abyssinica SIL",
        +                "Aclonica",
        +                "Acme",
        +                "Actor",
        +                "Adamina",
        +                "Advent Pro",
        +                "Afacad",
        +                "Afacad Flux",
        +                "Agbalumo",
        +                "Agdasima",
        +                "Agu Display",
        +                "Aguafina Script",
        +                "Akatab",
        +                "Akaya Kanadaka",
        +                "Akaya Telivigala",
        +                "Akronim",
        +                "Akshar",
        +                "Akt",
        +                "Aladin",
        +                "Alan Sans",
        +                "Alata",
        +                "Alatsi",
        +                "Albert Sans",
        +                "Aldrich",
        +                "Alef",
        +                "Alegreya",
        +                "Alegreya SC",
        +                "Alegreya Sans",
        +                "Alegreya Sans SC",
        +                "Aleo",
        +                "Alex Brush",
        +                "Alexandria",
        +                "Alfa Slab One",
        +                "Alice",
        +                "Alien Block",
        +                "Alike",
        +                "Alike Angular",
        +                "Alkalami",
        +                "Alkatra",
        +                "Allan",
        +                "Allerta",
        +                "Allerta Stencil",
        +                "Allison",
        +                "Allkin",
        +                "Allura",
        +                "Almarai",
        +                "Almendra",
        +                "Almendra Display",
        +                "Almendra SC",
        +                "Alumni Sans",
        +                "Alumni Sans Collegiate One",
        +                "Alumni Sans Inline One",
        +                "Alumni Sans Pinstripe",
        +                "Alumni Sans SC",
        +                "Alyamama",
        +                "Amarante",
        +                "Amaranth",
        +                "Amarna",
        +                "Amatic SC",
        +                "Amethysta",
        +                "Amiko",
        +                "Amiri",
        +                "Amiri Quran",
        +                "Amita",
        +                "Anaheim",
        +                "Ancizar Sans",
        +                "Ancizar Serif",
        +                "Andada Pro",
        +                "Andika",
        +                "Anek Bangla",
        +                "Anek Devanagari",
        +                "Anek Gujarati",
        +                "Anek Gurmukhi",
        +                "Anek Kannada",
        +                "Anek Latin",
        +                "Anek Malayalam",
        +                "Anek Odia",
        +                "Anek Tamil",
        +                "Anek Telugu",
        +                "Angkor",
        +                "Annapurna SIL",
        +                "Annie Use Your Telescope",
        +                "Anonymous Pro",
        +                "Anta",
        +                "Antic",
        +                "Antic Didone",
        +                "Antic Slab",
        +                "Anton",
        +                "Anton SC",
        +                "Antonio",
        +                "Anuphan",
        +                "Anybody",
        +                "Aoboshi One",
        +                "Arapey",
        +                "Arbutus",
        +                "Arbutus Slab",
        +                "Architects Daughter",
        +                "Archivo",
        +                "Archivo Black",
        +                "Archivo Narrow",
        +                "Are You Serious",
        +                "Aref Ruqaa",
        +                "Aref Ruqaa Ink",
        +                "Arima",
        +                "Arimo",
        +                "Arizonia",
        +                "Armata",
        +                "Arsenal",
        +                "Arsenal SC",
        +                "Artifika",
        +                "Arvo",
        +                "Arya",
        +                "Asap",
        +                "Asap Condensed",
        +                "Asar",
        +                "Asimovian",
        +                "Asset",
        +                "Assistant",
        +                "Asta Sans",
        +                "Astloch",
        +                "Asul",
        +                "Athiti",
        +                "Atkinson Hyperlegible",
        +                "Atkinson Hyperlegible Mono",
        +                "Atkinson Hyperlegible Next",
        +                "Atma",
        +                "Atomic Age",
        +                "Aubrey",
        +                "Audiowide",
        +                "Autour One",
        +                "Average",
        +                "Average Sans",
        +                "Averia Gruesa Libre",
        +                "Averia Libre",
        +                "Averia Sans Libre",
        +                "Averia Serif Libre",
        +                "Azeret Mono",
        +                "B612",
        +                "B612 Mono",
        +                "BBH Bartle",
        +                "BBH Bogle",
        +                "BBH Hegarty",
        +                "BIZ UDGothic",
        +                "BIZ UDMincho",
        +                "BIZ UDPGothic",
        +                "BIZ UDPMincho",
        +                "BJCree",
        +                "Babylonica",
        +                "Bacasime Antique",
        +                "Bad Script",
        +                "Badeen Display",
        +                "Bagel Fat One",
        +                "Bahiana",
        +                "Bahianita",
        +                "Bai Jamjuree",
        +                "Bakbak One",
        +                "Ballet",
        +                "Baloo 2",
        +                "Baloo Bhai 2",
        +                "Baloo Bhaijaan 2",
        +                "Baloo Bhaina 2",
        +                "Baloo Chettan 2",
        +                "Baloo Da 2",
        +                "Baloo Paaji 2",
        +                "Baloo Tamma 2",
        +                "Baloo Tammudu 2",
        +                "Baloo Thambi 2",
        +                "Balsamiq Sans",
        +                "Balthazar",
        +                "Bangers",
        +                "Barlow",
        +                "Barlow Condensed",
        +                "Barlow Semi Condensed",
        +                "Barriecito",
        +                "Barrio",
        +                "Basic",
        +                "Baskervville",
        +                "Baskervville SC",
        +                "Battambang",
        +                "Baumans",
        +                "Bayon",
        +                "Be Vietnam Pro",
        +                "Beau Rivage",
        +                "Bebas Neue",
        +                "Beiruti",
        +                "Belanosima",
        +                "Belgrano",
        +                "Bellefair",
        +                "Belleza",
        +                "Bellota",
        +                "Bellota Text",
        +                "BenchNine",
        +                "Benne",
        +                "Bentham",
        +                "Berkshire Swash",
        +                "Besley",
        +                "Betania Patmos",
        +                "Betania Patmos GDL",
        +                "Betania Patmos In",
        +                "Betania Patmos In GDL",
        +                "Beth Ellen",
        +                "Bevan",
        +                "BhuTuka Expanded One",
        +                "Big Shoulders",
        +                "Big Shoulders Inline",
        +                "Big Shoulders Stencil",
        +                "Bigelow Rules",
        +                "Bigshot One",
        +                "Bilbo",
        +                "Bilbo Swash Caps",
        +                "BioRhyme",
        +                "BioRhyme Expanded",
        +                "Birthstone",
        +                "Birthstone Bounce",
        +                "Biryani",
        +                "Bitcount",
        +                "Bitcount Grid Double",
        +                "Bitcount Grid Double Ink",
        +                "Bitcount Grid Single",
        +                "Bitcount Grid Single Ink",
        +                "Bitcount Ink",
        +                "Bitcount Prop Double",
        +                "Bitcount Prop Double Ink",
        +                "Bitcount Prop Single",
        +                "Bitcount Prop Single Ink",
        +                "Bitcount Single",
        +                "Bitcount Single Ink",
        +                "Bitter",
        +                "Black And White Picture",
        +                "Black Han Sans",
        +                "Black Ops One",
        +                "Blaka",
        +                "Blaka Hollow",
        +                "Blaka Ink",
        +                "Blinker",
        +                "Bodoni Moda",
        +                "Bodoni Moda SC",
        +                "Bokor",
        +                "Boldonse",
        +                "Bona Nova",
        +                "Bona Nova SC",
        +                "Bonbon",
        +                "Bonheur Royale",
        +                "Boogaloo",
        +                "Borel",
        +                "Bowlby One",
        +                "Bowlby One SC",
        +                "Bpmf Huninn",
        +                "Bpmf Iansui",
        +                "Bpmf Zihi Kai Std",
        +                "Braah One",
        +                "Brawler",
        +                "Bree Serif",
        +                "Bricolage Grotesque",
        +                "Bruno Ace",
        +                "Bruno Ace SC",
        +                "Brygada 1918",
        +                "Bubblegum Sans",
        +                "Bubbler One",
        +                "Buda",
        +                "Buenard",
        +                "Bungee",
        +                "Bungee Hairline",
        +                "Bungee Inline",
        +                "Bungee Outline",
        +                "Bungee Shade",
        +                "Bungee Spice",
        +                "Bungee Tint",
        +                "Butcherman",
        +                "Butterfly Kids",
        +                "Bytesized",
        +                "Cabin",
        +                "Cabin Condensed",
        +                "Cabin Sketch",
        +                "Cactus Classical Serif",
        +                "Caesar Dressing",
        +                "Cagliostro",
        +                "Cairo",
        +                "Cairo Play",
        +                "Cal Sans",
        +                "Caladea",
        +                "Calistoga",
        +                "Calligraffitti",
        +                "Cambay",
        +                "Cambo",
        +                "Candal",
        +                "Cantarell",
        +                "Cantata One",
        +                "Cantora One",
        +                "Caprasimo",
        +                "Capriola",
        +                "Caramel",
        +                "Carattere",
        +                "Cardo",
        +                "Carlito",
        +                "Carme",
        +                "Carrois Gothic",
        +                "Carrois Gothic SC",
        +                "Carter One",
        +                "Cascadia Code",
        +                "Cascadia Mono",
        +                "Castoro",
        +                "Castoro Titling",
        +                "Catamaran",
        +                "Caudex",
        +                "Cause",
        +                "Caveat",
        +                "Caveat Brush",
        +                "Cedarville Cursive",
        +                "Ceviche One",
        +                "Chakra Petch",
        +                "Changa",
        +                "Changa One",
        +                "Chango",
        +                "Charis SIL",
        +                "Charm",
        +                "Charmonman",
        +                "Chathura",
        +                "Chau Philomene One",
        +                "Chela One",
        +                "Chelsea Market",
        +                "Chenla",
        +                "Cherish",
        +                "Cherry Bomb One",
        +                "Cherry Cream Soda",
        +                "Cherry Swash",
        +                "Chewy",
        +                "Chicle",
        +                "Chilanka",
        +                "Chiron GoRound TC",
        +                "Chiron Hei HK",
        +                "Chiron Sung HK",
        +                "Chivo",
        +                "Chivo Mono",
        +                "Chocolate Classical Sans",
        +                "Chokokutai",
        +                "Chonburi",
        +                "Cinzel",
        +                "Cinzel Decorative",
        +                "Clicker Script",
        +                "Climate Crisis",
        +                "Coda",
        +                "Codystar",
        +                "Coiny",
        +                "Combo",
        +                "Comfortaa",
        +                "Comforter",
        +                "Comforter Brush",
        +                "Comic Neue",
        +                "Comic Relief",
        +                "Coming Soon",
        +                "Comme",
        +                "Commissioner",
        +                "Concert One",
        +                "Condiment",
        +                "Content",
        +                "Contrail One",
        +                "Convergence",
        +                "Cookie",
        +                "Copse",
        +                "Coral Pixels",
        +                "Corben",
        +                "Corinthia",
        +                "Cormorant",
        +                "Cormorant Garamond",
        +                "Cormorant Infant",
        +                "Cormorant SC",
        +                "Cormorant Unicase",
        +                "Cormorant Upright",
        +                "Cossette Texte",
        +                "Cossette Titre",
        +                "Courgette",
        +                "Courier Prime",
        +                "Cousine",
        +                "Coustard",
        +                "Covered By Your Grace",
        +                "Crafty Girls",
        +                "Creepster",
        +                "Crete Round",
        +                "Crimson Pro",
        +                "Crimson Text",
        +                "Croissant One",
        +                "Crushed",
        +                "Cuprum",
        +                "Cute Font",
        +                "Cutive",
        +                "Cutive Mono",
        +                "DM Mono",
        +                "DM Sans",
        +                "DM Serif Display",
        +                "DM Serif Text",
        +                "Dai Banna SIL",
        +                "Damion",
        +                "Dancing Script",
        +                "Danfo",
        +                "Dangrek",
        +                "Darker Grotesque",
        +                "Darumadrop One",
        +                "Datatype",
        +                "David Libre",
        +                "Dawning of a New Day",
        +                "Days One",
        +                "Dekko",
        +                "Dela Gothic One",
        +                "Delicious Handrawn",
        +                "Delius",
        +                "Delius Swash Caps",
        +                "Delius Unicase",
        +                "Della Respira",
        +                "Denk One",
        +                "Devonshire",
        +                "Dhurjati",
        +                "Didact Gothic",
        +                "Diphylleia",
        +                "Diplomata",
        +                "Diplomata SC",
        +                "Do Hyeon",
        +                "Dokdo",
        +                "Domine",
        +                "Donegal One",
        +                "Dongle",
        +                "Doppio One",
        +                "Dorsa",
        +                "Dosis",
        +                "DotGothic16",
        +                "Doto",
        +                "Dr Sugiyama",
        +                "Duru Sans",
        +                "DynaPuff",
        +                "Dynalight",
        +                "EB Garamond",
        +                "Eagle Lake",
        +                "East Sea Dokdo",
        +                "Eater",
        +                "Economica",
        +                "Eczar",
        +                "Edu AU VIC WA NT Arrows",
        +                "Edu AU VIC WA NT Dots",
        +                "Edu AU VIC WA NT Guides",
        +                "Edu AU VIC WA NT Hand",
        +                "Edu AU VIC WA NT Pre",
        +                "Edu NSW ACT Cursive",
        +                "Edu NSW ACT Foundation",
        +                "Edu NSW ACT Hand Pre",
        +                "Edu QLD Beginner",
        +                "Edu QLD Hand",
        +                "Edu SA Beginner",
        +                "Edu SA Hand",
        +                "Edu TAS Beginner",
        +                "Edu VIC WA NT Beginner",
        +                "Edu VIC WA NT Hand",
        +                "Edu VIC WA NT Hand Pre",
        +                "El Messiri",
        +                "Electrolize",
        +                "Elms Sans",
        +                "Elsie",
        +                "Elsie Swash Caps",
        +                "Emblema One",
        +                "Emilys Candy",
        +                "Encode Sans",
        +                "Encode Sans Condensed",
        +                "Encode Sans Expanded",
        +                "Encode Sans SC",
        +                "Encode Sans Semi Condensed",
        +                "Encode Sans Semi Expanded",
        +                "Engagement",
        +                "Englebert",
        +                "Enriqueta",
        +                "Ephesis",
        +                "Epilogue",
        +                "Epunda Sans",
        +                "Epunda Slab",
        +                "Erica One",
        +                "Esteban",
        +                "Estedad",
        +                "Estonia",
        +                "Euphoria Script",
        +                "Ewert",
        +                "Exile",
        +                "Exo",
        +                "Exo 2",
        +                "Expletus Sans",
        +                "Explora",
        +                "Faculty Glyphic",
        +                "Fahkwang",
        +                "Familjen Grotesk",
        +                "Fanwood Text",
        +                "Farro",
        +                "Farsan",
        +                "Fascinate",
        +                "Fascinate Inline",
        +                "Faster One",
        +                "Fasthand",
        +                "Fauna One",
        +                "Faustina",
        +                "Federant",
        +                "Federo",
        +                "Felipa",
        +                "Fenix",
        +                "Festive",
        +                "Figtree",
        +                "Finger Paint",
        +                "Finlandica Headline",
        +                "Finlandica Text",
        +                "Fira Code",
        +                "Fira Mono",
        +                "Fira Sans",
        +                "Fira Sans Condensed",
        +                "Fira Sans Extra Condensed",
        +                "Fjalla One",
        +                "Fjord One",
        +                "Flamenco",
        +                "Flavors",
        +                "Fleur De Leah",
        +                "Flow Block",
        +                "Flow Circular",
        +                "Flow Rounded",
        +                "Foldit",
        +                "Fondamento",
        +                "Fontdiner Swanky",
        +                "Forum",
        +                "Fragment Mono",
        +                "Francois One",
        +                "Frank Ruhl Libre",
        +                "Fraunces",
        +                "Freckle Face",
        +                "Fredericka the Great",
        +                "Fredoka",
        +                "Freehand",
        +                "Freeman",
        +                "Fresca",
        +                "Frijole",
        +                "Fruktur",
        +                "Fugaz One",
        +                "Fuggles",
        +                "Funnel Display",
        +                "Funnel Sans",
        +                "Fustat",
        +                "Fuzzy Bubbles",
        +                "GFS Didot",
        +                "GFS Neohellenic",
        +                "Ga Maamli",
        +                "Gabarito",
        +                "Gabriela",
        +                "Gaegu",
        +                "Gafata",
        +                "Gajraj One",
        +                "Galada",
        +                "Galdeano",
        +                "Galindo",
        +                "Gamja Flower",
        +                "Gantari",
        +                "Gasoek One",
        +                "Gayathri",
        +                "Geist",
        +                "Geist Mono",
        +                "Geist Pixel",
        +                "Gelasio",
        +                "Gemunu Libre",
        +                "Genos",
        +                "Gentium Book Plus",
        +                "Gentium Plus",
        +                "Geo",
        +                "Geologica",
        +                "Geom",
        +                "Geomini",
        +                "Georama",
        +                "Geostar",
        +                "Geostar Fill",
        +                "Germania One",
        +                "Gideon Roman",
        +                "Gidole",
        +                "Gidugu",
        +                "Gilda Display",
        +                "Girassol",
        +                "Give You Glory",
        +                "Glass Antiqua",
        +                "Glegoo",
        +                "Gloock",
        +                "Gloria Hallelujah",
        +                "Glory",
        +                "Gluten",
        +                "Goblin One",
        +                "Gochi Hand",
        +                "Goldman",
        +                "Golos Text",
        +                "Google Sans",
        +                "Google Sans Code",
        +                "Google Sans Flex",
        +                "Gorditas",
        +                "Gothic A1",
        +                "Gotu",
        +                "Goudy Bookletter 1911",
        +                "Gowun Batang",
        +                "Gowun Dodum",
        +                "Graduate",
        +                "Grand Hotel",
        +                "Grandiflora One",
        +                "Grandstander",
        +                "Grape Nuts",
        +                "Gravitas One",
        +                "Great Vibes",
        +                "Grechen Fuemen",
        +                "Grenze",
        +                "Grenze Gotisch",
        +                "Grey Qo",
        +                "Griffy",
        +                "Gruppo",
        +                "Gudea",
        +                "Gugi",
        +                "Gulzar",
        +                "Gupter",
        +                "Gurajada",
        +                "Gveret Levin",
        +                "Gwendolyn",
        +                "Habibi",
        +                "Hachi Maru Pop",
        +                "Hahmlet",
        +                "Halant",
        +                "Hammersmith One",
        +                "Hanalei",
        +                "Hanalei Fill",
        +                "Handjet",
        +                "Handlee",
        +                "Hanken Grotesk",
        +                "Hanuman",
        +                "Happy Monkey",
        +                "Harmattan",
        +                "Headland One",
        +                "Hedvig Letters Sans",
        +                "Hedvig Letters Serif",
        +                "Heebo",
        +                "Henny Penny",
        +                "Hepta Slab",
        +                "Herr Von Muellerhoff",
        +                "Hi Melody",
        +                "Hibur Mono",
        +                "Hina Mincho",
        +                "Hind",
        +                "Hind Guntur",
        +                "Hind Madurai",
        +                "Hind Mysuru",
        +                "Hind Siliguri",
        +                "Hind Vadodara",
        +                "Holtwood One SC",
        +                "Homemade Apple",
        +                "Homenaje",
        +                "Honk",
        +                "Host Grotesk",
        +                "Hubballi",
        +                "Hubot Sans",
        +                "Huninn",
        +                "Hurricane",
        +                "IBM Plex Mono",
        +                "IBM Plex Sans",
        +                "IBM Plex Sans Arabic",
        +                "IBM Plex Sans Condensed",
        +                "IBM Plex Sans Devanagari",
        +                "IBM Plex Sans Hebrew",
        +                "IBM Plex Sans JP",
        +                "IBM Plex Sans KR",
        +                "IBM Plex Sans Thai",
        +                "IBM Plex Sans Thai Looped",
        +                "IBM Plex Serif",
        +                "IM Fell DW Pica",
        +                "IM Fell DW Pica SC",
        +                "IM Fell Double Pica",
        +                "IM Fell Double Pica SC",
        +                "IM Fell English",
        +                "IM Fell English SC",
        +                "IM Fell French Canon",
        +                "IM Fell French Canon SC",
        +                "IM Fell Great Primer",
        +                "IM Fell Great Primer SC",
        +                "Iansui",
        +                "Ibarra Real Nova",
        +                "Iceberg",
        +                "Iceland",
        +                "Idiqlat",
        +                "Imbue",
        +                "Imperial Script",
        +                "Imprima",
        +                "Inclusive Sans",
        +                "Inconsolata",
        +                "Inder",
        +                "Indie Flower",
        +                "Ingrid Darling",
        +                "Inika",
        +                "Inknut Antiqua",
        +                "Inria Sans",
        +                "Inria Serif",
        +                "Inspiration",
        +                "Instrument Sans",
        +                "Instrument Serif",
        +                "Intel One Mono",
        +                "Inter",
        +                "Inter Tight",
        +                "Iosevka Charon",
        +                "Iosevka Charon Mono",
        +                "Irish Grover",
        +                "Island Moments",
        +                "Istok Web",
        +                "Italiana",
        +                "Italianno",
        +                "Itim",
        +                "Jacquard 12",
        +                "Jacquard 12 Charted",
        +                "Jacquard 24",
        +                "Jacquard 24 Charted",
        +                "Jacquarda Bastarda 9",
        +                "Jacquarda Bastarda 9 Charted",
        +                "Jacques Francois",
        +                "Jacques Francois Shadow",
        +                "Jaini",
        +                "Jaini Purva",
        +                "Jaldi",
        +                "Jaro",
        +                "Jersey 10",
        +                "Jersey 10 Charted",
        +                "Jersey 15",
        +                "Jersey 15 Charted",
        +                "Jersey 20",
        +                "Jersey 20 Charted",
        +                "Jersey 25",
        +                "Jersey 25 Charted",
        +                "JetBrains Mono",
        +                "Jim Nightshade",
        +                "Joan",
        +                "Jockey One",
        +                "Jolly Lodger",
        +                "Jomhuria",
        +                "Jomolhari",
        +                "Josefin Sans",
        +                "Josefin Slab",
        +                "Jost",
        +                "Joti One",
        +                "Jua",
        +                "Judson",
        +                "Julee",
        +                "Julius Sans One",
        +                "Junge",
        +                "Jura",
        +                "Just Another Hand",
        +                "Just Me Again Down Here",
        +                "K2D",
        +                "Kablammo",
        +                "Kadwa",
        +                "Kaisei Decol",
        +                "Kaisei HarunoUmi",
        +                "Kaisei Opti",
        +                "Kaisei Tokumin",
        +                "Kalam",
        +                "Kalnia",
        +                "Kalnia Glaze",
        +                "Kameron",
        +                "Kanchenjunga",
        +                "Kanit",
        +                "Kantumruy Pro",
        +                "Kapakana",
        +                "Karantina",
        +                "Karla",
        +                "Karla Tamil Inclined",
        +                "Karla Tamil Upright",
        +                "Karma",
        +                "Katibeh",
        +                "Kaushan Script",
        +                "Kavivanar",
        +                "Kavoon",
        +                "Kay Pho Du",
        +                "Kdam Thmor Pro",
        +                "Keania One",
        +                "Kedebideri",
        +                "Kelly Slab",
        +                "Kenia",
        +                "Khand",
        +                "Khmer",
        +                "Khula",
        +                "Kings",
        +                "Kirang Haerang",
        +                "Kite One",
        +                "Kiwi Maru",
        +                "Klee One",
        +                "Knewave",
        +                "KoHo",
        +                "Kodchasan",
        +                "Kode Mono",
        +                "Koh Santepheap",
        +                "Kolker Brush",
        +                "Konkhmer Sleokchher",
        +                "Kosugi",
        +                "Kosugi Maru",
        +                "Kotta One",
        +                "Koulen",
        +                "Kranky",
        +                "Kreon",
        +                "Kristi",
        +                "Krona One",
        +                "Krub",
        +                "Kufam",
        +                "Kulim Park",
        +                "Kumar One",
        +                "Kumar One Outline",
        +                "Kumbh Sans",
        +                "Kurale",
        +                "LINE Seed JP",
        +                "LXGW Marker Gothic",
        +                "LXGW WenKai Mono TC",
        +                "LXGW WenKai TC",
        +                "La Belle Aurore",
        +                "Labrada",
        +                "Lacquer",
        +                "Laila",
        +                "Lakki Reddy",
        +                "Lalezar",
        +                "Lancelot",
        +                "Langar",
        +                "Lateef",
        +                "Lato",
        +                "Lavishly Yours",
        +                "League Gothic",
        +                "League Script",
        +                "League Spartan",
        +                "Leckerli One",
        +                "Ledger",
        +                "Lekton",
        +                "Lemon",
        +                "Lemonada",
        +                "Lexend",
        +                "Lexend Deca",
        +                "Lexend Exa",
        +                "Lexend Giga",
        +                "Lexend Mega",
        +                "Lexend Peta",
        +                "Lexend Tera",
        +                "Lexend Zetta",
        +                "Libertinus Keyboard",
        +                "Libertinus Math",
        +                "Libertinus Mono",
        +                "Libertinus Sans",
        +                "Libertinus Serif",
        +                "Libertinus Serif Display",
        +                "Libre Barcode 128",
        +                "Libre Barcode 128 Text",
        +                "Libre Barcode 39",
        +                "Libre Barcode 39 Extended",
        +                "Libre Barcode 39 Extended Text",
        +                "Libre Barcode 39 Text",
        +                "Libre Barcode EAN13 Text",
        +                "Libre Baskerville",
        +                "Libre Bodoni",
        +                "Libre Caslon Display",
        +                "Libre Caslon Text",
        +                "Libre Franklin",
        +                "Licorice",
        +                "Life Savers",
        +                "Lilex",
        +                "Lilita One",
        +                "Lily Script One",
        +                "Limelight",
        +                "Linden Hill",
        +                "Linefont",
        +                "Lisu Bosa",
        +                "Liter",
        +                "Literata",
        +                "Liu Jian Mao Cao",
        +                "Livvic",
        +                "Lobster",
        +                "Lobster Two",
        +                "Londrina Outline",
        +                "Londrina Shadow",
        +                "Londrina Sketch",
        +                "Londrina Solid",
        +                "Long Cang",
        +                "Lora",
        +                "Love Light",
        +                "Love Ya Like A Sister",
        +                "Loved by the King",
        +                "Lovers Quarrel",
        +                "Luckiest Guy",
        +                "Lugrasimo",
        +                "Lumanosimo",
        +                "Lunasima",
        +                "Lusitana",
        +                "Lustria",
        +                "Luxurious Roman",
        +                "Luxurious Script",
        +                "M PLUS 1",
        +                "M PLUS 1 Code",
        +                "M PLUS 1p",
        +                "M PLUS 2",
        +                "M PLUS Code Latin",
        +                "M PLUS Rounded 1c",
        +                "M PLUS U",
        +                "Ma Shan Zheng",
        +                "Macondo",
        +                "Macondo Swash Caps",
        +                "Mada",
        +                "Madimi One",
        +                "Magra",
        +                "Maiden Orange",
        +                "Maitree",
        +                "Major Mono Display",
        +                "Mako",
        +                "Mali",
        +                "Mallanna",
        +                "Maname",
        +                "Mandali",
        +                "Manjari",
        +                "Manrope",
        +                "Mansalva",
        +                "Manuale",
        +                "Manufacturing Consent",
        +                "Marcellus",
        +                "Marcellus SC",
        +                "Marck Script",
        +                "Margarine",
        +                "Marhey",
        +                "Markazi Text",
        +                "Marko One",
        +                "Marmelad",
        +                "Martel",
        +                "Martel Sans",
        +                "Martian Mono",
        +                "Marvel",
        +                "Matangi",
        +                "Mate",
        +                "Mate SC",
        +                "Matemasie",
        +                "Material Icons",
        +                "Material Icons Outlined",
        +                "Material Icons Round",
        +                "Material Icons Sharp",
        +                "Material Icons Two Tone",
        +                "Material Symbols",
        +                "Material Symbols Outlined",
        +                "Material Symbols Rounded",
        +                "Material Symbols Sharp",
        +                "Maven Pro",
        +                "McLaren",
        +                "Mea Culpa",
        +                "Meddon",
        +                "MedievalSharp",
        +                "Medula One",
        +                "Meera Inimai",
        +                "Megrim",
        +                "Meie Script",
        +                "Menbere",
        +                "Meow Script",
        +                "Merienda",
        +                "Merriweather",
        +                "Merriweather Sans",
        +                "Metal",
        +                "Metal Mania",
        +                "Metamorphous",
        +                "Metrophobic",
        +                "Michroma",
        +                "Micro 5",
        +                "Micro 5 Charted",
        +                "Milonga",
        +                "Miltonian",
        +                "Miltonian Tattoo",
        +                "Mina",
        +                "Mingzat",
        +                "Miniver",
        +                "Miranda Sans",
        +                "Miriam Libre",
        +                "Mirza",
        +                "Miss Fajardose",
        +                "Mitr",
        +                "Mochiy Pop One",
        +                "Mochiy Pop P One",
        +                "Modak",
        +                "Modern Antiqua",
        +                "Moderustic",
        +                "Mogra",
        +                "Mohave",
        +                "Moirai One",
        +                "Molengo",
        +                "Molle",
        +                "Momo Signature",
        +                "Momo Trust Display",
        +                "Momo Trust Sans",
        +                "Mona Sans",
        +                "Monda",
        +                "Monofett",
        +                "Monomakh",
        +                "Monomaniac One",
        +                "Monoton",
        +                "Monsieur La Doulaise",
        +                "Montaga",
        +                "Montagu Slab",
        +                "MonteCarlo",
        +                "Montenegrin Gothic One",
        +                "Montez",
        +                "Montserrat",
        +                "Montserrat Alternates",
        +                "Montserrat Underline",
        +                "Moo Lah Lah",
        +                "Mooli",
        +                "Moon Dance",
        +                "Moul",
        +                "Moulpali",
        +                "Mountains of Christmas",
        +                "Mouse Memoirs",
        +                "Mozilla Headline",
        +                "Mozilla Text",
        +                "Mr Bedfort",
        +                "Mr Dafoe",
        +                "Mr De Haviland",
        +                "Mrs Saint Delafield",
        +                "Mrs Sheppards",
        +                "Ms Madi",
        +                "Mukta",
        +                "Mukta Mahee",
        +                "Mukta Malar",
        +                "Mukta Vaani",
        +                "Mulish",
        +                "Murecho",
        +                "MuseoModerno",
        +                "My Soul",
        +                "Mynerve",
        +                "Mystery Quest",
        +                "NTR",
        +                "Nabla",
        +                "Namdhinggo",
        +                "Nanum Brush Script",
        +                "Nanum Gothic",
        +                "Nanum Gothic Coding",
        +                "Nanum Myeongjo",
        +                "Nanum Pen Script",
        +                "Narnoor",
        +                "Nata Sans",
        +                "National Park",
        +                "Neonderthaw",
        +                "Nerko One",
        +                "Neucha",
        +                "Neuton",
        +                "New Amsterdam",
        +                "New Rocker",
        +                "New Tegomin",
        +                "News Cycle",
        +                "Newsreader",
        +                "Niconne",
        +                "Niramit",
        +                "Nixie One",
        +                "Nobile",
        +                "Nokora",
        +                "Norican",
        +                "Nosifer",
        +                "Notable",
        +                "Nothing You Could Do",
        +                "Noticia Text",
        +                "Noto Color Emoji",
        +                "Noto Emoji",
        +                "Noto Kufi Arabic",
        +                "Noto Music",
        +                "Noto Naskh Arabic",
        +                "Noto Nastaliq Urdu",
        +                "Noto Rashi Hebrew",
        +                "Noto Sans",
        +                "Noto Sans Adlam",
        +                "Noto Sans Adlam Unjoined",
        +                "Noto Sans Anatolian Hieroglyphs",
        +                "Noto Sans Arabic",
        +                "Noto Sans Armenian",
        +                "Noto Sans Avestan",
        +                "Noto Sans Balinese",
        +                "Noto Sans Bamum",
        +                "Noto Sans Bassa Vah",
        +                "Noto Sans Batak",
        +                "Noto Sans Bengali",
        +                "Noto Sans Bhaiksuki",
        +                "Noto Sans Brahmi",
        +                "Noto Sans Buginese",
        +                "Noto Sans Buhid",
        +                "Noto Sans Canadian Aboriginal",
        +                "Noto Sans Carian",
        +                "Noto Sans Caucasian Albanian",
        +                "Noto Sans Chakma",
        +                "Noto Sans Cham",
        +                "Noto Sans Cherokee",
        +                "Noto Sans Chorasmian",
        +                "Noto Sans Coptic",
        +                "Noto Sans Cuneiform",
        +                "Noto Sans Cypriot",
        +                "Noto Sans Cypro Minoan",
        +                "Noto Sans Deseret",
        +                "Noto Sans Devanagari",
        +                "Noto Sans Display",
        +                "Noto Sans Duployan",
        +                "Noto Sans Egyptian Hieroglyphs",
        +                "Noto Sans Elbasan",
        +                "Noto Sans Elymaic",
        +                "Noto Sans Ethiopic",
        +                "Noto Sans Georgian",
        +                "Noto Sans Glagolitic",
        +                "Noto Sans Gothic",
        +                "Noto Sans Grantha",
        +                "Noto Sans Gujarati",
        +                "Noto Sans Gunjala Gondi",
        +                "Noto Sans Gurmukhi",
        +                "Noto Sans HK",
        +                "Noto Sans Hanifi Rohingya",
        +                "Noto Sans Hanunoo",
        +                "Noto Sans Hatran",
        +                "Noto Sans Hebrew",
        +                "Noto Sans Imperial Aramaic",
        +                "Noto Sans Indic Siyaq Numbers",
        +                "Noto Sans Inscriptional Pahlavi",
        +                "Noto Sans Inscriptional Parthian",
        +                "Noto Sans JP",
        +                "Noto Sans Javanese",
        +                "Noto Sans KR",
        +                "Noto Sans Kaithi",
        +                "Noto Sans Kannada",
        +                "Noto Sans Kawi",
        +                "Noto Sans Kayah Li",
        +                "Noto Sans Kharoshthi",
        +                "Noto Sans Khmer",
        +                "Noto Sans Khojki",
        +                "Noto Sans Khudawadi",
        +                "Noto Sans Lao",
        +                "Noto Sans Lao Looped",
        +                "Noto Sans Lepcha",
        +                "Noto Sans Limbu",
        +                "Noto Sans Linear A",
        +                "Noto Sans Linear B",
        +                "Noto Sans Lisu",
        +                "Noto Sans Lycian",
        +                "Noto Sans Lydian",
        +                "Noto Sans Mahajani",
        +                "Noto Sans Malayalam",
        +                "Noto Sans Mandaic",
        +                "Noto Sans Manichaean",
        +                "Noto Sans Marchen",
        +                "Noto Sans Masaram Gondi",
        +                "Noto Sans Math",
        +                "Noto Sans Mayan Numerals",
        +                "Noto Sans Medefaidrin",
        +                "Noto Sans Meetei Mayek",
        +                "Noto Sans Mende Kikakui",
        +                "Noto Sans Meroitic",
        +                "Noto Sans Miao",
        +                "Noto Sans Modi",
        +                "Noto Sans Mongolian",
        +                "Noto Sans Mono",
        +                "Noto Sans Mro",
        +                "Noto Sans Multani",
        +                "Noto Sans Myanmar",
        +                "Noto Sans NKo",
        +                "Noto Sans NKo Unjoined",
        +                "Noto Sans Nabataean",
        +                "Noto Sans Nag Mundari",
        +                "Noto Sans Nandinagari",
        +                "Noto Sans New Tai Lue",
        +                "Noto Sans Newa",
        +                "Noto Sans Nushu",
        +                "Noto Sans Ogham",
        +                "Noto Sans Ol Chiki",
        +                "Noto Sans Old Hungarian",
        +                "Noto Sans Old Italic",
        +                "Noto Sans Old North Arabian",
        +                "Noto Sans Old Permic",
        +                "Noto Sans Old Persian",
        +                "Noto Sans Old Sogdian",
        +                "Noto Sans Old South Arabian",
        +                "Noto Sans Old Turkic",
        +                "Noto Sans Oriya",
        +                "Noto Sans Osage",
        +                "Noto Sans Osmanya",
        +                "Noto Sans Pahawh Hmong",
        +                "Noto Sans Palmyrene",
        +                "Noto Sans Pau Cin Hau",
        +                "Noto Sans PhagsPa",
        +                "Noto Sans Phoenician",
        +                "Noto Sans Psalter Pahlavi",
        +                "Noto Sans Rejang",
        +                "Noto Sans Runic",
        +                "Noto Sans SC",
        +                "Noto Sans Samaritan",
        +                "Noto Sans Saurashtra",
        +                "Noto Sans Sharada",
        +                "Noto Sans Shavian",
        +                "Noto Sans Siddham",
        +                "Noto Sans SignWriting",
        +                "Noto Sans Sinhala",
        +                "Noto Sans Sogdian",
        +                "Noto Sans Sora Sompeng",
        +                "Noto Sans Soyombo",
        +                "Noto Sans Sundanese",
        +                "Noto Sans Sunuwar",
        +                "Noto Sans Syloti Nagri",
        +                "Noto Sans Symbols",
        +                "Noto Sans Symbols 2",
        +                "Noto Sans Syriac",
        +                "Noto Sans Syriac Eastern",
        +                "Noto Sans Syriac Western",
        +                "Noto Sans TC",
        +                "Noto Sans Tagalog",
        +                "Noto Sans Tagbanwa",
        +                "Noto Sans Tai Le",
        +                "Noto Sans Tai Tham",
        +                "Noto Sans Tai Viet",
        +                "Noto Sans Takri",
        +                "Noto Sans Tamil",
        +                "Noto Sans Tamil Supplement",
        +                "Noto Sans Tangsa",
        +                "Noto Sans Telugu",
        +                "Noto Sans Thaana",
        +                "Noto Sans Thai",
        +                "Noto Sans Thai Looped",
        +                "Noto Sans Tifinagh",
        +                "Noto Sans Tirhuta",
        +                "Noto Sans Ugaritic",
        +                "Noto Sans Vai",
        +                "Noto Sans Vithkuqi",
        +                "Noto Sans Wancho",
        +                "Noto Sans Warang Citi",
        +                "Noto Sans Yi",
        +                "Noto Sans Zanabazar Square",
        +                "Noto Serif",
        +                "Noto Serif Ahom",
        +                "Noto Serif Armenian",
        +                "Noto Serif Balinese",
        +                "Noto Serif Bengali",
        +                "Noto Serif Devanagari",
        +                "Noto Serif Display",
        +                "Noto Serif Dives Akuru",
        +                "Noto Serif Dogra",
        +                "Noto Serif Ethiopic",
        +                "Noto Serif Georgian",
        +                "Noto Serif Grantha",
        +                "Noto Serif Gujarati",
        +                "Noto Serif Gurmukhi",
        +                "Noto Serif HK",
        +                "Noto Serif Hebrew",
        +                "Noto Serif Hentaigana",
        +                "Noto Serif JP",
        +                "Noto Serif KR",
        +                "Noto Serif Kannada",
        +                "Noto Serif Khitan Small Script",
        +                "Noto Serif Khmer",
        +                "Noto Serif Khojki",
        +                "Noto Serif Lao",
        +                "Noto Serif Makasar",
        +                "Noto Serif Malayalam",
        +                "Noto Serif Myanmar",
        +                "Noto Serif NP Hmong",
        +                "Noto Serif Old Uyghur",
        +                "Noto Serif Oriya",
        +                "Noto Serif Ottoman Siyaq",
        +                "Noto Serif SC",
        +                "Noto Serif Sinhala",
        +                "Noto Serif TC",
        +                "Noto Serif Tamil",
        +                "Noto Serif Tangut",
        +                "Noto Serif Telugu",
        +                "Noto Serif Thai",
        +                "Noto Serif Tibetan",
        +                "Noto Serif Todhri",
        +                "Noto Serif Toto",
        +                "Noto Serif Vithkuqi",
        +                "Noto Serif Yezidi",
        +                "Noto Traditional Nushu",
        +                "Noto Znamenny Musical Notation",
        +                "Nova Cut",
        +                "Nova Flat",
        +                "Nova Mono",
        +                "Nova Oval",
        +                "Nova Round",
        +                "Nova Script",
        +                "Nova Slim",
        +                "Nova Square",
        +                "Numans",
        +                "Nunito",
        +                "Nunito Sans",
        +                "Nuosu SIL",
        +                "Odibee Sans",
        +                "Odor Mean Chey",
        +                "Offside",
        +                "Oi",
        +                "Ojuju",
        +                "Old Standard TT",
        +                "Oldenburg",
        +                "Ole",
        +                "Oleo Script",
        +                "Oleo Script Swash Caps",
        +                "Onest",
        +                "Oooh Baby",
        +                "Open Sans",
        +                "Oranienbaum",
        +                "Orbit",
        +                "Orbitron",
        +                "Oregano",
        +                "Orelega One",
        +                "Orienta",
        +                "Original Surfer",
        +                "Oswald",
        +                "Outfit",
        +                "Over the Rainbow",
        +                "Overlock",
        +                "Overlock SC",
        +                "Overpass",
        +                "Overpass Mono",
        +                "Ovo",
        +                "Oxanium",
        +                "Oxygen",
        +                "Oxygen Mono",
        +                "PT Mono",
        +                "PT Sans",
        +                "PT Sans Caption",
        +                "PT Sans Narrow",
        +                "PT Serif",
        +                "PT Serif Caption",
        +                "Pacifico",
        +                "Padauk",
        +                "Padyakke Expanded One",
        +                "Palanquin",
        +                "Palanquin Dark",
        +                "Palette Mosaic",
        +                "Pangolin",
        +                "Paprika",
        +                "Parastoo",
        +                "Parisienne",
        +                "Parkinsans",
        +                "Passero One",
        +                "Passion One",
        +                "Passions Conflict",
        +                "Pathway Extreme",
        +                "Pathway Gothic One",
        +                "Patrick Hand",
        +                "Patrick Hand SC",
        +                "Pattaya",
        +                "Patua One",
        +                "Pavanam",
        +                "Paytone One",
        +                "Peddana",
        +                "Peralta",
        +                "Permanent Marker",
        +                "Petemoss",
        +                "Petit Formal Script",
        +                "Petrona",
        +                "Phetsarath",
        +                "Philosopher",
        +                "Phudu",
        +                "Piazzolla",
        +                "Piedra",
        +                "Pinyon Script",
        +                "Pirata One",
        +                "Pixelify Sans",
        +                "Plaster",
        +                "Platypi",
        +                "Play",
        +                "Playball",
        +                "Playfair",
        +                "Playfair Display",
        +                "Playfair Display SC",
        +                "Playpen Sans",
        +                "Playpen Sans Arabic",
        +                "Playpen Sans Deva",
        +                "Playpen Sans Hebrew",
        +                "Playpen Sans Thai",
        +                "Playwrite AR",
        +                "Playwrite AR Guides",
        +                "Playwrite AT",
        +                "Playwrite AT Guides",
        +                "Playwrite AU NSW",
        +                "Playwrite AU NSW Guides",
        +                "Playwrite AU QLD",
        +                "Playwrite AU QLD Guides",
        +                "Playwrite AU SA",
        +                "Playwrite AU SA Guides",
        +                "Playwrite AU TAS",
        +                "Playwrite AU TAS Guides",
        +                "Playwrite AU VIC",
        +                "Playwrite AU VIC Guides",
        +                "Playwrite BE VLG",
        +                "Playwrite BE VLG Guides",
        +                "Playwrite BE WAL",
        +                "Playwrite BE WAL Guides",
        +                "Playwrite BR",
        +                "Playwrite BR Guides",
        +                "Playwrite CA",
        +                "Playwrite CA Guides",
        +                "Playwrite CL",
        +                "Playwrite CL Guides",
        +                "Playwrite CO",
        +                "Playwrite CO Guides",
        +                "Playwrite CU",
        +                "Playwrite CU Guides",
        +                "Playwrite CZ",
        +                "Playwrite CZ Guides",
        +                "Playwrite DE Grund",
        +                "Playwrite DE Grund Guides",
        +                "Playwrite DE LA",
        +                "Playwrite DE LA Guides",
        +                "Playwrite DE SAS",
        +                "Playwrite DE SAS Guides",
        +                "Playwrite DE VA",
        +                "Playwrite DE VA Guides",
        +                "Playwrite DK Loopet",
        +                "Playwrite DK Loopet Guides",
        +                "Playwrite DK Uloopet",
        +                "Playwrite DK Uloopet Guides",
        +                "Playwrite ES",
        +                "Playwrite ES Deco",
        +                "Playwrite ES Deco Guides",
        +                "Playwrite ES Guides",
        +                "Playwrite FR Moderne",
        +                "Playwrite FR Moderne Guides",
        +                "Playwrite FR Trad",
        +                "Playwrite FR Trad Guides",
        +                "Playwrite GB J",
        +                "Playwrite GB J Guides",
        +                "Playwrite GB S",
        +                "Playwrite GB S Guides",
        +                "Playwrite HR",
        +                "Playwrite HR Guides",
        +                "Playwrite HR Lijeva",
        +                "Playwrite HR Lijeva Guides",
        +                "Playwrite HU",
        +                "Playwrite HU Guides",
        +                "Playwrite ID",
        +                "Playwrite ID Guides",
        +                "Playwrite IE",
        +                "Playwrite IE Guides",
        +                "Playwrite IN",
        +                "Playwrite IN Guides",
        +                "Playwrite IS",
        +                "Playwrite IS Guides",
        +                "Playwrite IT Moderna",
        +                "Playwrite IT Moderna Guides",
        +                "Playwrite IT Trad",
        +                "Playwrite IT Trad Guides",
        +                "Playwrite MX",
        +                "Playwrite MX Guides",
        +                "Playwrite NG Modern",
        +                "Playwrite NG Modern Guides",
        +                "Playwrite NL",
        +                "Playwrite NL Guides",
        +                "Playwrite NO",
        +                "Playwrite NO Guides",
        +                "Playwrite NZ",
        +                "Playwrite NZ Basic",
        +                "Playwrite NZ Basic Guides",
        +                "Playwrite NZ Guides",
        +                "Playwrite PE",
        +                "Playwrite PE Guides",
        +                "Playwrite PL",
        +                "Playwrite PL Guides",
        +                "Playwrite PT",
        +                "Playwrite PT Guides",
        +                "Playwrite RO",
        +                "Playwrite RO Guides",
        +                "Playwrite SK",
        +                "Playwrite SK Guides",
        +                "Playwrite TZ",
        +                "Playwrite TZ Guides",
        +                "Playwrite US Modern",
        +                "Playwrite US Modern Guides",
        +                "Playwrite US Trad",
        +                "Playwrite US Trad Guides",
        +                "Playwrite VN",
        +                "Playwrite VN Guides",
        +                "Playwrite ZA",
        +                "Playwrite ZA Guides",
        +                "Pliant",
        +                "Plus Jakarta Sans",
        +                "Pochaevsk",
        +                "Podkova",
        +                "Poetsen One",
        +                "Poiret One",
        +                "Poller One",
        +                "Poltawski Nowy",
        +                "Poly",
        +                "Pompiere",
        +                "Ponnala",
        +                "Ponomar",
        +                "Pontano Sans",
        +                "Poor Story",
        +                "Poppins",
        +                "Port Lligat Sans",
        +                "Port Lligat Slab",
        +                "Potta One",
        +                "Pragati Narrow",
        +                "Praise",
        +                "Prata",
        +                "Preahvihear",
        +                "Press Start 2P",
        +                "Pridi",
        +                "Princess Sofia",
        +                "Prociono",
        +                "Prompt",
        +                "Prosto One",
        +                "Protest Guerrilla",
        +                "Protest Revolution",
        +                "Protest Riot",
        +                "Protest Strike",
        +                "Proza Libre",
        +                "Public Sans",
        +                "Puppies Play",
        +                "Puritan",
        +                "Purple Purse",
        +                "Qahiri",
        +                "Quando",
        +                "Quantico",
        +                "Quattrocento",
        +                "Quattrocento Sans",
        +                "Questrial",
        +                "Quicksand",
        +                "Quintessential",
        +                "Qwigley",
        +                "Qwitcher Grypen",
        +                "REM",
        +                "Racing Sans One",
        +                "Radio Canada",
        +                "Radio Canada Big",
        +                "Radley",
        +                "Rajdhani",
        +                "Rakkas",
        +                "Raleway",
        +                "Raleway Dots",
        +                "Ramabhadra",
        +                "Ramaraja",
        +                "Rambla",
        +                "Rammetto One",
        +                "Rampart One",
        +                "Ramsina",
        +                "Ranchers",
        +                "Rancho",
        +                "Ranga",
        +                "Rasa",
        +                "Rationale",
        +                "Ravi Prakash",
        +                "Readex Pro",
        +                "Recursive",
        +                "Red Hat Display",
        +                "Red Hat Mono",
        +                "Red Hat Text",
        +                "Red Rose",
        +                "Redacted",
        +                "Redacted Script",
        +                "Reddit Mono",
        +                "Reddit Sans",
        +                "Reddit Sans Condensed",
        +                "Redressed",
        +                "Reem Kufi",
        +                "Reem Kufi Fun",
        +                "Reem Kufi Ink",
        +                "Reenie Beanie",
        +                "Reggae One",
        +                "Rethink Sans",
        +                "Revalia",
        +                "Rhodium Libre",
        +                "Ribeye",
        +                "Ribeye Marrow",
        +                "Righteous",
        +                "Risque",
        +                "Road Rage",
        +                "Roboto",
        +                "Roboto Condensed",
        +                "Roboto Flex",
        +                "Roboto Mono",
        +                "Roboto Serif",
        +                "Roboto Slab",
        +                "Rochester",
        +                "Rock 3D",
        +                "Rock Salt",
        +                "RocknRoll One",
        +                "Rokkitt",
        +                "Romanesco",
        +                "Ropa Sans",
        +                "Rosario",
        +                "Rosarivo",
        +                "Rouge Script",
        +                "Rowdies",
        +                "Rozha One",
        +                "Rubik",
        +                "Rubik 80s Fade",
        +                "Rubik Beastly",
        +                "Rubik Broken Fax",
        +                "Rubik Bubbles",
        +                "Rubik Burned",
        +                "Rubik Dirt",
        +                "Rubik Distressed",
        +                "Rubik Doodle Shadow",
        +                "Rubik Doodle Triangles",
        +                "Rubik Gemstones",
        +                "Rubik Glitch",
        +                "Rubik Glitch Pop",
        +                "Rubik Iso",
        +                "Rubik Lines",
        +                "Rubik Maps",
        +                "Rubik Marker Hatch",
        +                "Rubik Maze",
        +                "Rubik Microbe",
        +                "Rubik Mono One",
        +                "Rubik Moonrocks",
        +                "Rubik Pixels",
        +                "Rubik Puddles",
        +                "Rubik Scribble",
        +                "Rubik Spray Paint",
        +                "Rubik Storm",
        +                "Rubik Vinyl",
        +                "Rubik Wet Paint",
        +                "Ruda",
        +                "Rufina",
        +                "Ruge Boogie",
        +                "Ruluko",
        +                "Rum Raisin",
        +                "Ruslan Display",
        +                "Russo One",
        +                "Ruthie",
        +                "Ruwudu",
        +                "Rye",
        +                "SN Pro",
        +                "STIX Two Math",
        +                "STIX Two Text",
        +                "SUSE",
        +                "SUSE Mono",
        +                "Sacramento",
        +                "Sahitya",
        +                "Sail",
        +                "Saira",
        +                "Saira Condensed",
        +                "Saira Extra Condensed",
        +                "Saira Semi Condensed",
        +                "Saira Stencil",
        +                "Salsa",
        +                "Sanchez",
        +                "Sancreek",
        +                "Sankofa Display",
        +                "Sansation",
        +                "Sansita",
        +                "Sansita Swashed",
        +                "Sarabun",
        +                "Sarala",
        +                "Sarina",
        +                "Sarpanch",
        +                "Sassy Frass",
        +                "Satisfy",
        +                "Savate",
        +                "Sawarabi Gothic",
        +                "Sawarabi Mincho",
        +                "Scada",
        +                "Scheherazade New",
        +                "Schibsted Grotesk",
        +                "Schoolbell",
        +                "Science Gothic",
        +                "Scope One",
        +                "Seaweed Script",
        +                "Secular One",
        +                "Sedan",
        +                "Sedan SC",
        +                "Sedgwick Ave",
        +                "Sedgwick Ave Display",
        +                "Sekuya",
        +                "Sen",
        +                "Send Flowers",
        +                "Sevillana",
        +                "Seymour One",
        +                "Shadows Into Light",
        +                "Shadows Into Light Two",
        +                "Shafarik",
        +                "Shalimar",
        +                "Shantell Sans",
        +                "Shanti",
        +                "Share",
        +                "Share Tech",
        +                "Share Tech Mono",
        +                "Shippori Antique",
        +                "Shippori Antique B1",
        +                "Shippori Mincho",
        +                "Shippori Mincho B1",
        +                "Shizuru",
        +                "Shojumaru",
        +                "Short Stack",
        +                "Shrikhand",
        +                "Siemreap",
        +                "Sigmar",
        +                "Sigmar One",
        +                "Signika",
        +                "Signika Negative",
        +                "Silkscreen",
        +                "Simonetta",
        +                "Single Day",
        +                "Sintony",
        +                "Sirin Stencil",
        +                "Sirivennela",
        +                "Six Caps",
        +                "Sixtyfour",
        +                "Sixtyfour Convergence",
        +                "Skranji",
        +                "Slabo 13px",
        +                "Slabo 27px",
        +                "Slackey",
        +                "Slackside One",
        +                "Smokum",
        +                "Smooch",
        +                "Smooch Sans",
        +                "Smythe",
        +                "Sniglet",
        +                "Snippet",
        +                "Snowburst One",
        +                "Sofadi One",
        +                "Sofia",
        +                "Sofia Sans",
        +                "Sofia Sans Condensed",
        +                "Sofia Sans Extra Condensed",
        +                "Sofia Sans Semi Condensed",
        +                "Solitreo",
        +                "Solway",
        +                "Sometype Mono",
        +                "Song Myung",
        +                "Sono",
        +                "Sonsie One",
        +                "Sora",
        +                "Sorts Mill Goudy",
        +                "Sour Gummy",
        +                "Source Code Pro",
        +                "Source Sans 3",
        +                "Source Serif 4",
        +                "Space Grotesk",
        +                "Space Mono",
        +                "Special Elite",
        +                "Special Gothic",
        +                "Special Gothic Condensed One",
        +                "Special Gothic Expanded One",
        +                "Spectral",
        +                "Spectral SC",
        +                "Spicy Rice",
        +                "Spinnaker",
        +                "Spirax",
        +                "Splash",
        +                "Spline Sans",
        +                "Spline Sans Mono",
        +                "Squada One",
        +                "Square Peg",
        +                "Sree Krushnadevaraya",
        +                "Sriracha",
        +                "Srisakdi",
        +                "Staatliches",
        +                "Stack Sans Headline",
        +                "Stack Sans Notch",
        +                "Stack Sans Text",
        +                "Stalemate",
        +                "Stalinist One",
        +                "Stardos Stencil",
        +                "Stick",
        +                "Stick No Bills",
        +                "Stint Ultra Condensed",
        +                "Stint Ultra Expanded",
        +                "Stoke",
        +                "Story Script",
        +                "Strait",
        +                "Strichpunkt Sans",
        +                "Style Script",
        +                "Stylish",
        +                "Sue Ellen Francisco",
        +                "Suez One",
        +                "Sulphur Point",
        +                "Sumana",
        +                "Sunflower",
        +                "Sunshiney",
        +                "Supermercado One",
        +                "Sura",
        +                "Suranna",
        +                "Suravaram",
        +                "Suwannaphum",
        +                "Swanky and Moo Moo",
        +                "Syncopate",
        +                "Syne",
        +                "Syne Mono",
        +                "Syne Tactile",
        +                "TASA Explorer",
        +                "TASA Orbiter",
        +                "Tac One",
        +                "Tagesschrift",
        +                "Tai Heritage Pro",
        +                "Tajawal",
        +                "Tangerine",
        +                "Tapestry",
        +                "Taprom",
        +                "Tauri",
        +                "Taviraj",
        +                "Teachers",
        +                "Teko",
        +                "Tektur",
        +                "Telex",
        +                "Tenali Ramakrishna",
        +                "Tenor Sans",
        +                "Text Me One",
        +                "Texturina",
        +                "Thasadith",
        +                "The Girl Next Door",
        +                "The Nautigal",
        +                "Tienne",
        +                "TikTok Sans",
        +                "Tillana",
        +                "Tilt Neon",
        +                "Tilt Prism",
        +                "Tilt Warp",
        +                "Timmana",
        +                "Tinos",
        +                "Tiny5",
        +                "Tiro Bangla",
        +                "Tiro Devanagari Hindi",
        +                "Tiro Devanagari Marathi",
        +                "Tiro Devanagari Sanskrit",
        +                "Tiro Gurmukhi",
        +                "Tiro Kannada",
        +                "Tiro Tamil",
        +                "Tiro Telugu",
        +                "Tirra",
        +                "Titan One",
        +                "Titillium Web",
        +                "Tomorrow",
        +                "Tourney",
        +                "Trade Winds",
        +                "Train One",
        +                "Triodion",
        +                "Trirong",
        +                "Trispace",
        +                "Trocchi",
        +                "Trochut",
        +                "Truculenta",
        +                "Trykker",
        +                "Tsukimi Rounded",
        +                "Tuffy",
        +                "Tulpen One",
        +                "Turret Road",
        +                "Twinkle Star",
        +                "Ubuntu",
        +                "Ubuntu Condensed",
        +                "Ubuntu Mono",
        +                "Ubuntu Sans",
        +                "Ubuntu Sans Mono",
        +                "Uchen",
        +                "Ultra",
        +                "Unbounded",
        +                "Uncial Antiqua",
        +                "Underdog",
        +                "Unica One",
        +                "UnifrakturCook",
        +                "UnifrakturMaguntia",
        +                "Unkempt",
        +                "Unlock",
        +                "Unna",
        +                "UoqMunThenKhung",
        +                "Updock",
        +                "Urbanist",
        +                "VT323",
        +                "Vampiro One",
        +                "Varela",
        +                "Varela Round",
        +                "Varta",
        +                "Vast Shadow",
        +                "Vazirmatn",
        +                "Vend Sans",
        +                "Vesper Libre",
        +                "Viaoda Libre",
        +                "Vibes",
        +                "Vibur",
        +                "Victor Mono",
        +                "Vidaloka",
        +                "Viga",
        +                "Vina Sans",
        +                "Voces",
        +                "Volkhov",
        +                "Vollkorn",
        +                "Vollkorn SC",
        +                "Voltaire",
        +                "Vujahday Script",
        +                "WDXL Lubrifont JP N",
        +                "WDXL Lubrifont SC",
        +                "WDXL Lubrifont TC",
        +                "Waiting for the Sunrise",
        +                "Wallpoet",
        +                "Walter Turncoat",
        +                "Warnes",
        +                "Water Brush",
        +                "Waterfall",
        +                "Wavefont",
        +                "Wellfleet",
        +                "Wendy One",
        +                "Whisper",
        +                "WindSong",
        +                "Winky Rough",
        +                "Winky Sans",
        +                "Wire One",
        +                "Wittgenstein",
        +                "Wix Madefor Display",
        +                "Wix Madefor Text",
        +                "Work Sans",
        +                "Workbench",
        +                "Xanh Mono",
        +                "Yaldevi",
        +                "Yanone Kaffeesatz",
        +                "Yantramanav",
        +                "Yarndings 12",
        +                "Yarndings 12 Charted",
        +                "Yarndings 20",
        +                "Yarndings 20 Charted",
        +                "Yatra One",
        +                "Yellowtail",
        +                "Yeon Sung",
        +                "Yeseva One",
        +                "Yesteryear",
        +                "Yomogi",
        +                "Young Serif",
        +                "Yrsa",
        +                "Ysabeau",
        +                "Ysabeau Infant",
        +                "Ysabeau Office",
        +                "Ysabeau SC",
        +                "Yuji Boku",
        +                "Yuji Hentaigana Akari",
        +                "Yuji Hentaigana Akebono",
        +                "Yuji Mai",
        +                "Yuji Syuku",
        +                "Yusei Magic",
        +                "Yuyu",
        +                "Yuyu Short",
        +                "ZCOOL KuaiLe",
        +                "ZCOOL QingKe HuangYou",
        +                "ZCOOL XiaoWei",
        +                "Zain",
        +                "Zalando Sans",
        +                "Zalando Sans Expanded",
        +                "Zalando Sans SemiExpanded",
        +                "Zen Antique",
        +                "Zen Antique Soft",
        +                "Zen Dots",
        +                "Zen Kaku Gothic Antique",
        +                "Zen Kaku Gothic New",
        +                "Zen Kurenaido",
        +                "Zen Loop",
        +                "Zen Maru Gothic",
        +                "Zen Old Mincho",
        +                "Zen Tokyo Zoo",
        +                "Zeyada",
        +                "Zhi Mang Xing",
        +                "Zilla Slab",
        +                "Zilla Slab Highlight"
        +              ],
        +              "type": "string"
        +            },
        +            "fontSize": {
        +              "type": "number"
        +            },
        +            "footerColor": {
        +              "type": "string"
        +            },
        +            "footerFontSize": {
        +              "type": "number"
        +            },
        +            "footerGap": {
        +              "type": "number"
        +            },
        +            "footerLinkColor": {
        +              "type": "string"
        +            },
        +            "gridColor": {
        +              "type": "string"
        +            },
        +            "gridLineWidth": {
        +              "type": "number"
        +            },
        +            "gridLines": {
        +              "enum": [
        +                "none",
        +                "value",
        +                "both"
        +              ],
        +              "type": "string"
        +            },
        +            "headerGap": {
        +              "type": "number"
        +            },
        +            "labelColor": {
        +              "type": "string"
        +            },
        +            "labelFontSize": {
        +              "type": "number"
        +            },
        +            "labelFontWeight": {
        +              "type": "string"
        +            },
        +            "labelHaloWidth": {
        +              "type": "number"
        +            },
        +            "labelMutedFontWeight": {
        +              "type": "string"
        +            },
        +            "labelMutedOpacity": {
        +              "type": "number"
        +            },
        +            "lineStrokeWidth": {
        +              "type": "number"
        +            },
        +            "numericFontFamily": {
        +              "type": "string"
        +            },
        +            "pieCornerRadius": {
        +              "type": "number"
        +            },
        +            "sequentialRange": {
        +              "items": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "string"
        +                }
        +              ],
        +              "maxItems": 2,
        +              "minItems": 2,
        +              "type": "array"
        +            },
        +            "subtitleColor": {
        +              "type": "string"
        +            },
        +            "subtitleFontSize": {
        +              "type": "number"
        +            },
        +            "tickDensity": {
        +              "type": "number"
        +            },
        +            "tickLabelColor": {
        +              "type": "string"
        +            },
        +            "tickLabelFontWeight": {
        +              "type": "string"
        +            },
        +            "tickPadding": {
        +              "type": "number"
        +            },
        +            "tickSize": {
        +              "type": "number"
        +            },
        +            "titleColor": {
        +              "type": "string"
        +            },
        +            "titleFontFamily": {
        +              "type": "string"
        +            },
        +            "titleFontSize": {
        +              "type": "number"
        +            },
        +            "titleFontWeight": {
        +              "type": "string"
        +            },
        +            "titleSubtitleGap": {
        +              "type": "number"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "title": {
        +          "type": "string"
        +        },
        +        "version": {
        +          "const": "2026-03-20",
        +          "type": "string"
        +        },
        +        "width": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "x": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "display": {
        +              "default": true,
        +              "type": "boolean"
        +            },
        +            "domain": {
        +              "anyOf": [
        +                {
        +                  "items": [
        +                    {
        +                      "type": "number"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                }
        +              ]
        +            },
        +            "label": {
        +              "type": "string"
        +            },
        +            "nice": {
        +              "type": "boolean"
        +            },
        +            "tickFormat": {
        +              "type": "string"
        +            },
        +            "type": {
        +              "enum": [
        +                "linear",
        +                "utc",
        +                "band"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "y": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "display": {
        +              "default": true,
        +              "type": "boolean"
        +            },
        +            "domain": {
        +              "anyOf": [
        +                {
        +                  "items": [
        +                    {
        +                      "type": "number"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                }
        +              ]
        +            },
        +            "label": {
        +              "type": "string"
        +            },
        +            "nice": {
        +              "type": "boolean"
        +            },
        +            "tickFormat": {
        +              "type": "string"
        +            },
        +            "type": {
        +              "enum": [
        +                "linear",
        +                "utc",
        +                "band"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "type": "object"
        +        }
        +      },
        +      "required": [
        +        "version",
        +        "format",
        +        "marks"
        +      ],
        +      "title": "Szum Chart Configuration",
        +      "type": "object"
        +    },
        +    "valid": {
        +      "type": "boolean"
        +    }
        +  },
        +  "required": [
        +    "valid",
        +    "message",
        +    "errors",
        +    "diagnostics"
        +  ],
        +  "type": "object"
        +}
      • changedOutput schema / required
        Previous value: -[
        -  "view",
        -  "id",
        -  "title",
        -  "imageUrl",
        -  "embedUrl",
        -  "editUrl",
        -  "manageUrl",
        -  "format",
        -  "mimeType"
        -]New value: +[
        +  "view",
        +  "id",
        +  "title",
        +  "imageUrl",
        +  "embedUrl",
        +  "editUrl",
        +  "manageUrl",
        +  "format",
        +  "mimeType",
        +  "validation"
        +]
    • Changedupdate_chart3 fields changed
      • addedInput schema / properties / acknowledgeWarnings
        Added value: +{
        +  "description": "Set true only after the user explicitly approves every warning returned for this exact config",
        +  "type": "boolean"
        +}
      • addedOutput schema / properties / validation
        Added value: +{
        +  "additionalProperties": false,
        +  "properties": {
        +    "diagnostics": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "code": {
        +            "type": "string"
        +          },
        +          "details": {
        +            "additionalProperties": {},
        +            "propertyNames": {
        +              "type": "string"
        +            },
        +            "type": "object"
        +          },
        +          "message": {
        +            "type": "string"
        +          },
        +          "path": {
        +            "items": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ]
        +            },
        +            "type": "array"
        +          },
        +          "relatedPaths": {
        +            "items": {
        +              "items": {
        +                "anyOf": [
        +                  {
        +                    "type": "string"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ]
        +              },
        +              "type": "array"
        +            },
        +            "type": "array"
        +          },
        +          "severity": {
        +            "enum": [
        +              "error",
        +              "warning",
        +              "suggestion"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "code",
        +          "severity",
        +          "path",
        +          "message",
        +          "details"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "errors": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "code": {
        +            "type": "string"
        +          },
        +          "details": {
        +            "additionalProperties": {},
        +            "propertyNames": {
        +              "type": "string"
        +            },
        +            "type": "object"
        +          },
        +          "message": {
        +            "type": "string"
        +          },
        +          "path": {
        +            "items": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ]
        +            },
        +            "type": "array"
        +          },
        +          "relatedPaths": {
        +            "items": {
        +              "items": {
        +                "anyOf": [
        +                  {
        +                    "type": "string"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ]
        +              },
        +              "type": "array"
        +            },
        +            "type": "array"
        +          },
        +          "severity": {
        +            "enum": [
        +              "error",
        +              "warning",
        +              "suggestion"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "code",
        +          "severity",
        +          "path",
        +          "message",
        +          "details"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "message": {
        +      "type": "string"
        +    },
        +    "suggestedConfig": {
        +      "additionalProperties": {},
        +      "description": "Schema version 2026-03-20. Send this JSON to POST https://szum.io/validate to validate it or POST https://szum.io/chart to render a chart image.",
        +      "properties": {
        +        "attribution": {
        +          "description": "Show a small \"Made with Szum\" credit in the bottom-right. Always on for free and keyless renders; Creator and Pro omit it by default and set true to opt in.",
        +          "type": "boolean"
        +        },
        +        "color": {
        +          "anyOf": [
        +            {
        +              "additionalProperties": {},
        +              "properties": {
        +                "domain": {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                },
        +                "label": {
        +                  "type": "string"
        +                },
        +                "range": {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                },
        +                "type": {
        +                  "const": "categorical",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": {},
        +              "properties": {
        +                "domain": {
        +                  "items": [
        +                    {
        +                      "type": "number"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                "label": {
        +                  "type": "string"
        +                },
        +                "range": {
        +                  "items": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "string"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                "type": {
        +                  "const": "sequential",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "label": {
        +                  "type": "string"
        +                }
        +              },
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "data": {
        +          "items": {
        +            "additionalProperties": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ]
        +            },
        +            "propertyNames": {
        +              "type": "string"
        +            },
        +            "type": "object"
        +          },
        +          "type": "array"
        +        },
        +        "footer": {
        +          "description": "Caption below the chart (a source line, methodology note, date). URLs, bare domains, and [label](url) links in it are auto-detected and rendered as inline links on every surface.",
        +          "type": "string"
        +        },
        +        "format": {
        +          "enum": [
        +            "svg",
        +            "png"
        +          ],
        +          "type": "string"
        +        },
        +        "headerAlign": {
        +          "enum": [
        +            "left",
        +            "center",
        +            "right"
        +          ],
        +          "type": "string"
        +        },
        +        "height": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "locale": {
        +          "description": "Locale identifier accepted by JavaScript Intl and associated with the chart content, such as en, pl, or zh-Hant.",
        +          "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +          "type": "string"
        +        },
        +        "margin": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "bottom": {
        +              "type": "number"
        +            },
        +            "left": {
        +              "type": "number"
        +            },
        +            "right": {
        +              "type": "number"
        +            },
        +            "top": {
        +              "type": "number"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "marks": {
        +          "items": {
        +            "oneOf": [
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "additionalProperties": {},
        +                    "properties": {
        +                      "field": {
        +                        "type": "string"
        +                      },
        +                      "format": {
        +                        "type": "string"
        +                      }
        +                    },
        +                    "required": [
        +                      "field"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  "r": {
        +                    "type": "number"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "dot",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "curve": {
        +                    "enum": [
        +                      "linear",
        +                      "monotone",
        +                      "step"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "end": {
        +                            "anyOf": [
        +                              {
        +                                "type": "boolean"
        +                              },
        +                              {
        +                                "items": {
        +                                  "enum": [
        +                                    "category",
        +                                    "value"
        +                                  ],
        +                                  "type": "string"
        +                                },
        +                                "type": "array"
        +                              }
        +                            ],
        +                            "default": [
        +                              "category"
        +                            ]
        +                          },
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "points": {
        +                            "anyOf": [
        +                              {
        +                                "enum": [
        +                                  "extrema",
        +                                  "all",
        +                                  "ends"
        +                                ],
        +                                "type": "string"
        +                              },
        +                              {
        +                                "const": false,
        +                                "type": "boolean"
        +                              },
        +                              {
        +                                "additionalProperties": {},
        +                                "properties": {
        +                                  "at": {
        +                                    "enum": [
        +                                      "extrema",
        +                                      "all",
        +                                      "ends"
        +                                    ],
        +                                    "type": "string"
        +                                  },
        +                                  "show": {
        +                                    "default": [
        +                                      "value"
        +                                    ],
        +                                    "items": {
        +                                      "enum": [
        +                                        "value",
        +                                        "category"
        +                                      ],
        +                                      "type": "string"
        +                                    },
        +                                    "type": "array"
        +                                  }
        +                                },
        +                                "required": [
        +                                  "at"
        +                                ],
        +                                "type": "object"
        +                              }
        +                            ],
        +                            "default": false
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "line",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "cornerRadius": {
        +                    "type": "number"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "group": {
        +                    "default": "stack",
        +                    "enum": [
        +                      "stack",
        +                      "dodge"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "position": {
        +                            "default": "outside",
        +                            "enum": [
        +                              "auto",
        +                              "outside",
        +                              "inside"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "show": {
        +                            "default": [
        +                              "value"
        +                            ],
        +                            "items": {
        +                              "enum": [
        +                                "value",
        +                                "percent",
        +                                "category",
        +                                "total"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "barY",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "cornerRadius": {
        +                    "type": "number"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "group": {
        +                    "default": "stack",
        +                    "enum": [
        +                      "stack",
        +                      "dodge"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "position": {
        +                            "default": "outside",
        +                            "enum": [
        +                              "auto",
        +                              "outside",
        +                              "inside"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "show": {
        +                            "default": [
        +                              "value"
        +                            ],
        +                            "items": {
        +                              "enum": [
        +                                "value",
        +                                "percent",
        +                                "category",
        +                                "total"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "barX",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "curve": {
        +                    "enum": [
        +                      "linear",
        +                      "monotone",
        +                      "step"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "end": {
        +                            "anyOf": [
        +                              {
        +                                "type": "boolean"
        +                              },
        +                              {
        +                                "items": {
        +                                  "enum": [
        +                                    "category",
        +                                    "value",
        +                                    "percent"
        +                                  ],
        +                                  "type": "string"
        +                                },
        +                                "type": "array"
        +                              }
        +                            ],
        +                            "default": [
        +                              "category"
        +                            ]
        +                          },
        +                          "format": {
        +                            "type": "string"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "areaY",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "curve": {
        +                    "enum": [
        +                      "linear",
        +                      "monotone",
        +                      "step"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "areaX",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "cornerRadius": {
        +                    "type": "number"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "innerRadius": {
        +                    "default": 0,
        +                    "maximum": 1,
        +                    "minimum": 0,
        +                    "type": "number"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "position": {
        +                            "default": "auto",
        +                            "enum": [
        +                              "auto",
        +                              "inside",
        +                              "outside"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "show": {
        +                            "default": [
        +                              "category",
        +                              "percent"
        +                            ],
        +                            "items": {
        +                              "enum": [
        +                                "value",
        +                                "percent",
        +                                "category"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "pie",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "dx": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "dy": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "fontSize": {
        +                    "type": "number"
        +                  },
        +                  "fontWeight": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "text": {
        +                    "default": "text",
        +                    "type": "string"
        +                  },
        +                  "textAnchor": {
        +                    "default": "center",
        +                    "enum": [
        +                      "start",
        +                      "center",
        +                      "end"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "type": {
        +                    "const": "text",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "ruleX",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "ruleY",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              }
        +            ]
        +          },
        +          "minItems": 1,
        +          "type": "array"
        +        },
        +        "plotHeight": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "plotWidth": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "scale": {
        +          "maximum": 4,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "subtitle": {
        +          "type": "string"
        +        },
        +        "theme": {
        +          "default": "editorial",
        +          "enum": [
        +            "editorial",
        +            "clean",
        +            "noir",
        +            "loud",
        +            "soft",
        +            "technical"
        +          ],
        +          "type": "string"
        +        },
        +        "themeOverrides": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "axisColor": {
        +              "type": "string"
        +            },
        +            "axisFrame": {
        +              "enum": [
        +                "none",
        +                "baseline",
        +                "lShape",
        +                "full"
        +              ],
        +              "type": "string"
        +            },
        +            "axisLabelColor": {
        +              "type": "string"
        +            },
        +            "axisLabelFontWeight": {
        +              "type": "string"
        +            },
        +            "axisLineWidth": {
        +              "type": "number"
        +            },
        +            "backgroundColor": {
        +              "type": "string"
        +            },
        +            "barCornerRadius": {
        +              "type": "number"
        +            },
        +            "barPadding": {
        +              "type": "number"
        +            },
        +            "colors": {
        +              "items": {
        +                "type": "string"
        +              },
        +              "type": "array"
        +            },
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "dotRadius": {
        +              "type": "number"
        +            },
        +            "fontFamily": {
        +              "enum": [
        +                "ABeeZee",
        +                "ADLaM Display",
        +                "AR One Sans",
        +                "Abel",
        +                "Abhaya Libre",
        +                "Aboreto",
        +                "Abril Fatface",
        +                "Abyssinica SIL",
        +                "Aclonica",
        +                "Acme",
        +                "Actor",
        +                "Adamina",
        +                "Advent Pro",
        +                "Afacad",
        +                "Afacad Flux",
        +                "Agbalumo",
        +                "Agdasima",
        +                "Agu Display",
        +                "Aguafina Script",
        +                "Akatab",
        +                "Akaya Kanadaka",
        +                "Akaya Telivigala",
        +                "Akronim",
        +                "Akshar",
        +                "Akt",
        +                "Aladin",
        +                "Alan Sans",
        +                "Alata",
        +                "Alatsi",
        +                "Albert Sans",
        +                "Aldrich",
        +                "Alef",
        +                "Alegreya",
        +                "Alegreya SC",
        +                "Alegreya Sans",
        +                "Alegreya Sans SC",
        +                "Aleo",
        +                "Alex Brush",
        +                "Alexandria",
        +                "Alfa Slab One",
        +                "Alice",
        +                "Alien Block",
        +                "Alike",
        +                "Alike Angular",
        +                "Alkalami",
        +                "Alkatra",
        +                "Allan",
        +                "Allerta",
        +                "Allerta Stencil",
        +                "Allison",
        +                "Allkin",
        +                "Allura",
        +                "Almarai",
        +                "Almendra",
        +                "Almendra Display",
        +                "Almendra SC",
        +                "Alumni Sans",
        +                "Alumni Sans Collegiate One",
        +                "Alumni Sans Inline One",
        +                "Alumni Sans Pinstripe",
        +                "Alumni Sans SC",
        +                "Alyamama",
        +                "Amarante",
        +                "Amaranth",
        +                "Amarna",
        +                "Amatic SC",
        +                "Amethysta",
        +                "Amiko",
        +                "Amiri",
        +                "Amiri Quran",
        +                "Amita",
        +                "Anaheim",
        +                "Ancizar Sans",
        +                "Ancizar Serif",
        +                "Andada Pro",
        +                "Andika",
        +                "Anek Bangla",
        +                "Anek Devanagari",
        +                "Anek Gujarati",
        +                "Anek Gurmukhi",
        +                "Anek Kannada",
        +                "Anek Latin",
        +                "Anek Malayalam",
        +                "Anek Odia",
        +                "Anek Tamil",
        +                "Anek Telugu",
        +                "Angkor",
        +                "Annapurna SIL",
        +                "Annie Use Your Telescope",
        +                "Anonymous Pro",
        +                "Anta",
        +                "Antic",
        +                "Antic Didone",
        +                "Antic Slab",
        +                "Anton",
        +                "Anton SC",
        +                "Antonio",
        +                "Anuphan",
        +                "Anybody",
        +                "Aoboshi One",
        +                "Arapey",
        +                "Arbutus",
        +                "Arbutus Slab",
        +                "Architects Daughter",
        +                "Archivo",
        +                "Archivo Black",
        +                "Archivo Narrow",
        +                "Are You Serious",
        +                "Aref Ruqaa",
        +                "Aref Ruqaa Ink",
        +                "Arima",
        +                "Arimo",
        +                "Arizonia",
        +                "Armata",
        +                "Arsenal",
        +                "Arsenal SC",
        +                "Artifika",
        +                "Arvo",
        +                "Arya",
        +                "Asap",
        +                "Asap Condensed",
        +                "Asar",
        +                "Asimovian",
        +                "Asset",
        +                "Assistant",
        +                "Asta Sans",
        +                "Astloch",
        +                "Asul",
        +                "Athiti",
        +                "Atkinson Hyperlegible",
        +                "Atkinson Hyperlegible Mono",
        +                "Atkinson Hyperlegible Next",
        +                "Atma",
        +                "Atomic Age",
        +                "Aubrey",
        +                "Audiowide",
        +                "Autour One",
        +                "Average",
        +                "Average Sans",
        +                "Averia Gruesa Libre",
        +                "Averia Libre",
        +                "Averia Sans Libre",
        +                "Averia Serif Libre",
        +                "Azeret Mono",
        +                "B612",
        +                "B612 Mono",
        +                "BBH Bartle",
        +                "BBH Bogle",
        +                "BBH Hegarty",
        +                "BIZ UDGothic",
        +                "BIZ UDMincho",
        +                "BIZ UDPGothic",
        +                "BIZ UDPMincho",
        +                "BJCree",
        +                "Babylonica",
        +                "Bacasime Antique",
        +                "Bad Script",
        +                "Badeen Display",
        +                "Bagel Fat One",
        +                "Bahiana",
        +                "Bahianita",
        +                "Bai Jamjuree",
        +                "Bakbak One",
        +                "Ballet",
        +                "Baloo 2",
        +                "Baloo Bhai 2",
        +                "Baloo Bhaijaan 2",
        +                "Baloo Bhaina 2",
        +                "Baloo Chettan 2",
        +                "Baloo Da 2",
        +                "Baloo Paaji 2",
        +                "Baloo Tamma 2",
        +                "Baloo Tammudu 2",
        +                "Baloo Thambi 2",
        +                "Balsamiq Sans",
        +                "Balthazar",
        +                "Bangers",
        +                "Barlow",
        +                "Barlow Condensed",
        +                "Barlow Semi Condensed",
        +                "Barriecito",
        +                "Barrio",
        +                "Basic",
        +                "Baskervville",
        +                "Baskervville SC",
        +                "Battambang",
        +                "Baumans",
        +                "Bayon",
        +                "Be Vietnam Pro",
        +                "Beau Rivage",
        +                "Bebas Neue",
        +                "Beiruti",
        +                "Belanosima",
        +                "Belgrano",
        +                "Bellefair",
        +                "Belleza",
        +                "Bellota",
        +                "Bellota Text",
        +                "BenchNine",
        +                "Benne",
        +                "Bentham",
        +                "Berkshire Swash",
        +                "Besley",
        +                "Betania Patmos",
        +                "Betania Patmos GDL",
        +                "Betania Patmos In",
        +                "Betania Patmos In GDL",
        +                "Beth Ellen",
        +                "Bevan",
        +                "BhuTuka Expanded One",
        +                "Big Shoulders",
        +                "Big Shoulders Inline",
        +                "Big Shoulders Stencil",
        +                "Bigelow Rules",
        +                "Bigshot One",
        +                "Bilbo",
        +                "Bilbo Swash Caps",
        +                "BioRhyme",
        +                "BioRhyme Expanded",
        +                "Birthstone",
        +                "Birthstone Bounce",
        +                "Biryani",
        +                "Bitcount",
        +                "Bitcount Grid Double",
        +                "Bitcount Grid Double Ink",
        +                "Bitcount Grid Single",
        +                "Bitcount Grid Single Ink",
        +                "Bitcount Ink",
        +                "Bitcount Prop Double",
        +                "Bitcount Prop Double Ink",
        +                "Bitcount Prop Single",
        +                "Bitcount Prop Single Ink",
        +                "Bitcount Single",
        +                "Bitcount Single Ink",
        +                "Bitter",
        +                "Black And White Picture",
        +                "Black Han Sans",
        +                "Black Ops One",
        +                "Blaka",
        +                "Blaka Hollow",
        +                "Blaka Ink",
        +                "Blinker",
        +                "Bodoni Moda",
        +                "Bodoni Moda SC",
        +                "Bokor",
        +                "Boldonse",
        +                "Bona Nova",
        +                "Bona Nova SC",
        +                "Bonbon",
        +                "Bonheur Royale",
        +                "Boogaloo",
        +                "Borel",
        +                "Bowlby One",
        +                "Bowlby One SC",
        +                "Bpmf Huninn",
        +                "Bpmf Iansui",
        +                "Bpmf Zihi Kai Std",
        +                "Braah One",
        +                "Brawler",
        +                "Bree Serif",
        +                "Bricolage Grotesque",
        +                "Bruno Ace",
        +                "Bruno Ace SC",
        +                "Brygada 1918",
        +                "Bubblegum Sans",
        +                "Bubbler One",
        +                "Buda",
        +                "Buenard",
        +                "Bungee",
        +                "Bungee Hairline",
        +                "Bungee Inline",
        +                "Bungee Outline",
        +                "Bungee Shade",
        +                "Bungee Spice",
        +                "Bungee Tint",
        +                "Butcherman",
        +                "Butterfly Kids",
        +                "Bytesized",
        +                "Cabin",
        +                "Cabin Condensed",
        +                "Cabin Sketch",
        +                "Cactus Classical Serif",
        +                "Caesar Dressing",
        +                "Cagliostro",
        +                "Cairo",
        +                "Cairo Play",
        +                "Cal Sans",
        +                "Caladea",
        +                "Calistoga",
        +                "Calligraffitti",
        +                "Cambay",
        +                "Cambo",
        +                "Candal",
        +                "Cantarell",
        +                "Cantata One",
        +                "Cantora One",
        +                "Caprasimo",
        +                "Capriola",
        +                "Caramel",
        +                "Carattere",
        +                "Cardo",
        +                "Carlito",
        +                "Carme",
        +                "Carrois Gothic",
        +                "Carrois Gothic SC",
        +                "Carter One",
        +                "Cascadia Code",
        +                "Cascadia Mono",
        +                "Castoro",
        +                "Castoro Titling",
        +                "Catamaran",
        +                "Caudex",
        +                "Cause",
        +                "Caveat",
        +                "Caveat Brush",
        +                "Cedarville Cursive",
        +                "Ceviche One",
        +                "Chakra Petch",
        +                "Changa",
        +                "Changa One",
        +                "Chango",
        +                "Charis SIL",
        +                "Charm",
        +                "Charmonman",
        +                "Chathura",
        +                "Chau Philomene One",
        +                "Chela One",
        +                "Chelsea Market",
        +                "Chenla",
        +                "Cherish",
        +                "Cherry Bomb One",
        +                "Cherry Cream Soda",
        +                "Cherry Swash",
        +                "Chewy",
        +                "Chicle",
        +                "Chilanka",
        +                "Chiron GoRound TC",
        +                "Chiron Hei HK",
        +                "Chiron Sung HK",
        +                "Chivo",
        +                "Chivo Mono",
        +                "Chocolate Classical Sans",
        +                "Chokokutai",
        +                "Chonburi",
        +                "Cinzel",
        +                "Cinzel Decorative",
        +                "Clicker Script",
        +                "Climate Crisis",
        +                "Coda",
        +                "Codystar",
        +                "Coiny",
        +                "Combo",
        +                "Comfortaa",
        +                "Comforter",
        +                "Comforter Brush",
        +                "Comic Neue",
        +                "Comic Relief",
        +                "Coming Soon",
        +                "Comme",
        +                "Commissioner",
        +                "Concert One",
        +                "Condiment",
        +                "Content",
        +                "Contrail One",
        +                "Convergence",
        +                "Cookie",
        +                "Copse",
        +                "Coral Pixels",
        +                "Corben",
        +                "Corinthia",
        +                "Cormorant",
        +                "Cormorant Garamond",
        +                "Cormorant Infant",
        +                "Cormorant SC",
        +                "Cormorant Unicase",
        +                "Cormorant Upright",
        +                "Cossette Texte",
        +                "Cossette Titre",
        +                "Courgette",
        +                "Courier Prime",
        +                "Cousine",
        +                "Coustard",
        +                "Covered By Your Grace",
        +                "Crafty Girls",
        +                "Creepster",
        +                "Crete Round",
        +                "Crimson Pro",
        +                "Crimson Text",
        +                "Croissant One",
        +                "Crushed",
        +                "Cuprum",
        +                "Cute Font",
        +                "Cutive",
        +                "Cutive Mono",
        +                "DM Mono",
        +                "DM Sans",
        +                "DM Serif Display",
        +                "DM Serif Text",
        +                "Dai Banna SIL",
        +                "Damion",
        +                "Dancing Script",
        +                "Danfo",
        +                "Dangrek",
        +                "Darker Grotesque",
        +                "Darumadrop One",
        +                "Datatype",
        +                "David Libre",
        +                "Dawning of a New Day",
        +                "Days One",
        +                "Dekko",
        +                "Dela Gothic One",
        +                "Delicious Handrawn",
        +                "Delius",
        +                "Delius Swash Caps",
        +                "Delius Unicase",
        +                "Della Respira",
        +                "Denk One",
        +                "Devonshire",
        +                "Dhurjati",
        +                "Didact Gothic",
        +                "Diphylleia",
        +                "Diplomata",
        +                "Diplomata SC",
        +                "Do Hyeon",
        +                "Dokdo",
        +                "Domine",
        +                "Donegal One",
        +                "Dongle",
        +                "Doppio One",
        +                "Dorsa",
        +                "Dosis",
        +                "DotGothic16",
        +                "Doto",
        +                "Dr Sugiyama",
        +                "Duru Sans",
        +                "DynaPuff",
        +                "Dynalight",
        +                "EB Garamond",
        +                "Eagle Lake",
        +                "East Sea Dokdo",
        +                "Eater",
        +                "Economica",
        +                "Eczar",
        +                "Edu AU VIC WA NT Arrows",
        +                "Edu AU VIC WA NT Dots",
        +                "Edu AU VIC WA NT Guides",
        +                "Edu AU VIC WA NT Hand",
        +                "Edu AU VIC WA NT Pre",
        +                "Edu NSW ACT Cursive",
        +                "Edu NSW ACT Foundation",
        +                "Edu NSW ACT Hand Pre",
        +                "Edu QLD Beginner",
        +                "Edu QLD Hand",
        +                "Edu SA Beginner",
        +                "Edu SA Hand",
        +                "Edu TAS Beginner",
        +                "Edu VIC WA NT Beginner",
        +                "Edu VIC WA NT Hand",
        +                "Edu VIC WA NT Hand Pre",
        +                "El Messiri",
        +                "Electrolize",
        +                "Elms Sans",
        +                "Elsie",
        +                "Elsie Swash Caps",
        +                "Emblema One",
        +                "Emilys Candy",
        +                "Encode Sans",
        +                "Encode Sans Condensed",
        +                "Encode Sans Expanded",
        +                "Encode Sans SC",
        +                "Encode Sans Semi Condensed",
        +                "Encode Sans Semi Expanded",
        +                "Engagement",
        +                "Englebert",
        +                "Enriqueta",
        +                "Ephesis",
        +                "Epilogue",
        +                "Epunda Sans",
        +                "Epunda Slab",
        +                "Erica One",
        +                "Esteban",
        +                "Estedad",
        +                "Estonia",
        +                "Euphoria Script",
        +                "Ewert",
        +                "Exile",
        +                "Exo",
        +                "Exo 2",
        +                "Expletus Sans",
        +                "Explora",
        +                "Faculty Glyphic",
        +                "Fahkwang",
        +                "Familjen Grotesk",
        +                "Fanwood Text",
        +                "Farro",
        +                "Farsan",
        +                "Fascinate",
        +                "Fascinate Inline",
        +                "Faster One",
        +                "Fasthand",
        +                "Fauna One",
        +                "Faustina",
        +                "Federant",
        +                "Federo",
        +                "Felipa",
        +                "Fenix",
        +                "Festive",
        +                "Figtree",
        +                "Finger Paint",
        +                "Finlandica Headline",
        +                "Finlandica Text",
        +                "Fira Code",
        +                "Fira Mono",
        +                "Fira Sans",
        +                "Fira Sans Condensed",
        +                "Fira Sans Extra Condensed",
        +                "Fjalla One",
        +                "Fjord One",
        +                "Flamenco",
        +                "Flavors",
        +                "Fleur De Leah",
        +                "Flow Block",
        +                "Flow Circular",
        +                "Flow Rounded",
        +                "Foldit",
        +                "Fondamento",
        +                "Fontdiner Swanky",
        +                "Forum",
        +                "Fragment Mono",
        +                "Francois One",
        +                "Frank Ruhl Libre",
        +                "Fraunces",
        +                "Freckle Face",
        +                "Fredericka the Great",
        +                "Fredoka",
        +                "Freehand",
        +                "Freeman",
        +                "Fresca",
        +                "Frijole",
        +                "Fruktur",
        +                "Fugaz One",
        +                "Fuggles",
        +                "Funnel Display",
        +                "Funnel Sans",
        +                "Fustat",
        +                "Fuzzy Bubbles",
        +                "GFS Didot",
        +                "GFS Neohellenic",
        +                "Ga Maamli",
        +                "Gabarito",
        +                "Gabriela",
        +                "Gaegu",
        +                "Gafata",
        +                "Gajraj One",
        +                "Galada",
        +                "Galdeano",
        +                "Galindo",
        +                "Gamja Flower",
        +                "Gantari",
        +                "Gasoek One",
        +                "Gayathri",
        +                "Geist",
        +                "Geist Mono",
        +                "Geist Pixel",
        +                "Gelasio",
        +                "Gemunu Libre",
        +                "Genos",
        +                "Gentium Book Plus",
        +                "Gentium Plus",
        +                "Geo",
        +                "Geologica",
        +                "Geom",
        +                "Geomini",
        +                "Georama",
        +                "Geostar",
        +                "Geostar Fill",
        +                "Germania One",
        +                "Gideon Roman",
        +                "Gidole",
        +                "Gidugu",
        +                "Gilda Display",
        +                "Girassol",
        +                "Give You Glory",
        +                "Glass Antiqua",
        +                "Glegoo",
        +                "Gloock",
        +                "Gloria Hallelujah",
        +                "Glory",
        +                "Gluten",
        +                "Goblin One",
        +                "Gochi Hand",
        +                "Goldman",
        +                "Golos Text",
        +                "Google Sans",
        +                "Google Sans Code",
        +                "Google Sans Flex",
        +                "Gorditas",
        +                "Gothic A1",
        +                "Gotu",
        +                "Goudy Bookletter 1911",
        +                "Gowun Batang",
        +                "Gowun Dodum",
        +                "Graduate",
        +                "Grand Hotel",
        +                "Grandiflora One",
        +                "Grandstander",
        +                "Grape Nuts",
        +                "Gravitas One",
        +                "Great Vibes",
        +                "Grechen Fuemen",
        +                "Grenze",
        +                "Grenze Gotisch",
        +                "Grey Qo",
        +                "Griffy",
        +                "Gruppo",
        +                "Gudea",
        +                "Gugi",
        +                "Gulzar",
        +                "Gupter",
        +                "Gurajada",
        +                "Gveret Levin",
        +                "Gwendolyn",
        +                "Habibi",
        +                "Hachi Maru Pop",
        +                "Hahmlet",
        +                "Halant",
        +                "Hammersmith One",
        +                "Hanalei",
        +                "Hanalei Fill",
        +                "Handjet",
        +                "Handlee",
        +                "Hanken Grotesk",
        +                "Hanuman",
        +                "Happy Monkey",
        +                "Harmattan",
        +                "Headland One",
        +                "Hedvig Letters Sans",
        +                "Hedvig Letters Serif",
        +                "Heebo",
        +                "Henny Penny",
        +                "Hepta Slab",
        +                "Herr Von Muellerhoff",
        +                "Hi Melody",
        +                "Hibur Mono",
        +                "Hina Mincho",
        +                "Hind",
        +                "Hind Guntur",
        +                "Hind Madurai",
        +                "Hind Mysuru",
        +                "Hind Siliguri",
        +                "Hind Vadodara",
        +                "Holtwood One SC",
        +                "Homemade Apple",
        +                "Homenaje",
        +                "Honk",
        +                "Host Grotesk",
        +                "Hubballi",
        +                "Hubot Sans",
        +                "Huninn",
        +                "Hurricane",
        +                "IBM Plex Mono",
        +                "IBM Plex Sans",
        +                "IBM Plex Sans Arabic",
        +                "IBM Plex Sans Condensed",
        +                "IBM Plex Sans Devanagari",
        +                "IBM Plex Sans Hebrew",
        +                "IBM Plex Sans JP",
        +                "IBM Plex Sans KR",
        +                "IBM Plex Sans Thai",
        +                "IBM Plex Sans Thai Looped",
        +                "IBM Plex Serif",
        +                "IM Fell DW Pica",
        +                "IM Fell DW Pica SC",
        +                "IM Fell Double Pica",
        +                "IM Fell Double Pica SC",
        +                "IM Fell English",
        +                "IM Fell English SC",
        +                "IM Fell French Canon",
        +                "IM Fell French Canon SC",
        +                "IM Fell Great Primer",
        +                "IM Fell Great Primer SC",
        +                "Iansui",
        +                "Ibarra Real Nova",
        +                "Iceberg",
        +                "Iceland",
        +                "Idiqlat",
        +                "Imbue",
        +                "Imperial Script",
        +                "Imprima",
        +                "Inclusive Sans",
        +                "Inconsolata",
        +                "Inder",
        +                "Indie Flower",
        +                "Ingrid Darling",
        +                "Inika",
        +                "Inknut Antiqua",
        +                "Inria Sans",
        +                "Inria Serif",
        +                "Inspiration",
        +                "Instrument Sans",
        +                "Instrument Serif",
        +                "Intel One Mono",
        +                "Inter",
        +                "Inter Tight",
        +                "Iosevka Charon",
        +                "Iosevka Charon Mono",
        +                "Irish Grover",
        +                "Island Moments",
        +                "Istok Web",
        +                "Italiana",
        +                "Italianno",
        +                "Itim",
        +                "Jacquard 12",
        +                "Jacquard 12 Charted",
        +                "Jacquard 24",
        +                "Jacquard 24 Charted",
        +                "Jacquarda Bastarda 9",
        +                "Jacquarda Bastarda 9 Charted",
        +                "Jacques Francois",
        +                "Jacques Francois Shadow",
        +                "Jaini",
        +                "Jaini Purva",
        +                "Jaldi",
        +                "Jaro",
        +                "Jersey 10",
        +                "Jersey 10 Charted",
        +                "Jersey 15",
        +                "Jersey 15 Charted",
        +                "Jersey 20",
        +                "Jersey 20 Charted",
        +                "Jersey 25",
        +                "Jersey 25 Charted",
        +                "JetBrains Mono",
        +                "Jim Nightshade",
        +                "Joan",
        +                "Jockey One",
        +                "Jolly Lodger",
        +                "Jomhuria",
        +                "Jomolhari",
        +                "Josefin Sans",
        +                "Josefin Slab",
        +                "Jost",
        +                "Joti One",
        +                "Jua",
        +                "Judson",
        +                "Julee",
        +                "Julius Sans One",
        +                "Junge",
        +                "Jura",
        +                "Just Another Hand",
        +                "Just Me Again Down Here",
        +                "K2D",
        +                "Kablammo",
        +                "Kadwa",
        +                "Kaisei Decol",
        +                "Kaisei HarunoUmi",
        +                "Kaisei Opti",
        +                "Kaisei Tokumin",
        +                "Kalam",
        +                "Kalnia",
        +                "Kalnia Glaze",
        +                "Kameron",
        +                "Kanchenjunga",
        +                "Kanit",
        +                "Kantumruy Pro",
        +                "Kapakana",
        +                "Karantina",
        +                "Karla",
        +                "Karla Tamil Inclined",
        +                "Karla Tamil Upright",
        +                "Karma",
        +                "Katibeh",
        +                "Kaushan Script",
        +                "Kavivanar",
        +                "Kavoon",
        +                "Kay Pho Du",
        +                "Kdam Thmor Pro",
        +                "Keania One",
        +                "Kedebideri",
        +                "Kelly Slab",
        +                "Kenia",
        +                "Khand",
        +                "Khmer",
        +                "Khula",
        +                "Kings",
        +                "Kirang Haerang",
        +                "Kite One",
        +                "Kiwi Maru",
        +                "Klee One",
        +                "Knewave",
        +                "KoHo",
        +                "Kodchasan",
        +                "Kode Mono",
        +                "Koh Santepheap",
        +                "Kolker Brush",
        +                "Konkhmer Sleokchher",
        +                "Kosugi",
        +                "Kosugi Maru",
        +                "Kotta One",
        +                "Koulen",
        +                "Kranky",
        +                "Kreon",
        +                "Kristi",
        +                "Krona One",
        +                "Krub",
        +                "Kufam",
        +                "Kulim Park",
        +                "Kumar One",
        +                "Kumar One Outline",
        +                "Kumbh Sans",
        +                "Kurale",
        +                "LINE Seed JP",
        +                "LXGW Marker Gothic",
        +                "LXGW WenKai Mono TC",
        +                "LXGW WenKai TC",
        +                "La Belle Aurore",
        +                "Labrada",
        +                "Lacquer",
        +                "Laila",
        +                "Lakki Reddy",
        +                "Lalezar",
        +                "Lancelot",
        +                "Langar",
        +                "Lateef",
        +                "Lato",
        +                "Lavishly Yours",
        +                "League Gothic",
        +                "League Script",
        +                "League Spartan",
        +                "Leckerli One",
        +                "Ledger",
        +                "Lekton",
        +                "Lemon",
        +                "Lemonada",
        +                "Lexend",
        +                "Lexend Deca",
        +                "Lexend Exa",
        +                "Lexend Giga",
        +                "Lexend Mega",
        +                "Lexend Peta",
        +                "Lexend Tera",
        +                "Lexend Zetta",
        +                "Libertinus Keyboard",
        +                "Libertinus Math",
        +                "Libertinus Mono",
        +                "Libertinus Sans",
        +                "Libertinus Serif",
        +                "Libertinus Serif Display",
        +                "Libre Barcode 128",
        +                "Libre Barcode 128 Text",
        +                "Libre Barcode 39",
        +                "Libre Barcode 39 Extended",
        +                "Libre Barcode 39 Extended Text",
        +                "Libre Barcode 39 Text",
        +                "Libre Barcode EAN13 Text",
        +                "Libre Baskerville",
        +                "Libre Bodoni",
        +                "Libre Caslon Display",
        +                "Libre Caslon Text",
        +                "Libre Franklin",
        +                "Licorice",
        +                "Life Savers",
        +                "Lilex",
        +                "Lilita One",
        +                "Lily Script One",
        +                "Limelight",
        +                "Linden Hill",
        +                "Linefont",
        +                "Lisu Bosa",
        +                "Liter",
        +                "Literata",
        +                "Liu Jian Mao Cao",
        +                "Livvic",
        +                "Lobster",
        +                "Lobster Two",
        +                "Londrina Outline",
        +                "Londrina Shadow",
        +                "Londrina Sketch",
        +                "Londrina Solid",
        +                "Long Cang",
        +                "Lora",
        +                "Love Light",
        +                "Love Ya Like A Sister",
        +                "Loved by the King",
        +                "Lovers Quarrel",
        +                "Luckiest Guy",
        +                "Lugrasimo",
        +                "Lumanosimo",
        +                "Lunasima",
        +                "Lusitana",
        +                "Lustria",
        +                "Luxurious Roman",
        +                "Luxurious Script",
        +                "M PLUS 1",
        +                "M PLUS 1 Code",
        +                "M PLUS 1p",
        +                "M PLUS 2",
        +                "M PLUS Code Latin",
        +                "M PLUS Rounded 1c",
        +                "M PLUS U",
        +                "Ma Shan Zheng",
        +                "Macondo",
        +                "Macondo Swash Caps",
        +                "Mada",
        +                "Madimi One",
        +                "Magra",
        +                "Maiden Orange",
        +                "Maitree",
        +                "Major Mono Display",
        +                "Mako",
        +                "Mali",
        +                "Mallanna",
        +                "Maname",
        +                "Mandali",
        +                "Manjari",
        +                "Manrope",
        +                "Mansalva",
        +                "Manuale",
        +                "Manufacturing Consent",
        +                "Marcellus",
        +                "Marcellus SC",
        +                "Marck Script",
        +                "Margarine",
        +                "Marhey",
        +                "Markazi Text",
        +                "Marko One",
        +                "Marmelad",
        +                "Martel",
        +                "Martel Sans",
        +                "Martian Mono",
        +                "Marvel",
        +                "Matangi",
        +                "Mate",
        +                "Mate SC",
        +                "Matemasie",
        +                "Material Icons",
        +                "Material Icons Outlined",
        +                "Material Icons Round",
        +                "Material Icons Sharp",
        +                "Material Icons Two Tone",
        +                "Material Symbols",
        +                "Material Symbols Outlined",
        +                "Material Symbols Rounded",
        +                "Material Symbols Sharp",
        +                "Maven Pro",
        +                "McLaren",
        +                "Mea Culpa",
        +                "Meddon",
        +                "MedievalSharp",
        +                "Medula One",
        +                "Meera Inimai",
        +                "Megrim",
        +                "Meie Script",
        +                "Menbere",
        +                "Meow Script",
        +                "Merienda",
        +                "Merriweather",
        +                "Merriweather Sans",
        +                "Metal",
        +                "Metal Mania",
        +                "Metamorphous",
        +                "Metrophobic",
        +                "Michroma",
        +                "Micro 5",
        +                "Micro 5 Charted",
        +                "Milonga",
        +                "Miltonian",
        +                "Miltonian Tattoo",
        +                "Mina",
        +                "Mingzat",
        +                "Miniver",
        +                "Miranda Sans",
        +                "Miriam Libre",
        +                "Mirza",
        +                "Miss Fajardose",
        +                "Mitr",
        +                "Mochiy Pop One",
        +                "Mochiy Pop P One",
        +                "Modak",
        +                "Modern Antiqua",
        +                "Moderustic",
        +                "Mogra",
        +                "Mohave",
        +                "Moirai One",
        +                "Molengo",
        +                "Molle",
        +                "Momo Signature",
        +                "Momo Trust Display",
        +                "Momo Trust Sans",
        +                "Mona Sans",
        +                "Monda",
        +                "Monofett",
        +                "Monomakh",
        +                "Monomaniac One",
        +                "Monoton",
        +                "Monsieur La Doulaise",
        +                "Montaga",
        +                "Montagu Slab",
        +                "MonteCarlo",
        +                "Montenegrin Gothic One",
        +                "Montez",
        +                "Montserrat",
        +                "Montserrat Alternates",
        +                "Montserrat Underline",
        +                "Moo Lah Lah",
        +                "Mooli",
        +                "Moon Dance",
        +                "Moul",
        +                "Moulpali",
        +                "Mountains of Christmas",
        +                "Mouse Memoirs",
        +                "Mozilla Headline",
        +                "Mozilla Text",
        +                "Mr Bedfort",
        +                "Mr Dafoe",
        +                "Mr De Haviland",
        +                "Mrs Saint Delafield",
        +                "Mrs Sheppards",
        +                "Ms Madi",
        +                "Mukta",
        +                "Mukta Mahee",
        +                "Mukta Malar",
        +                "Mukta Vaani",
        +                "Mulish",
        +                "Murecho",
        +                "MuseoModerno",
        +                "My Soul",
        +                "Mynerve",
        +                "Mystery Quest",
        +                "NTR",
        +                "Nabla",
        +                "Namdhinggo",
        +                "Nanum Brush Script",
        +                "Nanum Gothic",
        +                "Nanum Gothic Coding",
        +                "Nanum Myeongjo",
        +                "Nanum Pen Script",
        +                "Narnoor",
        +                "Nata Sans",
        +                "National Park",
        +                "Neonderthaw",
        +                "Nerko One",
        +                "Neucha",
        +                "Neuton",
        +                "New Amsterdam",
        +                "New Rocker",
        +                "New Tegomin",
        +                "News Cycle",
        +                "Newsreader",
        +                "Niconne",
        +                "Niramit",
        +                "Nixie One",
        +                "Nobile",
        +                "Nokora",
        +                "Norican",
        +                "Nosifer",
        +                "Notable",
        +                "Nothing You Could Do",
        +                "Noticia Text",
        +                "Noto Color Emoji",
        +                "Noto Emoji",
        +                "Noto Kufi Arabic",
        +                "Noto Music",
        +                "Noto Naskh Arabic",
        +                "Noto Nastaliq Urdu",
        +                "Noto Rashi Hebrew",
        +                "Noto Sans",
        +                "Noto Sans Adlam",
        +                "Noto Sans Adlam Unjoined",
        +                "Noto Sans Anatolian Hieroglyphs",
        +                "Noto Sans Arabic",
        +                "Noto Sans Armenian",
        +                "Noto Sans Avestan",
        +                "Noto Sans Balinese",
        +                "Noto Sans Bamum",
        +                "Noto Sans Bassa Vah",
        +                "Noto Sans Batak",
        +                "Noto Sans Bengali",
        +                "Noto Sans Bhaiksuki",
        +                "Noto Sans Brahmi",
        +                "Noto Sans Buginese",
        +                "Noto Sans Buhid",
        +                "Noto Sans Canadian Aboriginal",
        +                "Noto Sans Carian",
        +                "Noto Sans Caucasian Albanian",
        +                "Noto Sans Chakma",
        +                "Noto Sans Cham",
        +                "Noto Sans Cherokee",
        +                "Noto Sans Chorasmian",
        +                "Noto Sans Coptic",
        +                "Noto Sans Cuneiform",
        +                "Noto Sans Cypriot",
        +                "Noto Sans Cypro Minoan",
        +                "Noto Sans Deseret",
        +                "Noto Sans Devanagari",
        +                "Noto Sans Display",
        +                "Noto Sans Duployan",
        +                "Noto Sans Egyptian Hieroglyphs",
        +                "Noto Sans Elbasan",
        +                "Noto Sans Elymaic",
        +                "Noto Sans Ethiopic",
        +                "Noto Sans Georgian",
        +                "Noto Sans Glagolitic",
        +                "Noto Sans Gothic",
        +                "Noto Sans Grantha",
        +                "Noto Sans Gujarati",
        +                "Noto Sans Gunjala Gondi",
        +                "Noto Sans Gurmukhi",
        +                "Noto Sans HK",
        +                "Noto Sans Hanifi Rohingya",
        +                "Noto Sans Hanunoo",
        +                "Noto Sans Hatran",
        +                "Noto Sans Hebrew",
        +                "Noto Sans Imperial Aramaic",
        +                "Noto Sans Indic Siyaq Numbers",
        +                "Noto Sans Inscriptional Pahlavi",
        +                "Noto Sans Inscriptional Parthian",
        +                "Noto Sans JP",
        +                "Noto Sans Javanese",
        +                "Noto Sans KR",
        +                "Noto Sans Kaithi",
        +                "Noto Sans Kannada",
        +                "Noto Sans Kawi",
        +                "Noto Sans Kayah Li",
        +                "Noto Sans Kharoshthi",
        +                "Noto Sans Khmer",
        +                "Noto Sans Khojki",
        +                "Noto Sans Khudawadi",
        +                "Noto Sans Lao",
        +                "Noto Sans Lao Looped",
        +                "Noto Sans Lepcha",
        +                "Noto Sans Limbu",
        +                "Noto Sans Linear A",
        +                "Noto Sans Linear B",
        +                "Noto Sans Lisu",
        +                "Noto Sans Lycian",
        +                "Noto Sans Lydian",
        +                "Noto Sans Mahajani",
        +                "Noto Sans Malayalam",
        +                "Noto Sans Mandaic",
        +                "Noto Sans Manichaean",
        +                "Noto Sans Marchen",
        +                "Noto Sans Masaram Gondi",
        +                "Noto Sans Math",
        +                "Noto Sans Mayan Numerals",
        +                "Noto Sans Medefaidrin",
        +                "Noto Sans Meetei Mayek",
        +                "Noto Sans Mende Kikakui",
        +                "Noto Sans Meroitic",
        +                "Noto Sans Miao",
        +                "Noto Sans Modi",
        +                "Noto Sans Mongolian",
        +                "Noto Sans Mono",
        +                "Noto Sans Mro",
        +                "Noto Sans Multani",
        +                "Noto Sans Myanmar",
        +                "Noto Sans NKo",
        +                "Noto Sans NKo Unjoined",
        +                "Noto Sans Nabataean",
        +                "Noto Sans Nag Mundari",
        +                "Noto Sans Nandinagari",
        +                "Noto Sans New Tai Lue",
        +                "Noto Sans Newa",
        +                "Noto Sans Nushu",
        +                "Noto Sans Ogham",
        +                "Noto Sans Ol Chiki",
        +                "Noto Sans Old Hungarian",
        +                "Noto Sans Old Italic",
        +                "Noto Sans Old North Arabian",
        +                "Noto Sans Old Permic",
        +                "Noto Sans Old Persian",
        +                "Noto Sans Old Sogdian",
        +                "Noto Sans Old South Arabian",
        +                "Noto Sans Old Turkic",
        +                "Noto Sans Oriya",
        +                "Noto Sans Osage",
        +                "Noto Sans Osmanya",
        +                "Noto Sans Pahawh Hmong",
        +                "Noto Sans Palmyrene",
        +                "Noto Sans Pau Cin Hau",
        +                "Noto Sans PhagsPa",
        +                "Noto Sans Phoenician",
        +                "Noto Sans Psalter Pahlavi",
        +                "Noto Sans Rejang",
        +                "Noto Sans Runic",
        +                "Noto Sans SC",
        +                "Noto Sans Samaritan",
        +                "Noto Sans Saurashtra",
        +                "Noto Sans Sharada",
        +                "Noto Sans Shavian",
        +                "Noto Sans Siddham",
        +                "Noto Sans SignWriting",
        +                "Noto Sans Sinhala",
        +                "Noto Sans Sogdian",
        +                "Noto Sans Sora Sompeng",
        +                "Noto Sans Soyombo",
        +                "Noto Sans Sundanese",
        +                "Noto Sans Sunuwar",
        +                "Noto Sans Syloti Nagri",
        +                "Noto Sans Symbols",
        +                "Noto Sans Symbols 2",
        +                "Noto Sans Syriac",
        +                "Noto Sans Syriac Eastern",
        +                "Noto Sans Syriac Western",
        +                "Noto Sans TC",
        +                "Noto Sans Tagalog",
        +                "Noto Sans Tagbanwa",
        +                "Noto Sans Tai Le",
        +                "Noto Sans Tai Tham",
        +                "Noto Sans Tai Viet",
        +                "Noto Sans Takri",
        +                "Noto Sans Tamil",
        +                "Noto Sans Tamil Supplement",
        +                "Noto Sans Tangsa",
        +                "Noto Sans Telugu",
        +                "Noto Sans Thaana",
        +                "Noto Sans Thai",
        +                "Noto Sans Thai Looped",
        +                "Noto Sans Tifinagh",
        +                "Noto Sans Tirhuta",
        +                "Noto Sans Ugaritic",
        +                "Noto Sans Vai",
        +                "Noto Sans Vithkuqi",
        +                "Noto Sans Wancho",
        +                "Noto Sans Warang Citi",
        +                "Noto Sans Yi",
        +                "Noto Sans Zanabazar Square",
        +                "Noto Serif",
        +                "Noto Serif Ahom",
        +                "Noto Serif Armenian",
        +                "Noto Serif Balinese",
        +                "Noto Serif Bengali",
        +                "Noto Serif Devanagari",
        +                "Noto Serif Display",
        +                "Noto Serif Dives Akuru",
        +                "Noto Serif Dogra",
        +                "Noto Serif Ethiopic",
        +                "Noto Serif Georgian",
        +                "Noto Serif Grantha",
        +                "Noto Serif Gujarati",
        +                "Noto Serif Gurmukhi",
        +                "Noto Serif HK",
        +                "Noto Serif Hebrew",
        +                "Noto Serif Hentaigana",
        +                "Noto Serif JP",
        +                "Noto Serif KR",
        +                "Noto Serif Kannada",
        +                "Noto Serif Khitan Small Script",
        +                "Noto Serif Khmer",
        +                "Noto Serif Khojki",
        +                "Noto Serif Lao",
        +                "Noto Serif Makasar",
        +                "Noto Serif Malayalam",
        +                "Noto Serif Myanmar",
        +                "Noto Serif NP Hmong",
        +                "Noto Serif Old Uyghur",
        +                "Noto Serif Oriya",
        +                "Noto Serif Ottoman Siyaq",
        +                "Noto Serif SC",
        +                "Noto Serif Sinhala",
        +                "Noto Serif TC",
        +                "Noto Serif Tamil",
        +                "Noto Serif Tangut",
        +                "Noto Serif Telugu",
        +                "Noto Serif Thai",
        +                "Noto Serif Tibetan",
        +                "Noto Serif Todhri",
        +                "Noto Serif Toto",
        +                "Noto Serif Vithkuqi",
        +                "Noto Serif Yezidi",
        +                "Noto Traditional Nushu",
        +                "Noto Znamenny Musical Notation",
        +                "Nova Cut",
        +                "Nova Flat",
        +                "Nova Mono",
        +                "Nova Oval",
        +                "Nova Round",
        +                "Nova Script",
        +                "Nova Slim",
        +                "Nova Square",
        +                "Numans",
        +                "Nunito",
        +                "Nunito Sans",
        +                "Nuosu SIL",
        +                "Odibee Sans",
        +                "Odor Mean Chey",
        +                "Offside",
        +                "Oi",
        +                "Ojuju",
        +                "Old Standard TT",
        +                "Oldenburg",
        +                "Ole",
        +                "Oleo Script",
        +                "Oleo Script Swash Caps",
        +                "Onest",
        +                "Oooh Baby",
        +                "Open Sans",
        +                "Oranienbaum",
        +                "Orbit",
        +                "Orbitron",
        +                "Oregano",
        +                "Orelega One",
        +                "Orienta",
        +                "Original Surfer",
        +                "Oswald",
        +                "Outfit",
        +                "Over the Rainbow",
        +                "Overlock",
        +                "Overlock SC",
        +                "Overpass",
        +                "Overpass Mono",
        +                "Ovo",
        +                "Oxanium",
        +                "Oxygen",
        +                "Oxygen Mono",
        +                "PT Mono",
        +                "PT Sans",
        +                "PT Sans Caption",
        +                "PT Sans Narrow",
        +                "PT Serif",
        +                "PT Serif Caption",
        +                "Pacifico",
        +                "Padauk",
        +                "Padyakke Expanded One",
        +                "Palanquin",
        +                "Palanquin Dark",
        +                "Palette Mosaic",
        +                "Pangolin",
        +                "Paprika",
        +                "Parastoo",
        +                "Parisienne",
        +                "Parkinsans",
        +                "Passero One",
        +                "Passion One",
        +                "Passions Conflict",
        +                "Pathway Extreme",
        +                "Pathway Gothic One",
        +                "Patrick Hand",
        +                "Patrick Hand SC",
        +                "Pattaya",
        +                "Patua One",
        +                "Pavanam",
        +                "Paytone One",
        +                "Peddana",
        +                "Peralta",
        +                "Permanent Marker",
        +                "Petemoss",
        +                "Petit Formal Script",
        +                "Petrona",
        +                "Phetsarath",
        +                "Philosopher",
        +                "Phudu",
        +                "Piazzolla",
        +                "Piedra",
        +                "Pinyon Script",
        +                "Pirata One",
        +                "Pixelify Sans",
        +                "Plaster",
        +                "Platypi",
        +                "Play",
        +                "Playball",
        +                "Playfair",
        +                "Playfair Display",
        +                "Playfair Display SC",
        +                "Playpen Sans",
        +                "Playpen Sans Arabic",
        +                "Playpen Sans Deva",
        +                "Playpen Sans Hebrew",
        +                "Playpen Sans Thai",
        +                "Playwrite AR",
        +                "Playwrite AR Guides",
        +                "Playwrite AT",
        +                "Playwrite AT Guides",
        +                "Playwrite AU NSW",
        +                "Playwrite AU NSW Guides",
        +                "Playwrite AU QLD",
        +                "Playwrite AU QLD Guides",
        +                "Playwrite AU SA",
        +                "Playwrite AU SA Guides",
        +                "Playwrite AU TAS",
        +                "Playwrite AU TAS Guides",
        +                "Playwrite AU VIC",
        +                "Playwrite AU VIC Guides",
        +                "Playwrite BE VLG",
        +                "Playwrite BE VLG Guides",
        +                "Playwrite BE WAL",
        +                "Playwrite BE WAL Guides",
        +                "Playwrite BR",
        +                "Playwrite BR Guides",
        +                "Playwrite CA",
        +                "Playwrite CA Guides",
        +                "Playwrite CL",
        +                "Playwrite CL Guides",
        +                "Playwrite CO",
        +                "Playwrite CO Guides",
        +                "Playwrite CU",
        +                "Playwrite CU Guides",
        +                "Playwrite CZ",
        +                "Playwrite CZ Guides",
        +                "Playwrite DE Grund",
        +                "Playwrite DE Grund Guides",
        +                "Playwrite DE LA",
        +                "Playwrite DE LA Guides",
        +                "Playwrite DE SAS",
        +                "Playwrite DE SAS Guides",
        +                "Playwrite DE VA",
        +                "Playwrite DE VA Guides",
        +                "Playwrite DK Loopet",
        +                "Playwrite DK Loopet Guides",
        +                "Playwrite DK Uloopet",
        +                "Playwrite DK Uloopet Guides",
        +                "Playwrite ES",
        +                "Playwrite ES Deco",
        +                "Playwrite ES Deco Guides",
        +                "Playwrite ES Guides",
        +                "Playwrite FR Moderne",
        +                "Playwrite FR Moderne Guides",
        +                "Playwrite FR Trad",
        +                "Playwrite FR Trad Guides",
        +                "Playwrite GB J",
        +                "Playwrite GB J Guides",
        +                "Playwrite GB S",
        +                "Playwrite GB S Guides",
        +                "Playwrite HR",
        +                "Playwrite HR Guides",
        +                "Playwrite HR Lijeva",
        +                "Playwrite HR Lijeva Guides",
        +                "Playwrite HU",
        +                "Playwrite HU Guides",
        +                "Playwrite ID",
        +                "Playwrite ID Guides",
        +                "Playwrite IE",
        +                "Playwrite IE Guides",
        +                "Playwrite IN",
        +                "Playwrite IN Guides",
        +                "Playwrite IS",
        +                "Playwrite IS Guides",
        +                "Playwrite IT Moderna",
        +                "Playwrite IT Moderna Guides",
        +                "Playwrite IT Trad",
        +                "Playwrite IT Trad Guides",
        +                "Playwrite MX",
        +                "Playwrite MX Guides",
        +                "Playwrite NG Modern",
        +                "Playwrite NG Modern Guides",
        +                "Playwrite NL",
        +                "Playwrite NL Guides",
        +                "Playwrite NO",
        +                "Playwrite NO Guides",
        +                "Playwrite NZ",
        +                "Playwrite NZ Basic",
        +                "Playwrite NZ Basic Guides",
        +                "Playwrite NZ Guides",
        +                "Playwrite PE",
        +                "Playwrite PE Guides",
        +                "Playwrite PL",
        +                "Playwrite PL Guides",
        +                "Playwrite PT",
        +                "Playwrite PT Guides",
        +                "Playwrite RO",
        +                "Playwrite RO Guides",
        +                "Playwrite SK",
        +                "Playwrite SK Guides",
        +                "Playwrite TZ",
        +                "Playwrite TZ Guides",
        +                "Playwrite US Modern",
        +                "Playwrite US Modern Guides",
        +                "Playwrite US Trad",
        +                "Playwrite US Trad Guides",
        +                "Playwrite VN",
        +                "Playwrite VN Guides",
        +                "Playwrite ZA",
        +                "Playwrite ZA Guides",
        +                "Pliant",
        +                "Plus Jakarta Sans",
        +                "Pochaevsk",
        +                "Podkova",
        +                "Poetsen One",
        +                "Poiret One",
        +                "Poller One",
        +                "Poltawski Nowy",
        +                "Poly",
        +                "Pompiere",
        +                "Ponnala",
        +                "Ponomar",
        +                "Pontano Sans",
        +                "Poor Story",
        +                "Poppins",
        +                "Port Lligat Sans",
        +                "Port Lligat Slab",
        +                "Potta One",
        +                "Pragati Narrow",
        +                "Praise",
        +                "Prata",
        +                "Preahvihear",
        +                "Press Start 2P",
        +                "Pridi",
        +                "Princess Sofia",
        +                "Prociono",
        +                "Prompt",
        +                "Prosto One",
        +                "Protest Guerrilla",
        +                "Protest Revolution",
        +                "Protest Riot",
        +                "Protest Strike",
        +                "Proza Libre",
        +                "Public Sans",
        +                "Puppies Play",
        +                "Puritan",
        +                "Purple Purse",
        +                "Qahiri",
        +                "Quando",
        +                "Quantico",
        +                "Quattrocento",
        +                "Quattrocento Sans",
        +                "Questrial",
        +                "Quicksand",
        +                "Quintessential",
        +                "Qwigley",
        +                "Qwitcher Grypen",
        +                "REM",
        +                "Racing Sans One",
        +                "Radio Canada",
        +                "Radio Canada Big",
        +                "Radley",
        +                "Rajdhani",
        +                "Rakkas",
        +                "Raleway",
        +                "Raleway Dots",
        +                "Ramabhadra",
        +                "Ramaraja",
        +                "Rambla",
        +                "Rammetto One",
        +                "Rampart One",
        +                "Ramsina",
        +                "Ranchers",
        +                "Rancho",
        +                "Ranga",
        +                "Rasa",
        +                "Rationale",
        +                "Ravi Prakash",
        +                "Readex Pro",
        +                "Recursive",
        +                "Red Hat Display",
        +                "Red Hat Mono",
        +                "Red Hat Text",
        +                "Red Rose",
        +                "Redacted",
        +                "Redacted Script",
        +                "Reddit Mono",
        +                "Reddit Sans",
        +                "Reddit Sans Condensed",
        +                "Redressed",
        +                "Reem Kufi",
        +                "Reem Kufi Fun",
        +                "Reem Kufi Ink",
        +                "Reenie Beanie",
        +                "Reggae One",
        +                "Rethink Sans",
        +                "Revalia",
        +                "Rhodium Libre",
        +                "Ribeye",
        +                "Ribeye Marrow",
        +                "Righteous",
        +                "Risque",
        +                "Road Rage",
        +                "Roboto",
        +                "Roboto Condensed",
        +                "Roboto Flex",
        +                "Roboto Mono",
        +                "Roboto Serif",
        +                "Roboto Slab",
        +                "Rochester",
        +                "Rock 3D",
        +                "Rock Salt",
        +                "RocknRoll One",
        +                "Rokkitt",
        +                "Romanesco",
        +                "Ropa Sans",
        +                "Rosario",
        +                "Rosarivo",
        +                "Rouge Script",
        +                "Rowdies",
        +                "Rozha One",
        +                "Rubik",
        +                "Rubik 80s Fade",
        +                "Rubik Beastly",
        +                "Rubik Broken Fax",
        +                "Rubik Bubbles",
        +                "Rubik Burned",
        +                "Rubik Dirt",
        +                "Rubik Distressed",
        +                "Rubik Doodle Shadow",
        +                "Rubik Doodle Triangles",
        +                "Rubik Gemstones",
        +                "Rubik Glitch",
        +                "Rubik Glitch Pop",
        +                "Rubik Iso",
        +                "Rubik Lines",
        +                "Rubik Maps",
        +                "Rubik Marker Hatch",
        +                "Rubik Maze",
        +                "Rubik Microbe",
        +                "Rubik Mono One",
        +                "Rubik Moonrocks",
        +                "Rubik Pixels",
        +                "Rubik Puddles",
        +                "Rubik Scribble",
        +                "Rubik Spray Paint",
        +                "Rubik Storm",
        +                "Rubik Vinyl",
        +                "Rubik Wet Paint",
        +                "Ruda",
        +                "Rufina",
        +                "Ruge Boogie",
        +                "Ruluko",
        +                "Rum Raisin",
        +                "Ruslan Display",
        +                "Russo One",
        +                "Ruthie",
        +                "Ruwudu",
        +                "Rye",
        +                "SN Pro",
        +                "STIX Two Math",
        +                "STIX Two Text",
        +                "SUSE",
        +                "SUSE Mono",
        +                "Sacramento",
        +                "Sahitya",
        +                "Sail",
        +                "Saira",
        +                "Saira Condensed",
        +                "Saira Extra Condensed",
        +                "Saira Semi Condensed",
        +                "Saira Stencil",
        +                "Salsa",
        +                "Sanchez",
        +                "Sancreek",
        +                "Sankofa Display",
        +                "Sansation",
        +                "Sansita",
        +                "Sansita Swashed",
        +                "Sarabun",
        +                "Sarala",
        +                "Sarina",
        +                "Sarpanch",
        +                "Sassy Frass",
        +                "Satisfy",
        +                "Savate",
        +                "Sawarabi Gothic",
        +                "Sawarabi Mincho",
        +                "Scada",
        +                "Scheherazade New",
        +                "Schibsted Grotesk",
        +                "Schoolbell",
        +                "Science Gothic",
        +                "Scope One",
        +                "Seaweed Script",
        +                "Secular One",
        +                "Sedan",
        +                "Sedan SC",
        +                "Sedgwick Ave",
        +                "Sedgwick Ave Display",
        +                "Sekuya",
        +                "Sen",
        +                "Send Flowers",
        +                "Sevillana",
        +                "Seymour One",
        +                "Shadows Into Light",
        +                "Shadows Into Light Two",
        +                "Shafarik",
        +                "Shalimar",
        +                "Shantell Sans",
        +                "Shanti",
        +                "Share",
        +                "Share Tech",
        +                "Share Tech Mono",
        +                "Shippori Antique",
        +                "Shippori Antique B1",
        +                "Shippori Mincho",
        +                "Shippori Mincho B1",
        +                "Shizuru",
        +                "Shojumaru",
        +                "Short Stack",
        +                "Shrikhand",
        +                "Siemreap",
        +                "Sigmar",
        +                "Sigmar One",
        +                "Signika",
        +                "Signika Negative",
        +                "Silkscreen",
        +                "Simonetta",
        +                "Single Day",
        +                "Sintony",
        +                "Sirin Stencil",
        +                "Sirivennela",
        +                "Six Caps",
        +                "Sixtyfour",
        +                "Sixtyfour Convergence",
        +                "Skranji",
        +                "Slabo 13px",
        +                "Slabo 27px",
        +                "Slackey",
        +                "Slackside One",
        +                "Smokum",
        +                "Smooch",
        +                "Smooch Sans",
        +                "Smythe",
        +                "Sniglet",
        +                "Snippet",
        +                "Snowburst One",
        +                "Sofadi One",
        +                "Sofia",
        +                "Sofia Sans",
        +                "Sofia Sans Condensed",
        +                "Sofia Sans Extra Condensed",
        +                "Sofia Sans Semi Condensed",
        +                "Solitreo",
        +                "Solway",
        +                "Sometype Mono",
        +                "Song Myung",
        +                "Sono",
        +                "Sonsie One",
        +                "Sora",
        +                "Sorts Mill Goudy",
        +                "Sour Gummy",
        +                "Source Code Pro",
        +                "Source Sans 3",
        +                "Source Serif 4",
        +                "Space Grotesk",
        +                "Space Mono",
        +                "Special Elite",
        +                "Special Gothic",
        +                "Special Gothic Condensed One",
        +                "Special Gothic Expanded One",
        +                "Spectral",
        +                "Spectral SC",
        +                "Spicy Rice",
        +                "Spinnaker",
        +                "Spirax",
        +                "Splash",
        +                "Spline Sans",
        +                "Spline Sans Mono",
        +                "Squada One",
        +                "Square Peg",
        +                "Sree Krushnadevaraya",
        +                "Sriracha",
        +                "Srisakdi",
        +                "Staatliches",
        +                "Stack Sans Headline",
        +                "Stack Sans Notch",
        +                "Stack Sans Text",
        +                "Stalemate",
        +                "Stalinist One",
        +                "Stardos Stencil",
        +                "Stick",
        +                "Stick No Bills",
        +                "Stint Ultra Condensed",
        +                "Stint Ultra Expanded",
        +                "Stoke",
        +                "Story Script",
        +                "Strait",
        +                "Strichpunkt Sans",
        +                "Style Script",
        +                "Stylish",
        +                "Sue Ellen Francisco",
        +                "Suez One",
        +                "Sulphur Point",
        +                "Sumana",
        +                "Sunflower",
        +                "Sunshiney",
        +                "Supermercado One",
        +                "Sura",
        +                "Suranna",
        +                "Suravaram",
        +                "Suwannaphum",
        +                "Swanky and Moo Moo",
        +                "Syncopate",
        +                "Syne",
        +                "Syne Mono",
        +                "Syne Tactile",
        +                "TASA Explorer",
        +                "TASA Orbiter",
        +                "Tac One",
        +                "Tagesschrift",
        +                "Tai Heritage Pro",
        +                "Tajawal",
        +                "Tangerine",
        +                "Tapestry",
        +                "Taprom",
        +                "Tauri",
        +                "Taviraj",
        +                "Teachers",
        +                "Teko",
        +                "Tektur",
        +                "Telex",
        +                "Tenali Ramakrishna",
        +                "Tenor Sans",
        +                "Text Me One",
        +                "Texturina",
        +                "Thasadith",
        +                "The Girl Next Door",
        +                "The Nautigal",
        +                "Tienne",
        +                "TikTok Sans",
        +                "Tillana",
        +                "Tilt Neon",
        +                "Tilt Prism",
        +                "Tilt Warp",
        +                "Timmana",
        +                "Tinos",
        +                "Tiny5",
        +                "Tiro Bangla",
        +                "Tiro Devanagari Hindi",
        +                "Tiro Devanagari Marathi",
        +                "Tiro Devanagari Sanskrit",
        +                "Tiro Gurmukhi",
        +                "Tiro Kannada",
        +                "Tiro Tamil",
        +                "Tiro Telugu",
        +                "Tirra",
        +                "Titan One",
        +                "Titillium Web",
        +                "Tomorrow",
        +                "Tourney",
        +                "Trade Winds",
        +                "Train One",
        +                "Triodion",
        +                "Trirong",
        +                "Trispace",
        +                "Trocchi",
        +                "Trochut",
        +                "Truculenta",
        +                "Trykker",
        +                "Tsukimi Rounded",
        +                "Tuffy",
        +                "Tulpen One",
        +                "Turret Road",
        +                "Twinkle Star",
        +                "Ubuntu",
        +                "Ubuntu Condensed",
        +                "Ubuntu Mono",
        +                "Ubuntu Sans",
        +                "Ubuntu Sans Mono",
        +                "Uchen",
        +                "Ultra",
        +                "Unbounded",
        +                "Uncial Antiqua",
        +                "Underdog",
        +                "Unica One",
        +                "UnifrakturCook",
        +                "UnifrakturMaguntia",
        +                "Unkempt",
        +                "Unlock",
        +                "Unna",
        +                "UoqMunThenKhung",
        +                "Updock",
        +                "Urbanist",
        +                "VT323",
        +                "Vampiro One",
        +                "Varela",
        +                "Varela Round",
        +                "Varta",
        +                "Vast Shadow",
        +                "Vazirmatn",
        +                "Vend Sans",
        +                "Vesper Libre",
        +                "Viaoda Libre",
        +                "Vibes",
        +                "Vibur",
        +                "Victor Mono",
        +                "Vidaloka",
        +                "Viga",
        +                "Vina Sans",
        +                "Voces",
        +                "Volkhov",
        +                "Vollkorn",
        +                "Vollkorn SC",
        +                "Voltaire",
        +                "Vujahday Script",
        +                "WDXL Lubrifont JP N",
        +                "WDXL Lubrifont SC",
        +                "WDXL Lubrifont TC",
        +                "Waiting for the Sunrise",
        +                "Wallpoet",
        +                "Walter Turncoat",
        +                "Warnes",
        +                "Water Brush",
        +                "Waterfall",
        +                "Wavefont",
        +                "Wellfleet",
        +                "Wendy One",
        +                "Whisper",
        +                "WindSong",
        +                "Winky Rough",
        +                "Winky Sans",
        +                "Wire One",
        +                "Wittgenstein",
        +                "Wix Madefor Display",
        +                "Wix Madefor Text",
        +                "Work Sans",
        +                "Workbench",
        +                "Xanh Mono",
        +                "Yaldevi",
        +                "Yanone Kaffeesatz",
        +                "Yantramanav",
        +                "Yarndings 12",
        +                "Yarndings 12 Charted",
        +                "Yarndings 20",
        +                "Yarndings 20 Charted",
        +                "Yatra One",
        +                "Yellowtail",
        +                "Yeon Sung",
        +                "Yeseva One",
        +                "Yesteryear",
        +                "Yomogi",
        +                "Young Serif",
        +                "Yrsa",
        +                "Ysabeau",
        +                "Ysabeau Infant",
        +                "Ysabeau Office",
        +                "Ysabeau SC",
        +                "Yuji Boku",
        +                "Yuji Hentaigana Akari",
        +                "Yuji Hentaigana Akebono",
        +                "Yuji Mai",
        +                "Yuji Syuku",
        +                "Yusei Magic",
        +                "Yuyu",
        +                "Yuyu Short",
        +                "ZCOOL KuaiLe",
        +                "ZCOOL QingKe HuangYou",
        +                "ZCOOL XiaoWei",
        +                "Zain",
        +                "Zalando Sans",
        +                "Zalando Sans Expanded",
        +                "Zalando Sans SemiExpanded",
        +                "Zen Antique",
        +                "Zen Antique Soft",
        +                "Zen Dots",
        +                "Zen Kaku Gothic Antique",
        +                "Zen Kaku Gothic New",
        +                "Zen Kurenaido",
        +                "Zen Loop",
        +                "Zen Maru Gothic",
        +                "Zen Old Mincho",
        +                "Zen Tokyo Zoo",
        +                "Zeyada",
        +                "Zhi Mang Xing",
        +                "Zilla Slab",
        +                "Zilla Slab Highlight"
        +              ],
        +              "type": "string"
        +            },
        +            "fontSize": {
        +              "type": "number"
        +            },
        +            "footerColor": {
        +              "type": "string"
        +            },
        +            "footerFontSize": {
        +              "type": "number"
        +            },
        +            "footerGap": {
        +              "type": "number"
        +            },
        +            "footerLinkColor": {
        +              "type": "string"
        +            },
        +            "gridColor": {
        +              "type": "string"
        +            },
        +            "gridLineWidth": {
        +              "type": "number"
        +            },
        +            "gridLines": {
        +              "enum": [
        +                "none",
        +                "value",
        +                "both"
        +              ],
        +              "type": "string"
        +            },
        +            "headerGap": {
        +              "type": "number"
        +            },
        +            "labelColor": {
        +              "type": "string"
        +            },
        +            "labelFontSize": {
        +              "type": "number"
        +            },
        +            "labelFontWeight": {
        +              "type": "string"
        +            },
        +            "labelHaloWidth": {
        +              "type": "number"
        +            },
        +            "labelMutedFontWeight": {
        +              "type": "string"
        +            },
        +            "labelMutedOpacity": {
        +              "type": "number"
        +            },
        +            "lineStrokeWidth": {
        +              "type": "number"
        +            },
        +            "numericFontFamily": {
        +              "type": "string"
        +            },
        +            "pieCornerRadius": {
        +              "type": "number"
        +            },
        +            "sequentialRange": {
        +              "items": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "string"
        +                }
        +              ],
        +              "maxItems": 2,
        +              "minItems": 2,
        +              "type": "array"
        +            },
        +            "subtitleColor": {
        +              "type": "string"
        +            },
        +            "subtitleFontSize": {
        +              "type": "number"
        +            },
        +            "tickDensity": {
        +              "type": "number"
        +            },
        +            "tickLabelColor": {
        +              "type": "string"
        +            },
        +            "tickLabelFontWeight": {
        +              "type": "string"
        +            },
        +            "tickPadding": {
        +              "type": "number"
        +            },
        +            "tickSize": {
        +              "type": "number"
        +            },
        +            "titleColor": {
        +              "type": "string"
        +            },
        +            "titleFontFamily": {
        +              "type": "string"
        +            },
        +            "titleFontSize": {
        +              "type": "number"
        +            },
        +            "titleFontWeight": {
        +              "type": "string"
        +            },
        +            "titleSubtitleGap": {
        +              "type": "number"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "title": {
        +          "type": "string"
        +        },
        +        "version": {
        +          "const": "2026-03-20",
        +          "type": "string"
        +        },
        +        "width": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "x": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "display": {
        +              "default": true,
        +              "type": "boolean"
        +            },
        +            "domain": {
        +              "anyOf": [
        +                {
        +                  "items": [
        +                    {
        +                      "type": "number"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                }
        +              ]
        +            },
        +            "label": {
        +              "type": "string"
        +            },
        +            "nice": {
        +              "type": "boolean"
        +            },
        +            "tickFormat": {
        +              "type": "string"
        +            },
        +            "type": {
        +              "enum": [
        +                "linear",
        +                "utc",
        +                "band"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "y": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "display": {
        +              "default": true,
        +              "type": "boolean"
        +            },
        +            "domain": {
        +              "anyOf": [
        +                {
        +                  "items": [
        +                    {
        +                      "type": "number"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                }
        +              ]
        +            },
        +            "label": {
        +              "type": "string"
        +            },
        +            "nice": {
        +              "type": "boolean"
        +            },
        +            "tickFormat": {
        +              "type": "string"
        +            },
        +            "type": {
        +              "enum": [
        +                "linear",
        +                "utc",
        +                "band"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "type": "object"
        +        }
        +      },
        +      "required": [
        +        "version",
        +        "format",
        +        "marks"
        +      ],
        +      "title": "Szum Chart Configuration",
        +      "type": "object"
        +    },
        +    "valid": {
        +      "type": "boolean"
        +    }
        +  },
        +  "required": [
        +    "valid",
        +    "message",
        +    "errors",
        +    "diagnostics"
        +  ],
        +  "type": "object"
        +}
      • changedOutput schema / required
        Previous value: -[
        -  "view",
        -  "id",
        -  "source",
        -  "title",
        -  "createdAt",
        -  "updatedAt",
        -  "sizeBytes",
        -  "publishedAt",
        -  "imageUrl",
        -  "embedUrl",
        -  "configUrl",
        -  "editUrl",
        -  "manageUrl"
        -]New value: +[
        +  "view",
        +  "id",
        +  "source",
        +  "title",
        +  "createdAt",
        +  "updatedAt",
        +  "sizeBytes",
        +  "publishedAt",
        +  "imageUrl",
        +  "embedUrl",
        +  "configUrl",
        +  "editUrl",
        +  "manageUrl",
        +  "validation"
        +]
    • Changedvalidate_chart8 fields changed
      • addedOutput schema / properties / diagnostics
        Added value: +{
        +  "items": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": {},
        +        "propertyNames": {
        +          "type": "string"
        +        },
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "items": {
        +          "anyOf": [
        +            {
        +              "type": "string"
        +            },
        +            {
        +              "type": "number"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "items": {
        +            "anyOf": [
        +              {
        +                "type": "string"
        +              },
        +              {
        +                "type": "number"
        +              }
        +            ]
        +          },
        +          "type": "array"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "code",
        +      "severity",
        +      "path",
        +      "message",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  "type": "array"
        +}
      • addedOutput schema / properties / errors / items / properties / code
        Added value: +{
        +  "type": "string"
        +}
      • addedOutput schema / properties / errors / items / properties / details
        Added value: +{
        +  "additionalProperties": {},
        +  "propertyNames": {
        +    "type": "string"
        +  },
        +  "type": "object"
        +}
      • addedOutput schema / properties / errors / items / properties / relatedPaths
        Added value: +{
        +  "items": {
        +    "items": {
        +      "anyOf": [
        +        {
        +          "type": "string"
        +        },
        +        {
        +          "type": "number"
        +        }
        +      ]
        +    },
        +    "type": "array"
        +  },
        +  "type": "array"
        +}
      • addedOutput schema / properties / errors / items / properties / severity
        Added value: +{
        +  "enum": [
        +    "error",
        +    "warning",
        +    "suggestion"
        +  ],
        +  "type": "string"
        +}
      • changedOutput schema / properties / errors / items / required
        Previous value: -[
        -  "path",
        -  "message"
        -]New value: +[
        +  "code",
        +  "severity",
        +  "path",
        +  "message",
        +  "details"
        +]
      • addedOutput schema / properties / suggestedConfig
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "Schema version 2026-03-20. Send this JSON to POST https://szum.io/validate to validate it or POST https://szum.io/chart to render a chart image.",
        +  "properties": {
        +    "attribution": {
        +      "description": "Show a small \"Made with Szum\" credit in the bottom-right. Always on for free and keyless renders; Creator and Pro omit it by default and set true to opt in.",
        +      "type": "boolean"
        +    },
        +    "color": {
        +      "anyOf": [
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "domain": {
        +              "items": {
        +                "type": "string"
        +              },
        +              "type": "array"
        +            },
        +            "label": {
        +              "type": "string"
        +            },
        +            "range": {
        +              "items": {
        +                "type": "string"
        +              },
        +              "type": "array"
        +            },
        +            "type": {
        +              "const": "categorical",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "domain": {
        +              "items": [
        +                {
        +                  "type": "number"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ],
        +              "maxItems": 2,
        +              "minItems": 2,
        +              "type": "array"
        +            },
        +            "label": {
        +              "type": "string"
        +            },
        +            "range": {
        +              "items": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "string"
        +                }
        +              ],
        +              "maxItems": 2,
        +              "minItems": 2,
        +              "type": "array"
        +            },
        +            "type": {
        +              "const": "sequential",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "label": {
        +              "type": "string"
        +            }
        +          },
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "data": {
        +      "items": {
        +        "additionalProperties": {
        +          "anyOf": [
        +            {
        +              "type": "string"
        +            },
        +            {
        +              "type": "number"
        +            }
        +          ]
        +        },
        +        "propertyNames": {
        +          "type": "string"
        +        },
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "footer": {
        +      "description": "Caption below the chart (a source line, methodology note, date). URLs, bare domains, and [label](url) links in it are auto-detected and rendered as inline links on every surface.",
        +      "type": "string"
        +    },
        +    "format": {
        +      "enum": [
        +        "svg",
        +        "png"
        +      ],
        +      "type": "string"
        +    },
        +    "headerAlign": {
        +      "enum": [
        +        "left",
        +        "center",
        +        "right"
        +      ],
        +      "type": "string"
        +    },
        +    "height": {
        +      "maximum": 4096,
        +      "minimum": 1,
        +      "type": "integer"
        +    },
        +    "locale": {
        +      "description": "Locale identifier accepted by JavaScript Intl and associated with the chart content, such as en, pl, or zh-Hant.",
        +      "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +      "type": "string"
        +    },
        +    "margin": {
        +      "additionalProperties": {},
        +      "properties": {
        +        "bottom": {
        +          "type": "number"
        +        },
        +        "left": {
        +          "type": "number"
        +        },
        +        "right": {
        +          "type": "number"
        +        },
        +        "top": {
        +          "type": "number"
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "marks": {
        +      "items": {
        +        "oneOf": [
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "label": {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "field": {
        +                    "type": "string"
        +                  },
        +                  "format": {
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "field"
        +                ],
        +                "type": "object"
        +              },
        +              "r": {
        +                "type": "number"
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "default": 1,
        +                "type": "number"
        +              },
        +              "type": {
        +                "const": "dot",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "curve": {
        +                "enum": [
        +                  "linear",
        +                  "monotone",
        +                  "step"
        +                ],
        +                "type": "string"
        +              },
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "label": {
        +                "anyOf": [
        +                  {
        +                    "type": "boolean"
        +                  },
        +                  {
        +                    "additionalProperties": {},
        +                    "properties": {
        +                      "end": {
        +                        "anyOf": [
        +                          {
        +                            "type": "boolean"
        +                          },
        +                          {
        +                            "items": {
        +                              "enum": [
        +                                "category",
        +                                "value"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        ],
        +                        "default": [
        +                          "category"
        +                        ]
        +                      },
        +                      "format": {
        +                        "type": "string"
        +                      },
        +                      "points": {
        +                        "anyOf": [
        +                          {
        +                            "enum": [
        +                              "extrema",
        +                              "all",
        +                              "ends"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          {
        +                            "const": false,
        +                            "type": "boolean"
        +                          },
        +                          {
        +                            "additionalProperties": {},
        +                            "properties": {
        +                              "at": {
        +                                "enum": [
        +                                  "extrema",
        +                                  "all",
        +                                  "ends"
        +                                ],
        +                                "type": "string"
        +                              },
        +                              "show": {
        +                                "default": [
        +                                  "value"
        +                                ],
        +                                "items": {
        +                                  "enum": [
        +                                    "value",
        +                                    "category"
        +                                  ],
        +                                  "type": "string"
        +                                },
        +                                "type": "array"
        +                              }
        +                            },
        +                            "required": [
        +                              "at"
        +                            ],
        +                            "type": "object"
        +                          }
        +                        ],
        +                        "default": false
        +                      }
        +                    },
        +                    "type": "object"
        +                  }
        +                ]
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "type": "number"
        +              },
        +              "type": {
        +                "const": "line",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "cornerRadius": {
        +                "type": "number"
        +              },
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "group": {
        +                "default": "stack",
        +                "enum": [
        +                  "stack",
        +                  "dodge"
        +                ],
        +                "type": "string"
        +              },
        +              "label": {
        +                "anyOf": [
        +                  {
        +                    "type": "boolean"
        +                  },
        +                  {
        +                    "additionalProperties": {},
        +                    "properties": {
        +                      "format": {
        +                        "type": "string"
        +                      },
        +                      "position": {
        +                        "default": "outside",
        +                        "enum": [
        +                          "auto",
        +                          "outside",
        +                          "inside"
        +                        ],
        +                        "type": "string"
        +                      },
        +                      "show": {
        +                        "default": [
        +                          "value"
        +                        ],
        +                        "items": {
        +                          "enum": [
        +                            "value",
        +                            "percent",
        +                            "category",
        +                            "total"
        +                          ],
        +                          "type": "string"
        +                        },
        +                        "type": "array"
        +                      }
        +                    },
        +                    "type": "object"
        +                  }
        +                ]
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "default": 1,
        +                "type": "number"
        +              },
        +              "type": {
        +                "const": "barY",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "cornerRadius": {
        +                "type": "number"
        +              },
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "group": {
        +                "default": "stack",
        +                "enum": [
        +                  "stack",
        +                  "dodge"
        +                ],
        +                "type": "string"
        +              },
        +              "label": {
        +                "anyOf": [
        +                  {
        +                    "type": "boolean"
        +                  },
        +                  {
        +                    "additionalProperties": {},
        +                    "properties": {
        +                      "format": {
        +                        "type": "string"
        +                      },
        +                      "position": {
        +                        "default": "outside",
        +                        "enum": [
        +                          "auto",
        +                          "outside",
        +                          "inside"
        +                        ],
        +                        "type": "string"
        +                      },
        +                      "show": {
        +                        "default": [
        +                          "value"
        +                        ],
        +                        "items": {
        +                          "enum": [
        +                            "value",
        +                            "percent",
        +                            "category",
        +                            "total"
        +                          ],
        +                          "type": "string"
        +                        },
        +                        "type": "array"
        +                      }
        +                    },
        +                    "type": "object"
        +                  }
        +                ]
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "default": 1,
        +                "type": "number"
        +              },
        +              "type": {
        +                "const": "barX",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "curve": {
        +                "enum": [
        +                  "linear",
        +                  "monotone",
        +                  "step"
        +                ],
        +                "type": "string"
        +              },
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "label": {
        +                "anyOf": [
        +                  {
        +                    "type": "boolean"
        +                  },
        +                  {
        +                    "additionalProperties": {},
        +                    "properties": {
        +                      "end": {
        +                        "anyOf": [
        +                          {
        +                            "type": "boolean"
        +                          },
        +                          {
        +                            "items": {
        +                              "enum": [
        +                                "category",
        +                                "value",
        +                                "percent"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        ],
        +                        "default": [
        +                          "category"
        +                        ]
        +                      },
        +                      "format": {
        +                        "type": "string"
        +                      }
        +                    },
        +                    "type": "object"
        +                  }
        +                ]
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "default": 0,
        +                "type": "number"
        +              },
        +              "type": {
        +                "const": "areaY",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "curve": {
        +                "enum": [
        +                  "linear",
        +                  "monotone",
        +                  "step"
        +                ],
        +                "type": "string"
        +              },
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "default": 0,
        +                "type": "number"
        +              },
        +              "type": {
        +                "const": "areaX",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "cornerRadius": {
        +                "type": "number"
        +              },
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "innerRadius": {
        +                "default": 0,
        +                "maximum": 1,
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "label": {
        +                "anyOf": [
        +                  {
        +                    "type": "boolean"
        +                  },
        +                  {
        +                    "additionalProperties": {},
        +                    "properties": {
        +                      "format": {
        +                        "type": "string"
        +                      },
        +                      "position": {
        +                        "default": "auto",
        +                        "enum": [
        +                          "auto",
        +                          "inside",
        +                          "outside"
        +                        ],
        +                        "type": "string"
        +                      },
        +                      "show": {
        +                        "default": [
        +                          "category",
        +                          "percent"
        +                        ],
        +                        "items": {
        +                          "enum": [
        +                            "value",
        +                            "percent",
        +                            "category"
        +                          ],
        +                          "type": "string"
        +                        },
        +                        "type": "array"
        +                      }
        +                    },
        +                    "type": "object"
        +                  }
        +                ]
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "default": 1,
        +                "type": "number"
        +              },
        +              "type": {
        +                "const": "pie",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "dx": {
        +                "default": 0,
        +                "type": "number"
        +              },
        +              "dy": {
        +                "default": 0,
        +                "type": "number"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "fontSize": {
        +                "type": "number"
        +              },
        +              "fontWeight": {
        +                "type": "string"
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "default": 1,
        +                "type": "number"
        +              },
        +              "text": {
        +                "default": "text",
        +                "type": "string"
        +              },
        +              "textAnchor": {
        +                "default": "center",
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "type": {
        +                "const": "text",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "default": 1,
        +                "type": "number"
        +              },
        +              "type": {
        +                "const": "ruleX",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "default": 1,
        +                "type": "number"
        +              },
        +              "type": {
        +                "const": "ruleY",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          }
        +        ]
        +      },
        +      "minItems": 1,
        +      "type": "array"
        +    },
        +    "plotHeight": {
        +      "maximum": 4096,
        +      "minimum": 1,
        +      "type": "integer"
        +    },
        +    "plotWidth": {
        +      "maximum": 4096,
        +      "minimum": 1,
        +      "type": "integer"
        +    },
        +    "scale": {
        +      "maximum": 4,
        +      "minimum": 1,
        +      "type": "integer"
        +    },
        +    "subtitle": {
        +      "type": "string"
        +    },
        +    "theme": {
        +      "default": "editorial",
        +      "enum": [
        +        "editorial",
        +        "clean",
        +        "noir",
        +        "loud",
        +        "soft",
        +        "technical"
        +      ],
        +      "type": "string"
        +    },
        +    "themeOverrides": {
        +      "additionalProperties": {},
        +      "properties": {
        +        "axisColor": {
        +          "type": "string"
        +        },
        +        "axisFrame": {
        +          "enum": [
        +            "none",
        +            "baseline",
        +            "lShape",
        +            "full"
        +          ],
        +          "type": "string"
        +        },
        +        "axisLabelColor": {
        +          "type": "string"
        +        },
        +        "axisLabelFontWeight": {
        +          "type": "string"
        +        },
        +        "axisLineWidth": {
        +          "type": "number"
        +        },
        +        "backgroundColor": {
        +          "type": "string"
        +        },
        +        "barCornerRadius": {
        +          "type": "number"
        +        },
        +        "barPadding": {
        +          "type": "number"
        +        },
        +        "colors": {
        +          "items": {
        +            "type": "string"
        +          },
        +          "type": "array"
        +        },
        +        "curve": {
        +          "enum": [
        +            "linear",
        +            "monotone",
        +            "step"
        +          ],
        +          "type": "string"
        +        },
        +        "dotRadius": {
        +          "type": "number"
        +        },
        +        "fontFamily": {
        +          "enum": [
        +            "ABeeZee",
        +            "ADLaM Display",
        +            "AR One Sans",
        +            "Abel",
        +            "Abhaya Libre",
        +            "Aboreto",
        +            "Abril Fatface",
        +            "Abyssinica SIL",
        +            "Aclonica",
        +            "Acme",
        +            "Actor",
        +            "Adamina",
        +            "Advent Pro",
        +            "Afacad",
        +            "Afacad Flux",
        +            "Agbalumo",
        +            "Agdasima",
        +            "Agu Display",
        +            "Aguafina Script",
        +            "Akatab",
        +            "Akaya Kanadaka",
        +            "Akaya Telivigala",
        +            "Akronim",
        +            "Akshar",
        +            "Akt",
        +            "Aladin",
        +            "Alan Sans",
        +            "Alata",
        +            "Alatsi",
        +            "Albert Sans",
        +            "Aldrich",
        +            "Alef",
        +            "Alegreya",
        +            "Alegreya SC",
        +            "Alegreya Sans",
        +            "Alegreya Sans SC",
        +            "Aleo",
        +            "Alex Brush",
        +            "Alexandria",
        +            "Alfa Slab One",
        +            "Alice",
        +            "Alien Block",
        +            "Alike",
        +            "Alike Angular",
        +            "Alkalami",
        +            "Alkatra",
        +            "Allan",
        +            "Allerta",
        +            "Allerta Stencil",
        +            "Allison",
        +            "Allkin",
        +            "Allura",
        +            "Almarai",
        +            "Almendra",
        +            "Almendra Display",
        +            "Almendra SC",
        +            "Alumni Sans",
        +            "Alumni Sans Collegiate One",
        +            "Alumni Sans Inline One",
        +            "Alumni Sans Pinstripe",
        +            "Alumni Sans SC",
        +            "Alyamama",
        +            "Amarante",
        +            "Amaranth",
        +            "Amarna",
        +            "Amatic SC",
        +            "Amethysta",
        +            "Amiko",
        +            "Amiri",
        +            "Amiri Quran",
        +            "Amita",
        +            "Anaheim",
        +            "Ancizar Sans",
        +            "Ancizar Serif",
        +            "Andada Pro",
        +            "Andika",
        +            "Anek Bangla",
        +            "Anek Devanagari",
        +            "Anek Gujarati",
        +            "Anek Gurmukhi",
        +            "Anek Kannada",
        +            "Anek Latin",
        +            "Anek Malayalam",
        +            "Anek Odia",
        +            "Anek Tamil",
        +            "Anek Telugu",
        +            "Angkor",
        +            "Annapurna SIL",
        +            "Annie Use Your Telescope",
        +            "Anonymous Pro",
        +            "Anta",
        +            "Antic",
        +            "Antic Didone",
        +            "Antic Slab",
        +            "Anton",
        +            "Anton SC",
        +            "Antonio",
        +            "Anuphan",
        +            "Anybody",
        +            "Aoboshi One",
        +            "Arapey",
        +            "Arbutus",
        +            "Arbutus Slab",
        +            "Architects Daughter",
        +            "Archivo",
        +            "Archivo Black",
        +            "Archivo Narrow",
        +            "Are You Serious",
        +            "Aref Ruqaa",
        +            "Aref Ruqaa Ink",
        +            "Arima",
        +            "Arimo",
        +            "Arizonia",
        +            "Armata",
        +            "Arsenal",
        +            "Arsenal SC",
        +            "Artifika",
        +            "Arvo",
        +            "Arya",
        +            "Asap",
        +            "Asap Condensed",
        +            "Asar",
        +            "Asimovian",
        +            "Asset",
        +            "Assistant",
        +            "Asta Sans",
        +            "Astloch",
        +            "Asul",
        +            "Athiti",
        +            "Atkinson Hyperlegible",
        +            "Atkinson Hyperlegible Mono",
        +            "Atkinson Hyperlegible Next",
        +            "Atma",
        +            "Atomic Age",
        +            "Aubrey",
        +            "Audiowide",
        +            "Autour One",
        +            "Average",
        +            "Average Sans",
        +            "Averia Gruesa Libre",
        +            "Averia Libre",
        +            "Averia Sans Libre",
        +            "Averia Serif Libre",
        +            "Azeret Mono",
        +            "B612",
        +            "B612 Mono",
        +            "BBH Bartle",
        +            "BBH Bogle",
        +            "BBH Hegarty",
        +            "BIZ UDGothic",
        +            "BIZ UDMincho",
        +            "BIZ UDPGothic",
        +            "BIZ UDPMincho",
        +            "BJCree",
        +            "Babylonica",
        +            "Bacasime Antique",
        +            "Bad Script",
        +            "Badeen Display",
        +            "Bagel Fat One",
        +            "Bahiana",
        +            "Bahianita",
        +            "Bai Jamjuree",
        +            "Bakbak One",
        +            "Ballet",
        +            "Baloo 2",
        +            "Baloo Bhai 2",
        +            "Baloo Bhaijaan 2",
        +            "Baloo Bhaina 2",
        +            "Baloo Chettan 2",
        +            "Baloo Da 2",
        +            "Baloo Paaji 2",
        +            "Baloo Tamma 2",
        +            "Baloo Tammudu 2",
        +            "Baloo Thambi 2",
        +            "Balsamiq Sans",
        +            "Balthazar",
        +            "Bangers",
        +            "Barlow",
        +            "Barlow Condensed",
        +            "Barlow Semi Condensed",
        +            "Barriecito",
        +            "Barrio",
        +            "Basic",
        +            "Baskervville",
        +            "Baskervville SC",
        +            "Battambang",
        +            "Baumans",
        +            "Bayon",
        +            "Be Vietnam Pro",
        +            "Beau Rivage",
        +            "Bebas Neue",
        +            "Beiruti",
        +            "Belanosima",
        +            "Belgrano",
        +            "Bellefair",
        +            "Belleza",
        +            "Bellota",
        +            "Bellota Text",
        +            "BenchNine",
        +            "Benne",
        +            "Bentham",
        +            "Berkshire Swash",
        +            "Besley",
        +            "Betania Patmos",
        +            "Betania Patmos GDL",
        +            "Betania Patmos In",
        +            "Betania Patmos In GDL",
        +            "Beth Ellen",
        +            "Bevan",
        +            "BhuTuka Expanded One",
        +            "Big Shoulders",
        +            "Big Shoulders Inline",
        +            "Big Shoulders Stencil",
        +            "Bigelow Rules",
        +            "Bigshot One",
        +            "Bilbo",
        +            "Bilbo Swash Caps",
        +            "BioRhyme",
        +            "BioRhyme Expanded",
        +            "Birthstone",
        +            "Birthstone Bounce",
        +            "Biryani",
        +            "Bitcount",
        +            "Bitcount Grid Double",
        +            "Bitcount Grid Double Ink",
        +            "Bitcount Grid Single",
        +            "Bitcount Grid Single Ink",
        +            "Bitcount Ink",
        +            "Bitcount Prop Double",
        +            "Bitcount Prop Double Ink",
        +            "Bitcount Prop Single",
        +            "Bitcount Prop Single Ink",
        +            "Bitcount Single",
        +            "Bitcount Single Ink",
        +            "Bitter",
        +            "Black And White Picture",
        +            "Black Han Sans",
        +            "Black Ops One",
        +            "Blaka",
        +            "Blaka Hollow",
        +            "Blaka Ink",
        +            "Blinker",
        +            "Bodoni Moda",
        +            "Bodoni Moda SC",
        +            "Bokor",
        +            "Boldonse",
        +            "Bona Nova",
        +            "Bona Nova SC",
        +            "Bonbon",
        +            "Bonheur Royale",
        +            "Boogaloo",
        +            "Borel",
        +            "Bowlby One",
        +            "Bowlby One SC",
        +            "Bpmf Huninn",
        +            "Bpmf Iansui",
        +            "Bpmf Zihi Kai Std",
        +            "Braah One",
        +            "Brawler",
        +            "Bree Serif",
        +            "Bricolage Grotesque",
        +            "Bruno Ace",
        +            "Bruno Ace SC",
        +            "Brygada 1918",
        +            "Bubblegum Sans",
        +            "Bubbler One",
        +            "Buda",
        +            "Buenard",
        +            "Bungee",
        +            "Bungee Hairline",
        +            "Bungee Inline",
        +            "Bungee Outline",
        +            "Bungee Shade",
        +            "Bungee Spice",
        +            "Bungee Tint",
        +            "Butcherman",
        +            "Butterfly Kids",
        +            "Bytesized",
        +            "Cabin",
        +            "Cabin Condensed",
        +            "Cabin Sketch",
        +            "Cactus Classical Serif",
        +            "Caesar Dressing",
        +            "Cagliostro",
        +            "Cairo",
        +            "Cairo Play",
        +            "Cal Sans",
        +            "Caladea",
        +            "Calistoga",
        +            "Calligraffitti",
        +            "Cambay",
        +            "Cambo",
        +            "Candal",
        +            "Cantarell",
        +            "Cantata One",
        +            "Cantora One",
        +            "Caprasimo",
        +            "Capriola",
        +            "Caramel",
        +            "Carattere",
        +            "Cardo",
        +            "Carlito",
        +            "Carme",
        +            "Carrois Gothic",
        +            "Carrois Gothic SC",
        +            "Carter One",
        +            "Cascadia Code",
        +            "Cascadia Mono",
        +            "Castoro",
        +            "Castoro Titling",
        +            "Catamaran",
        +            "Caudex",
        +            "Cause",
        +            "Caveat",
        +            "Caveat Brush",
        +            "Cedarville Cursive",
        +            "Ceviche One",
        +            "Chakra Petch",
        +            "Changa",
        +            "Changa One",
        +            "Chango",
        +            "Charis SIL",
        +            "Charm",
        +            "Charmonman",
        +            "Chathura",
        +            "Chau Philomene One",
        +            "Chela One",
        +            "Chelsea Market",
        +            "Chenla",
        +            "Cherish",
        +            "Cherry Bomb One",
        +            "Cherry Cream Soda",
        +            "Cherry Swash",
        +            "Chewy",
        +            "Chicle",
        +            "Chilanka",
        +            "Chiron GoRound TC",
        +            "Chiron Hei HK",
        +            "Chiron Sung HK",
        +            "Chivo",
        +            "Chivo Mono",
        +            "Chocolate Classical Sans",
        +            "Chokokutai",
        +            "Chonburi",
        +            "Cinzel",
        +            "Cinzel Decorative",
        +            "Clicker Script",
        +            "Climate Crisis",
        +            "Coda",
        +            "Codystar",
        +            "Coiny",
        +            "Combo",
        +            "Comfortaa",
        +            "Comforter",
        +            "Comforter Brush",
        +            "Comic Neue",
        +            "Comic Relief",
        +            "Coming Soon",
        +            "Comme",
        +            "Commissioner",
        +            "Concert One",
        +            "Condiment",
        +            "Content",
        +            "Contrail One",
        +            "Convergence",
        +            "Cookie",
        +            "Copse",
        +            "Coral Pixels",
        +            "Corben",
        +            "Corinthia",
        +            "Cormorant",
        +            "Cormorant Garamond",
        +            "Cormorant Infant",
        +            "Cormorant SC",
        +            "Cormorant Unicase",
        +            "Cormorant Upright",
        +            "Cossette Texte",
        +            "Cossette Titre",
        +            "Courgette",
        +            "Courier Prime",
        +            "Cousine",
        +            "Coustard",
        +            "Covered By Your Grace",
        +            "Crafty Girls",
        +            "Creepster",
        +            "Crete Round",
        +            "Crimson Pro",
        +            "Crimson Text",
        +            "Croissant One",
        +            "Crushed",
        +            "Cuprum",
        +            "Cute Font",
        +            "Cutive",
        +            "Cutive Mono",
        +            "DM Mono",
        +            "DM Sans",
        +            "DM Serif Display",
        +            "DM Serif Text",
        +            "Dai Banna SIL",
        +            "Damion",
        +            "Dancing Script",
        +            "Danfo",
        +            "Dangrek",
        +            "Darker Grotesque",
        +            "Darumadrop One",
        +            "Datatype",
        +            "David Libre",
        +            "Dawning of a New Day",
        +            "Days One",
        +            "Dekko",
        +            "Dela Gothic One",
        +            "Delicious Handrawn",
        +            "Delius",
        +            "Delius Swash Caps",
        +            "Delius Unicase",
        +            "Della Respira",
        +            "Denk One",
        +            "Devonshire",
        +            "Dhurjati",
        +            "Didact Gothic",
        +            "Diphylleia",
        +            "Diplomata",
        +            "Diplomata SC",
        +            "Do Hyeon",
        +            "Dokdo",
        +            "Domine",
        +            "Donegal One",
        +            "Dongle",
        +            "Doppio One",
        +            "Dorsa",
        +            "Dosis",
        +            "DotGothic16",
        +            "Doto",
        +            "Dr Sugiyama",
        +            "Duru Sans",
        +            "DynaPuff",
        +            "Dynalight",
        +            "EB Garamond",
        +            "Eagle Lake",
        +            "East Sea Dokdo",
        +            "Eater",
        +            "Economica",
        +            "Eczar",
        +            "Edu AU VIC WA NT Arrows",
        +            "Edu AU VIC WA NT Dots",
        +            "Edu AU VIC WA NT Guides",
        +            "Edu AU VIC WA NT Hand",
        +            "Edu AU VIC WA NT Pre",
        +            "Edu NSW ACT Cursive",
        +            "Edu NSW ACT Foundation",
        +            "Edu NSW ACT Hand Pre",
        +            "Edu QLD Beginner",
        +            "Edu QLD Hand",
        +            "Edu SA Beginner",
        +            "Edu SA Hand",
        +            "Edu TAS Beginner",
        +            "Edu VIC WA NT Beginner",
        +            "Edu VIC WA NT Hand",
        +            "Edu VIC WA NT Hand Pre",
        +            "El Messiri",
        +            "Electrolize",
        +            "Elms Sans",
        +            "Elsie",
        +            "Elsie Swash Caps",
        +            "Emblema One",
        +            "Emilys Candy",
        +            "Encode Sans",
        +            "Encode Sans Condensed",
        +            "Encode Sans Expanded",
        +            "Encode Sans SC",
        +            "Encode Sans Semi Condensed",
        +            "Encode Sans Semi Expanded",
        +            "Engagement",
        +            "Englebert",
        +            "Enriqueta",
        +            "Ephesis",
        +            "Epilogue",
        +            "Epunda Sans",
        +            "Epunda Slab",
        +            "Erica One",
        +            "Esteban",
        +            "Estedad",
        +            "Estonia",
        +            "Euphoria Script",
        +            "Ewert",
        +            "Exile",
        +            "Exo",
        +            "Exo 2",
        +            "Expletus Sans",
        +            "Explora",
        +            "Faculty Glyphic",
        +            "Fahkwang",
        +            "Familjen Grotesk",
        +            "Fanwood Text",
        +            "Farro",
        +            "Farsan",
        +            "Fascinate",
        +            "Fascinate Inline",
        +            "Faster One",
        +            "Fasthand",
        +            "Fauna One",
        +            "Faustina",
        +            "Federant",
        +            "Federo",
        +            "Felipa",
        +            "Fenix",
        +            "Festive",
        +            "Figtree",
        +            "Finger Paint",
        +            "Finlandica Headline",
        +            "Finlandica Text",
        +            "Fira Code",
        +            "Fira Mono",
        +            "Fira Sans",
        +            "Fira Sans Condensed",
        +            "Fira Sans Extra Condensed",
        +            "Fjalla One",
        +            "Fjord One",
        +            "Flamenco",
        +            "Flavors",
        +            "Fleur De Leah",
        +            "Flow Block",
        +            "Flow Circular",
        +            "Flow Rounded",
        +            "Foldit",
        +            "Fondamento",
        +            "Fontdiner Swanky",
        +            "Forum",
        +            "Fragment Mono",
        +            "Francois One",
        +            "Frank Ruhl Libre",
        +            "Fraunces",
        +            "Freckle Face",
        +            "Fredericka the Great",
        +            "Fredoka",
        +            "Freehand",
        +            "Freeman",
        +            "Fresca",
        +            "Frijole",
        +            "Fruktur",
        +            "Fugaz One",
        +            "Fuggles",
        +            "Funnel Display",
        +            "Funnel Sans",
        +            "Fustat",
        +            "Fuzzy Bubbles",
        +            "GFS Didot",
        +            "GFS Neohellenic",
        +            "Ga Maamli",
        +            "Gabarito",
        +            "Gabriela",
        +            "Gaegu",
        +            "Gafata",
        +            "Gajraj One",
        +            "Galada",
        +            "Galdeano",
        +            "Galindo",
        +            "Gamja Flower",
        +            "Gantari",
        +            "Gasoek One",
        +            "Gayathri",
        +            "Geist",
        +            "Geist Mono",
        +            "Geist Pixel",
        +            "Gelasio",
        +            "Gemunu Libre",
        +            "Genos",
        +            "Gentium Book Plus",
        +            "Gentium Plus",
        +            "Geo",
        +            "Geologica",
        +            "Geom",
        +            "Geomini",
        +            "Georama",
        +            "Geostar",
        +            "Geostar Fill",
        +            "Germania One",
        +            "Gideon Roman",
        +            "Gidole",
        +            "Gidugu",
        +            "Gilda Display",
        +            "Girassol",
        +            "Give You Glory",
        +            "Glass Antiqua",
        +            "Glegoo",
        +            "Gloock",
        +            "Gloria Hallelujah",
        +            "Glory",
        +            "Gluten",
        +            "Goblin One",
        +            "Gochi Hand",
        +            "Goldman",
        +            "Golos Text",
        +            "Google Sans",
        +            "Google Sans Code",
        +            "Google Sans Flex",
        +            "Gorditas",
        +            "Gothic A1",
        +            "Gotu",
        +            "Goudy Bookletter 1911",
        +            "Gowun Batang",
        +            "Gowun Dodum",
        +            "Graduate",
        +            "Grand Hotel",
        +            "Grandiflora One",
        +            "Grandstander",
        +            "Grape Nuts",
        +            "Gravitas One",
        +            "Great Vibes",
        +            "Grechen Fuemen",
        +            "Grenze",
        +            "Grenze Gotisch",
        +            "Grey Qo",
        +            "Griffy",
        +            "Gruppo",
        +            "Gudea",
        +            "Gugi",
        +            "Gulzar",
        +            "Gupter",
        +            "Gurajada",
        +            "Gveret Levin",
        +            "Gwendolyn",
        +            "Habibi",
        +            "Hachi Maru Pop",
        +            "Hahmlet",
        +            "Halant",
        +            "Hammersmith One",
        +            "Hanalei",
        +            "Hanalei Fill",
        +            "Handjet",
        +            "Handlee",
        +            "Hanken Grotesk",
        +            "Hanuman",
        +            "Happy Monkey",
        +            "Harmattan",
        +            "Headland One",
        +            "Hedvig Letters Sans",
        +            "Hedvig Letters Serif",
        +            "Heebo",
        +            "Henny Penny",
        +            "Hepta Slab",
        +            "Herr Von Muellerhoff",
        +            "Hi Melody",
        +            "Hibur Mono",
        +            "Hina Mincho",
        +            "Hind",
        +            "Hind Guntur",
        +            "Hind Madurai",
        +            "Hind Mysuru",
        +            "Hind Siliguri",
        +            "Hind Vadodara",
        +            "Holtwood One SC",
        +            "Homemade Apple",
        +            "Homenaje",
        +            "Honk",
        +            "Host Grotesk",
        +            "Hubballi",
        +            "Hubot Sans",
        +            "Huninn",
        +            "Hurricane",
        +            "IBM Plex Mono",
        +            "IBM Plex Sans",
        +            "IBM Plex Sans Arabic",
        +            "IBM Plex Sans Condensed",
        +            "IBM Plex Sans Devanagari",
        +            "IBM Plex Sans Hebrew",
        +            "IBM Plex Sans JP",
        +            "IBM Plex Sans KR",
        +            "IBM Plex Sans Thai",
        +            "IBM Plex Sans Thai Looped",
        +            "IBM Plex Serif",
        +            "IM Fell DW Pica",
        +            "IM Fell DW Pica SC",
        +            "IM Fell Double Pica",
        +            "IM Fell Double Pica SC",
        +            "IM Fell English",
        +            "IM Fell English SC",
        +            "IM Fell French Canon",
        +            "IM Fell French Canon SC",
        +            "IM Fell Great Primer",
        +            "IM Fell Great Primer SC",
        +            "Iansui",
        +            "Ibarra Real Nova",
        +            "Iceberg",
        +            "Iceland",
        +            "Idiqlat",
        +            "Imbue",
        +            "Imperial Script",
        +            "Imprima",
        +            "Inclusive Sans",
        +            "Inconsolata",
        +            "Inder",
        +            "Indie Flower",
        +            "Ingrid Darling",
        +            "Inika",
        +            "Inknut Antiqua",
        +            "Inria Sans",
        +            "Inria Serif",
        +            "Inspiration",
        +            "Instrument Sans",
        +            "Instrument Serif",
        +            "Intel One Mono",
        +            "Inter",
        +            "Inter Tight",
        +            "Iosevka Charon",
        +            "Iosevka Charon Mono",
        +            "Irish Grover",
        +            "Island Moments",
        +            "Istok Web",
        +            "Italiana",
        +            "Italianno",
        +            "Itim",
        +            "Jacquard 12",
        +            "Jacquard 12 Charted",
        +            "Jacquard 24",
        +            "Jacquard 24 Charted",
        +            "Jacquarda Bastarda 9",
        +            "Jacquarda Bastarda 9 Charted",
        +            "Jacques Francois",
        +            "Jacques Francois Shadow",
        +            "Jaini",
        +            "Jaini Purva",
        +            "Jaldi",
        +            "Jaro",
        +            "Jersey 10",
        +            "Jersey 10 Charted",
        +            "Jersey 15",
        +            "Jersey 15 Charted",
        +            "Jersey 20",
        +            "Jersey 20 Charted",
        +            "Jersey 25",
        +            "Jersey 25 Charted",
        +            "JetBrains Mono",
        +            "Jim Nightshade",
        +            "Joan",
        +            "Jockey One",
        +            "Jolly Lodger",
        +            "Jomhuria",
        +            "Jomolhari",
        +            "Josefin Sans",
        +            "Josefin Slab",
        +            "Jost",
        +            "Joti One",
        +            "Jua",
        +            "Judson",
        +            "Julee",
        +            "Julius Sans One",
        +            "Junge",
        +            "Jura",
        +            "Just Another Hand",
        +            "Just Me Again Down Here",
        +            "K2D",
        +            "Kablammo",
        +            "Kadwa",
        +            "Kaisei Decol",
        +            "Kaisei HarunoUmi",
        +            "Kaisei Opti",
        +            "Kaisei Tokumin",
        +            "Kalam",
        +            "Kalnia",
        +            "Kalnia Glaze",
        +            "Kameron",
        +            "Kanchenjunga",
        +            "Kanit",
        +            "Kantumruy Pro",
        +            "Kapakana",
        +            "Karantina",
        +            "Karla",
        +            "Karla Tamil Inclined",
        +            "Karla Tamil Upright",
        +            "Karma",
        +            "Katibeh",
        +            "Kaushan Script",
        +            "Kavivanar",
        +            "Kavoon",
        +            "Kay Pho Du",
        +            "Kdam Thmor Pro",
        +            "Keania One",
        +            "Kedebideri",
        +            "Kelly Slab",
        +            "Kenia",
        +            "Khand",
        +            "Khmer",
        +            "Khula",
        +            "Kings",
        +            "Kirang Haerang",
        +            "Kite One",
        +            "Kiwi Maru",
        +            "Klee One",
        +            "Knewave",
        +            "KoHo",
        +            "Kodchasan",
        +            "Kode Mono",
        +            "Koh Santepheap",
        +            "Kolker Brush",
        +            "Konkhmer Sleokchher",
        +            "Kosugi",
        +            "Kosugi Maru",
        +            "Kotta One",
        +            "Koulen",
        +            "Kranky",
        +            "Kreon",
        +            "Kristi",
        +            "Krona One",
        +            "Krub",
        +            "Kufam",
        +            "Kulim Park",
        +            "Kumar One",
        +            "Kumar One Outline",
        +            "Kumbh Sans",
        +            "Kurale",
        +            "LINE Seed JP",
        +            "LXGW Marker Gothic",
        +            "LXGW WenKai Mono TC",
        +            "LXGW WenKai TC",
        +            "La Belle Aurore",
        +            "Labrada",
        +            "Lacquer",
        +            "Laila",
        +            "Lakki Reddy",
        +            "Lalezar",
        +            "Lancelot",
        +            "Langar",
        +            "Lateef",
        +            "Lato",
        +            "Lavishly Yours",
        +            "League Gothic",
        +            "League Script",
        +            "League Spartan",
        +            "Leckerli One",
        +            "Ledger",
        +            "Lekton",
        +            "Lemon",
        +            "Lemonada",
        +            "Lexend",
        +            "Lexend Deca",
        +            "Lexend Exa",
        +            "Lexend Giga",
        +            "Lexend Mega",
        +            "Lexend Peta",
        +            "Lexend Tera",
        +            "Lexend Zetta",
        +            "Libertinus Keyboard",
        +            "Libertinus Math",
        +            "Libertinus Mono",
        +            "Libertinus Sans",
        +            "Libertinus Serif",
        +            "Libertinus Serif Display",
        +            "Libre Barcode 128",
        +            "Libre Barcode 128 Text",
        +            "Libre Barcode 39",
        +            "Libre Barcode 39 Extended",
        +            "Libre Barcode 39 Extended Text",
        +            "Libre Barcode 39 Text",
        +            "Libre Barcode EAN13 Text",
        +            "Libre Baskerville",
        +            "Libre Bodoni",
        +            "Libre Caslon Display",
        +            "Libre Caslon Text",
        +            "Libre Franklin",
        +            "Licorice",
        +            "Life Savers",
        +            "Lilex",
        +            "Lilita One",
        +            "Lily Script One",
        +            "Limelight",
        +            "Linden Hill",
        +            "Linefont",
        +            "Lisu Bosa",
        +            "Liter",
        +            "Literata",
        +            "Liu Jian Mao Cao",
        +            "Livvic",
        +            "Lobster",
        +            "Lobster Two",
        +            "Londrina Outline",
        +            "Londrina Shadow",
        +            "Londrina Sketch",
        +            "Londrina Solid",
        +            "Long Cang",
        +            "Lora",
        +            "Love Light",
        +            "Love Ya Like A Sister",
        +            "Loved by the King",
        +            "Lovers Quarrel",
        +            "Luckiest Guy",
        +            "Lugrasimo",
        +            "Lumanosimo",
        +            "Lunasima",
        +            "Lusitana",
        +            "Lustria",
        +            "Luxurious Roman",
        +            "Luxurious Script",
        +            "M PLUS 1",
        +            "M PLUS 1 Code",
        +            "M PLUS 1p",
        +            "M PLUS 2",
        +            "M PLUS Code Latin",
        +            "M PLUS Rounded 1c",
        +            "M PLUS U",
        +            "Ma Shan Zheng",
        +            "Macondo",
        +            "Macondo Swash Caps",
        +            "Mada",
        +            "Madimi One",
        +            "Magra",
        +            "Maiden Orange",
        +            "Maitree",
        +            "Major Mono Display",
        +            "Mako",
        +            "Mali",
        +            "Mallanna",
        +            "Maname",
        +            "Mandali",
        +            "Manjari",
        +            "Manrope",
        +            "Mansalva",
        +            "Manuale",
        +            "Manufacturing Consent",
        +            "Marcellus",
        +            "Marcellus SC",
        +            "Marck Script",
        +            "Margarine",
        +            "Marhey",
        +            "Markazi Text",
        +            "Marko One",
        +            "Marmelad",
        +            "Martel",
        +            "Martel Sans",
        +            "Martian Mono",
        +            "Marvel",
        +            "Matangi",
        +            "Mate",
        +            "Mate SC",
        +            "Matemasie",
        +            "Material Icons",
        +            "Material Icons Outlined",
        +            "Material Icons Round",
        +            "Material Icons Sharp",
        +            "Material Icons Two Tone",
        +            "Material Symbols",
        +            "Material Symbols Outlined",
        +            "Material Symbols Rounded",
        +            "Material Symbols Sharp",
        +            "Maven Pro",
        +            "McLaren",
        +            "Mea Culpa",
        +            "Meddon",
        +            "MedievalSharp",
        +            "Medula One",
        +            "Meera Inimai",
        +            "Megrim",
        +            "Meie Script",
        +            "Menbere",
        +            "Meow Script",
        +            "Merienda",
        +            "Merriweather",
        +            "Merriweather Sans",
        +            "Metal",
        +            "Metal Mania",
        +            "Metamorphous",
        +            "Metrophobic",
        +            "Michroma",
        +            "Micro 5",
        +            "Micro 5 Charted",
        +            "Milonga",
        +            "Miltonian",
        +            "Miltonian Tattoo",
        +            "Mina",
        +            "Mingzat",
        +            "Miniver",
        +            "Miranda Sans",
        +            "Miriam Libre",
        +            "Mirza",
        +            "Miss Fajardose",
        +            "Mitr",
        +            "Mochiy Pop One",
        +            "Mochiy Pop P One",
        +            "Modak",
        +            "Modern Antiqua",
        +            "Moderustic",
        +            "Mogra",
        +            "Mohave",
        +            "Moirai One",
        +            "Molengo",
        +            "Molle",
        +            "Momo Signature",
        +            "Momo Trust Display",
        +            "Momo Trust Sans",
        +            "Mona Sans",
        +            "Monda",
        +            "Monofett",
        +            "Monomakh",
        +            "Monomaniac One",
        +            "Monoton",
        +            "Monsieur La Doulaise",
        +            "Montaga",
        +            "Montagu Slab",
        +            "MonteCarlo",
        +            "Montenegrin Gothic One",
        +            "Montez",
        +            "Montserrat",
        +            "Montserrat Alternates",
        +            "Montserrat Underline",
        +            "Moo Lah Lah",
        +            "Mooli",
        +            "Moon Dance",
        +            "Moul",
        +            "Moulpali",
        +            "Mountains of Christmas",
        +            "Mouse Memoirs",
        +            "Mozilla Headline",
        +            "Mozilla Text",
        +            "Mr Bedfort",
        +            "Mr Dafoe",
        +            "Mr De Haviland",
        +            "Mrs Saint Delafield",
        +            "Mrs Sheppards",
        +            "Ms Madi",
        +            "Mukta",
        +            "Mukta Mahee",
        +            "Mukta Malar",
        +            "Mukta Vaani",
        +            "Mulish",
        +            "Murecho",
        +            "MuseoModerno",
        +            "My Soul",
        +            "Mynerve",
        +            "Mystery Quest",
        +            "NTR",
        +            "Nabla",
        +            "Namdhinggo",
        +            "Nanum Brush Script",
        +            "Nanum Gothic",
        +            "Nanum Gothic Coding",
        +            "Nanum Myeongjo",
        +            "Nanum Pen Script",
        +            "Narnoor",
        +            "Nata Sans",
        +            "National Park",
        +            "Neonderthaw",
        +            "Nerko One",
        +            "Neucha",
        +            "Neuton",
        +            "New Amsterdam",
        +            "New Rocker",
        +            "New Tegomin",
        +            "News Cycle",
        +            "Newsreader",
        +            "Niconne",
        +            "Niramit",
        +            "Nixie One",
        +            "Nobile",
        +            "Nokora",
        +            "Norican",
        +            "Nosifer",
        +            "Notable",
        +            "Nothing You Could Do",
        +            "Noticia Text",
        +            "Noto Color Emoji",
        +            "Noto Emoji",
        +            "Noto Kufi Arabic",
        +            "Noto Music",
        +            "Noto Naskh Arabic",
        +            "Noto Nastaliq Urdu",
        +            "Noto Rashi Hebrew",
        +            "Noto Sans",
        +            "Noto Sans Adlam",
        +            "Noto Sans Adlam Unjoined",
        +            "Noto Sans Anatolian Hieroglyphs",
        +            "Noto Sans Arabic",
        +            "Noto Sans Armenian",
        +            "Noto Sans Avestan",
        +            "Noto Sans Balinese",
        +            "Noto Sans Bamum",
        +            "Noto Sans Bassa Vah",
        +            "Noto Sans Batak",
        +            "Noto Sans Bengali",
        +            "Noto Sans Bhaiksuki",
        +            "Noto Sans Brahmi",
        +            "Noto Sans Buginese",
        +            "Noto Sans Buhid",
        +            "Noto Sans Canadian Aboriginal",
        +            "Noto Sans Carian",
        +            "Noto Sans Caucasian Albanian",
        +            "Noto Sans Chakma",
        +            "Noto Sans Cham",
        +            "Noto Sans Cherokee",
        +            "Noto Sans Chorasmian",
        +            "Noto Sans Coptic",
        +            "Noto Sans Cuneiform",
        +            "Noto Sans Cypriot",
        +            "Noto Sans Cypro Minoan",
        +            "Noto Sans Deseret",
        +            "Noto Sans Devanagari",
        +            "Noto Sans Display",
        +            "Noto Sans Duployan",
        +            "Noto Sans Egyptian Hieroglyphs",
        +            "Noto Sans Elbasan",
        +            "Noto Sans Elymaic",
        +            "Noto Sans Ethiopic",
        +            "Noto Sans Georgian",
        +            "Noto Sans Glagolitic",
        +            "Noto Sans Gothic",
        +            "Noto Sans Grantha",
        +            "Noto Sans Gujarati",
        +            "Noto Sans Gunjala Gondi",
        +            "Noto Sans Gurmukhi",
        +            "Noto Sans HK",
        +            "Noto Sans Hanifi Rohingya",
        +            "Noto Sans Hanunoo",
        +            "Noto Sans Hatran",
        +            "Noto Sans Hebrew",
        +            "Noto Sans Imperial Aramaic",
        +            "Noto Sans Indic Siyaq Numbers",
        +            "Noto Sans Inscriptional Pahlavi",
        +            "Noto Sans Inscriptional Parthian",
        +            "Noto Sans JP",
        +            "Noto Sans Javanese",
        +            "Noto Sans KR",
        +            "Noto Sans Kaithi",
        +            "Noto Sans Kannada",
        +            "Noto Sans Kawi",
        +            "Noto Sans Kayah Li",
        +            "Noto Sans Kharoshthi",
        +            "Noto Sans Khmer",
        +            "Noto Sans Khojki",
        +            "Noto Sans Khudawadi",
        +            "Noto Sans Lao",
        +            "Noto Sans Lao Looped",
        +            "Noto Sans Lepcha",
        +            "Noto Sans Limbu",
        +            "Noto Sans Linear A",
        +            "Noto Sans Linear B",
        +            "Noto Sans Lisu",
        +            "Noto Sans Lycian",
        +            "Noto Sans Lydian",
        +            "Noto Sans Mahajani",
        +            "Noto Sans Malayalam",
        +            "Noto Sans Mandaic",
        +            "Noto Sans Manichaean",
        +            "Noto Sans Marchen",
        +            "Noto Sans Masaram Gondi",
        +            "Noto Sans Math",
        +            "Noto Sans Mayan Numerals",
        +            "Noto Sans Medefaidrin",
        +            "Noto Sans Meetei Mayek",
        +            "Noto Sans Mende Kikakui",
        +            "Noto Sans Meroitic",
        +            "Noto Sans Miao",
        +            "Noto Sans Modi",
        +            "Noto Sans Mongolian",
        +            "Noto Sans Mono",
        +            "Noto Sans Mro",
        +            "Noto Sans Multani",
        +            "Noto Sans Myanmar",
        +            "Noto Sans NKo",
        +            "Noto Sans NKo Unjoined",
        +            "Noto Sans Nabataean",
        +            "Noto Sans Nag Mundari",
        +            "Noto Sans Nandinagari",
        +            "Noto Sans New Tai Lue",
        +            "Noto Sans Newa",
        +            "Noto Sans Nushu",
        +            "Noto Sans Ogham",
        +            "Noto Sans Ol Chiki",
        +            "Noto Sans Old Hungarian",
        +            "Noto Sans Old Italic",
        +            "Noto Sans Old North Arabian",
        +            "Noto Sans Old Permic",
        +            "Noto Sans Old Persian",
        +            "Noto Sans Old Sogdian",
        +            "Noto Sans Old South Arabian",
        +            "Noto Sans Old Turkic",
        +            "Noto Sans Oriya",
        +            "Noto Sans Osage",
        +            "Noto Sans Osmanya",
        +            "Noto Sans Pahawh Hmong",
        +            "Noto Sans Palmyrene",
        +            "Noto Sans Pau Cin Hau",
        +            "Noto Sans PhagsPa",
        +            "Noto Sans Phoenician",
        +            "Noto Sans Psalter Pahlavi",
        +            "Noto Sans Rejang",
        +            "Noto Sans Runic",
        +            "Noto Sans SC",
        +            "Noto Sans Samaritan",
        +            "Noto Sans Saurashtra",
        +            "Noto Sans Sharada",
        +            "Noto Sans Shavian",
        +            "Noto Sans Siddham",
        +            "Noto Sans SignWriting",
        +            "Noto Sans Sinhala",
        +            "Noto Sans Sogdian",
        +            "Noto Sans Sora Sompeng",
        +            "Noto Sans Soyombo",
        +            "Noto Sans Sundanese",
        +            "Noto Sans Sunuwar",
        +            "Noto Sans Syloti Nagri",
        +            "Noto Sans Symbols",
        +            "Noto Sans Symbols 2",
        +            "Noto Sans Syriac",
        +            "Noto Sans Syriac Eastern",
        +            "Noto Sans Syriac Western",
        +            "Noto Sans TC",
        +            "Noto Sans Tagalog",
        +            "Noto Sans Tagbanwa",
        +            "Noto Sans Tai Le",
        +            "Noto Sans Tai Tham",
        +            "Noto Sans Tai Viet",
        +            "Noto Sans Takri",
        +            "Noto Sans Tamil",
        +            "Noto Sans Tamil Supplement",
        +            "Noto Sans Tangsa",
        +            "Noto Sans Telugu",
        +            "Noto Sans Thaana",
        +            "Noto Sans Thai",
        +            "Noto Sans Thai Looped",
        +            "Noto Sans Tifinagh",
        +            "Noto Sans Tirhuta",
        +            "Noto Sans Ugaritic",
        +            "Noto Sans Vai",
        +            "Noto Sans Vithkuqi",
        +            "Noto Sans Wancho",
        +            "Noto Sans Warang Citi",
        +            "Noto Sans Yi",
        +            "Noto Sans Zanabazar Square",
        +            "Noto Serif",
        +            "Noto Serif Ahom",
        +            "Noto Serif Armenian",
        +            "Noto Serif Balinese",
        +            "Noto Serif Bengali",
        +            "Noto Serif Devanagari",
        +            "Noto Serif Display",
        +            "Noto Serif Dives Akuru",
        +            "Noto Serif Dogra",
        +            "Noto Serif Ethiopic",
        +            "Noto Serif Georgian",
        +            "Noto Serif Grantha",
        +            "Noto Serif Gujarati",
        +            "Noto Serif Gurmukhi",
        +            "Noto Serif HK",
        +            "Noto Serif Hebrew",
        +            "Noto Serif Hentaigana",
        +            "Noto Serif JP",
        +            "Noto Serif KR",
        +            "Noto Serif Kannada",
        +            "Noto Serif Khitan Small Script",
        +            "Noto Serif Khmer",
        +            "Noto Serif Khojki",
        +            "Noto Serif Lao",
        +            "Noto Serif Makasar",
        +            "Noto Serif Malayalam",
        +            "Noto Serif Myanmar",
        +            "Noto Serif NP Hmong",
        +            "Noto Serif Old Uyghur",
        +            "Noto Serif Oriya",
        +            "Noto Serif Ottoman Siyaq",
        +            "Noto Serif SC",
        +            "Noto Serif Sinhala",
        +            "Noto Serif TC",
        +            "Noto Serif Tamil",
        +            "Noto Serif Tangut",
        +            "Noto Serif Telugu",
        +            "Noto Serif Thai",
        +            "Noto Serif Tibetan",
        +            "Noto Serif Todhri",
        +            "Noto Serif Toto",
        +            "Noto Serif Vithkuqi",
        +            "Noto Serif Yezidi",
        +            "Noto Traditional Nushu",
        +            "Noto Znamenny Musical Notation",
        +            "Nova Cut",
        +            "Nova Flat",
        +            "Nova Mono",
        +            "Nova Oval",
        +            "Nova Round",
        +            "Nova Script",
        +            "Nova Slim",
        +            "Nova Square",
        +            "Numans",
        +            "Nunito",
        +            "Nunito Sans",
        +            "Nuosu SIL",
        +            "Odibee Sans",
        +            "Odor Mean Chey",
        +            "Offside",
        +            "Oi",
        +            "Ojuju",
        +            "Old Standard TT",
        +            "Oldenburg",
        +            "Ole",
        +            "Oleo Script",
        +            "Oleo Script Swash Caps",
        +            "Onest",
        +            "Oooh Baby",
        +            "Open Sans",
        +            "Oranienbaum",
        +            "Orbit",
        +            "Orbitron",
        +            "Oregano",
        +            "Orelega One",
        +            "Orienta",
        +            "Original Surfer",
        +            "Oswald",
        +            "Outfit",
        +            "Over the Rainbow",
        +            "Overlock",
        +            "Overlock SC",
        +            "Overpass",
        +            "Overpass Mono",
        +            "Ovo",
        +            "Oxanium",
        +            "Oxygen",
        +            "Oxygen Mono",
        +            "PT Mono",
        +            "PT Sans",
        +            "PT Sans Caption",
        +            "PT Sans Narrow",
        +            "PT Serif",
        +            "PT Serif Caption",
        +            "Pacifico",
        +            "Padauk",
        +            "Padyakke Expanded One",
        +            "Palanquin",
        +            "Palanquin Dark",
        +            "Palette Mosaic",
        +            "Pangolin",
        +            "Paprika",
        +            "Parastoo",
        +            "Parisienne",
        +            "Parkinsans",
        +            "Passero One",
        +            "Passion One",
        +            "Passions Conflict",
        +            "Pathway Extreme",
        +            "Pathway Gothic One",
        +            "Patrick Hand",
        +            "Patrick Hand SC",
        +            "Pattaya",
        +            "Patua One",
        +            "Pavanam",
        +            "Paytone One",
        +            "Peddana",
        +            "Peralta",
        +            "Permanent Marker",
        +            "Petemoss",
        +            "Petit Formal Script",
        +            "Petrona",
        +            "Phetsarath",
        +            "Philosopher",
        +            "Phudu",
        +            "Piazzolla",
        +            "Piedra",
        +            "Pinyon Script",
        +            "Pirata One",
        +            "Pixelify Sans",
        +            "Plaster",
        +            "Platypi",
        +            "Play",
        +            "Playball",
        +            "Playfair",
        +            "Playfair Display",
        +            "Playfair Display SC",
        +            "Playpen Sans",
        +            "Playpen Sans Arabic",
        +            "Playpen Sans Deva",
        +            "Playpen Sans Hebrew",
        +            "Playpen Sans Thai",
        +            "Playwrite AR",
        +            "Playwrite AR Guides",
        +            "Playwrite AT",
        +            "Playwrite AT Guides",
        +            "Playwrite AU NSW",
        +            "Playwrite AU NSW Guides",
        +            "Playwrite AU QLD",
        +            "Playwrite AU QLD Guides",
        +            "Playwrite AU SA",
        +            "Playwrite AU SA Guides",
        +            "Playwrite AU TAS",
        +            "Playwrite AU TAS Guides",
        +            "Playwrite AU VIC",
        +            "Playwrite AU VIC Guides",
        +            "Playwrite BE VLG",
        +            "Playwrite BE VLG Guides",
        +            "Playwrite BE WAL",
        +            "Playwrite BE WAL Guides",
        +            "Playwrite BR",
        +            "Playwrite BR Guides",
        +            "Playwrite CA",
        +            "Playwrite CA Guides",
        +            "Playwrite CL",
        +            "Playwrite CL Guides",
        +            "Playwrite CO",
        +            "Playwrite CO Guides",
        +            "Playwrite CU",
        +            "Playwrite CU Guides",
        +            "Playwrite CZ",
        +            "Playwrite CZ Guides",
        +            "Playwrite DE Grund",
        +            "Playwrite DE Grund Guides",
        +            "Playwrite DE LA",
        +            "Playwrite DE LA Guides",
        +            "Playwrite DE SAS",
        +            "Playwrite DE SAS Guides",
        +            "Playwrite DE VA",
        +            "Playwrite DE VA Guides",
        +            "Playwrite DK Loopet",
        +            "Playwrite DK Loopet Guides",
        +            "Playwrite DK Uloopet",
        +            "Playwrite DK Uloopet Guides",
        +            "Playwrite ES",
        +            "Playwrite ES Deco",
        +            "Playwrite ES Deco Guides",
        +            "Playwrite ES Guides",
        +            "Playwrite FR Moderne",
        +            "Playwrite FR Moderne Guides",
        +            "Playwrite FR Trad",
        +            "Playwrite FR Trad Guides",
        +            "Playwrite GB J",
        +            "Playwrite GB J Guides",
        +            "Playwrite GB S",
        +            "Playwrite GB S Guides",
        +            "Playwrite HR",
        +            "Playwrite HR Guides",
        +            "Playwrite HR Lijeva",
        +            "Playwrite HR Lijeva Guides",
        +            "Playwrite HU",
        +            "Playwrite HU Guides",
        +            "Playwrite ID",
        +            "Playwrite ID Guides",
        +            "Playwrite IE",
        +            "Playwrite IE Guides",
        +            "Playwrite IN",
        +            "Playwrite IN Guides",
        +            "Playwrite IS",
        +            "Playwrite IS Guides",
        +            "Playwrite IT Moderna",
        +            "Playwrite IT Moderna Guides",
        +            "Playwrite IT Trad",
        +            "Playwrite IT Trad Guides",
        +            "Playwrite MX",
        +            "Playwrite MX Guides",
        +            "Playwrite NG Modern",
        +            "Playwrite NG Modern Guides",
        +            "Playwrite NL",
        +            "Playwrite NL Guides",
        +            "Playwrite NO",
        +            "Playwrite NO Guides",
        +            "Playwrite NZ",
        +            "Playwrite NZ Basic",
        +            "Playwrite NZ Basic Guides",
        +            "Playwrite NZ Guides",
        +            "Playwrite PE",
        +            "Playwrite PE Guides",
        +            "Playwrite PL",
        +            "Playwrite PL Guides",
        +            "Playwrite PT",
        +            "Playwrite PT Guides",
        +            "Playwrite RO",
        +            "Playwrite RO Guides",
        +            "Playwrite SK",
        +            "Playwrite SK Guides",
        +            "Playwrite TZ",
        +            "Playwrite TZ Guides",
        +            "Playwrite US Modern",
        +            "Playwrite US Modern Guides",
        +            "Playwrite US Trad",
        +            "Playwrite US Trad Guides",
        +            "Playwrite VN",
        +            "Playwrite VN Guides",
        +            "Playwrite ZA",
        +            "Playwrite ZA Guides",
        +            "Pliant",
        +            "Plus Jakarta Sans",
        +            "Pochaevsk",
        +            "Podkova",
        +            "Poetsen One",
        +            "Poiret One",
        +            "Poller One",
        +            "Poltawski Nowy",
        +            "Poly",
        +            "Pompiere",
        +            "Ponnala",
        +            "Ponomar",
        +            "Pontano Sans",
        +            "Poor Story",
        +            "Poppins",
        +            "Port Lligat Sans",
        +            "Port Lligat Slab",
        +            "Potta One",
        +            "Pragati Narrow",
        +            "Praise",
        +            "Prata",
        +            "Preahvihear",
        +            "Press Start 2P",
        +            "Pridi",
        +            "Princess Sofia",
        +            "Prociono",
        +            "Prompt",
        +            "Prosto One",
        +            "Protest Guerrilla",
        +            "Protest Revolution",
        +            "Protest Riot",
        +            "Protest Strike",
        +            "Proza Libre",
        +            "Public Sans",
        +            "Puppies Play",
        +            "Puritan",
        +            "Purple Purse",
        +            "Qahiri",
        +            "Quando",
        +            "Quantico",
        +            "Quattrocento",
        +            "Quattrocento Sans",
        +            "Questrial",
        +            "Quicksand",
        +            "Quintessential",
        +            "Qwigley",
        +            "Qwitcher Grypen",
        +            "REM",
        +            "Racing Sans One",
        +            "Radio Canada",
        +            "Radio Canada Big",
        +            "Radley",
        +            "Rajdhani",
        +            "Rakkas",
        +            "Raleway",
        +            "Raleway Dots",
        +            "Ramabhadra",
        +            "Ramaraja",
        +            "Rambla",
        +            "Rammetto One",
        +            "Rampart One",
        +            "Ramsina",
        +            "Ranchers",
        +            "Rancho",
        +            "Ranga",
        +            "Rasa",
        +            "Rationale",
        +            "Ravi Prakash",
        +            "Readex Pro",
        +            "Recursive",
        +            "Red Hat Display",
        +            "Red Hat Mono",
        +            "Red Hat Text",
        +            "Red Rose",
        +            "Redacted",
        +            "Redacted Script",
        +            "Reddit Mono",
        +            "Reddit Sans",
        +            "Reddit Sans Condensed",
        +            "Redressed",
        +            "Reem Kufi",
        +            "Reem Kufi Fun",
        +            "Reem Kufi Ink",
        +            "Reenie Beanie",
        +            "Reggae One",
        +            "Rethink Sans",
        +            "Revalia",
        +            "Rhodium Libre",
        +            "Ribeye",
        +            "Ribeye Marrow",
        +            "Righteous",
        +            "Risque",
        +            "Road Rage",
        +            "Roboto",
        +            "Roboto Condensed",
        +            "Roboto Flex",
        +            "Roboto Mono",
        +            "Roboto Serif",
        +            "Roboto Slab",
        +            "Rochester",
        +            "Rock 3D",
        +            "Rock Salt",
        +            "RocknRoll One",
        +            "Rokkitt",
        +            "Romanesco",
        +            "Ropa Sans",
        +            "Rosario",
        +            "Rosarivo",
        +            "Rouge Script",
        +            "Rowdies",
        +            "Rozha One",
        +            "Rubik",
        +            "Rubik 80s Fade",
        +            "Rubik Beastly",
        +            "Rubik Broken Fax",
        +            "Rubik Bubbles",
        +            "Rubik Burned",
        +            "Rubik Dirt",
        +            "Rubik Distressed",
        +            "Rubik Doodle Shadow",
        +            "Rubik Doodle Triangles",
        +            "Rubik Gemstones",
        +            "Rubik Glitch",
        +            "Rubik Glitch Pop",
        +            "Rubik Iso",
        +            "Rubik Lines",
        +            "Rubik Maps",
        +            "Rubik Marker Hatch",
        +            "Rubik Maze",
        +            "Rubik Microbe",
        +            "Rubik Mono One",
        +            "Rubik Moonrocks",
        +            "Rubik Pixels",
        +            "Rubik Puddles",
        +            "Rubik Scribble",
        +            "Rubik Spray Paint",
        +            "Rubik Storm",
        +            "Rubik Vinyl",
        +            "Rubik Wet Paint",
        +            "Ruda",
        +            "Rufina",
        +            "Ruge Boogie",
        +            "Ruluko",
        +            "Rum Raisin",
        +            "Ruslan Display",
        +            "Russo One",
        +            "Ruthie",
        +            "Ruwudu",
        +            "Rye",
        +            "SN Pro",
        +            "STIX Two Math",
        +            "STIX Two Text",
        +            "SUSE",
        +            "SUSE Mono",
        +            "Sacramento",
        +            "Sahitya",
        +            "Sail",
        +            "Saira",
        +            "Saira Condensed",
        +            "Saira Extra Condensed",
        +            "Saira Semi Condensed",
        +            "Saira Stencil",
        +            "Salsa",
        +            "Sanchez",
        +            "Sancreek",
        +            "Sankofa Display",
        +            "Sansation",
        +            "Sansita",
        +            "Sansita Swashed",
        +            "Sarabun",
        +            "Sarala",
        +            "Sarina",
        +            "Sarpanch",
        +            "Sassy Frass",
        +            "Satisfy",
        +            "Savate",
        +            "Sawarabi Gothic",
        +            "Sawarabi Mincho",
        +            "Scada",
        +            "Scheherazade New",
        +            "Schibsted Grotesk",
        +            "Schoolbell",
        +            "Science Gothic",
        +            "Scope One",
        +            "Seaweed Script",
        +            "Secular One",
        +            "Sedan",
        +            "Sedan SC",
        +            "Sedgwick Ave",
        +            "Sedgwick Ave Display",
        +            "Sekuya",
        +            "Sen",
        +            "Send Flowers",
        +            "Sevillana",
        +            "Seymour One",
        +            "Shadows Into Light",
        +            "Shadows Into Light Two",
        +            "Shafarik",
        +            "Shalimar",
        +            "Shantell Sans",
        +            "Shanti",
        +            "Share",
        +            "Share Tech",
        +            "Share Tech Mono",
        +            "Shippori Antique",
        +            "Shippori Antique B1",
        +            "Shippori Mincho",
        +            "Shippori Mincho B1",
        +            "Shizuru",
        +            "Shojumaru",
        +            "Short Stack",
        +            "Shrikhand",
        +            "Siemreap",
        +            "Sigmar",
        +            "Sigmar One",
        +            "Signika",
        +            "Signika Negative",
        +            "Silkscreen",
        +            "Simonetta",
        +            "Single Day",
        +            "Sintony",
        +            "Sirin Stencil",
        +            "Sirivennela",
        +            "Six Caps",
        +            "Sixtyfour",
        +            "Sixtyfour Convergence",
        +            "Skranji",
        +            "Slabo 13px",
        +            "Slabo 27px",
        +            "Slackey",
        +            "Slackside One",
        +            "Smokum",
        +            "Smooch",
        +            "Smooch Sans",
        +            "Smythe",
        +            "Sniglet",
        +            "Snippet",
        +            "Snowburst One",
        +            "Sofadi One",
        +            "Sofia",
        +            "Sofia Sans",
        +            "Sofia Sans Condensed",
        +            "Sofia Sans Extra Condensed",
        +            "Sofia Sans Semi Condensed",
        +            "Solitreo",
        +            "Solway",
        +            "Sometype Mono",
        +            "Song Myung",
        +            "Sono",
        +            "Sonsie One",
        +            "Sora",
        +            "Sorts Mill Goudy",
        +            "Sour Gummy",
        +            "Source Code Pro",
        +            "Source Sans 3",
        +            "Source Serif 4",
        +            "Space Grotesk",
        +            "Space Mono",
        +            "Special Elite",
        +            "Special Gothic",
        +            "Special Gothic Condensed One",
        +            "Special Gothic Expanded One",
        +            "Spectral",
        +            "Spectral SC",
        +            "Spicy Rice",
        +            "Spinnaker",
        +            "Spirax",
        +            "Splash",
        +            "Spline Sans",
        +            "Spline Sans Mono",
        +            "Squada One",
        +            "Square Peg",
        +            "Sree Krushnadevaraya",
        +            "Sriracha",
        +            "Srisakdi",
        +            "Staatliches",
        +            "Stack Sans Headline",
        +            "Stack Sans Notch",
        +            "Stack Sans Text",
        +            "Stalemate",
        +            "Stalinist One",
        +            "Stardos Stencil",
        +            "Stick",
        +            "Stick No Bills",
        +            "Stint Ultra Condensed",
        +            "Stint Ultra Expanded",
        +            "Stoke",
        +            "Story Script",
        +            "Strait",
        +            "Strichpunkt Sans",
        +            "Style Script",
        +            "Stylish",
        +            "Sue Ellen Francisco",
        +            "Suez One",
        +            "Sulphur Point",
        +            "Sumana",
        +            "Sunflower",
        +            "Sunshiney",
        +            "Supermercado One",
        +            "Sura",
        +            "Suranna",
        +            "Suravaram",
        +            "Suwannaphum",
        +            "Swanky and Moo Moo",
        +            "Syncopate",
        +            "Syne",
        +            "Syne Mono",
        +            "Syne Tactile",
        +            "TASA Explorer",
        +            "TASA Orbiter",
        +            "Tac One",
        +            "Tagesschrift",
        +            "Tai Heritage Pro",
        +            "Tajawal",
        +            "Tangerine",
        +            "Tapestry",
        +            "Taprom",
        +            "Tauri",
        +            "Taviraj",
        +            "Teachers",
        +            "Teko",
        +            "Tektur",
        +            "Telex",
        +            "Tenali Ramakrishna",
        +            "Tenor Sans",
        +            "Text Me One",
        +            "Texturina",
        +            "Thasadith",
        +            "The Girl Next Door",
        +            "The Nautigal",
        +            "Tienne",
        +            "TikTok Sans",
        +            "Tillana",
        +            "Tilt Neon",
        +            "Tilt Prism",
        +            "Tilt Warp",
        +            "Timmana",
        +            "Tinos",
        +            "Tiny5",
        +            "Tiro Bangla",
        +            "Tiro Devanagari Hindi",
        +            "Tiro Devanagari Marathi",
        +            "Tiro Devanagari Sanskrit",
        +            "Tiro Gurmukhi",
        +            "Tiro Kannada",
        +            "Tiro Tamil",
        +            "Tiro Telugu",
        +            "Tirra",
        +            "Titan One",
        +            "Titillium Web",
        +            "Tomorrow",
        +            "Tourney",
        +            "Trade Winds",
        +            "Train One",
        +            "Triodion",
        +            "Trirong",
        +            "Trispace",
        +            "Trocchi",
        +            "Trochut",
        +            "Truculenta",
        +            "Trykker",
        +            "Tsukimi Rounded",
        +            "Tuffy",
        +            "Tulpen One",
        +            "Turret Road",
        +            "Twinkle Star",
        +            "Ubuntu",
        +            "Ubuntu Condensed",
        +            "Ubuntu Mono",
        +            "Ubuntu Sans",
        +            "Ubuntu Sans Mono",
        +            "Uchen",
        +            "Ultra",
        +            "Unbounded",
        +            "Uncial Antiqua",
        +            "Underdog",
        +            "Unica One",
        +            "UnifrakturCook",
        +            "UnifrakturMaguntia",
        +            "Unkempt",
        +            "Unlock",
        +            "Unna",
        +            "UoqMunThenKhung",
        +            "Updock",
        +            "Urbanist",
        +            "VT323",
        +            "Vampiro One",
        +            "Varela",
        +            "Varela Round",
        +            "Varta",
        +            "Vast Shadow",
        +            "Vazirmatn",
        +            "Vend Sans",
        +            "Vesper Libre",
        +            "Viaoda Libre",
        +            "Vibes",
        +            "Vibur",
        +            "Victor Mono",
        +            "Vidaloka",
        +            "Viga",
        +            "Vina Sans",
        +            "Voces",
        +            "Volkhov",
        +            "Vollkorn",
        +            "Vollkorn SC",
        +            "Voltaire",
        +            "Vujahday Script",
        +            "WDXL Lubrifont JP N",
        +            "WDXL Lubrifont SC",
        +            "WDXL Lubrifont TC",
        +            "Waiting for the Sunrise",
        +            "Wallpoet",
        +            "Walter Turncoat",
        +            "Warnes",
        +            "Water Brush",
        +            "Waterfall",
        +            "Wavefont",
        +            "Wellfleet",
        +            "Wendy One",
        +            "Whisper",
        +            "WindSong",
        +            "Winky Rough",
        +            "Winky Sans",
        +            "Wire One",
        +            "Wittgenstein",
        +            "Wix Madefor Display",
        +            "Wix Madefor Text",
        +            "Work Sans",
        +            "Workbench",
        +            "Xanh Mono",
        +            "Yaldevi",
        +            "Yanone Kaffeesatz",
        +            "Yantramanav",
        +            "Yarndings 12",
        +            "Yarndings 12 Charted",
        +            "Yarndings 20",
        +            "Yarndings 20 Charted",
        +            "Yatra One",
        +            "Yellowtail",
        +            "Yeon Sung",
        +            "Yeseva One",
        +            "Yesteryear",
        +            "Yomogi",
        +            "Young Serif",
        +            "Yrsa",
        +            "Ysabeau",
        +            "Ysabeau Infant",
        +            "Ysabeau Office",
        +            "Ysabeau SC",
        +            "Yuji Boku",
        +            "Yuji Hentaigana Akari",
        +            "Yuji Hentaigana Akebono",
        +            "Yuji Mai",
        +            "Yuji Syuku",
        +            "Yusei Magic",
        +            "Yuyu",
        +            "Yuyu Short",
        +            "ZCOOL KuaiLe",
        +            "ZCOOL QingKe HuangYou",
        +            "ZCOOL XiaoWei",
        +            "Zain",
        +            "Zalando Sans",
        +            "Zalando Sans Expanded",
        +            "Zalando Sans SemiExpanded",
        +            "Zen Antique",
        +            "Zen Antique Soft",
        +            "Zen Dots",
        +            "Zen Kaku Gothic Antique",
        +            "Zen Kaku Gothic New",
        +            "Zen Kurenaido",
        +            "Zen Loop",
        +            "Zen Maru Gothic",
        +            "Zen Old Mincho",
        +            "Zen Tokyo Zoo",
        +            "Zeyada",
        +            "Zhi Mang Xing",
        +            "Zilla Slab",
        +            "Zilla Slab Highlight"
        +          ],
        +          "type": "string"
        +        },
        +        "fontSize": {
        +          "type": "number"
        +        },
        +        "footerColor": {
        +          "type": "string"
        +        },
        +        "footerFontSize": {
        +          "type": "number"
        +        },
        +        "footerGap": {
        +          "type": "number"
        +        },
        +        "footerLinkColor": {
        +          "type": "string"
        +        },
        +        "gridColor": {
        +          "type": "string"
        +        },
        +        "gridLineWidth": {
        +          "type": "number"
        +        },
        +        "gridLines": {
        +          "enum": [
        +            "none",
        +            "value",
        +            "both"
        +          ],
        +          "type": "string"
        +        },
        +        "headerGap": {
        +          "type": "number"
        +        },
        +        "labelColor": {
        +          "type": "string"
        +        },
        +        "labelFontSize": {
        +          "type": "number"
        +        },
        +        "labelFontWeight": {
        +          "type": "string"
        +        },
        +        "labelHaloWidth": {
        +          "type": "number"
        +        },
        +        "labelMutedFontWeight": {
        +          "type": "string"
        +        },
        +        "labelMutedOpacity": {
        +          "type": "number"
        +        },
        +        "lineStrokeWidth": {
        +          "type": "number"
        +        },
        +        "numericFontFamily": {
        +          "type": "string"
        +        },
        +        "pieCornerRadius": {
        +          "type": "number"
        +        },
        +        "sequentialRange": {
        +          "items": [
        +            {
        +              "type": "string"
        +            },
        +            {
        +              "type": "string"
        +            }
        +          ],
        +          "maxItems": 2,
        +          "minItems": 2,
        +          "type": "array"
        +        },
        +        "subtitleColor": {
        +          "type": "string"
        +        },
        +        "subtitleFontSize": {
        +          "type": "number"
        +        },
        +        "tickDensity": {
        +          "type": "number"
        +        },
        +        "tickLabelColor": {
        +          "type": "string"
        +        },
        +        "tickLabelFontWeight": {
        +          "type": "string"
        +        },
        +        "tickPadding": {
        +          "type": "number"
        +        },
        +        "tickSize": {
        +          "type": "number"
        +        },
        +        "titleColor": {
        +          "type": "string"
        +        },
        +        "titleFontFamily": {
        +          "type": "string"
        +        },
        +        "titleFontSize": {
        +          "type": "number"
        +        },
        +        "titleFontWeight": {
        +          "type": "string"
        +        },
        +        "titleSubtitleGap": {
        +          "type": "number"
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "title": {
        +      "type": "string"
        +    },
        +    "version": {
        +      "const": "2026-03-20",
        +      "type": "string"
        +    },
        +    "width": {
        +      "maximum": 4096,
        +      "minimum": 1,
        +      "type": "integer"
        +    },
        +    "x": {
        +      "additionalProperties": {},
        +      "properties": {
        +        "display": {
        +          "default": true,
        +          "type": "boolean"
        +        },
        +        "domain": {
        +          "anyOf": [
        +            {
        +              "items": [
        +                {
        +                  "type": "number"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ],
        +              "maxItems": 2,
        +              "minItems": 2,
        +              "type": "array"
        +            },
        +            {
        +              "items": {
        +                "type": "string"
        +              },
        +              "type": "array"
        +            }
        +          ]
        +        },
        +        "label": {
        +          "type": "string"
        +        },
        +        "nice": {
        +          "type": "boolean"
        +        },
        +        "tickFormat": {
        +          "type": "string"
        +        },
        +        "type": {
        +          "enum": [
        +            "linear",
        +            "utc",
        +            "band"
        +          ],
        +          "type": "string"
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "y": {
        +      "additionalProperties": {},
        +      "properties": {
        +        "display": {
        +          "default": true,
        +          "type": "boolean"
        +        },
        +        "domain": {
        +          "anyOf": [
        +            {
        +              "items": [
        +                {
        +                  "type": "number"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ],
        +              "maxItems": 2,
        +              "minItems": 2,
        +              "type": "array"
        +            },
        +            {
        +              "items": {
        +                "type": "string"
        +              },
        +              "type": "array"
        +            }
        +          ]
        +        },
        +        "label": {
        +          "type": "string"
        +        },
        +        "nice": {
        +          "type": "boolean"
        +        },
        +        "tickFormat": {
        +          "type": "string"
        +        },
        +        "type": {
        +          "enum": [
        +            "linear",
        +            "utc",
        +            "band"
        +          ],
        +          "type": "string"
        +        }
        +      },
        +      "type": "object"
        +    }
        +  },
        +  "required": [
        +    "version",
        +    "format",
        +    "marks"
        +  ],
        +  "title": "Szum Chart Configuration",
        +  "type": "object"
        +}
      • changedOutput schema / required
        Previous value: -[
        -  "valid",
        -  "message",
        -  "errors"
        -]New value: +[
        +  "valid",
        +  "message",
        +  "errors",
        +  "diagnostics"
        +]
  5. 4 tool updates
    • Changedrender_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. A categorical fill or stroke field creates color series; group only chooses stack or dodge after that field exists and never creates a series by itself. When multiple rows share a bar position, map their series field to fill or stroke, or aggregate to one row per position. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."New value: +"JSON string of a complete chart config. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Configure axes with top-level x and y; hide one with display: false, never axes, scales, or axis. Put shared data at chart level and distinct layer data on its mark. When rows share a bar position, map a series field to fill or stroke before setting group, or aggregate the rows."
    • Changedsave_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. A categorical fill or stroke field creates color series; group only chooses stack or dodge after that field exists and never creates a series by itself. When multiple rows share a bar position, map their series field to fill or stroke, or aggregate to one row per position. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."New value: +"JSON string of a complete chart config. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Configure axes with top-level x and y; hide one with display: false, never axes, scales, or axis. Put shared data at chart level and distinct layer data on its mark. When rows share a bar position, map a series field to fill or stroke before setting group, or aggregate the rows."
    • Changedupdate_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. A categorical fill or stroke field creates color series; group only chooses stack or dodge after that field exists and never creates a series by itself. When multiple rows share a bar position, map their series field to fill or stroke, or aggregate to one row per position. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."New value: +"JSON string of a complete chart config. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Configure axes with top-level x and y; hide one with display: false, never axes, scales, or axis. Put shared data at chart level and distinct layer data on its mark. When rows share a bar position, map a series field to fill or stroke before setting group, or aggregate the rows."
    • Changedvalidate_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. A categorical fill or stroke field creates color series; group only chooses stack or dodge after that field exists and never creates a series by itself. When multiple rows share a bar position, map their series field to fill or stroke, or aggregate to one row per position. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."New value: +"JSON string of a complete chart config. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Configure axes with top-level x and y; hide one with display: false, never axes, scales, or axis. Put shared data at chart level and distinct layer data on its mark. When rows share a bar position, map a series field to fill or stroke before setting group, or aggregate the rows."
  6. 1 tool update
    • Changedget_chart_config2 fields changed
      • changedOutput schema / properties / x / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "band",
        -  "utc"
        -]New value: +[
        +  "linear",
        +  "utc",
        +  "band"
        +]
      • changedOutput schema / properties / y / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "band",
        -  "utc"
        -]New value: +[
        +  "linear",
        +  "utc",
        +  "band"
        +]
  7. 4 tool updates
    • Changedrender_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."New value: +"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. A categorical fill or stroke field creates color series; group only chooses stack or dodge after that field exists and never creates a series by itself. When multiple rows share a bar position, map their series field to fill or stroke, or aggregate to one row per position. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."
    • Changedsave_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."New value: +"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. A categorical fill or stroke field creates color series; group only chooses stack or dodge after that field exists and never creates a series by itself. When multiple rows share a bar position, map their series field to fill or stroke, or aggregate to one row per position. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."
    • Changedupdate_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."New value: +"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. A categorical fill or stroke field creates color series; group only chooses stack or dodge after that field exists and never creates a series by itself. When multiple rows share a bar position, map their series field to fill or stroke, or aggregate to one row per position. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."
    • Changedvalidate_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."New value: +"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. A categorical fill or stroke field creates color series; group only chooses stack or dodge after that field exists and never creates a series by itself. When multiple rows share a bar position, map their series field to fill or stroke, or aggregate to one row per position. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."
  8. 1 tool update
    • Changedget_chart_config2 fields changed
      • addedOutput schema / properties / x / properties / nice
        Added value: +{
        +  "type": "boolean"
        +}
      • addedOutput schema / properties / y / properties / nice
        Added value: +{
        +  "type": "boolean"
        +}
  9. 6 tool updates
    • Changedget_chart_config2 fields changed
      • changedOutput schema / properties / attribution / description
        Previous value: -"Show a small \"made with szum\" credit in the bottom-right. Always on for free and keyless renders; Pro omits it by default and sets true to opt in."New value: +"Show a small \"Made with Szum\" credit in the bottom-right. Always on for free and keyless renders; Creator and Pro omit it by default and set true to opt in."
      • changedOutput schema / title
        Previous value: -"szum Chart Configuration"New value: +"Szum Chart Configuration"
    • Addedget_preview_state
    • Changedrender_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration"New value: +"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."
    • Changedsave_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration"New value: +"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."
    • Changedupdate_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration"New value: +"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."
    • Changedvalidate_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration to validate"New value: +"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."
  10. 1 tool update
    • Changedget_chart_config2 fields changed
      • changedOutput schema / properties / locale / description
        Previous value: -"BCP 47 language tag associated with the chart content, such as en, pl, or zh-Hant."New value: +"Locale identifier accepted by JavaScript Intl and associated with the chart content, such as en, pl, or zh-Hant."
      • addedOutput schema / properties / locale / pattern
        Added value: +"^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$"
  11. 1 tool update
    • Changedget_chart_config1 field changed
      • addedOutput schema / properties / locale
        Added value: +{
        +  "description": "BCP 47 language tag associated with the chart content, such as en, pl, or zh-Hant.",
        +  "type": "string"
        +}
  12. 3 tool updates
    • Changedget_examples1 field changed
      • changedInput schema / properties / mark_type / enum
        Previous value: -[
        -  "barY",
        -  "barX",
        -  "line",
        -  "dot",
        -  "areaY",
        -  "areaX",
        -  "text",
        -  "pie",
        -  "ruleX",
        -  "ruleY"
        -]New value: +[
        +  "dot",
        +  "line",
        +  "barY",
        +  "barX",
        +  "areaY",
        +  "areaX",
        +  "pie",
        +  "text",
        +  "ruleX",
        +  "ruleY"
        +]
    • Changedlist_marks1 field changed
      • addedOutput schema / properties / marks / items / properties / type / enum
        Added value: +[
        +  "dot",
        +  "line",
        +  "barY",
        +  "barX",
        +  "areaY",
        +  "areaX",
        +  "pie",
        +  "text",
        +  "ruleX",
        +  "ruleY"
        +]
    • Changedlist_themes1 field changed
      • addedOutput schema / properties / themes / items / properties / name / enum
        Added value: +[
        +  "editorial",
        +  "clean",
        +  "noir",
        +  "loud",
        +  "soft",
        +  "technical"
        +]
  13. 2 tool updates
    • Addeddelete_chart
    • Addedrename_chart

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Enables brand visibility monitoring across major AI platforms like ChatGPT, Claude, Gemini, and Perplexity. It allows users to track visibility scores, analyze competitor data, and receive actionable insights to improve AI-generated brand recommendations.
    16
    7 npm
    1
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables tracking competitor websites, changelogs, blog feeds, and pricing pages with meaningful diffs, classification, and Markdown digests via MCP tools for listing, adding, removing competitors, running checks, and retrieving digests or changes.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Browse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources