From 6f87054c76b3904a5dd410adfe3f00ecac8c6f72 Mon Sep 17 00:00:00 2001 From: OJ Kwon <1210596+kwonoj@users.noreply.github.com> Date: Tue, 20 Feb 2024 21:11:40 -0800 Subject: [PATCH 1/4] fix(next-core): properly normalize app route for _ (#62307) ### What This PR amends turbopack's behavior to handle some cases of normalized path (`%5F` starting path), mainly fixes entry lookup works against original path without normalization, also bends the output path of client reference manifest matchs to what next.js expects. Closes PACK-2553 --- .../next-swc/crates/next-core/src/app_structure.rs | 7 +------ .../src/next_manifests/client_reference_manifest.rs | 10 ++++++++-- test/turbopack-tests-manifest.json | 10 +++++----- 3 files changed, 14 insertions(+), 13 deletions(-) diff --git a/packages/next-swc/crates/next-core/src/app_structure.rs b/packages/next-swc/crates/next-core/src/app_structure.rs index ab8cfeb954e54..725023fd56489 100644 --- a/packages/next-swc/crates/next-core/src/app_structure.rs +++ b/packages/next-swc/crates/next-core/src/app_structure.rs @@ -381,7 +381,7 @@ async fn get_directory_tree_internal( // appDir ignores paths starting with an underscore if !basename.starts_with('_') { let result = get_directory_tree(dir, page_extensions); - subdirectories.insert(get_underscore_normalized_path(basename), result); + subdirectories.insert(basename.to_string(), result); } } // TODO(WEB-952) handle symlinks in app dir @@ -1145,11 +1145,6 @@ async fn directory_tree_to_entrypoints_internal_untraced( Ok(Vc::cell(result)) } -/// If path contains %5F, replace it with _. [reference](https://github.com/vercel/next.js/blob/c390c1662bc79e12cf7c037dcb382ef5ead6e492/packages/next/src/build/entries.ts#L119) -fn get_underscore_normalized_path(path: &str) -> String { - path.replace("%5F", "_") -} - /// Returns the global metadata for an app directory. #[turbo_tasks::function] pub async fn get_global_metadata( diff --git a/packages/next-swc/crates/next-core/src/next_manifests/client_reference_manifest.rs b/packages/next-swc/crates/next-core/src/next_manifests/client_reference_manifest.rs index 51391e9e6fa82..286fe3837a239 100644 --- a/packages/next-swc/crates/next-core/src/next_manifests/client_reference_manifest.rs +++ b/packages/next-swc/crates/next-core/src/next_manifests/client_reference_manifest.rs @@ -208,9 +208,15 @@ impl ClientReferenceManifest { let client_reference_manifest_json = serde_json::to_string(&entry_manifest).unwrap(); + // We put normalized path for the each entry key and the manifest output path, + // to conform next.js's load client reference manifest behavior: + // https://github.com/vercel/next.js/blob/2f9d718695e4c90be13c3bf0f3647643533071bf/packages/next/src/server/load-components.ts#L162-L164 + // note this only applies to the manifests, assets are placed to the original + // path still (same as webpack does) + let normalized_manifest_entry = entry_name.replace("%5F", "_"); Ok(Vc::upcast(VirtualOutputAsset::new( node_root.join(format!( - "server/app/{entry_name}_client-reference-manifest.js", + "server/app{normalized_manifest_entry}_client-reference-manifest.js", )), AssetContent::file( File::from(formatdoc! { @@ -218,7 +224,7 @@ impl ClientReferenceManifest { globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {{}}; globalThis.__RSC_MANIFEST[{entry_name}] = {manifest} "#, - entry_name = StringifyJs(&entry_name), + entry_name = StringifyJs(&normalized_manifest_entry), manifest = &client_reference_manifest_json }) .into(), diff --git a/test/turbopack-tests-manifest.json b/test/turbopack-tests-manifest.json index 170cf4f41b398..33b2c4a765b45 100644 --- a/test/turbopack-tests-manifest.json +++ b/test/turbopack-tests-manifest.json @@ -2220,11 +2220,10 @@ "test/e2e/app-dir/_allow-underscored-root-directory/_allow-underscored-root-directory.test.ts": { "passed": [ "_allow-underscored-root-directory should not serve app path with underscore", - "_allow-underscored-root-directory should pages path with a underscore at the root" - ], - "failed": [ + "_allow-underscored-root-directory should pages path with a underscore at the root", "_allow-underscored-root-directory should serve app path with %5F" ], + "failed": [], "pending": [], "flakey": [], "runtimeError": false @@ -4668,9 +4667,10 @@ "test/e2e/app-dir/underscore-ignore-app-paths/underscore-ignore-app-paths.test.ts": { "passed": [ "underscore-ignore-app-paths should not serve app path with underscore", - "underscore-ignore-app-paths should serve pages path with underscore" + "underscore-ignore-app-paths should serve pages path with underscore", + "underscore-ignore-app-paths should serve app path with %5F" ], - "failed": ["underscore-ignore-app-paths should serve app path with %5F"], + "failed": [], "pending": [], "flakey": [], "runtimeError": false From 9feaffaf68796f357741e655d95ef9bea0c2aff6 Mon Sep 17 00:00:00 2001 From: suu3 Date: Wed, 21 Feb 2024 14:56:07 +0900 Subject: [PATCH 2/4] docs: add an explanation about prefetch on hover to the link.mdx (#62182) Hello, I noticed the following code in `link.tsx`. ``` //client/link.tsx ... onMouseEnter(e) { ... if ( (!prefetchEnabled || process.env.NODE_ENV === 'development') && isAppRouter ) { return } prefetch( ... ) }, ``` It seems that when prefetch={false} is set, prefetch still occurs on hover for page routers. However, there is no explanation in the documentation, which caused misleading. I added the explanation inside PageOnly component, could you please review it? --- docs/02-app/02-api-reference/01-components/link.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/02-app/02-api-reference/01-components/link.mdx b/docs/02-app/02-api-reference/01-components/link.mdx index bd5a98062d0cd..6409faddff8b0 100644 --- a/docs/02-app/02-api-reference/01-components/link.mdx +++ b/docs/02-app/02-api-reference/01-components/link.mdx @@ -222,6 +222,8 @@ Prefetching happens when a `` component enters the user's viewport (init - **`true` (default)**: The full route and its data will be prefetched. - `false`: Prefetching will be disabled. +> **Good to know**: When `prefetch` is set to `false`, prefetching will still occur on hover. + ```tsx filename="pages/index.tsx" switcher import Link from 'next/link' From 745b1b59b21905d02c3968b0d7bb554bc2291175 Mon Sep 17 00:00:00 2001 From: Sam Ko Date: Tue, 20 Feb 2024 22:04:56 -0800 Subject: [PATCH 3/4] =?UTF-8?q?fix(next-font):=20update=20capsize=20css=20?= =?UTF-8?q?so=20fallbacks=20are=20updated=20with=20the=20=E2=80=A6=20(#623?= =?UTF-8?q?09)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description We need to manually update the `@capsizecss/metrics` every time it updates so we get the latest fallback fonts. ## Changes - https://github.com/vercel/next.js/issues/47115 Closes NEXT-2547 --- packages/next/package.json | 2 +- .../next/src/server/google-font-metrics.json | 12872 ---------------- packages/next/taskfile.js | 5 - pnpm-lock.yaml | 8 +- test/e2e/next-font/google-fetch-error.test.ts | 6 +- test/e2e/next-font/index.test.ts | 12 +- .../font-optimization/test/index.test.js | 6 +- 7 files changed, 17 insertions(+), 12894 deletions(-) delete mode 100644 packages/next/src/server/google-font-metrics.json diff --git a/packages/next/package.json b/packages/next/package.json index 9d8d4f254adf9..f8ed9a1d3fd3d 100644 --- a/packages/next/package.json +++ b/packages/next/package.json @@ -136,7 +136,7 @@ "@babel/runtime": "7.22.5", "@babel/traverse": "7.22.5", "@babel/types": "7.22.5", - "@capsizecss/metrics": "1.1.0", + "@capsizecss/metrics": "2.0.0", "@edge-runtime/cookies": "4.0.2", "@edge-runtime/ponyfill": "2.4.1", "@edge-runtime/primitives": "4.0.2", diff --git a/packages/next/src/server/google-font-metrics.json b/packages/next/src/server/google-font-metrics.json deleted file mode 100644 index 2aa75f45eb4a4..0000000000000 --- a/packages/next/src/server/google-font-metrics.json +++ /dev/null @@ -1,12872 +0,0 @@ -{ - "Almendra": { - "category": "serif", - "ascent": 951, - "descent": -345, - "lineGap": 0, - "xAvgCharWidth": 484, - "unitsPerEm": 1000, - "azAvgWidth": 421.09302325581393 - }, - "Armata": { - "category": "sans-serif", - "ascent": 2000, - "descent": -560, - "lineGap": 0, - "xAvgCharWidth": 1244, - "unitsPerEm": 2048, - "azAvgWidth": 1114.3720930232557 - }, - "Almendra SC": { - "category": "serif", - "ascent": 939, - "descent": -251, - "lineGap": 0, - "xAvgCharWidth": 442, - "unitsPerEm": 1000, - "azAvgWidth": 451.06976744186045 - }, - "Chela One": { - "category": "display", - "ascent": 942, - "descent": -235, - "lineGap": 0, - "xAvgCharWidth": 463, - "unitsPerEm": 1000, - "azAvgWidth": 384.0232558139535 - }, - "Alumni Sans Collegiate One": { - "category": "sans-serif", - "ascent": 900, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 375, - "unitsPerEm": 1000, - "azAvgWidth": 318.93023255813955 - }, - "Bayon": { - "category": "sans-serif", - "ascent": 2500, - "descent": -1200, - "lineGap": 0, - "xAvgCharWidth": 1033, - "unitsPerEm": 2048, - "azAvgWidth": 840.8604651162791 - }, - "Anek Tamil": { - "category": "sans-serif", - "ascent": 1963, - "descent": -853, - "lineGap": 0, - "xAvgCharWidth": 1696, - "unitsPerEm": 2000, - "azAvgWidth": 887.2558139534884 - }, - "Bellefair": { - "category": "serif", - "ascent": 869, - "descent": -277, - "lineGap": 0, - "xAvgCharWidth": 489, - "unitsPerEm": 1000, - "azAvgWidth": 377.48837209302326 - }, - "Battambang": { - "category": "display", - "ascent": 2500, - "descent": -1200, - "lineGap": 0, - "xAvgCharWidth": 1235, - "unitsPerEm": 2048, - "azAvgWidth": 1032.2790697674418 - }, - "Averia Libre": { - "category": "display", - "ascent": 1952, - "descent": -492, - "lineGap": 0, - "xAvgCharWidth": 916, - "unitsPerEm": 2048, - "azAvgWidth": 943.6279069767442 - }, - "Cabin Condensed": { - "category": "sans-serif", - "ascent": 965, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 462, - "unitsPerEm": 1000, - "azAvgWidth": 379.5348837209302 - }, - "Cambo": { - "category": "serif", - "ascent": 879, - "descent": -243, - "lineGap": 0, - "xAvgCharWidth": 449, - "unitsPerEm": 1000, - "azAvgWidth": 464.27906976744185 - }, - "Bungee Outline": { - "category": "display", - "ascent": 860, - "descent": -140, - "lineGap": 200, - "xAvgCharWidth": 783, - "unitsPerEm": 1000, - "azAvgWidth": 638 - }, - "Cabin": { - "category": "sans-serif", - "ascent": 1930, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 1054, - "unitsPerEm": 2000, - "azAvgWidth": 866.3720930232558 - }, - "Amatic SC": { - "category": "handwriting", - "ascent": 1016, - "descent": -245, - "lineGap": 0, - "xAvgCharWidth": 335, - "unitsPerEm": 1000, - "azAvgWidth": 290.51162790697674 - }, - "Alegreya": { - "category": "serif", - "ascent": 1016, - "descent": -345, - "lineGap": 0, - "xAvgCharWidth": 549, - "unitsPerEm": 1000, - "azAvgWidth": 419.4651162790698 - }, - "Bakbak One": { - "category": "display", - "ascent": 1050, - "descent": -350, - "lineGap": 0, - "xAvgCharWidth": 755, - "unitsPerEm": 1000, - "azAvgWidth": 485.09302325581393 - }, - "Bilbo": { - "category": "handwriting", - "ascent": 850, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 489, - "unitsPerEm": 1000, - "azAvgWidth": 272.48837209302326 - }, - "Bellota": { - "category": "display", - "ascent": 968, - "descent": -290, - "lineGap": 0, - "xAvgCharWidth": 584, - "unitsPerEm": 1000, - "azAvgWidth": 466.69767441860466 - }, - "BenchNine": { - "category": "sans-serif", - "ascent": 2020, - "descent": -720, - "lineGap": 0, - "xAvgCharWidth": 744, - "unitsPerEm": 2048, - "azAvgWidth": 595.2790697674419 - }, - "Arsenal": { - "category": "sans-serif", - "ascent": 1000, - "descent": -254, - "lineGap": 0, - "xAvgCharWidth": 522, - "unitsPerEm": 1000, - "azAvgWidth": 408.25581395348837 - }, - "Baloo Tammudu 2": { - "category": "display", - "ascent": 1177, - "descent": -1119, - "lineGap": 0, - "xAvgCharWidth": 720, - "unitsPerEm": 1000, - "azAvgWidth": 442.3720930232558 - }, - "Butterfly Kids": { - "category": "handwriting", - "ascent": 917, - "descent": -304, - "lineGap": 0, - "xAvgCharWidth": 300, - "unitsPerEm": 1024, - "azAvgWidth": 308.7674418604651 - }, - "Englebert": { - "category": "sans-serif", - "ascent": 954, - "descent": -311, - "lineGap": 0, - "xAvgCharWidth": 787, - "unitsPerEm": 2048, - "azAvgWidth": 809.1627906976744 - }, - "Seaweed Script": { - "category": "display", - "ascent": 969, - "descent": -421, - "lineGap": 0, - "xAvgCharWidth": 370, - "unitsPerEm": 1024, - "azAvgWidth": 375.4651162790698 - }, - "Noto Serif Georgian": { - "category": "serif", - "ascent": 1068, - "descent": -292, - "lineGap": 0, - "xAvgCharWidth": 610, - "unitsPerEm": 1000, - "azAvgWidth": 497.2325581395349 - }, - "Brawler": { - "category": "serif", - "ascent": 971, - "descent": -248, - "lineGap": 0, - "xAvgCharWidth": 565, - "unitsPerEm": 1000, - "azAvgWidth": 485.2093023255814 - }, - "Baloo Chettan 2": { - "category": "display", - "ascent": 1078, - "descent": -392, - "lineGap": 0, - "xAvgCharWidth": 621, - "unitsPerEm": 1000, - "azAvgWidth": 442.3720930232558 - }, - "Atma": { - "category": "display", - "ascent": 1101, - "descent": -518, - "lineGap": 0, - "xAvgCharWidth": 534, - "unitsPerEm": 1000, - "azAvgWidth": 388.1162790697674 - }, - "Akaya Kanadaka": { - "category": "display", - "ascent": 920, - "descent": -276, - "lineGap": 0, - "xAvgCharWidth": 685, - "unitsPerEm": 1000, - "azAvgWidth": 417.27906976744185 - }, - "Astloch": { - "category": "display", - "ascent": 1948, - "descent": -526, - "lineGap": 53, - "xAvgCharWidth": 988, - "unitsPerEm": 2048, - "azAvgWidth": 691.9767441860465 - }, - "Arizonia": { - "category": "handwriting", - "ascent": 900, - "descent": -350, - "lineGap": 0, - "xAvgCharWidth": 546, - "unitsPerEm": 1000, - "azAvgWidth": 353.0232558139535 - }, - "BIZ UDGothic": { - "category": "sans-serif", - "ascent": 1802, - "descent": -246, - "lineGap": 0, - "xAvgCharWidth": 1718, - "unitsPerEm": 2048, - "azAvgWidth": 1024 - }, - "Montserrat Subrayada": { - "category": "sans-serif", - "ascent": 968, - "descent": -251, - "lineGap": 0, - "xAvgCharWidth": 627, - "unitsPerEm": 1000, - "azAvgWidth": 641.0232558139535 - }, - "Noto Sans Lao": { - "category": "sans-serif", - "ascent": 1183, - "descent": -462, - "lineGap": 0, - "xAvgCharWidth": 556, - "unitsPerEm": 1000, - "azAvgWidth": 485.8139534883721 - }, - "Aref Ruqaa": { - "category": "serif", - "ascent": 1221, - "descent": -244, - "lineGap": 98, - "xAvgCharWidth": 499, - "unitsPerEm": 1000, - "azAvgWidth": 446 - }, - "Noto Sans Ogham": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 538, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Cabin Sketch": { - "category": "display", - "ascent": 873, - "descent": -298, - "lineGap": 0, - "xAvgCharWidth": 502, - "unitsPerEm": 1000, - "azAvgWidth": 455.4651162790698 - }, - "Anybody": { - "category": "display", - "ascent": 1590, - "descent": -480, - "lineGap": 0, - "xAvgCharWidth": 190, - "unitsPerEm": 2000, - "azAvgWidth": 1017.6744186046511 - }, - "Alice": { - "category": "serif", - "ascent": 909, - "descent": -234, - "lineGap": 0, - "xAvgCharWidth": 591, - "unitsPerEm": 1000, - "azAvgWidth": 465.86046511627904 - }, - "Baloo Bhaina 2": { - "category": "display", - "ascent": 1185, - "descent": -827, - "lineGap": 0, - "xAvgCharWidth": 556, - "unitsPerEm": 1000, - "azAvgWidth": 442.3720930232558 - }, - "Averia Serif Libre": { - "category": "display", - "ascent": 1828, - "descent": -465, - "lineGap": 184, - "xAvgCharWidth": 939, - "unitsPerEm": 2048, - "azAvgWidth": 968.953488372093 - }, - "Coda": { - "category": "display", - "ascent": 2124, - "descent": -784, - "lineGap": 0, - "xAvgCharWidth": 906, - "unitsPerEm": 2048, - "azAvgWidth": 933.5116279069767 - }, - "Palanquin": { - "category": "sans-serif", - "ascent": 1320, - "descent": -491, - "lineGap": 0, - "xAvgCharWidth": 794, - "unitsPerEm": 1000, - "azAvgWidth": 443.4418604651163 - }, - "Baloo Bhaijaan 2": { - "category": "display", - "ascent": 1080, - "descent": -632, - "lineGap": 0, - "xAvgCharWidth": 581, - "unitsPerEm": 1000, - "azAvgWidth": 442.3720930232558 - }, - "Chonburi": { - "category": "display", - "ascent": 950, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 669, - "unitsPerEm": 1000, - "azAvgWidth": 587.0232558139535 - }, - "Arbutus Slab": { - "category": "serif", - "ascent": 2010, - "descent": -550, - "lineGap": 0, - "xAvgCharWidth": 1283, - "unitsPerEm": 2048, - "azAvgWidth": 1039.2558139534883 - }, - "Delius": { - "category": "handwriting", - "ascent": 986, - "descent": -270, - "lineGap": 0, - "xAvgCharWidth": 448, - "unitsPerEm": 1000, - "azAvgWidth": 462.51162790697674 - }, - "Averia Sans Libre": { - "category": "display", - "ascent": 2035, - "descent": -499, - "lineGap": 0, - "xAvgCharWidth": 898, - "unitsPerEm": 2048, - "azAvgWidth": 924.0930232558139 - }, - "Baloo Paaji 2": { - "category": "display", - "ascent": 1157, - "descent": -614, - "lineGap": 0, - "xAvgCharWidth": 519, - "unitsPerEm": 1000, - "azAvgWidth": 442.3720930232558 - }, - "Coiny": { - "category": "display", - "ascent": 750, - "descent": 250, - "lineGap": 600, - "xAvgCharWidth": 516, - "unitsPerEm": 1000, - "azAvgWidth": 532.6046511627907 - }, - "Zilla Slab Highlight": { - "category": "display", - "ascent": 944, - "descent": -256, - "lineGap": 0, - "xAvgCharWidth": 527, - "unitsPerEm": 1000, - "azAvgWidth": 445.7906976744186 - }, - "Changa One": { - "category": "display", - "ascent": 882, - "descent": -180, - "lineGap": 0, - "xAvgCharWidth": 452, - "unitsPerEm": 1000, - "azAvgWidth": 470.04651162790697 - }, - "Bentham": { - "category": "serif", - "ascent": 879, - "descent": -260, - "lineGap": 92, - "xAvgCharWidth": 423, - "unitsPerEm": 1024, - "azAvgWidth": 440.0232558139535 - }, - "Cutive": { - "category": "serif", - "ascent": 1473, - "descent": -575, - "lineGap": 200, - "xAvgCharWidth": 1473, - "unitsPerEm": 2048, - "azAvgWidth": 1201.7906976744187 - }, - "Viaoda Libre": { - "category": "display", - "ascent": 1051, - "descent": -360, - "lineGap": 0, - "xAvgCharWidth": 521, - "unitsPerEm": 1000, - "azAvgWidth": 390.4651162790698 - }, - "Barlow Semi Condensed": { - "category": "sans-serif", - "ascent": 1000, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 455, - "unitsPerEm": 1000, - "azAvgWidth": 397.3720930232558 - }, - "Allerta Stencil": { - "category": "sans-serif", - "ascent": 1057, - "descent": -252, - "lineGap": 0, - "xAvgCharWidth": 577, - "unitsPerEm": 1024, - "azAvgWidth": 543.4418604651163 - }, - "PT Mono": { - "category": "monospace", - "ascent": 885, - "descent": -235, - "lineGap": 0, - "xAvgCharWidth": 600, - "unitsPerEm": 1000, - "azAvgWidth": 600 - }, - "Blaka": { - "category": "display", - "ascent": 932, - "descent": -235, - "lineGap": 0, - "xAvgCharWidth": 454, - "unitsPerEm": 1000, - "azAvgWidth": 374.72093023255815 - }, - "Goldman": { - "category": "display", - "ascent": 900, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 652, - "unitsPerEm": 1000, - "azAvgWidth": 534.0697674418604 - }, - "Playfair Display": { - "category": "serif", - "ascent": 1082, - "descent": -251, - "lineGap": 0, - "xAvgCharWidth": 579, - "unitsPerEm": 1000, - "azAvgWidth": 463.5348837209302 - }, - "Content": { - "category": "display", - "ascent": 2500, - "descent": -1200, - "lineGap": 67, - "xAvgCharWidth": 2184, - "unitsPerEm": 2048, - "azAvgWidth": 1401.0697674418604 - }, - "Noto Sans Ugaritic": { - "category": "sans-serif", - "ascent": 743, - "descent": -381, - "lineGap": 0, - "xAvgCharWidth": 888, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Be Vietnam Pro": { - "category": "sans-serif", - "ascent": 1000, - "descent": -265, - "lineGap": 0, - "xAvgCharWidth": 591, - "unitsPerEm": 1000, - "azAvgWidth": 506.5581395348837 - }, - "Anonymous Pro": { - "category": "monospace", - "ascent": 1675, - "descent": -373, - "lineGap": 0, - "xAvgCharWidth": 1118, - "unitsPerEm": 2048, - "azAvgWidth": 1118 - }, - "Black Ops One": { - "category": "display", - "ascent": 1871, - "descent": -689, - "lineGap": 0, - "xAvgCharWidth": 1360, - "unitsPerEm": 2048, - "azAvgWidth": 1146.5813953488373 - }, - "Alumni Sans Pinstripe": { - "category": "sans-serif", - "ascent": 900, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 370, - "unitsPerEm": 1000, - "azAvgWidth": 295.69767441860466 - }, - "Acme": { - "category": "sans-serif", - "ascent": 959, - "descent": -307, - "lineGap": 0, - "xAvgCharWidth": 389, - "unitsPerEm": 1000, - "azAvgWidth": 404.4186046511628 - }, - "Cantora One": { - "category": "sans-serif", - "ascent": 1000, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 413, - "unitsPerEm": 1000, - "azAvgWidth": 427.7674418604651 - }, - "Arvo": { - "category": "serif", - "ascent": 1968, - "descent": -506, - "lineGap": 55, - "xAvgCharWidth": 967, - "unitsPerEm": 2048, - "azAvgWidth": 1022.1627906976744 - }, - "Fuzzy Bubbles": { - "category": "handwriting", - "ascent": 900, - "descent": -350, - "lineGap": 0, - "xAvgCharWidth": 597, - "unitsPerEm": 1000, - "azAvgWidth": 531.5116279069767 - }, - "Comic Neue": { - "category": "handwriting", - "ascent": 900, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 493, - "unitsPerEm": 1000, - "azAvgWidth": 440.9767441860465 - }, - "Sacramento": { - "category": "handwriting", - "ascent": 1905, - "descent": -1084, - "lineGap": 0, - "xAvgCharWidth": 607, - "unitsPerEm": 2048, - "azAvgWidth": 622 - }, - "Carrois Gothic SC": { - "category": "sans-serif", - "ascent": 922, - "descent": -270, - "lineGap": 0, - "xAvgCharWidth": 493, - "unitsPerEm": 1000, - "azAvgWidth": 494.6744186046512 - }, - "Caramel": { - "category": "handwriting", - "ascent": 900, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 438, - "unitsPerEm": 1000, - "azAvgWidth": 254.1860465116279 - }, - "Skranji": { - "category": "display", - "ascent": 1008, - "descent": -383, - "lineGap": 0, - "xAvgCharWidth": 468, - "unitsPerEm": 1024, - "azAvgWidth": 480.27906976744185 - }, - "Copse": { - "category": "serif", - "ascent": 1991, - "descent": -483, - "lineGap": 57, - "xAvgCharWidth": 1116, - "unitsPerEm": 2048, - "azAvgWidth": 961.8604651162791 - }, - "Goudy Bookletter 1911": { - "category": "serif", - "ascent": 983, - "descent": -318, - "lineGap": 92, - "xAvgCharWidth": 520, - "unitsPerEm": 1024, - "azAvgWidth": 408.51162790697674 - }, - "Aleo": { - "category": "serif", - "ascent": 805, - "descent": -195, - "lineGap": 200, - "xAvgCharWidth": 535, - "unitsPerEm": 1000, - "azAvgWidth": 465.1860465116279 - }, - "Forum": { - "category": "display", - "ascent": 856, - "descent": -248, - "lineGap": 0, - "xAvgCharWidth": 408, - "unitsPerEm": 1000, - "azAvgWidth": 419.86046511627904 - }, - "Nuosu SIL": { - "category": "serif", - "ascent": 2200, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 1518, - "unitsPerEm": 2048, - "azAvgWidth": 888.3255813953489 - }, - "BIZ UDPGothic": { - "category": "sans-serif", - "ascent": 1802, - "descent": -246, - "lineGap": 0, - "xAvgCharWidth": 1801, - "unitsPerEm": 2048, - "azAvgWidth": 1176.953488372093 - }, - "Baloo Thambi 2": { - "category": "display", - "ascent": 1078, - "descent": -486, - "lineGap": 0, - "xAvgCharWidth": 634, - "unitsPerEm": 1000, - "azAvgWidth": 442.3720930232558 - }, - "Chewy": { - "category": "display", - "ascent": 1003, - "descent": -310, - "lineGap": 25, - "xAvgCharWidth": 455, - "unitsPerEm": 1024, - "azAvgWidth": 423 - }, - "IBM Plex Sans Hebrew": { - "category": "sans-serif", - "ascent": 1025, - "descent": -275, - "lineGap": 0, - "xAvgCharWidth": 577, - "unitsPerEm": 1000, - "azAvgWidth": 461.4651162790698 - }, - "Texturina": { - "category": "serif", - "ascent": 1260, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 585, - "unitsPerEm": 1000, - "azAvgWidth": 463.6511627906977 - }, - "David Libre": { - "category": "serif", - "ascent": 1528, - "descent": -449, - "lineGap": 0, - "xAvgCharWidth": 1029, - "unitsPerEm": 2048, - "azAvgWidth": 867.7674418604652 - }, - "Fira Sans": { - "category": "sans-serif", - "ascent": 935, - "descent": -265, - "lineGap": 0, - "xAvgCharWidth": 558, - "unitsPerEm": 1000, - "azAvgWidth": 469.3953488372093 - }, - "Ledger": { - "category": "serif", - "ascent": 1062, - "descent": -329, - "lineGap": 0, - "xAvgCharWidth": 498, - "unitsPerEm": 1000, - "azAvgWidth": 514.5581395348837 - }, - "Anek Devanagari": { - "category": "sans-serif", - "ascent": 2026, - "descent": -1385, - "lineGap": 0, - "xAvgCharWidth": 1389, - "unitsPerEm": 2000, - "azAvgWidth": 868.9767441860465 - }, - "Convergence": { - "category": "sans-serif", - "ascent": 943, - "descent": -230, - "lineGap": 0, - "xAvgCharWidth": 489, - "unitsPerEm": 1000, - "azAvgWidth": 502.90697674418607 - }, - "Kotta One": { - "category": "serif", - "ascent": 915, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 433, - "unitsPerEm": 1000, - "azAvgWidth": 448.83720930232556 - }, - "Bungee": { - "category": "display", - "ascent": 860, - "descent": -140, - "lineGap": 200, - "xAvgCharWidth": 783, - "unitsPerEm": 1000, - "azAvgWidth": 638 - }, - "Barriecito": { - "category": "display", - "ascent": 962, - "descent": -238, - "lineGap": 0, - "xAvgCharWidth": 522, - "unitsPerEm": 1000, - "azAvgWidth": 438.8139534883721 - }, - "Noto Sans Tai Le": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 548, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Ropa Sans": { - "category": "sans-serif", - "ascent": 841, - "descent": -231, - "lineGap": 0, - "xAvgCharWidth": 437, - "unitsPerEm": 1000, - "azAvgWidth": 388.13953488372096 - }, - "Righteous": { - "category": "display", - "ascent": 2017, - "descent": -526, - "lineGap": 0, - "xAvgCharWidth": 963, - "unitsPerEm": 2048, - "azAvgWidth": 991.4418604651163 - }, - "Goblin One": { - "category": "display", - "ascent": 1920, - "descent": -640, - "lineGap": 0, - "xAvgCharWidth": 1653, - "unitsPerEm": 2048, - "azAvgWidth": 1580 - }, - "Swanky and Moo Moo": { - "category": "handwriting", - "ascent": 995, - "descent": -507, - "lineGap": 0, - "xAvgCharWidth": 459, - "unitsPerEm": 1024, - "azAvgWidth": 434.3488372093023 - }, - "Audiowide": { - "category": "display", - "ascent": 2027, - "descent": -584, - "lineGap": 0, - "xAvgCharWidth": 1154, - "unitsPerEm": 2048, - "azAvgWidth": 1187.9767441860465 - }, - "Rosario": { - "category": "sans-serif", - "ascent": 977, - "descent": -235, - "lineGap": 0, - "xAvgCharWidth": 517, - "unitsPerEm": 1000, - "azAvgWidth": 430.6511627906977 - }, - "Mrs Sheppards": { - "category": "handwriting", - "ascent": 959, - "descent": -378, - "lineGap": 0, - "xAvgCharWidth": 344, - "unitsPerEm": 1000, - "azAvgWidth": 347.74418604651163 - }, - "Red Hat Mono": { - "category": "monospace", - "ascent": 1018, - "descent": -305, - "lineGap": 0, - "xAvgCharWidth": 600, - "unitsPerEm": 1000, - "azAvgWidth": 600 - }, - "Butcherman": { - "category": "display", - "ascent": 2600, - "descent": -1363, - "lineGap": 0, - "xAvgCharWidth": 1119, - "unitsPerEm": 2048, - "azAvgWidth": 1076.5348837209303 - }, - "Arimo": { - "category": "sans-serif", - "ascent": 1854, - "descent": -434, - "lineGap": 67, - "xAvgCharWidth": 1190, - "unitsPerEm": 2048, - "azAvgWidth": 934.5116279069767 - }, - "Noto Sans Coptic": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 593, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Noto Sans Mahajani": { - "category": "sans-serif", - "ascent": 757, - "descent": -243, - "lineGap": 0, - "xAvgCharWidth": 553, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Sedgwick Ave Display": { - "category": "handwriting", - "ascent": 937, - "descent": -312, - "lineGap": 0, - "xAvgCharWidth": 548, - "unitsPerEm": 1000, - "azAvgWidth": 427.09302325581393 - }, - "Monoton": { - "category": "display", - "ascent": 2366, - "descent": -822, - "lineGap": 0, - "xAvgCharWidth": 1394, - "unitsPerEm": 2048, - "azAvgWidth": 1335.8139534883721 - }, - "BIZ UDPMincho": { - "category": "serif", - "ascent": 1802, - "descent": -246, - "lineGap": 0, - "xAvgCharWidth": 1797, - "unitsPerEm": 2048, - "azAvgWidth": 1125.5116279069769 - }, - "Carter One": { - "category": "display", - "ascent": 2264, - "descent": -890, - "lineGap": 0, - "xAvgCharWidth": 1002, - "unitsPerEm": 2048, - "azAvgWidth": 1033.3488372093022 - }, - "Black And White Picture": { - "category": "sans-serif", - "ascent": 800, - "descent": -200, - "lineGap": 250, - "xAvgCharWidth": 835, - "unitsPerEm": 1000, - "azAvgWidth": 381.25581395348837 - }, - "Anek Gurmukhi": { - "category": "sans-serif", - "ascent": 1500, - "descent": -900, - "lineGap": 0, - "xAvgCharWidth": 1010, - "unitsPerEm": 2000, - "azAvgWidth": 887.1860465116279 - }, - "Trykker": { - "category": "serif", - "ascent": 2022, - "descent": -538, - "lineGap": 0, - "xAvgCharWidth": 1197, - "unitsPerEm": 2048, - "azAvgWidth": 1020.046511627907 - }, - "Seymour One": { - "category": "sans-serif", - "ascent": 2015, - "descent": -559, - "lineGap": 0, - "xAvgCharWidth": 1458, - "unitsPerEm": 2048, - "azAvgWidth": 1510.5116279069769 - }, - "Praise": { - "category": "handwriting", - "ascent": 850, - "descent": -350, - "lineGap": 0, - "xAvgCharWidth": 500, - "unitsPerEm": 1000, - "azAvgWidth": 331.3953488372093 - }, - "Sevillana": { - "category": "display", - "ascent": 2062, - "descent": -717, - "lineGap": 0, - "xAvgCharWidth": 744, - "unitsPerEm": 2048, - "azAvgWidth": 762.5116279069767 - }, - "Condiment": { - "category": "handwriting", - "ascent": 882, - "descent": -641, - "lineGap": 0, - "xAvgCharWidth": 341, - "unitsPerEm": 1000, - "azAvgWidth": 356.1162790697674 - }, - "Amaranth": { - "category": "sans-serif", - "ascent": 976, - "descent": -236, - "lineGap": 0, - "xAvgCharWidth": 430, - "unitsPerEm": 1000, - "azAvgWidth": 443.6279069767442 - }, - "Dynalight": { - "category": "display", - "ascent": 1840, - "descent": -645, - "lineGap": 0, - "xAvgCharWidth": 609, - "unitsPerEm": 2048, - "azAvgWidth": 628.6046511627907 - }, - "Preahvihear": { - "category": "sans-serif", - "ascent": 2500, - "descent": -1200, - "lineGap": 0, - "xAvgCharWidth": 1295, - "unitsPerEm": 2048, - "azAvgWidth": 1086.9302325581396 - }, - "Unlock": { - "category": "display", - "ascent": 873, - "descent": -195, - "lineGap": 0, - "xAvgCharWidth": 517, - "unitsPerEm": 1000, - "azAvgWidth": 534.4883720930233 - }, - "Podkova": { - "category": "serif", - "ascent": 859, - "descent": -249, - "lineGap": 0, - "xAvgCharWidth": 550, - "unitsPerEm": 1000, - "azAvgWidth": 465.06976744186045 - }, - "Familjen Grotesk": { - "category": "sans-serif", - "ascent": 1230, - "descent": -270, - "lineGap": 0, - "xAvgCharWidth": 647, - "unitsPerEm": 1200, - "azAvgWidth": 521.3953488372093 - }, - "Grenze Gotisch": { - "category": "display", - "ascent": 1100, - "descent": -380, - "lineGap": 0, - "xAvgCharWidth": 468, - "unitsPerEm": 1000, - "azAvgWidth": 362.6744186046512 - }, - "Moulpali": { - "category": "display", - "ascent": 2900, - "descent": -1600, - "lineGap": 0, - "xAvgCharWidth": 1539, - "unitsPerEm": 2048, - "azAvgWidth": 853.2790697674419 - }, - "Chilanka": { - "category": "handwriting", - "ascent": 1500, - "descent": -750, - "lineGap": 0, - "xAvgCharWidth": 1806, - "unitsPerEm": 2048, - "azAvgWidth": 988.2325581395348 - }, - "Bowlby One": { - "category": "display", - "ascent": 2276, - "descent": -932, - "lineGap": 0, - "xAvgCharWidth": 1274, - "unitsPerEm": 2048, - "azAvgWidth": 1326.2093023255813 - }, - "Fontdiner Swanky": { - "category": "display", - "ascent": 1047, - "descent": -510, - "lineGap": 20, - "xAvgCharWidth": 558, - "unitsPerEm": 1024, - "azAvgWidth": 578.7906976744187 - }, - "Philosopher": { - "category": "sans-serif", - "ascent": 900, - "descent": -220, - "lineGap": 0, - "xAvgCharWidth": 548, - "unitsPerEm": 1000, - "azAvgWidth": 438.4651162790698 - }, - "Tienne": { - "category": "serif", - "ascent": 2030, - "descent": -724, - "lineGap": 0, - "xAvgCharWidth": 1213, - "unitsPerEm": 2048, - "azAvgWidth": 1084.3953488372092 - }, - "Poppins": { - "category": "sans-serif", - "ascent": 1050, - "descent": -350, - "lineGap": 100, - "xAvgCharWidth": 851, - "unitsPerEm": 1000, - "azAvgWidth": 516.1162790697674 - }, - "Angkor": { - "category": "display", - "ascent": 2500, - "descent": -1200, - "lineGap": 0, - "xAvgCharWidth": 1359, - "unitsPerEm": 2048, - "azAvgWidth": 1224.4186046511627 - }, - "Noto Sans Bhaiksuki": { - "category": "sans-serif", - "ascent": 960, - "descent": -460, - "lineGap": 0, - "xAvgCharWidth": 785, - "unitsPerEm": 1000, - "azAvgWidth": 546.9767441860465 - }, - "Alumni Sans": { - "category": "sans-serif", - "ascent": 900, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 358, - "unitsPerEm": 1000, - "azAvgWidth": 306.25581395348837 - }, - "Big Shoulders Display": { - "category": "display", - "ascent": 1968, - "descent": -426, - "lineGap": 0, - "xAvgCharWidth": 549, - "unitsPerEm": 2000, - "azAvgWidth": 612.4883720930233 - }, - "Devonshire": { - "category": "handwriting", - "ascent": 981, - "descent": -433, - "lineGap": 0, - "xAvgCharWidth": 305, - "unitsPerEm": 1000, - "azAvgWidth": 310.48837209302326 - }, - "Homenaje": { - "category": "sans-serif", - "ascent": 892, - "descent": -204, - "lineGap": 0, - "xAvgCharWidth": 395, - "unitsPerEm": 1000, - "azAvgWidth": 318.2093023255814 - }, - "ABeeZee": { - "category": "sans-serif", - "ascent": 920, - "descent": -262, - "lineGap": 0, - "xAvgCharWidth": 539, - "unitsPerEm": 1000, - "azAvgWidth": 491.3720930232558 - }, - "Ubuntu": { - "category": "sans-serif", - "ascent": 932, - "descent": -189, - "lineGap": 28, - "xAvgCharWidth": 602, - "unitsPerEm": 1000, - "azAvgWidth": 467.13953488372096 - }, - "Pacifico": { - "category": "handwriting", - "ascent": 1303, - "descent": -453, - "lineGap": 0, - "xAvgCharWidth": 615, - "unitsPerEm": 1000, - "azAvgWidth": 421.16279069767444 - }, - "Licorice": { - "category": "handwriting", - "ascent": 850, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 480, - "unitsPerEm": 1000, - "azAvgWidth": 266.2325581395349 - }, - "Vollkorn SC": { - "category": "serif", - "ascent": 952, - "descent": -441, - "lineGap": 0, - "xAvgCharWidth": 630, - "unitsPerEm": 1000, - "azAvgWidth": 565.6976744186046 - }, - "Baloo Bhai 2": { - "category": "display", - "ascent": 1078, - "descent": -544, - "lineGap": 0, - "xAvgCharWidth": 541, - "unitsPerEm": 1000, - "azAvgWidth": 442.3720930232558 - }, - "Rouge Script": { - "category": "handwriting", - "ascent": 1050, - "descent": -419, - "lineGap": 0, - "xAvgCharWidth": 352, - "unitsPerEm": 1250, - "azAvgWidth": 359.69767441860466 - }, - "Piazzolla": { - "category": "serif", - "ascent": 1110, - "descent": -310, - "lineGap": 0, - "xAvgCharWidth": 595, - "unitsPerEm": 1000, - "azAvgWidth": 452.72093023255815 - }, - "Archivo": { - "category": "sans-serif", - "ascent": 878, - "descent": -210, - "lineGap": 0, - "xAvgCharWidth": 575, - "unitsPerEm": 1000, - "azAvgWidth": 450.86046511627904 - }, - "Fruktur": { - "category": "display", - "ascent": 2020, - "descent": -540, - "lineGap": 0, - "xAvgCharWidth": 1140, - "unitsPerEm": 2048, - "azAvgWidth": 949.3488372093024 - }, - "Calistoga": { - "category": "display", - "ascent": 1000, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 580, - "unitsPerEm": 1000, - "azAvgWidth": 467.48837209302326 - }, - "Viga": { - "category": "sans-serif", - "ascent": 1015, - "descent": -329, - "lineGap": 0, - "xAvgCharWidth": 449, - "unitsPerEm": 1000, - "azAvgWidth": 464.6511627906977 - }, - "Noto Serif Gujarati": { - "category": "serif", - "ascent": 997, - "descent": -450, - "lineGap": 0, - "xAvgCharWidth": 565, - "unitsPerEm": 1000, - "azAvgWidth": 502.6744186046512 - }, - "Finger Paint": { - "category": "display", - "ascent": 1097, - "descent": -377, - "lineGap": 0, - "xAvgCharWidth": 569, - "unitsPerEm": 1000, - "azAvgWidth": 554.5581395348837 - }, - "Ultra": { - "category": "serif", - "ascent": 2066, - "descent": -561, - "lineGap": 0, - "xAvgCharWidth": 1460, - "unitsPerEm": 2048, - "azAvgWidth": 1339.5581395348838 - }, - "Slabo 13px": { - "category": "serif", - "ascent": 720, - "descent": -240, - "lineGap": 0, - "xAvgCharWidth": 448, - "unitsPerEm": 780, - "azAvgWidth": 383.72093023255815 - }, - "Inria Serif": { - "category": "serif", - "ascent": 976, - "descent": -223, - "lineGap": 0, - "xAvgCharWidth": 571, - "unitsPerEm": 1000, - "azAvgWidth": 474.7906976744186 - }, - "Caladea": { - "category": "serif", - "ascent": 900, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 510, - "unitsPerEm": 1000, - "azAvgWidth": 422.1162790697674 - }, - "Imbue": { - "category": "serif", - "ascent": 1900, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 615, - "unitsPerEm": 2000, - "azAvgWidth": 599.5581395348837 - }, - "Catamaran": { - "category": "sans-serif", - "ascent": 1100, - "descent": -540, - "lineGap": 0, - "xAvgCharWidth": 583, - "unitsPerEm": 1000, - "azAvgWidth": 423.06976744186045 - }, - "Yesteryear": { - "category": "handwriting", - "ascent": 2001, - "descent": -1004, - "lineGap": 0, - "xAvgCharWidth": 661, - "unitsPerEm": 2048, - "azAvgWidth": 683.0697674418604 - }, - "Encode Sans": { - "category": "sans-serif", - "ascent": 2060, - "descent": -440, - "lineGap": 0, - "xAvgCharWidth": 935, - "unitsPerEm": 2000, - "azAvgWidth": 911.8837209302326 - }, - "Overlock": { - "category": "display", - "ascent": 966, - "descent": -254, - "lineGap": 0, - "xAvgCharWidth": 402, - "unitsPerEm": 1000, - "azAvgWidth": 414.3255813953488 - }, - "Antic": { - "category": "sans-serif", - "ascent": 940, - "descent": -251, - "lineGap": 0, - "xAvgCharWidth": 523, - "unitsPerEm": 1000, - "azAvgWidth": 444.3255813953488 - }, - "Noto Sans Old Hungarian": { - "category": "sans-serif", - "ascent": 859, - "descent": -177, - "lineGap": 0, - "xAvgCharWidth": 640, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Estonia": { - "category": "handwriting", - "ascent": 900, - "descent": -340, - "lineGap": 0, - "xAvgCharWidth": 538, - "unitsPerEm": 1000, - "azAvgWidth": 239.06976744186048 - }, - "Sawarabi Gothic": { - "category": "sans-serif", - "ascent": 1110, - "descent": -272, - "lineGap": 90, - "xAvgCharWidth": 925, - "unitsPerEm": 1000, - "azAvgWidth": 470.2093023255814 - }, - "Balthazar": { - "category": "serif", - "ascent": 796, - "descent": -222, - "lineGap": 0, - "xAvgCharWidth": 381, - "unitsPerEm": 1000, - "azAvgWidth": 392.16279069767444 - }, - "Aboreto": { - "category": "display", - "ascent": 930, - "descent": -230, - "lineGap": 0, - "xAvgCharWidth": 569, - "unitsPerEm": 1000, - "azAvgWidth": 605.0930232558139 - }, - "Ceviche One": { - "category": "display", - "ascent": 806, - "descent": -237, - "lineGap": 0, - "xAvgCharWidth": 355, - "unitsPerEm": 1000, - "azAvgWidth": 370.93023255813955 - }, - "Russo One": { - "category": "sans-serif", - "ascent": 926, - "descent": -279, - "lineGap": 0, - "xAvgCharWidth": 599, - "unitsPerEm": 1000, - "azAvgWidth": 529.6511627906976 - }, - "Blaka Hollow": { - "category": "display", - "ascent": 932, - "descent": -235, - "lineGap": 0, - "xAvgCharWidth": 455, - "unitsPerEm": 1000, - "azAvgWidth": 374.72093023255815 - }, - "Noto Sans Osage": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 613, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Mr Dafoe": { - "category": "handwriting", - "ascent": 981, - "descent": -416, - "lineGap": 0, - "xAvgCharWidth": 352, - "unitsPerEm": 1000, - "azAvgWidth": 352.27906976744185 - }, - "Source Code Pro": { - "category": "monospace", - "ascent": 984, - "descent": -273, - "lineGap": 0, - "xAvgCharWidth": 600, - "unitsPerEm": 1000, - "azAvgWidth": 600 - }, - "Cinzel": { - "category": "serif", - "ascent": 976, - "descent": -372, - "lineGap": 0, - "xAvgCharWidth": 660, - "unitsPerEm": 1000, - "azAvgWidth": 573.1162790697674 - }, - "Grand Hotel": { - "category": "handwriting", - "ascent": 1938, - "descent": -844, - "lineGap": 0, - "xAvgCharWidth": 611, - "unitsPerEm": 2048, - "azAvgWidth": 635.0930232558139 - }, - "Play": { - "category": "sans-serif", - "ascent": 937, - "descent": -220, - "lineGap": 0, - "xAvgCharWidth": 562, - "unitsPerEm": 1000, - "azAvgWidth": 460.27906976744185 - }, - "Trispace": { - "category": "sans-serif", - "ascent": 1830, - "descent": -430, - "lineGap": 0, - "xAvgCharWidth": 1241, - "unitsPerEm": 2000, - "azAvgWidth": 1241.860465116279 - }, - "Fuggles": { - "category": "handwriting", - "ascent": 850, - "descent": -351, - "lineGap": 0, - "xAvgCharWidth": 449, - "unitsPerEm": 1000, - "azAvgWidth": 223.62790697674419 - }, - "Francois One": { - "category": "sans-serif", - "ascent": 1089, - "descent": -329, - "lineGap": 0, - "xAvgCharWidth": 505, - "unitsPerEm": 1000, - "azAvgWidth": 427.6744186046512 - }, - "Caudex": { - "category": "serif", - "ascent": 2034, - "descent": -606, - "lineGap": 0, - "xAvgCharWidth": 926, - "unitsPerEm": 2048, - "azAvgWidth": 956.6046511627907 - }, - "Exo": { - "category": "sans-serif", - "ascent": 1002, - "descent": -327, - "lineGap": 0, - "xAvgCharWidth": 533, - "unitsPerEm": 1000, - "azAvgWidth": 477.6511627906977 - }, - "Rowdies": { - "category": "display", - "ascent": 997, - "descent": -245, - "lineGap": 0, - "xAvgCharWidth": 617, - "unitsPerEm": 1000, - "azAvgWidth": 500.2093023255814 - }, - "Grape Nuts": { - "category": "handwriting", - "ascent": 900, - "descent": -325, - "lineGap": 0, - "xAvgCharWidth": 492, - "unitsPerEm": 1000, - "azAvgWidth": 385.2093023255814 - }, - "Marck Script": { - "category": "handwriting", - "ascent": 864, - "descent": -385, - "lineGap": 0, - "xAvgCharWidth": 411, - "unitsPerEm": 1000, - "azAvgWidth": 419.6279069767442 - }, - "Aubrey": { - "category": "display", - "ascent": 830, - "descent": -212, - "lineGap": 0, - "xAvgCharWidth": 385, - "unitsPerEm": 1000, - "azAvgWidth": 351.13953488372096 - }, - "Open Sans": { - "category": "sans-serif", - "ascent": 2189, - "descent": -600, - "lineGap": 0, - "xAvgCharWidth": 1169, - "unitsPerEm": 2048, - "azAvgWidth": 983.3023255813954 - }, - "Concert One": { - "category": "display", - "ascent": 2005, - "descent": 410, - "lineGap": 0, - "xAvgCharWidth": 1013, - "unitsPerEm": 2048, - "azAvgWidth": 940.3720930232558 - }, - "B612 Mono": { - "category": "monospace", - "ascent": 1930, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 1403, - "unitsPerEm": 2000, - "azAvgWidth": 1300 - }, - "Cantarell": { - "category": "sans-serif", - "ascent": 2137, - "descent": -555, - "lineGap": 211, - "xAvgCharWidth": 945, - "unitsPerEm": 2048, - "azAvgWidth": 972.7674418604652 - }, - "Noto Music": { - "category": "sans-serif", - "ascent": 1389, - "descent": -398, - "lineGap": 0, - "xAvgCharWidth": 569, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Rubik Mono One": { - "category": "sans-serif", - "ascent": 932, - "descent": -306, - "lineGap": 0, - "xAvgCharWidth": 850, - "unitsPerEm": 1000, - "azAvgWidth": 850 - }, - "Wendy One": { - "category": "sans-serif", - "ascent": 819, - "descent": -236, - "lineGap": 0, - "xAvgCharWidth": 532, - "unitsPerEm": 1000, - "azAvgWidth": 494.3488372093023 - }, - "Actor": { - "category": "sans-serif", - "ascent": 941, - "descent": -262, - "lineGap": 0, - "xAvgCharWidth": 424, - "unitsPerEm": 1000, - "azAvgWidth": 438.4651162790698 - }, - "Noto Sans Mandaic": { - "category": "sans-serif", - "ascent": 724, - "descent": -423, - "lineGap": 0, - "xAvgCharWidth": 663, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Commissioner": { - "category": "sans-serif", - "ascent": 2034, - "descent": -412, - "lineGap": 0, - "xAvgCharWidth": 1169, - "unitsPerEm": 2000, - "azAvgWidth": 925.7441860465116 - }, - "Noto Sans Mro": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 647, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Rokkitt": { - "category": "serif", - "ascent": 817, - "descent": -320, - "lineGap": 0, - "xAvgCharWidth": 530, - "unitsPerEm": 1000, - "azAvgWidth": 434.6511627906977 - }, - "DotGothic16": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 966, - "unitsPerEm": 1000, - "azAvgWidth": 500 - }, - "PT Sans Narrow": { - "category": "sans-serif", - "ascent": 1018, - "descent": -276, - "lineGap": 0, - "xAvgCharWidth": 428, - "unitsPerEm": 1000, - "azAvgWidth": 356.74418604651163 - }, - "Bonheur Royale": { - "category": "handwriting", - "ascent": 780, - "descent": -380, - "lineGap": 0, - "xAvgCharWidth": 449, - "unitsPerEm": 1000, - "azAvgWidth": 269.90697674418607 - }, - "Carattere": { - "category": "handwriting", - "ascent": 800, - "descent": -350, - "lineGap": 0, - "xAvgCharWidth": 485, - "unitsPerEm": 1000, - "azAvgWidth": 290.6046511627907 - }, - "Asap Condensed": { - "category": "sans-serif", - "ascent": 934, - "descent": -212, - "lineGap": 0, - "xAvgCharWidth": 455, - "unitsPerEm": 1000, - "azAvgWidth": 383.0232558139535 - }, - "Birthstone Bounce": { - "category": "handwriting", - "ascent": 950, - "descent": -410, - "lineGap": 0, - "xAvgCharWidth": 625, - "unitsPerEm": 1000, - "azAvgWidth": 313.06976744186045 - }, - "Big Shoulders Inline Display": { - "category": "display", - "ascent": 3936, - "descent": -852, - "lineGap": 0, - "xAvgCharWidth": 1072, - "unitsPerEm": 4000, - "azAvgWidth": 1234.7441860465117 - }, - "Wellfleet": { - "category": "display", - "ascent": 2020, - "descent": -540, - "lineGap": 0, - "xAvgCharWidth": 1198, - "unitsPerEm": 2048, - "azAvgWidth": 1059.093023255814 - }, - "Jim Nightshade": { - "category": "handwriting", - "ascent": 1852, - "descent": -1050, - "lineGap": 0, - "xAvgCharWidth": 615, - "unitsPerEm": 2048, - "azAvgWidth": 631.5348837209302 - }, - "Andika": { - "category": "sans-serif", - "ascent": 2500, - "descent": -800, - "lineGap": 0, - "xAvgCharWidth": 1146, - "unitsPerEm": 2048, - "azAvgWidth": 973.8372093023256 - }, - "BioRhyme": { - "category": "serif", - "ascent": 1127, - "descent": -422, - "lineGap": 0, - "xAvgCharWidth": 661, - "unitsPerEm": 1000, - "azAvgWidth": 550.2325581395348 - }, - "Jaldi": { - "category": "sans-serif", - "ascent": 2350, - "descent": -1111, - "lineGap": 0, - "xAvgCharWidth": 993, - "unitsPerEm": 2048, - "azAvgWidth": 812.0232558139535 - }, - "Send Flowers": { - "category": "handwriting", - "ascent": 975, - "descent": -350, - "lineGap": 0, - "xAvgCharWidth": 553, - "unitsPerEm": 1000, - "azAvgWidth": 357.3720930232558 - }, - "Sree Krushnadevaraya": { - "category": "serif", - "ascent": 1105, - "descent": -378, - "lineGap": 0, - "xAvgCharWidth": 384, - "unitsPerEm": 720, - "azAvgWidth": 291.25581395348837 - }, - "Big Shoulders Text": { - "category": "display", - "ascent": 1968, - "descent": -426, - "lineGap": 0, - "xAvgCharWidth": 549, - "unitsPerEm": 2000, - "azAvgWidth": 680.5581395348837 - }, - "BhuTuka Expanded One": { - "category": "display", - "ascent": 826, - "descent": -182, - "lineGap": 0, - "xAvgCharWidth": 799, - "unitsPerEm": 1000, - "azAvgWidth": 715.2558139534884 - }, - "Zen Loop": { - "category": "display", - "ascent": 850, - "descent": -275, - "lineGap": 0, - "xAvgCharWidth": 342, - "unitsPerEm": 1000, - "azAvgWidth": 267.2093023255814 - }, - "Barrio": { - "category": "display", - "ascent": 880, - "descent": -247, - "lineGap": 0, - "xAvgCharWidth": 525, - "unitsPerEm": 1000, - "azAvgWidth": 515.8139534883721 - }, - "Grey Qo": { - "category": "handwriting", - "ascent": 900, - "descent": -360, - "lineGap": 0, - "xAvgCharWidth": 379, - "unitsPerEm": 1000, - "azAvgWidth": 256.74418604651163 - }, - "Timmana": { - "category": "sans-serif", - "ascent": 668, - "descent": -554, - "lineGap": 0, - "xAvgCharWidth": 392, - "unitsPerEm": 750, - "azAvgWidth": 312.51162790697674 - }, - "Roboto Slab": { - "category": "serif", - "ascent": 2146, - "descent": -555, - "lineGap": 0, - "xAvgCharWidth": 1239, - "unitsPerEm": 2048, - "azAvgWidth": 1005.6279069767442 - }, - "Akronim": { - "category": "display", - "ascent": 785, - "descent": -314, - "lineGap": 43, - "xAvgCharWidth": 327, - "unitsPerEm": 1000, - "azAvgWidth": 339.4418604651163 - }, - "Mukta": { - "category": "sans-serif", - "ascent": 1130, - "descent": -532, - "lineGap": 0, - "xAvgCharWidth": 664, - "unitsPerEm": 1000, - "azAvgWidth": 431.06976744186045 - }, - "Carrois Gothic": { - "category": "sans-serif", - "ascent": 922, - "descent": -270, - "lineGap": 0, - "xAvgCharWidth": 477, - "unitsPerEm": 1000, - "azAvgWidth": 450.06976744186045 - }, - "GFS Neohellenic": { - "category": "sans-serif", - "ascent": 873, - "descent": -245, - "lineGap": 24, - "xAvgCharWidth": 489, - "unitsPerEm": 1000, - "azAvgWidth": 390.6744186046512 - }, - "Noto Sans Mayan Numerals": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 852, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Ruthie": { - "category": "handwriting", - "ascent": 800, - "descent": -450, - "lineGap": 0, - "xAvgCharWidth": 471, - "unitsPerEm": 1000, - "azAvgWidth": 273.5581395348837 - }, - "Marmelad": { - "category": "sans-serif", - "ascent": 1989, - "descent": -451, - "lineGap": 0, - "xAvgCharWidth": 1198, - "unitsPerEm": 2048, - "azAvgWidth": 974.4186046511628 - }, - "Molengo": { - "category": "sans-serif", - "ascent": 1928, - "descent": -522, - "lineGap": 0, - "xAvgCharWidth": 862, - "unitsPerEm": 2048, - "azAvgWidth": 884.6976744186046 - }, - "Bellota Text": { - "category": "display", - "ascent": 968, - "descent": -290, - "lineGap": 0, - "xAvgCharWidth": 584, - "unitsPerEm": 1000, - "azAvgWidth": 446.04651162790697 - }, - "Emblema One": { - "category": "display", - "ascent": 1898, - "descent": -546, - "lineGap": 0, - "xAvgCharWidth": 1236, - "unitsPerEm": 2048, - "azAvgWidth": 1273.8837209302326 - }, - "Trochut": { - "category": "display", - "ascent": 967, - "descent": -210, - "lineGap": 0, - "xAvgCharWidth": 348, - "unitsPerEm": 1000, - "azAvgWidth": 358.3255813953488 - }, - "Arima Madurai": { - "category": "display", - "ascent": 1073, - "descent": -560, - "lineGap": 0, - "xAvgCharWidth": 614, - "unitsPerEm": 1000, - "azAvgWidth": 460.1860465116279 - }, - "Asset": { - "category": "display", - "ascent": 1971, - "descent": -589, - "lineGap": 0, - "xAvgCharWidth": 2499, - "unitsPerEm": 2048, - "azAvgWidth": 2377.4186046511627 - }, - "Pangolin": { - "category": "handwriting", - "ascent": 937, - "descent": -312, - "lineGap": 0, - "xAvgCharWidth": 563, - "unitsPerEm": 1000, - "azAvgWidth": 425.6046511627907 - }, - "Donegal One": { - "category": "serif", - "ascent": 2000, - "descent": -560, - "lineGap": 0, - "xAvgCharWidth": 1241, - "unitsPerEm": 2048, - "azAvgWidth": 1044.2093023255813 - }, - "Flow Circular": { - "category": "display", - "ascent": 1000, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 488, - "unitsPerEm": 1000, - "azAvgWidth": 509.5348837209302 - }, - "Ruluko": { - "category": "sans-serif", - "ascent": 914, - "descent": -241, - "lineGap": 0, - "xAvgCharWidth": 410, - "unitsPerEm": 1000, - "azAvgWidth": 422.4651162790698 - }, - "Romanesco": { - "category": "handwriting", - "ascent": 1866, - "descent": -483, - "lineGap": 0, - "xAvgCharWidth": 484, - "unitsPerEm": 2048, - "azAvgWidth": 498.04651162790697 - }, - "Gafata": { - "category": "sans-serif", - "ascent": 921, - "descent": -202, - "lineGap": 0, - "xAvgCharWidth": 483, - "unitsPerEm": 1000, - "azAvgWidth": 421.27906976744185 - }, - "Mouse Memoirs": { - "category": "sans-serif", - "ascent": 1917, - "descent": -428, - "lineGap": 0, - "xAvgCharWidth": 597, - "unitsPerEm": 2048, - "azAvgWidth": 611.6511627906976 - }, - "Literata": { - "category": "serif", - "ascent": 1177, - "descent": -308, - "lineGap": 0, - "xAvgCharWidth": 639, - "unitsPerEm": 1000, - "azAvgWidth": 492.5581395348837 - }, - "Bokor": { - "category": "display", - "ascent": 2500, - "descent": -1200, - "lineGap": 0, - "xAvgCharWidth": 1110, - "unitsPerEm": 2048, - "azAvgWidth": 771.7674418604652 - }, - "Noto Sans Hanunoo": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 732, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Manrope": { - "category": "sans-serif", - "ascent": 2132, - "descent": -600, - "lineGap": 0, - "xAvgCharWidth": 1131, - "unitsPerEm": 2000, - "azAvgWidth": 946.9302325581396 - }, - "Stylish": { - "category": "sans-serif", - "ascent": 821, - "descent": -179, - "lineGap": 250, - "xAvgCharWidth": 808, - "unitsPerEm": 1000, - "azAvgWidth": 405.74418604651163 - }, - "Rammetto One": { - "category": "display", - "ascent": 2437, - "descent": -1022, - "lineGap": 0, - "xAvgCharWidth": 1282, - "unitsPerEm": 2048, - "azAvgWidth": 1337.6511627906978 - }, - "Faustina": { - "category": "serif", - "ascent": 1043, - "descent": -217, - "lineGap": 0, - "xAvgCharWidth": 516, - "unitsPerEm": 1000, - "azAvgWidth": 425.8837209302326 - }, - "Recursive": { - "category": "sans-serif", - "ascent": 950, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 628, - "unitsPerEm": 1000, - "azAvgWidth": 523.2558139534884 - }, - "Aclonica": { - "category": "sans-serif", - "ascent": 1687, - "descent": -533, - "lineGap": 101, - "xAvgCharWidth": 1128, - "unitsPerEm": 2048, - "azAvgWidth": 1158.906976744186 - }, - "Happy Monkey": { - "category": "display", - "ascent": 950, - "descent": -255, - "lineGap": 0, - "xAvgCharWidth": 568, - "unitsPerEm": 1000, - "azAvgWidth": 524.7906976744187 - }, - "Prosto One": { - "category": "display", - "ascent": 940, - "descent": -295, - "lineGap": 0, - "xAvgCharWidth": 665, - "unitsPerEm": 1000, - "azAvgWidth": 575.2325581395348 - }, - "Inria Sans": { - "category": "sans-serif", - "ascent": 976, - "descent": -223, - "lineGap": 0, - "xAvgCharWidth": 548, - "unitsPerEm": 1000, - "azAvgWidth": 441.90697674418607 - }, - "Noto Sans Brahmi": { - "category": "sans-serif", - "ascent": 1069, - "descent": -306, - "lineGap": 0, - "xAvgCharWidth": 752, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Lobster": { - "category": "display", - "ascent": 1000, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 594, - "unitsPerEm": 1000, - "azAvgWidth": 401.5581395348837 - }, - "Baloo Da 2": { - "category": "display", - "ascent": 1095, - "descent": -589, - "lineGap": 0, - "xAvgCharWidth": 582, - "unitsPerEm": 1000, - "azAvgWidth": 442.3720930232558 - }, - "Noto Sans Gujarati": { - "category": "sans-serif", - "ascent": 896, - "descent": -408, - "lineGap": 0, - "xAvgCharWidth": 578, - "unitsPerEm": 1000, - "azAvgWidth": 491.25581395348837 - }, - "Rock Salt": { - "category": "handwriting", - "ascent": 1623, - "descent": -788, - "lineGap": 32, - "xAvgCharWidth": 773, - "unitsPerEm": 1024, - "azAvgWidth": 659.1395348837209 - }, - "Nova Script": { - "category": "display", - "ascent": 1966, - "descent": -506, - "lineGap": 0, - "xAvgCharWidth": 1185, - "unitsPerEm": 2048, - "azAvgWidth": 1026.5116279069769 - }, - "Atkinson Hyperlegible": { - "category": "sans-serif", - "ascent": 950, - "descent": -290, - "lineGap": 0, - "xAvgCharWidth": 534, - "unitsPerEm": 1000, - "azAvgWidth": 451.86046511627904 - }, - "Vollkorn": { - "category": "serif", - "ascent": 952, - "descent": -441, - "lineGap": 0, - "xAvgCharWidth": 593, - "unitsPerEm": 1000, - "azAvgWidth": 451.4651162790698 - }, - "Noto Sans Tamil": { - "category": "sans-serif", - "ascent": 870, - "descent": -370, - "lineGap": 0, - "xAvgCharWidth": 701, - "unitsPerEm": 1000, - "azAvgWidth": 485.8139534883721 - }, - "Charm": { - "category": "handwriting", - "ascent": 1115, - "descent": -434, - "lineGap": 0, - "xAvgCharWidth": 503, - "unitsPerEm": 1000, - "azAvgWidth": 391.3720930232558 - }, - "Supermercado One": { - "category": "display", - "ascent": 1925, - "descent": -527, - "lineGap": 0, - "xAvgCharWidth": 1073, - "unitsPerEm": 2048, - "azAvgWidth": 919.6976744186046 - }, - "Big Shoulders Stencil Text": { - "category": "display", - "ascent": 1968, - "descent": -426, - "lineGap": 0, - "xAvgCharWidth": 551, - "unitsPerEm": 2000, - "azAvgWidth": 682.4418604651163 - }, - "Ubuntu Condensed": { - "category": "sans-serif", - "ascent": 932, - "descent": -189, - "lineGap": 28, - "xAvgCharWidth": 484, - "unitsPerEm": 1000, - "azAvgWidth": 377.90697674418607 - }, - "Koulen": { - "category": "display", - "ascent": 2500, - "descent": -1200, - "lineGap": 0, - "xAvgCharWidth": 1078, - "unitsPerEm": 2048, - "azAvgWidth": 840.8604651162791 - }, - "Noto Sans Avestan": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 576, - "unitsPerEm": 1000, - "azAvgWidth": 485.8139534883721 - }, - "Noto Serif Kannada": { - "category": "serif", - "ascent": 910, - "descent": -710, - "lineGap": 0, - "xAvgCharWidth": 715, - "unitsPerEm": 1000, - "azAvgWidth": 493.3255813953488 - }, - "Hubballi": { - "category": "display", - "ascent": 765, - "descent": -191, - "lineGap": 0, - "xAvgCharWidth": 729, - "unitsPerEm": 1000, - "azAvgWidth": 421.1860465116279 - }, - "Besley": { - "category": "serif", - "ascent": 2500, - "descent": -850, - "lineGap": 0, - "xAvgCharWidth": 1254, - "unitsPerEm": 2000, - "azAvgWidth": 1032.1627906976744 - }, - "Volkhov": { - "category": "serif", - "ascent": 971, - "descent": -319, - "lineGap": 0, - "xAvgCharWidth": 553, - "unitsPerEm": 1000, - "azAvgWidth": 502.90697674418607 - }, - "Farro": { - "category": "sans-serif", - "ascent": 800, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 569, - "unitsPerEm": 1000, - "azAvgWidth": 506.0232558139535 - }, - "Cardo": { - "category": "serif", - "ascent": 2028, - "descent": -745, - "lineGap": 0, - "xAvgCharWidth": 1305, - "unitsPerEm": 2048, - "azAvgWidth": 894.7441860465116 - }, - "Alfa Slab One": { - "category": "display", - "ascent": 1036, - "descent": -333, - "lineGap": 0, - "xAvgCharWidth": 636, - "unitsPerEm": 1000, - "azAvgWidth": 553.5116279069767 - }, - "Bona Nova": { - "category": "serif", - "ascent": 932, - "descent": -268, - "lineGap": 0, - "xAvgCharWidth": 536, - "unitsPerEm": 1000, - "azAvgWidth": 451.83720930232556 - }, - "Knewave": { - "category": "display", - "ascent": 1169, - "descent": -385, - "lineGap": 0, - "xAvgCharWidth": 535, - "unitsPerEm": 1000, - "azAvgWidth": 479.16279069767444 - }, - "Julee": { - "category": "handwriting", - "ascent": 894, - "descent": -284, - "lineGap": 0, - "xAvgCharWidth": 391, - "unitsPerEm": 1000, - "azAvgWidth": 400.6511627906977 - }, - "Qahiri": { - "category": "sans-serif", - "ascent": 600, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 365, - "unitsPerEm": 750, - "azAvgWidth": 200.93023255813952 - }, - "Oldenburg": { - "category": "display", - "ascent": 2020, - "descent": -540, - "lineGap": 9, - "xAvgCharWidth": 1299, - "unitsPerEm": 2048, - "azAvgWidth": 1122.046511627907 - }, - "Medula One": { - "category": "display", - "ascent": 846, - "descent": -162, - "lineGap": 0, - "xAvgCharWidth": 256, - "unitsPerEm": 1000, - "azAvgWidth": 264.2093023255814 - }, - "GFS Didot": { - "category": "serif", - "ascent": 947, - "descent": -277, - "lineGap": 25, - "xAvgCharWidth": 457, - "unitsPerEm": 1000, - "azAvgWidth": 469.3488372093023 - }, - "Paprika": { - "category": "display", - "ascent": 1145, - "descent": -274, - "lineGap": 0, - "xAvgCharWidth": 576, - "unitsPerEm": 1000, - "azAvgWidth": 546.9302325581396 - }, - "Noto Serif Gurmukhi": { - "category": "serif", - "ascent": 1006, - "descent": -428, - "lineGap": 0, - "xAvgCharWidth": 575, - "unitsPerEm": 1000, - "azAvgWidth": 497.2325581395349 - }, - "Katibeh": { - "category": "display", - "ascent": 490, - "descent": -510, - "lineGap": 200, - "xAvgCharWidth": 553, - "unitsPerEm": 1000, - "azAvgWidth": 329.6511627906977 - }, - "Noto Serif Yezidi": { - "category": "serif", - "ascent": 1068, - "descent": -292, - "lineGap": 0, - "xAvgCharWidth": 479, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Ubuntu Mono": { - "category": "monospace", - "ascent": 830, - "descent": -170, - "lineGap": 0, - "xAvgCharWidth": 500, - "unitsPerEm": 1000, - "azAvgWidth": 500 - }, - "Montez": { - "category": "handwriting", - "ascent": 1831, - "descent": -848, - "lineGap": 0, - "xAvgCharWidth": 649, - "unitsPerEm": 2048, - "azAvgWidth": 653.6046511627907 - }, - "Noto Sans Malayalam": { - "category": "sans-serif", - "ascent": 864, - "descent": -383, - "lineGap": 0, - "xAvgCharWidth": 749, - "unitsPerEm": 1000, - "azAvgWidth": 492.6511627906977 - }, - "Big Shoulders Stencil Display": { - "category": "display", - "ascent": 1968, - "descent": -426, - "lineGap": 0, - "xAvgCharWidth": 551, - "unitsPerEm": 2000, - "azAvgWidth": 613.9069767441861 - }, - "Bungee Hairline": { - "category": "display", - "ascent": 860, - "descent": -140, - "lineGap": 200, - "xAvgCharWidth": 783, - "unitsPerEm": 1000, - "azAvgWidth": 638 - }, - "Bungee Shade": { - "category": "display", - "ascent": 860, - "descent": -140, - "lineGap": 200, - "xAvgCharWidth": 853, - "unitsPerEm": 1000, - "azAvgWidth": 738 - }, - "Puritan": { - "category": "sans-serif", - "ascent": 881, - "descent": -256, - "lineGap": 0, - "xAvgCharWidth": 481, - "unitsPerEm": 1024, - "azAvgWidth": 444.3488372093023 - }, - "Boogaloo": { - "category": "display", - "ascent": 943, - "descent": -246, - "lineGap": 0, - "xAvgCharWidth": 342, - "unitsPerEm": 1000, - "azAvgWidth": 350.5581395348837 - }, - "Noto Sans Gunjala Gondi": { - "category": "sans-serif", - "ascent": 1014, - "descent": -252, - "lineGap": 0, - "xAvgCharWidth": 846, - "unitsPerEm": 1000, - "azAvgWidth": 3957.953488372093 - }, - "Trade Winds": { - "category": "display", - "ascent": 1019, - "descent": -469, - "lineGap": 0, - "xAvgCharWidth": 520, - "unitsPerEm": 1024, - "azAvgWidth": 531.953488372093 - }, - "Puppies Play": { - "category": "handwriting", - "ascent": 750, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 386, - "unitsPerEm": 1000, - "azAvgWidth": 231.41860465116278 - }, - "Vampiro One": { - "category": "display", - "ascent": 956, - "descent": -294, - "lineGap": 0, - "xAvgCharWidth": 591, - "unitsPerEm": 1000, - "azAvgWidth": 543.4186046511628 - }, - "Gluten": { - "category": "display", - "ascent": 1290, - "descent": -475, - "lineGap": 0, - "xAvgCharWidth": 1008, - "unitsPerEm": 2000, - "azAvgWidth": 1054.6511627906978 - }, - "Habibi": { - "category": "serif", - "ascent": 2000, - "descent": -560, - "lineGap": 0, - "xAvgCharWidth": 1202, - "unitsPerEm": 2048, - "azAvgWidth": 973.5581395348837 - }, - "Kreon": { - "category": "serif", - "ascent": 974, - "descent": -286, - "lineGap": 0, - "xAvgCharWidth": 460, - "unitsPerEm": 1000, - "azAvgWidth": 420.3953488372093 - }, - "Noto Sans Kharoshthi": { - "category": "sans-serif", - "ascent": 1069, - "descent": -301, - "lineGap": 0, - "xAvgCharWidth": 617, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Potta One": { - "category": "display", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 974, - "unitsPerEm": 1000, - "azAvgWidth": 566.2558139534884 - }, - "Doppio One": { - "category": "sans-serif", - "ascent": 2060, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 1131, - "unitsPerEm": 2048, - "azAvgWidth": 996.5116279069767 - }, - "PT Sans Caption": { - "category": "sans-serif", - "ascent": 1018, - "descent": -276, - "lineGap": 0, - "xAvgCharWidth": 592, - "unitsPerEm": 1000, - "azAvgWidth": 514.2790697674419 - }, - "Walter Turncoat": { - "category": "handwriting", - "ascent": 1078, - "descent": -323, - "lineGap": 29, - "xAvgCharWidth": 501, - "unitsPerEm": 1024, - "azAvgWidth": 512.2790697674419 - }, - "Norican": { - "category": "handwriting", - "ascent": 2095, - "descent": -791, - "lineGap": 0, - "xAvgCharWidth": 704, - "unitsPerEm": 2048, - "azAvgWidth": 730.1627906976744 - }, - "Kite One": { - "category": "sans-serif", - "ascent": 1094, - "descent": -351, - "lineGap": 0, - "xAvgCharWidth": 559, - "unitsPerEm": 1000, - "azAvgWidth": 440.90697674418607 - }, - "Joti One": { - "category": "display", - "ascent": 1003, - "descent": -331, - "lineGap": 0, - "xAvgCharWidth": 574, - "unitsPerEm": 1000, - "azAvgWidth": 521.7906976744187 - }, - "Diplomata": { - "category": "display", - "ascent": 930, - "descent": -287, - "lineGap": 0, - "xAvgCharWidth": 964, - "unitsPerEm": 1000, - "azAvgWidth": 989.2093023255813 - }, - "Offside": { - "category": "display", - "ascent": 996, - "descent": -265, - "lineGap": 0, - "xAvgCharWidth": 578, - "unitsPerEm": 1000, - "azAvgWidth": 552.6279069767442 - }, - "Chau Philomene One": { - "category": "sans-serif", - "ascent": 1033, - "descent": -334, - "lineGap": 0, - "xAvgCharWidth": 397, - "unitsPerEm": 1000, - "azAvgWidth": 410 - }, - "Maiden Orange": { - "category": "display", - "ascent": 1440, - "descent": -608, - "lineGap": 0, - "xAvgCharWidth": 663, - "unitsPerEm": 2048, - "azAvgWidth": 683.2790697674419 - }, - "Heebo": { - "category": "sans-serif", - "ascent": 2146, - "descent": -862, - "lineGap": 0, - "xAvgCharWidth": 1072, - "unitsPerEm": 2048, - "azAvgWidth": 938.3255813953489 - }, - "Noto Sans Bengali": { - "category": "sans-serif", - "ascent": 917, - "descent": -408, - "lineGap": 0, - "xAvgCharWidth": 648, - "unitsPerEm": 1000, - "azAvgWidth": 485.8139534883721 - }, - "Azeret Mono": { - "category": "monospace", - "ascent": 937, - "descent": -230, - "lineGap": 0, - "xAvgCharWidth": 685, - "unitsPerEm": 1000, - "azAvgWidth": 650 - }, - "Patrick Hand": { - "category": "handwriting", - "ascent": 1042, - "descent": -312, - "lineGap": 0, - "xAvgCharWidth": 431, - "unitsPerEm": 1000, - "azAvgWidth": 372.0232558139535 - }, - "Ruslan Display": { - "category": "display", - "ascent": 688, - "descent": -397, - "lineGap": 0, - "xAvgCharWidth": 622, - "unitsPerEm": 1000, - "azAvgWidth": 635.2093023255813 - }, - "Snowburst One": { - "category": "display", - "ascent": 2134, - "descent": -454, - "lineGap": 0, - "xAvgCharWidth": 1335, - "unitsPerEm": 2048, - "azAvgWidth": 1182.1860465116279 - }, - "Ranchers": { - "category": "display", - "ascent": 1045, - "descent": -205, - "lineGap": 0, - "xAvgCharWidth": 378, - "unitsPerEm": 1000, - "azAvgWidth": 397.6279069767442 - }, - "Noto Sans Canadian Aboriginal": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 728, - "unitsPerEm": 1000, - "azAvgWidth": 557.1627906976744 - }, - "Glass Antiqua": { - "category": "display", - "ascent": 835, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 373, - "unitsPerEm": 1000, - "azAvgWidth": 386.83720930232556 - }, - "Architects Daughter": { - "category": "handwriting", - "ascent": 1010, - "descent": -413, - "lineGap": 0, - "xAvgCharWidth": 536, - "unitsPerEm": 1024, - "azAvgWidth": 497.6046511627907 - }, - "Qwigley": { - "category": "handwriting", - "ascent": 750, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 375, - "unitsPerEm": 1000, - "azAvgWidth": 249.7906976744186 - }, - "Amethysta": { - "category": "serif", - "ascent": 2022, - "descent": -563, - "lineGap": 0, - "xAvgCharWidth": 1142, - "unitsPerEm": 2048, - "azAvgWidth": 1018.6046511627907 - }, - "Underdog": { - "category": "display", - "ascent": 909, - "descent": -247, - "lineGap": 0, - "xAvgCharWidth": 522, - "unitsPerEm": 1000, - "azAvgWidth": 468.6279069767442 - }, - "Bangers": { - "category": "display", - "ascent": 883, - "descent": -181, - "lineGap": 0, - "xAvgCharWidth": 426, - "unitsPerEm": 1000, - "azAvgWidth": 380.3255813953488 - }, - "Antonio": { - "category": "sans-serif", - "ascent": 2365, - "descent": -285, - "lineGap": 0, - "xAvgCharWidth": 887, - "unitsPerEm": 2048, - "azAvgWidth": 783.5581395348837 - }, - "Macondo": { - "category": "display", - "ascent": 888, - "descent": -292, - "lineGap": 0, - "xAvgCharWidth": 414, - "unitsPerEm": 1000, - "azAvgWidth": 427.25581395348837 - }, - "Suravaram": { - "category": "serif", - "ascent": 1295, - "descent": -794, - "lineGap": 0, - "xAvgCharWidth": 349, - "unitsPerEm": 980, - "azAvgWidth": 362.3720930232558 - }, - "Galindo": { - "category": "display", - "ascent": 2014, - "descent": -883, - "lineGap": 0, - "xAvgCharWidth": 1077, - "unitsPerEm": 2048, - "azAvgWidth": 1104.4883720930231 - }, - "Livvic": { - "category": "sans-serif", - "ascent": 1005, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 554, - "unitsPerEm": 1000, - "azAvgWidth": 462.3720930232558 - }, - "Noto Sans Mongolian": { - "category": "sans-serif", - "ascent": 1457, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 799, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Mina": { - "category": "sans-serif", - "ascent": 1075, - "descent": -515, - "lineGap": 0, - "xAvgCharWidth": 462, - "unitsPerEm": 1000, - "azAvgWidth": 474.1860465116279 - }, - "Josefin Sans": { - "category": "sans-serif", - "ascent": 750, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 547, - "unitsPerEm": 1000, - "azAvgWidth": 466.3255813953488 - }, - "Capriola": { - "category": "sans-serif", - "ascent": 1992, - "descent": -568, - "lineGap": 0, - "xAvgCharWidth": 1267, - "unitsPerEm": 2048, - "azAvgWidth": 1071.1627906976744 - }, - "Indie Flower": { - "category": "handwriting", - "ascent": 994, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 473, - "unitsPerEm": 1024, - "azAvgWidth": 439.2325581395349 - }, - "Baloo Tamma 2": { - "category": "display", - "ascent": 1078, - "descent": -673, - "lineGap": 0, - "xAvgCharWidth": 662, - "unitsPerEm": 1000, - "azAvgWidth": 456.3255813953488 - }, - "Fenix": { - "category": "serif", - "ascent": 879, - "descent": -238, - "lineGap": 0, - "xAvgCharWidth": 408, - "unitsPerEm": 1000, - "azAvgWidth": 422.0232558139535 - }, - "Coda Caption": { - "category": "sans-serif", - "ascent": 2450, - "descent": -783, - "lineGap": 0, - "xAvgCharWidth": 1236, - "unitsPerEm": 2048, - "azAvgWidth": 1274.5813953488373 - }, - "Neuton": { - "category": "serif", - "ascent": 2106, - "descent": -485, - "lineGap": 0, - "xAvgCharWidth": 929, - "unitsPerEm": 2048, - "azAvgWidth": 777.3720930232558 - }, - "Faster One": { - "category": "display", - "ascent": 898, - "descent": -165, - "lineGap": 0, - "xAvgCharWidth": 678, - "unitsPerEm": 1000, - "azAvgWidth": 627.1162790697674 - }, - "Average": { - "category": "serif", - "ascent": 953, - "descent": -263, - "lineGap": 0, - "xAvgCharWidth": 420, - "unitsPerEm": 1000, - "azAvgWidth": 433.6744186046512 - }, - "Lexend": { - "category": "sans-serif", - "ascent": 1000, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 588, - "unitsPerEm": 1000, - "azAvgWidth": 505.5348837209302 - }, - "Ruda": { - "category": "sans-serif", - "ascent": 922, - "descent": -295, - "lineGap": 0, - "xAvgCharWidth": 541, - "unitsPerEm": 1000, - "azAvgWidth": 475.16279069767444 - }, - "Average Sans": { - "category": "sans-serif", - "ascent": 1027, - "descent": -269, - "lineGap": 0, - "xAvgCharWidth": 500, - "unitsPerEm": 1000, - "azAvgWidth": 420.13953488372096 - }, - "Noto Serif Myanmar": { - "category": "serif", - "ascent": 1239, - "descent": -1260, - "lineGap": 0, - "xAvgCharWidth": 568, - "unitsPerEm": 1000, - "azAvgWidth": 561.6279069767442 - }, - "Trirong": { - "category": "serif", - "ascent": 1200, - "descent": -534, - "lineGap": 0, - "xAvgCharWidth": 593, - "unitsPerEm": 1000, - "azAvgWidth": 493.04651162790697 - }, - "Kanit": { - "category": "sans-serif", - "ascent": 1100, - "descent": -395, - "lineGap": 0, - "xAvgCharWidth": 556, - "unitsPerEm": 1000, - "azAvgWidth": 470.30232558139534 - }, - "Lavishly Yours": { - "category": "handwriting", - "ascent": 1100, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 543, - "unitsPerEm": 1000, - "azAvgWidth": 285.95348837209303 - }, - "Joan": { - "category": "serif", - "ascent": 1000, - "descent": -292, - "lineGap": 0, - "xAvgCharWidth": 578, - "unitsPerEm": 1000, - "azAvgWidth": 423.3720930232558 - }, - "Baskervville": { - "category": "serif", - "ascent": 998, - "descent": -295, - "lineGap": 0, - "xAvgCharWidth": 532, - "unitsPerEm": 1000, - "azAvgWidth": 453.9767441860465 - }, - "Noto Sans Grantha": { - "category": "sans-serif", - "ascent": 1290, - "descent": -534, - "lineGap": 0, - "xAvgCharWidth": 1316, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Inknut Antiqua": { - "category": "serif", - "ascent": 1703, - "descent": -876, - "lineGap": 0, - "xAvgCharWidth": 791, - "unitsPerEm": 1000, - "azAvgWidth": 570.2093023255813 - }, - "Trocchi": { - "category": "serif", - "ascent": 2085, - "descent": -576, - "lineGap": 0, - "xAvgCharWidth": 1273, - "unitsPerEm": 2048, - "azAvgWidth": 1052.4651162790697 - }, - "Purple Purse": { - "category": "display", - "ascent": 1870, - "descent": -690, - "lineGap": 0, - "xAvgCharWidth": 909, - "unitsPerEm": 2048, - "azAvgWidth": 937.8837209302326 - }, - "Ovo": { - "category": "serif", - "ascent": 1770, - "descent": -534, - "lineGap": 0, - "xAvgCharWidth": 1057, - "unitsPerEm": 2048, - "azAvgWidth": 924.6046511627907 - }, - "Petit Formal Script": { - "category": "handwriting", - "ascent": 2033, - "descent": -527, - "lineGap": 0, - "xAvgCharWidth": 1097, - "unitsPerEm": 2048, - "azAvgWidth": 1136.8139534883721 - }, - "PT Serif Caption": { - "category": "serif", - "ascent": 1039, - "descent": -286, - "lineGap": 0, - "xAvgCharWidth": 633, - "unitsPerEm": 1000, - "azAvgWidth": 515.3953488372093 - }, - "Saira Semi Condensed": { - "category": "sans-serif", - "ascent": 1135, - "descent": -439, - "lineGap": 0, - "xAvgCharWidth": 505, - "unitsPerEm": 1000, - "azAvgWidth": 423.7674418604651 - }, - "Covered By Your Grace": { - "category": "handwriting", - "ascent": 995, - "descent": -384, - "lineGap": 0, - "xAvgCharWidth": 405, - "unitsPerEm": 1024, - "azAvgWidth": 392.4418604651163 - }, - "Overpass Mono": { - "category": "monospace", - "ascent": 1766, - "descent": -766, - "lineGap": 0, - "xAvgCharWidth": 1232, - "unitsPerEm": 2000, - "azAvgWidth": 1232 - }, - "Plaster": { - "category": "display", - "ascent": 2000, - "descent": -560, - "lineGap": 0, - "xAvgCharWidth": 1563, - "unitsPerEm": 2048, - "azAvgWidth": 1435.5581395348838 - }, - "Palanquin Dark": { - "category": "sans-serif", - "ascent": 1320, - "descent": -491, - "lineGap": 0, - "xAvgCharWidth": 829, - "unitsPerEm": 1000, - "azAvgWidth": 464.7906976744186 - }, - "Oranienbaum": { - "category": "serif", - "ascent": 895, - "descent": -260, - "lineGap": 0, - "xAvgCharWidth": 465, - "unitsPerEm": 1000, - "azAvgWidth": 412.4418604651163 - }, - "Autour One": { - "category": "display", - "ascent": 2010, - "descent": -550, - "lineGap": 0, - "xAvgCharWidth": 1379, - "unitsPerEm": 2048, - "azAvgWidth": 1288.8372093023256 - }, - "Oi": { - "category": "display", - "ascent": 1070, - "descent": -510, - "lineGap": 0, - "xAvgCharWidth": 1102, - "unitsPerEm": 1000, - "azAvgWidth": 841.9069767441861 - }, - "Twinkle Star": { - "category": "handwriting", - "ascent": 930, - "descent": -350, - "lineGap": 0, - "xAvgCharWidth": 563, - "unitsPerEm": 1000, - "azAvgWidth": 419.74418604651163 - }, - "Jacques Francois": { - "category": "serif", - "ascent": 2095, - "descent": -606, - "lineGap": 0, - "xAvgCharWidth": 1212, - "unitsPerEm": 2048, - "azAvgWidth": 953.3255813953489 - }, - "Alegreya Sans": { - "category": "sans-serif", - "ascent": 900, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 517, - "unitsPerEm": 1000, - "azAvgWidth": 398.5348837209302 - }, - "Noto Sans Zanabazar Square": { - "category": "sans-serif", - "ascent": 1621, - "descent": -821, - "lineGap": 0, - "xAvgCharWidth": 783, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Eater": { - "category": "display", - "ascent": 2898, - "descent": -919, - "lineGap": 0, - "xAvgCharWidth": 1278, - "unitsPerEm": 2048, - "azAvgWidth": 1313.2558139534883 - }, - "Orbitron": { - "category": "sans-serif", - "ascent": 1011, - "descent": -243, - "lineGap": 0, - "xAvgCharWidth": 672, - "unitsPerEm": 1000, - "azAvgWidth": 576.7674418604652 - }, - "Anton": { - "category": "sans-serif", - "ascent": 2409, - "descent": -674, - "lineGap": 0, - "xAvgCharWidth": 938, - "unitsPerEm": 2048, - "azAvgWidth": 859.2325581395348 - }, - "Koh Santepheap": { - "category": "display", - "ascent": 2050, - "descent": -550, - "lineGap": 0, - "xAvgCharWidth": 1326, - "unitsPerEm": 2048, - "azAvgWidth": 1018.2790697674419 - }, - "Bebas Neue": { - "category": "display", - "ascent": 900, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 387, - "unitsPerEm": 1000, - "azAvgWidth": 351.83720930232556 - }, - "Mr Bedfort": { - "category": "handwriting", - "ascent": 1015, - "descent": -661, - "lineGap": 0, - "xAvgCharWidth": 374, - "unitsPerEm": 1000, - "azAvgWidth": 379.51162790697674 - }, - "Arima": { - "category": "display", - "ascent": 1073, - "descent": -560, - "lineGap": 0, - "xAvgCharWidth": 633, - "unitsPerEm": 1000, - "azAvgWidth": 463.09302325581393 - }, - "Noto Sans Kayah Li": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 704, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Road Rage": { - "category": "display", - "ascent": 850, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 325, - "unitsPerEm": 1000, - "azAvgWidth": 261.48837209302326 - }, - "Jost": { - "category": "sans-serif", - "ascent": 1070, - "descent": -375, - "lineGap": 0, - "xAvgCharWidth": 546, - "unitsPerEm": 1000, - "azAvgWidth": 435.83720930232556 - }, - "Noto Sans Old Persian": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 1078, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Yuji Syuku": { - "category": "serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 970, - "unitsPerEm": 1000, - "azAvgWidth": 544.0232558139535 - }, - "Vujahday Script": { - "category": "handwriting", - "ascent": 950, - "descent": -410, - "lineGap": 0, - "xAvgCharWidth": 540, - "unitsPerEm": 1000, - "azAvgWidth": 376.9767441860465 - }, - "Noto Sans Elbasan": { - "category": "sans-serif", - "ascent": 847, - "descent": -270, - "lineGap": 0, - "xAvgCharWidth": 603, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Quantico": { - "category": "sans-serif", - "ascent": 1063, - "descent": -367, - "lineGap": 0, - "xAvgCharWidth": 469, - "unitsPerEm": 1000, - "azAvgWidth": 480.30232558139534 - }, - "Kumbh Sans": { - "category": "sans-serif", - "ascent": 2020, - "descent": -520, - "lineGap": 0, - "xAvgCharWidth": 1158, - "unitsPerEm": 2048, - "azAvgWidth": 987.6976744186046 - }, - "Noto Sans Lydian": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 584, - "unitsPerEm": 1000, - "azAvgWidth": 466.51162790697674 - }, - "Noto Sans Palmyrene": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 787, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Varela Round": { - "category": "sans-serif", - "ascent": 918, - "descent": -286, - "lineGap": 0, - "xAvgCharWidth": 588, - "unitsPerEm": 1000, - "azAvgWidth": 490.3255813953488 - }, - "PT Serif": { - "category": "serif", - "ascent": 1039, - "descent": -286, - "lineGap": 0, - "xAvgCharWidth": 564, - "unitsPerEm": 1000, - "azAvgWidth": 457.69767441860466 - }, - "Mate SC": { - "category": "serif", - "ascent": 958, - "descent": -262, - "lineGap": 0, - "xAvgCharWidth": 462, - "unitsPerEm": 1000, - "azAvgWidth": 468.6046511627907 - }, - "Cuprum": { - "category": "sans-serif", - "ascent": 895, - "descent": -260, - "lineGap": 0, - "xAvgCharWidth": 451, - "unitsPerEm": 1000, - "azAvgWidth": 394.30232558139534 - }, - "Bahiana": { - "category": "display", - "ascent": 900, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 316, - "unitsPerEm": 1000, - "azAvgWidth": 289.7906976744186 - }, - "Gudea": { - "category": "sans-serif", - "ascent": 972, - "descent": -264, - "lineGap": 0, - "xAvgCharWidth": 424, - "unitsPerEm": 1000, - "azAvgWidth": 435.25581395348837 - }, - "Noto Kufi Arabic": { - "category": "sans-serif", - "ascent": 1282, - "descent": -615, - "lineGap": 0, - "xAvgCharWidth": 643, - "unitsPerEm": 1000, - "azAvgWidth": 563.7209302325581 - }, - "Laila": { - "category": "sans-serif", - "ascent": 1098, - "descent": -452, - "lineGap": 0, - "xAvgCharWidth": 561, - "unitsPerEm": 1000, - "azAvgWidth": 473.5581395348837 - }, - "Kristi": { - "category": "handwriting", - "ascent": 1836, - "descent": -724, - "lineGap": 0, - "xAvgCharWidth": 541, - "unitsPerEm": 2048, - "azAvgWidth": 546.7209302325581 - }, - "Ms Madi": { - "category": "handwriting", - "ascent": 900, - "descent": -420, - "lineGap": 0, - "xAvgCharWidth": 543, - "unitsPerEm": 1000, - "azAvgWidth": 312.83720930232556 - }, - "Imprima": { - "category": "sans-serif", - "ascent": 919, - "descent": -239, - "lineGap": 0, - "xAvgCharWidth": 434, - "unitsPerEm": 1000, - "azAvgWidth": 446.4418604651163 - }, - "Parisienne": { - "category": "handwriting", - "ascent": 1875, - "descent": -915, - "lineGap": 0, - "xAvgCharWidth": 717, - "unitsPerEm": 2048, - "azAvgWidth": 740.8372093023256 - }, - "Passion One": { - "category": "display", - "ascent": 835, - "descent": -266, - "lineGap": 0, - "xAvgCharWidth": 369, - "unitsPerEm": 1000, - "azAvgWidth": 381.6279069767442 - }, - "Over the Rainbow": { - "category": "handwriting", - "ascent": 1412, - "descent": -677, - "lineGap": 0, - "xAvgCharWidth": 551, - "unitsPerEm": 1024, - "azAvgWidth": 476.04651162790697 - }, - "Noto Sans Khudawadi": { - "category": "sans-serif", - "ascent": 944, - "descent": -373, - "lineGap": 0, - "xAvgCharWidth": 683, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Abhaya Libre": { - "category": "serif", - "ascent": 860, - "descent": -348, - "lineGap": 0, - "xAvgCharWidth": 415, - "unitsPerEm": 1024, - "azAvgWidth": 427.09302325581393 - }, - "Overlock SC": { - "category": "display", - "ascent": 966, - "descent": -254, - "lineGap": 0, - "xAvgCharWidth": 444, - "unitsPerEm": 1000, - "azAvgWidth": 452.3720930232558 - }, - "Noto Sans Armenian": { - "category": "sans-serif", - "ascent": 1068, - "descent": -292, - "lineGap": 0, - "xAvgCharWidth": 643, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Risque": { - "category": "display", - "ascent": 1853, - "descent": -514, - "lineGap": 0, - "xAvgCharWidth": 877, - "unitsPerEm": 2048, - "azAvgWidth": 900.5348837209302 - }, - "Yantramanav": { - "category": "sans-serif", - "ascent": 1923, - "descent": -733, - "lineGap": 0, - "xAvgCharWidth": 1037, - "unitsPerEm": 2048, - "azAvgWidth": 865 - }, - "Noto Sans Meetei Mayek": { - "category": "sans-serif", - "ascent": 1069, - "descent": -321, - "lineGap": 0, - "xAvgCharWidth": 658, - "unitsPerEm": 1000, - "azAvgWidth": 555.3488372093024 - }, - "Telex": { - "category": "sans-serif", - "ascent": 945, - "descent": -260, - "lineGap": 0, - "xAvgCharWidth": 531, - "unitsPerEm": 1000, - "azAvgWidth": 476.72093023255815 - }, - "Ewert": { - "category": "display", - "ascent": 944, - "descent": -299, - "lineGap": 0, - "xAvgCharWidth": 662, - "unitsPerEm": 1000, - "azAvgWidth": 678.8604651162791 - }, - "Marko One": { - "category": "serif", - "ascent": 2019, - "descent": -727, - "lineGap": 0, - "xAvgCharWidth": 1084, - "unitsPerEm": 2048, - "azAvgWidth": 1124.046511627907 - }, - "Bodoni Moda": { - "category": "serif", - "ascent": 2250, - "descent": -800, - "lineGap": 0, - "xAvgCharWidth": 1155, - "unitsPerEm": 2000, - "azAvgWidth": 960.0930232558139 - }, - "Flamenco": { - "category": "display", - "ascent": 800, - "descent": -231, - "lineGap": 0, - "xAvgCharWidth": 392, - "unitsPerEm": 1000, - "azAvgWidth": 401.1162790697674 - }, - "Noto Sans Caucasian Albanian": { - "category": "sans-serif", - "ascent": 976, - "descent": -274, - "lineGap": 0, - "xAvgCharWidth": 561, - "unitsPerEm": 1000, - "azAvgWidth": 558.1395348837209 - }, - "Noto Sans Cypriot": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 694, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Codystar": { - "category": "display", - "ascent": 953, - "descent": -255, - "lineGap": 0, - "xAvgCharWidth": 627, - "unitsPerEm": 1024, - "azAvgWidth": 633.7209302325581 - }, - "Inika": { - "category": "serif", - "ascent": 1006, - "descent": -297, - "lineGap": 0, - "xAvgCharWidth": 464, - "unitsPerEm": 1000, - "azAvgWidth": 481.3255813953488 - }, - "Kranky": { - "category": "display", - "ascent": 977, - "descent": -294, - "lineGap": 28, - "xAvgCharWidth": 461, - "unitsPerEm": 1024, - "azAvgWidth": 474.3720930232558 - }, - "Liu Jian Mao Cao": { - "category": "handwriting", - "ascent": 880, - "descent": -120, - "lineGap": 0, - "xAvgCharWidth": 1011, - "unitsPerEm": 1000, - "azAvgWidth": 385.69767441860466 - }, - "Noto Rashi Hebrew": { - "category": "serif", - "ascent": 896, - "descent": -290, - "lineGap": 0, - "xAvgCharWidth": 557, - "unitsPerEm": 1000, - "azAvgWidth": 497.2325581395349 - }, - "Rubik Moonrocks": { - "category": "display", - "ascent": 935, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 635, - "unitsPerEm": 1000, - "azAvgWidth": 544.6279069767442 - }, - "Sora": { - "category": "sans-serif", - "ascent": 970, - "descent": -290, - "lineGap": 0, - "xAvgCharWidth": 590, - "unitsPerEm": 1000, - "azAvgWidth": 520.0697674418604 - }, - "Coming Soon": { - "category": "handwriting", - "ascent": 1053, - "descent": -498, - "lineGap": 21, - "xAvgCharWidth": 522, - "unitsPerEm": 1024, - "azAvgWidth": 485.48837209302326 - }, - "Nova Square": { - "category": "display", - "ascent": 1966, - "descent": -506, - "lineGap": 0, - "xAvgCharWidth": 1169, - "unitsPerEm": 2048, - "azAvgWidth": 1015.6279069767442 - }, - "Ruge Boogie": { - "category": "handwriting", - "ascent": 875, - "descent": -375, - "lineGap": 0, - "xAvgCharWidth": 469, - "unitsPerEm": 1000, - "azAvgWidth": 304.27906976744185 - }, - "Lilita One": { - "category": "display", - "ascent": 923, - "descent": -220, - "lineGap": 0, - "xAvgCharWidth": 423, - "unitsPerEm": 1000, - "azAvgWidth": 439.9767441860465 - }, - "Bubbler One": { - "category": "sans-serif", - "ascent": 900, - "descent": -263, - "lineGap": 0, - "xAvgCharWidth": 373, - "unitsPerEm": 1000, - "azAvgWidth": 389.6511627906977 - }, - "Edu QLD Beginner": { - "category": "handwriting", - "ascent": 1016, - "descent": -244, - "lineGap": 0, - "xAvgCharWidth": 461, - "unitsPerEm": 1000, - "azAvgWidth": 389.3720930232558 - }, - "Mirza": { - "category": "display", - "ascent": 547, - "descent": -453, - "lineGap": 200, - "xAvgCharWidth": 548, - "unitsPerEm": 1000, - "azAvgWidth": 408 - }, - "Albert Sans": { - "category": "sans-serif", - "ascent": 950, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 556, - "unitsPerEm": 1000, - "azAvgWidth": 474.69767441860466 - }, - "Noto Serif Tamil": { - "category": "serif", - "ascent": 1069, - "descent": -492, - "lineGap": 0, - "xAvgCharWidth": 742, - "unitsPerEm": 1000, - "azAvgWidth": 497.2325581395349 - }, - "Bilbo Swash Caps": { - "category": "handwriting", - "ascent": 850, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 264, - "unitsPerEm": 1000, - "azAvgWidth": 272.48837209302326 - }, - "Cinzel Decorative": { - "category": "display", - "ascent": 976, - "descent": -372, - "lineGap": 0, - "xAvgCharWidth": 625, - "unitsPerEm": 1000, - "azAvgWidth": 610.3255813953489 - }, - "Srisakdi": { - "category": "display", - "ascent": 950, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 534, - "unitsPerEm": 1000, - "azAvgWidth": 420.8139534883721 - }, - "Rubik Maze": { - "category": "display", - "ascent": 935, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 635, - "unitsPerEm": 1000, - "azAvgWidth": 544.6279069767442 - }, - "Staatliches": { - "category": "display", - "ascent": 950, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 446, - "unitsPerEm": 1000, - "azAvgWidth": 395.16279069767444 - }, - "Sulphur Point": { - "category": "sans-serif", - "ascent": 790, - "descent": -210, - "lineGap": 0, - "xAvgCharWidth": 504, - "unitsPerEm": 1000, - "azAvgWidth": 485.51162790697674 - }, - "Sura": { - "category": "serif", - "ascent": 2359, - "descent": -872, - "lineGap": 0, - "xAvgCharWidth": 1083, - "unitsPerEm": 2048, - "azAvgWidth": 932.4651162790698 - }, - "Qwitcher Grypen": { - "category": "handwriting", - "ascent": 800, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 379, - "unitsPerEm": 1000, - "azAvgWidth": 239.30232558139534 - }, - "Akaya Telivigala": { - "category": "display", - "ascent": 920, - "descent": -276, - "lineGap": 0, - "xAvgCharWidth": 685, - "unitsPerEm": 1000, - "azAvgWidth": 420.06976744186045 - }, - "Corben": { - "category": "display", - "ascent": 2826, - "descent": -969, - "lineGap": 0, - "xAvgCharWidth": 941, - "unitsPerEm": 2048, - "azAvgWidth": 983.2790697674419 - }, - "Stalemate": { - "category": "handwriting", - "ascent": 1837, - "descent": -1165, - "lineGap": 0, - "xAvgCharWidth": 422, - "unitsPerEm": 2048, - "azAvgWidth": 434.2325581395349 - }, - "Gayathri": { - "category": "sans-serif", - "ascent": 1500, - "descent": -1000, - "lineGap": 0, - "xAvgCharWidth": 1799, - "unitsPerEm": 2048, - "azAvgWidth": 937.3023255813954 - }, - "Single Day": { - "category": "display", - "ascent": 779, - "descent": -245, - "lineGap": 256, - "xAvgCharWidth": 831, - "unitsPerEm": 1024, - "azAvgWidth": 403.6279069767442 - }, - "Fascinate Inline": { - "category": "display", - "ascent": 2125, - "descent": -591, - "lineGap": 0, - "xAvgCharWidth": 1123, - "unitsPerEm": 2048, - "azAvgWidth": 1148.1860465116279 - }, - "Mea Culpa": { - "category": "handwriting", - "ascent": 1000, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 540, - "unitsPerEm": 1000, - "azAvgWidth": 273.93023255813955 - }, - "Karma": { - "category": "serif", - "ascent": 945, - "descent": -508, - "lineGap": 0, - "xAvgCharWidth": 528, - "unitsPerEm": 1000, - "azAvgWidth": 448.6279069767442 - }, - "Fugaz One": { - "category": "display", - "ascent": 1046, - "descent": -422, - "lineGap": 0, - "xAvgCharWidth": 502, - "unitsPerEm": 1000, - "azAvgWidth": 513.6976744186046 - }, - "Edu SA Beginner": { - "category": "handwriting", - "ascent": 1016, - "descent": -244, - "lineGap": 0, - "xAvgCharWidth": 475, - "unitsPerEm": 1000, - "azAvgWidth": 361.4418604651163 - }, - "Saira Condensed": { - "category": "sans-serif", - "ascent": 1135, - "descent": -439, - "lineGap": 0, - "xAvgCharWidth": 433, - "unitsPerEm": 1000, - "azAvgWidth": 365.48837209302326 - }, - "Calligraffitti": { - "category": "handwriting", - "ascent": 986, - "descent": -607, - "lineGap": 14, - "xAvgCharWidth": 504, - "unitsPerEm": 1024, - "azAvgWidth": 387.06976744186045 - }, - "Paytone One": { - "category": "sans-serif", - "ascent": 1113, - "descent": -283, - "lineGap": 0, - "xAvgCharWidth": 602, - "unitsPerEm": 1000, - "azAvgWidth": 526.9069767441861 - }, - "Noto Sans Buhid": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 566, - "unitsPerEm": 1000, - "azAvgWidth": 485.8139534883721 - }, - "Allison": { - "category": "handwriting", - "ascent": 890, - "descent": -380, - "lineGap": 0, - "xAvgCharWidth": 419, - "unitsPerEm": 1000, - "azAvgWidth": 230.90697674418604 - }, - "Spirax": { - "category": "display", - "ascent": 947, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 422, - "unitsPerEm": 1000, - "azAvgWidth": 439.3720930232558 - }, - "Noto Sans Linear B": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 841, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Rubik Iso": { - "category": "display", - "ascent": 935, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 635, - "unitsPerEm": 1000, - "azAvgWidth": 544.6279069767442 - }, - "VT323": { - "category": "monospace", - "ascent": 800, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 400, - "unitsPerEm": 1000, - "azAvgWidth": 400 - }, - "Noto Sans New Tai Lue": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 674, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Alegreya SC": { - "category": "serif", - "ascent": 1016, - "descent": -345, - "lineGap": 0, - "xAvgCharWidth": 560, - "unitsPerEm": 1000, - "azAvgWidth": 476.5813953488372 - }, - "BioRhyme Expanded": { - "category": "serif", - "ascent": 1127, - "descent": -422, - "lineGap": 0, - "xAvgCharWidth": 1005, - "unitsPerEm": 1000, - "azAvgWidth": 929.4418604651163 - }, - "Bitter": { - "category": "serif", - "ascent": 935, - "descent": -265, - "lineGap": 0, - "xAvgCharWidth": 587, - "unitsPerEm": 1000, - "azAvgWidth": 478.5581395348837 - }, - "Noto Sans Devanagari": { - "category": "sans-serif", - "ascent": 896, - "descent": -408, - "lineGap": 0, - "xAvgCharWidth": 555, - "unitsPerEm": 1000, - "azAvgWidth": 485.8139534883721 - }, - "Pinyon Script": { - "category": "handwriting", - "ascent": 1768, - "descent": -787, - "lineGap": 0, - "xAvgCharWidth": 1043, - "unitsPerEm": 2048, - "azAvgWidth": 728.2325581395348 - }, - "Ranga": { - "category": "display", - "ascent": 2218, - "descent": -1027, - "lineGap": 0, - "xAvgCharWidth": 863, - "unitsPerEm": 2218, - "azAvgWidth": 677.3023255813954 - }, - "Waterfall": { - "category": "handwriting", - "ascent": 880, - "descent": -280, - "lineGap": 0, - "xAvgCharWidth": 545, - "unitsPerEm": 1000, - "azAvgWidth": 237.6046511627907 - }, - "Noto Sans Adlam Unjoined": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 562, - "unitsPerEm": 1000, - "azAvgWidth": 528.7906976744187 - }, - "Flavors": { - "category": "display", - "ascent": 1015, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 431, - "unitsPerEm": 1024, - "azAvgWidth": 441.3488372093023 - }, - "Playfair Display SC": { - "category": "serif", - "ascent": 1082, - "descent": -251, - "lineGap": 0, - "xAvgCharWidth": 568, - "unitsPerEm": 1000, - "azAvgWidth": 564.3255813953489 - }, - "Yusei Magic": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 980, - "unitsPerEm": 1000, - "azAvgWidth": 510.6511627906977 - }, - "Noto Sans Elymaic": { - "category": "sans-serif", - "ascent": 920, - "descent": -280, - "lineGap": 0, - "xAvgCharWidth": 725, - "unitsPerEm": 1000, - "azAvgWidth": 572.0930232558139 - }, - "Beth Ellen": { - "category": "handwriting", - "ascent": 3250, - "descent": -1190, - "lineGap": 0, - "xAvgCharWidth": 1424, - "unitsPerEm": 2000, - "azAvgWidth": 1112.5581395348838 - }, - "Merienda": { - "category": "handwriting", - "ascent": 1102, - "descent": -342, - "lineGap": 0, - "xAvgCharWidth": 562, - "unitsPerEm": 1000, - "azAvgWidth": 515.6976744186046 - }, - "Merriweather Sans": { - "category": "sans-serif", - "ascent": 1968, - "descent": -546, - "lineGap": 0, - "xAvgCharWidth": 1245, - "unitsPerEm": 2000, - "azAvgWidth": 973.4651162790698 - }, - "Leckerli One": { - "category": "handwriting", - "ascent": 1032, - "descent": -313, - "lineGap": 0, - "xAvgCharWidth": 551, - "unitsPerEm": 1000, - "azAvgWidth": 471.3720930232558 - }, - "Inder": { - "category": "sans-serif", - "ascent": 2040, - "descent": -520, - "lineGap": 0, - "xAvgCharWidth": 1142, - "unitsPerEm": 2048, - "azAvgWidth": 1000.1162790697674 - }, - "Revalia": { - "category": "display", - "ascent": 2146, - "descent": 382, - "lineGap": 0, - "xAvgCharWidth": 1538, - "unitsPerEm": 2048, - "azAvgWidth": 1368 - }, - "Noto Serif Bengali": { - "category": "serif", - "ascent": 1092, - "descent": -502, - "lineGap": 0, - "xAvgCharWidth": 630, - "unitsPerEm": 1000, - "azAvgWidth": 496.95348837209303 - }, - "Explora": { - "category": "handwriting", - "ascent": 850, - "descent": -350, - "lineGap": 0, - "xAvgCharWidth": 397, - "unitsPerEm": 1000, - "azAvgWidth": 238.6046511627907 - }, - "Krona One": { - "category": "sans-serif", - "ascent": 2030, - "descent": -530, - "lineGap": 0, - "xAvgCharWidth": 1344, - "unitsPerEm": 2048, - "azAvgWidth": 1383.1627906976744 - }, - "Jomhuria": { - "category": "display", - "ascent": 1840, - "descent": -1160, - "lineGap": 0, - "xAvgCharWidth": 1079, - "unitsPerEm": 3000, - "azAvgWidth": 764.6511627906976 - }, - "Hanalei Fill": { - "category": "display", - "ascent": 2124, - "descent": -541, - "lineGap": 0, - "xAvgCharWidth": 940, - "unitsPerEm": 2048, - "azAvgWidth": 967.4883720930233 - }, - "Expletus Sans": { - "category": "display", - "ascent": 2066, - "descent": -612, - "lineGap": 0, - "xAvgCharWidth": 1091, - "unitsPerEm": 2000, - "azAvgWidth": 948.1860465116279 - }, - "Assistant": { - "category": "sans-serif", - "ascent": 1021, - "descent": -287, - "lineGap": 0, - "xAvgCharWidth": 458, - "unitsPerEm": 1000, - "azAvgWidth": 425.74418604651163 - }, - "Reem Kufi": { - "category": "sans-serif", - "ascent": 1100, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 604, - "unitsPerEm": 1000, - "azAvgWidth": 445.3488372093023 - }, - "Rationale": { - "category": "sans-serif", - "ascent": 903, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 360, - "unitsPerEm": 1000, - "azAvgWidth": 371.90697674418607 - }, - "Alata": { - "category": "sans-serif", - "ascent": 1100, - "descent": -280, - "lineGap": 0, - "xAvgCharWidth": 588, - "unitsPerEm": 1000, - "azAvgWidth": 469.2093023255814 - }, - "Love Light": { - "category": "handwriting", - "ascent": 900, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 504, - "unitsPerEm": 1000, - "azAvgWidth": 274.95348837209303 - }, - "STIX Two Text": { - "category": "serif", - "ascent": 762, - "descent": -238, - "lineGap": 250, - "xAvgCharWidth": 557, - "unitsPerEm": 1000, - "azAvgWidth": 435.5581395348837 - }, - "Martel Sans": { - "category": "sans-serif", - "ascent": 1150, - "descent": -674, - "lineGap": 0, - "xAvgCharWidth": 590, - "unitsPerEm": 1000, - "azAvgWidth": 491.5348837209302 - }, - "IM Fell DW Pica": { - "category": "serif", - "ascent": 1868, - "descent": -692, - "lineGap": 0, - "xAvgCharWidth": 796, - "unitsPerEm": 2048, - "azAvgWidth": 822.7906976744187 - }, - "Yuji Mai": { - "category": "serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 970, - "unitsPerEm": 1000, - "azAvgWidth": 547.7674418604652 - }, - "Advent Pro": { - "category": "sans-serif", - "ascent": 964, - "descent": -232, - "lineGap": 0, - "xAvgCharWidth": 480, - "unitsPerEm": 1000, - "azAvgWidth": 402.83720930232556 - }, - "Flow Rounded": { - "category": "display", - "ascent": 1000, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 494, - "unitsPerEm": 1000, - "azAvgWidth": 516.046511627907 - }, - "Lobster Two": { - "category": "display", - "ascent": 1000, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 520, - "unitsPerEm": 1000, - "azAvgWidth": 372.13953488372096 - }, - "Amarante": { - "category": "display", - "ascent": 2020, - "descent": -540, - "lineGap": 0, - "xAvgCharWidth": 1061, - "unitsPerEm": 2048, - "azAvgWidth": 922.5116279069767 - }, - "Noto Sans Javanese": { - "category": "sans-serif", - "ascent": 1120, - "descent": -916, - "lineGap": 0, - "xAvgCharWidth": 945, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Oleo Script Swash Caps": { - "category": "display", - "ascent": 1004, - "descent": -379, - "lineGap": 0, - "xAvgCharWidth": 504, - "unitsPerEm": 1000, - "azAvgWidth": 389.1860465116279 - }, - "Noto Sans Imperial Aramaic": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 629, - "unitsPerEm": 1000, - "azAvgWidth": 466.51162790697674 - }, - "Lacquer": { - "category": "display", - "ascent": 1000, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 534, - "unitsPerEm": 1000, - "azAvgWidth": 506.86046511627904 - }, - "Kumar One Outline": { - "category": "display", - "ascent": 1137, - "descent": -642, - "lineGap": 0, - "xAvgCharWidth": 894, - "unitsPerEm": 1000, - "azAvgWidth": 622.8604651162791 - }, - "Noto Serif Thai": { - "category": "serif", - "ascent": 1064, - "descent": -534, - "lineGap": 0, - "xAvgCharWidth": 580, - "unitsPerEm": 1000, - "azAvgWidth": 497.2325581395349 - }, - "Macondo Swash Caps": { - "category": "display", - "ascent": 888, - "descent": -292, - "lineGap": 0, - "xAvgCharWidth": 414, - "unitsPerEm": 1000, - "azAvgWidth": 427.25581395348837 - }, - "Libre Barcode 128": { - "category": "display", - "ascent": 600, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 331, - "unitsPerEm": 1000, - "azAvgWidth": 330 - }, - "Mukta Vaani": { - "category": "sans-serif", - "ascent": 1130, - "descent": -532, - "lineGap": 0, - "xAvgCharWidth": 599, - "unitsPerEm": 1000, - "azAvgWidth": 431.06976744186045 - }, - "Meie Script": { - "category": "handwriting", - "ascent": 1814, - "descent": -780, - "lineGap": 0, - "xAvgCharWidth": 1225, - "unitsPerEm": 2048, - "azAvgWidth": 820.046511627907 - }, - "Noto Sans Kannada": { - "category": "sans-serif", - "ascent": 809, - "descent": -540, - "lineGap": 0, - "xAvgCharWidth": 553, - "unitsPerEm": 1000, - "azAvgWidth": 489.72093023255815 - }, - "Smooch": { - "category": "handwriting", - "ascent": 950, - "descent": -450, - "lineGap": 0, - "xAvgCharWidth": 556, - "unitsPerEm": 1000, - "azAvgWidth": 340.51162790697674 - }, - "Fjord One": { - "category": "serif", - "ascent": 1940, - "descent": -620, - "lineGap": 0, - "xAvgCharWidth": 1088, - "unitsPerEm": 2048, - "azAvgWidth": 940.4418604651163 - }, - "Jolly Lodger": { - "category": "display", - "ascent": 988, - "descent": -257, - "lineGap": 0, - "xAvgCharWidth": 291, - "unitsPerEm": 1024, - "azAvgWidth": 294.7674418604651 - }, - "Roboto Serif": { - "category": "serif", - "ascent": 927, - "descent": -244, - "lineGap": 0, - "xAvgCharWidth": 586, - "unitsPerEm": 1000, - "azAvgWidth": 533.7674418604652 - }, - "Margarine": { - "category": "display", - "ascent": 2075, - "descent": -678, - "lineGap": 0, - "xAvgCharWidth": 931, - "unitsPerEm": 2048, - "azAvgWidth": 955.2558139534884 - }, - "Michroma": { - "category": "sans-serif", - "ascent": 2368, - "descent": -544, - "lineGap": 0, - "xAvgCharWidth": 1289, - "unitsPerEm": 2048, - "azAvgWidth": 1336.2325581395348 - }, - "Oxygen": { - "category": "sans-serif", - "ascent": 2103, - "descent": -483, - "lineGap": 0, - "xAvgCharWidth": 919, - "unitsPerEm": 2048, - "azAvgWidth": 947.2558139534884 - }, - "Rubik Bubbles": { - "category": "display", - "ascent": 935, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 635, - "unitsPerEm": 1000, - "azAvgWidth": 544.6279069767442 - }, - "Finlandica": { - "category": "sans-serif", - "ascent": 950, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 526, - "unitsPerEm": 1000, - "azAvgWidth": 435.2093023255814 - }, - "Anek Malayalam": { - "category": "sans-serif", - "ascent": 2035, - "descent": -830, - "lineGap": 0, - "xAvgCharWidth": 1379, - "unitsPerEm": 2000, - "azAvgWidth": 876.3720930232558 - }, - "Poller One": { - "category": "display", - "ascent": 1920, - "descent": -514, - "lineGap": 0, - "xAvgCharWidth": 1469, - "unitsPerEm": 2048, - "azAvgWidth": 1302.7209302325582 - }, - "Share Tech Mono": { - "category": "monospace", - "ascent": 885, - "descent": -242, - "lineGap": 0, - "xAvgCharWidth": 544, - "unitsPerEm": 1000, - "azAvgWidth": 540 - }, - "Nothing You Could Do": { - "category": "handwriting", - "ascent": 959, - "descent": -407, - "lineGap": 0, - "xAvgCharWidth": 533, - "unitsPerEm": 1024, - "azAvgWidth": 502.8837209302326 - }, - "Rampart One": { - "category": "display", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 969, - "unitsPerEm": 1000, - "azAvgWidth": 544.6279069767442 - }, - "Arapey": { - "category": "serif", - "ascent": 868, - "descent": -228, - "lineGap": 0, - "xAvgCharWidth": 399, - "unitsPerEm": 1000, - "azAvgWidth": 408.2325581395349 - }, - "Noto Sans Batak": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 862, - "unitsPerEm": 1000, - "azAvgWidth": 466.51162790697674 - }, - "Creepster": { - "category": "display", - "ascent": 974, - "descent": -223, - "lineGap": 0, - "xAvgCharWidth": 421, - "unitsPerEm": 1024, - "azAvgWidth": 423.3488372093023 - }, - "Marcellus": { - "category": "serif", - "ascent": 1995, - "descent": -573, - "lineGap": 0, - "xAvgCharWidth": 931, - "unitsPerEm": 2048, - "azAvgWidth": 955.5581395348837 - }, - "Noto Sans Lycian": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 596, - "unitsPerEm": 1000, - "azAvgWidth": 466.51162790697674 - }, - "Uncial Antiqua": { - "category": "display", - "ascent": 2019, - "descent": -676, - "lineGap": 0, - "xAvgCharWidth": 1167, - "unitsPerEm": 2048, - "azAvgWidth": 1193.3023255813953 - }, - "Berkshire Swash": { - "category": "handwriting", - "ascent": 2007, - "descent": -537, - "lineGap": 0, - "xAvgCharWidth": 855, - "unitsPerEm": 2048, - "azAvgWidth": 884.1162790697674 - }, - "Raleway Dots": { - "category": "display", - "ascent": 918, - "descent": -213, - "lineGap": 0, - "xAvgCharWidth": 453, - "unitsPerEm": 1000, - "azAvgWidth": 469.3488372093023 - }, - "Combo": { - "category": "display", - "ascent": 907, - "descent": -269, - "lineGap": 0, - "xAvgCharWidth": 461, - "unitsPerEm": 1000, - "azAvgWidth": 410.6279069767442 - }, - "Alef": { - "category": "sans-serif", - "ascent": 2067, - "descent": -722, - "lineGap": 0, - "xAvgCharWidth": 1093, - "unitsPerEm": 2048, - "azAvgWidth": 963.6744186046511 - }, - "M PLUS 2": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 968, - "unitsPerEm": 1000, - "azAvgWidth": 500.72093023255815 - }, - "Proza Libre": { - "category": "sans-serif", - "ascent": 1996, - "descent": -800, - "lineGap": 0, - "xAvgCharWidth": 1202, - "unitsPerEm": 2048, - "azAvgWidth": 1015.1860465116279 - }, - "Noto Sans Limbu": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 544, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Miniver": { - "category": "display", - "ascent": 1019, - "descent": -474, - "lineGap": 0, - "xAvgCharWidth": 437, - "unitsPerEm": 1024, - "azAvgWidth": 446.5581395348837 - }, - "Rochester": { - "category": "handwriting", - "ascent": 2109, - "descent": -528, - "lineGap": 0, - "xAvgCharWidth": 918, - "unitsPerEm": 2048, - "azAvgWidth": 679.9302325581396 - }, - "Oregano": { - "category": "display", - "ascent": 1975, - "descent": -669, - "lineGap": 0, - "xAvgCharWidth": 662, - "unitsPerEm": 2048, - "azAvgWidth": 689.2558139534884 - }, - "Langar": { - "category": "display", - "ascent": 739, - "descent": -200, - "lineGap": 455, - "xAvgCharWidth": 549, - "unitsPerEm": 1000, - "azAvgWidth": 461.16279069767444 - }, - "Orelega One": { - "category": "display", - "ascent": 3296, - "descent": -801, - "lineGap": 369, - "xAvgCharWidth": 2293, - "unitsPerEm": 4096, - "azAvgWidth": 1904.1162790697674 - }, - "Girassol": { - "category": "display", - "ascent": 944, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 480, - "unitsPerEm": 1000, - "azAvgWidth": 427.2093023255814 - }, - "Bubblegum Sans": { - "category": "display", - "ascent": 852, - "descent": -311, - "lineGap": 0, - "xAvgCharWidth": 364, - "unitsPerEm": 1000, - "azAvgWidth": 382.1860465116279 - }, - "Caesar Dressing": { - "category": "display", - "ascent": 1017, - "descent": -226, - "lineGap": 0, - "xAvgCharWidth": 459, - "unitsPerEm": 1024, - "azAvgWidth": 469.51162790697674 - }, - "Germania One": { - "category": "display", - "ascent": 911, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 392, - "unitsPerEm": 1000, - "azAvgWidth": 405.3255813953488 - }, - "Noto Sans Takri": { - "category": "sans-serif", - "ascent": 955, - "descent": -307, - "lineGap": 0, - "xAvgCharWidth": 522, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Lekton": { - "category": "sans-serif", - "ascent": 750, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 500, - "unitsPerEm": 1000, - "azAvgWidth": 500 - }, - "Stardos Stencil": { - "category": "display", - "ascent": 1994, - "descent": -831, - "lineGap": 0, - "xAvgCharWidth": 901, - "unitsPerEm": 2048, - "azAvgWidth": 922.7209302325581 - }, - "Newsreader": { - "category": "serif", - "ascent": 1470, - "descent": -530, - "lineGap": 0, - "xAvgCharWidth": 1087, - "unitsPerEm": 2000, - "azAvgWidth": 874.4186046511628 - }, - "Economica": { - "category": "sans-serif", - "ascent": 949, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 307, - "unitsPerEm": 1000, - "azAvgWidth": 315.6279069767442 - }, - "Updock": { - "category": "handwriting", - "ascent": 900, - "descent": -350, - "lineGap": 0, - "xAvgCharWidth": 453, - "unitsPerEm": 1000, - "azAvgWidth": 256.1162790697674 - }, - "Tauri": { - "category": "sans-serif", - "ascent": 2040, - "descent": -520, - "lineGap": 0, - "xAvgCharWidth": 1124, - "unitsPerEm": 2048, - "azAvgWidth": 998.0697674418604 - }, - "Arbutus": { - "category": "display", - "ascent": 2010, - "descent": -550, - "lineGap": 0, - "xAvgCharWidth": 1507, - "unitsPerEm": 2048, - "azAvgWidth": 1334.906976744186 - }, - "Miriam Libre": { - "category": "sans-serif", - "ascent": 969, - "descent": -344, - "lineGap": 0, - "xAvgCharWidth": 558, - "unitsPerEm": 1000, - "azAvgWidth": 500.30232558139534 - }, - "Rubik Beastly": { - "category": "display", - "ascent": 935, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 635, - "unitsPerEm": 1000, - "azAvgWidth": 544.6279069767442 - }, - "Noto Sans Masaram Gondi": { - "category": "sans-serif", - "ascent": 1000, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 567, - "unitsPerEm": 1000, - "azAvgWidth": 569.3023255813954 - }, - "Felipa": { - "category": "handwriting", - "ascent": 966, - "descent": -319, - "lineGap": 0, - "xAvgCharWidth": 332, - "unitsPerEm": 1000, - "azAvgWidth": 341.25581395348837 - }, - "Manuale": { - "category": "serif", - "ascent": 980, - "descent": -236, - "lineGap": 221, - "xAvgCharWidth": 524, - "unitsPerEm": 1000, - "azAvgWidth": 454.48837209302326 - }, - "Grenze": { - "category": "serif", - "ascent": 1100, - "descent": -380, - "lineGap": 0, - "xAvgCharWidth": 461, - "unitsPerEm": 1000, - "azAvgWidth": 365.1162790697674 - }, - "Inspiration": { - "category": "handwriting", - "ascent": 870, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 431, - "unitsPerEm": 1000, - "azAvgWidth": 240.1860465116279 - }, - "Averia Gruesa Libre": { - "category": "display", - "ascent": 1952, - "descent": -492, - "lineGap": 0, - "xAvgCharWidth": 909, - "unitsPerEm": 2048, - "azAvgWidth": 935.953488372093 - }, - "Cousine": { - "category": "monospace", - "ascent": 1705, - "descent": -615, - "lineGap": 0, - "xAvgCharWidth": 1229, - "unitsPerEm": 2048, - "azAvgWidth": 1229 - }, - "Noto Sans Syriac": { - "category": "sans-serif", - "ascent": 926, - "descent": -486, - "lineGap": 0, - "xAvgCharWidth": 583, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Cormorant": { - "category": "serif", - "ascent": 924, - "descent": -287, - "lineGap": 0, - "xAvgCharWidth": 539, - "unitsPerEm": 1000, - "azAvgWidth": 400.6046511627907 - }, - "Sniglet": { - "category": "display", - "ascent": 956, - "descent": -289, - "lineGap": 0, - "xAvgCharWidth": 440, - "unitsPerEm": 1000, - "azAvgWidth": 455.5813953488372 - }, - "Tomorrow": { - "category": "sans-serif", - "ascent": 1000, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 592, - "unitsPerEm": 1000, - "azAvgWidth": 494.69767441860466 - }, - "Shadows Into Light": { - "category": "handwriting", - "ascent": 1203, - "descent": -442, - "lineGap": 0, - "xAvgCharWidth": 425, - "unitsPerEm": 1024, - "azAvgWidth": 399.30232558139534 - }, - "Linden Hill": { - "category": "serif", - "ascent": 3633, - "descent": -1888, - "lineGap": 0, - "xAvgCharWidth": 2086, - "unitsPerEm": 4096, - "azAvgWidth": 1589.0232558139535 - }, - "Noto Serif Hebrew": { - "category": "serif", - "ascent": 896, - "descent": -290, - "lineGap": 0, - "xAvgCharWidth": 565, - "unitsPerEm": 1000, - "azAvgWidth": 497.2325581395349 - }, - "Old Standard TT": { - "category": "serif", - "ascent": 762, - "descent": -238, - "lineGap": 236, - "xAvgCharWidth": 604, - "unitsPerEm": 1000, - "azAvgWidth": 445.1162790697674 - }, - "Allura": { - "category": "handwriting", - "ascent": 800, - "descent": -450, - "lineGap": 0, - "xAvgCharWidth": 574, - "unitsPerEm": 1000, - "azAvgWidth": 338.6046511627907 - }, - "Archivo Black": { - "category": "sans-serif", - "ascent": 878, - "descent": -210, - "lineGap": 0, - "xAvgCharWidth": 652, - "unitsPerEm": 1000, - "azAvgWidth": 568.5116279069767 - }, - "Bowlby One SC": { - "category": "display", - "ascent": 2248, - "descent": -876, - "lineGap": 0, - "xAvgCharWidth": 1334, - "unitsPerEm": 2048, - "azAvgWidth": 1251.6279069767443 - }, - "Sahitya": { - "category": "serif", - "ascent": 1106, - "descent": -447, - "lineGap": 0, - "xAvgCharWidth": 505, - "unitsPerEm": 1000, - "azAvgWidth": 420.74418604651163 - }, - "Share Tech": { - "category": "sans-serif", - "ascent": 885, - "descent": -242, - "lineGap": 0, - "xAvgCharWidth": 454, - "unitsPerEm": 1000, - "azAvgWidth": 412.13953488372096 - }, - "Noto Sans Old Sogdian": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 596, - "unitsPerEm": 1000, - "azAvgWidth": 537.2093023255813 - }, - "Candal": { - "category": "sans-serif", - "ascent": 2226, - "descent": -432, - "lineGap": 0, - "xAvgCharWidth": 1328, - "unitsPerEm": 2048, - "azAvgWidth": 1224.6976744186047 - }, - "Pathway Gothic One": { - "category": "sans-serif", - "ascent": 954, - "descent": -198, - "lineGap": 0, - "xAvgCharWidth": 351, - "unitsPerEm": 1000, - "azAvgWidth": 318.4418604651163 - }, - "Noto Sans Duployan": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 591, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "League Script": { - "category": "handwriting", - "ascent": 1100, - "descent": -600, - "lineGap": 0, - "xAvgCharWidth": 793, - "unitsPerEm": 1536, - "azAvgWidth": 688.0697674418604 - }, - "Noto Sans Oriya": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 675, - "unitsPerEm": 1000, - "azAvgWidth": 1093.5116279069769 - }, - "Diplomata SC": { - "category": "display", - "ascent": 930, - "descent": -287, - "lineGap": 0, - "xAvgCharWidth": 1053, - "unitsPerEm": 1000, - "azAvgWidth": 1077.3953488372092 - }, - "Poly": { - "category": "serif", - "ascent": 964, - "descent": -224, - "lineGap": 0, - "xAvgCharWidth": 445, - "unitsPerEm": 1000, - "azAvgWidth": 458.69767441860466 - }, - "Belleza": { - "category": "sans-serif", - "ascent": 928, - "descent": -224, - "lineGap": 0, - "xAvgCharWidth": 502, - "unitsPerEm": 1000, - "azAvgWidth": 409.8139534883721 - }, - "Martel": { - "category": "serif", - "ascent": 1125, - "descent": -562, - "lineGap": 0, - "xAvgCharWidth": 609, - "unitsPerEm": 1000, - "azAvgWidth": 511.51162790697674 - }, - "Source Serif 4": { - "category": "serif", - "ascent": 1036, - "descent": -335, - "lineGap": 0, - "xAvgCharWidth": 558, - "unitsPerEm": 1000, - "azAvgWidth": 494.2093023255814 - }, - "Saira": { - "category": "sans-serif", - "ascent": 1135, - "descent": -439, - "lineGap": 0, - "xAvgCharWidth": 564, - "unitsPerEm": 1000, - "azAvgWidth": 478.3488372093023 - }, - "Cagliostro": { - "category": "sans-serif", - "ascent": 998, - "descent": -355, - "lineGap": 0, - "xAvgCharWidth": 429, - "unitsPerEm": 1000, - "azAvgWidth": 439.9767441860465 - }, - "Manjari": { - "category": "sans-serif", - "ascent": 1500, - "descent": -750, - "lineGap": 0, - "xAvgCharWidth": 1813, - "unitsPerEm": 2048, - "azAvgWidth": 952.4883720930233 - }, - "Tiro Tamil": { - "category": "serif", - "ascent": 755, - "descent": -245, - "lineGap": 436, - "xAvgCharWidth": 667, - "unitsPerEm": 1000, - "azAvgWidth": 465.74418604651163 - }, - "Share": { - "category": "display", - "ascent": 885, - "descent": -242, - "lineGap": 0, - "xAvgCharWidth": 405, - "unitsPerEm": 1000, - "azAvgWidth": 416.83720930232556 - }, - "Salsa": { - "category": "display", - "ascent": 974, - "descent": -252, - "lineGap": 0, - "xAvgCharWidth": 456, - "unitsPerEm": 1000, - "azAvgWidth": 469.51162790697674 - }, - "Thasadith": { - "category": "sans-serif", - "ascent": 1005, - "descent": -295, - "lineGap": 0, - "xAvgCharWidth": 493, - "unitsPerEm": 1000, - "azAvgWidth": 406.3488372093023 - }, - "Rufina": { - "category": "serif", - "ascent": 945, - "descent": -290, - "lineGap": 0, - "xAvgCharWidth": 546, - "unitsPerEm": 1000, - "azAvgWidth": 480.6744186046512 - }, - "Slackey": { - "category": "display", - "ascent": 1078, - "descent": -351, - "lineGap": 28, - "xAvgCharWidth": 634, - "unitsPerEm": 1024, - "azAvgWidth": 649.8139534883721 - }, - "Noto Sans Osmanya": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 575, - "unitsPerEm": 1000, - "azAvgWidth": 471.1162790697674 - }, - "Rubik": { - "category": "sans-serif", - "ascent": 935, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 543, - "unitsPerEm": 1000, - "azAvgWidth": 482.72093023255815 - }, - "Lexend Mega": { - "category": "sans-serif", - "ascent": 1000, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 588, - "unitsPerEm": 1000, - "azAvgWidth": 716.2558139534884 - }, - "Kumar One": { - "category": "display", - "ascent": 1137, - "descent": -642, - "lineGap": 0, - "xAvgCharWidth": 894, - "unitsPerEm": 1000, - "azAvgWidth": 623.4418604651163 - }, - "Noto Serif Nyiakeng Puachue Hmong": { - "category": "serif", - "ascent": 1068, - "descent": -292, - "lineGap": 0, - "xAvgCharWidth": 585, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Keania One": { - "category": "display", - "ascent": 989, - "descent": -228, - "lineGap": 0, - "xAvgCharWidth": 541, - "unitsPerEm": 1000, - "azAvgWidth": 450.3953488372093 - }, - "Libre Barcode 39 Extended Text": { - "category": "display", - "ascent": 600, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 536, - "unitsPerEm": 1000, - "azAvgWidth": 893.0232558139535 - }, - "Zen Maru Gothic": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 975, - "unitsPerEm": 1000, - "azAvgWidth": 452.2093023255814 - }, - "Sansita Swashed": { - "category": "display", - "ascent": 1020, - "descent": -180, - "lineGap": 0, - "xAvgCharWidth": 515, - "unitsPerEm": 1000, - "azAvgWidth": 421.5348837209302 - }, - "Sorts Mill Goudy": { - "category": "serif", - "ascent": 960, - "descent": -478, - "lineGap": 0, - "xAvgCharWidth": 536, - "unitsPerEm": 1000, - "azAvgWidth": 439.30232558139534 - }, - "Ribeye": { - "category": "display", - "ascent": 2130, - "descent": -668, - "lineGap": 0, - "xAvgCharWidth": 1093, - "unitsPerEm": 2048, - "azAvgWidth": 1128.953488372093 - }, - "Dawning of a New Day": { - "category": "handwriting", - "ascent": 1151, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 372, - "unitsPerEm": 1024, - "azAvgWidth": 371.06976744186045 - }, - "Jockey One": { - "category": "sans-serif", - "ascent": 1079, - "descent": -319, - "lineGap": 0, - "xAvgCharWidth": 370, - "unitsPerEm": 1000, - "azAvgWidth": 383.6279069767442 - }, - "Londrina Outline": { - "category": "display", - "ascent": 945, - "descent": -238, - "lineGap": 0, - "xAvgCharWidth": 443, - "unitsPerEm": 1000, - "azAvgWidth": 395.8837209302326 - }, - "Noto Sans Glagolitic": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 759, - "unitsPerEm": 1000, - "azAvgWidth": 466.51162790697674 - }, - "Magra": { - "category": "sans-serif", - "ascent": 968, - "descent": -247, - "lineGap": 0, - "xAvgCharWidth": 412, - "unitsPerEm": 1000, - "azAvgWidth": 422.27906976744185 - }, - "Rozha One": { - "category": "serif", - "ascent": 998, - "descent": -422, - "lineGap": 0, - "xAvgCharWidth": 543, - "unitsPerEm": 1000, - "azAvgWidth": 487.6046511627907 - }, - "Fjalla One": { - "category": "sans-serif", - "ascent": 2066, - "descent": -508, - "lineGap": 0, - "xAvgCharWidth": 947, - "unitsPerEm": 2048, - "azAvgWidth": 822.1162790697674 - }, - "Corinthia": { - "category": "handwriting", - "ascent": 760, - "descent": -440, - "lineGap": 0, - "xAvgCharWidth": 437, - "unitsPerEm": 1000, - "azAvgWidth": 245.46511627906978 - }, - "League Gothic": { - "category": "sans-serif", - "ascent": 1935, - "descent": -465, - "lineGap": 0, - "xAvgCharWidth": 668, - "unitsPerEm": 2000, - "azAvgWidth": 540.7441860465116 - }, - "Lexend Tera": { - "category": "sans-serif", - "ascent": 1000, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 588, - "unitsPerEm": 1000, - "azAvgWidth": 768.7906976744187 - }, - "Rubik Burned": { - "category": "display", - "ascent": 935, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 635, - "unitsPerEm": 1000, - "azAvgWidth": 544.6279069767442 - }, - "Gantari": { - "category": "sans-serif", - "ascent": 950, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 563, - "unitsPerEm": 1000, - "azAvgWidth": 474.4186046511628 - }, - "Noto Serif Ahom": { - "category": "serif", - "ascent": 980, - "descent": -675, - "lineGap": 0, - "xAvgCharWidth": 609, - "unitsPerEm": 1000, - "azAvgWidth": 491.6511627906977 - }, - "Sofia": { - "category": "handwriting", - "ascent": 1138, - "descent": -438, - "lineGap": 0, - "xAvgCharWidth": 430, - "unitsPerEm": 1000, - "azAvgWidth": 441.27906976744185 - }, - "Fraunces": { - "category": "serif", - "ascent": 1956, - "descent": -510, - "lineGap": 0, - "xAvgCharWidth": 1265, - "unitsPerEm": 2000, - "azAvgWidth": 963.2790697674419 - }, - "Shojumaru": { - "category": "display", - "ascent": 2020, - "descent": -692, - "lineGap": 0, - "xAvgCharWidth": 1403, - "unitsPerEm": 2048, - "azAvgWidth": 1442.3720930232557 - }, - "Scada": { - "category": "sans-serif", - "ascent": 955, - "descent": -289, - "lineGap": 0, - "xAvgCharWidth": 514, - "unitsPerEm": 1000, - "azAvgWidth": 448.72093023255815 - }, - "Galada": { - "category": "display", - "ascent": 1035, - "descent": -592, - "lineGap": 0, - "xAvgCharWidth": 598, - "unitsPerEm": 1000, - "azAvgWidth": 401.5581395348837 - }, - "Marcellus SC": { - "category": "serif", - "ascent": 1995, - "descent": -573, - "lineGap": 0, - "xAvgCharWidth": 959, - "unitsPerEm": 2048, - "azAvgWidth": 977.0232558139535 - }, - "Ingrid Darling": { - "category": "handwriting", - "ascent": 860, - "descent": -380, - "lineGap": 0, - "xAvgCharWidth": 437, - "unitsPerEm": 1000, - "azAvgWidth": 246.97674418604652 - }, - "Mingzat": { - "category": "sans-serif", - "ascent": 1427, - "descent": -670, - "lineGap": 0, - "xAvgCharWidth": 715, - "unitsPerEm": 1000, - "azAvgWidth": 520.4418604651163 - }, - "Mako": { - "category": "sans-serif", - "ascent": 2141, - "descent": -538, - "lineGap": 0, - "xAvgCharWidth": 889, - "unitsPerEm": 2048, - "azAvgWidth": 915.0232558139535 - }, - "Noto Sans Khmer": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 639, - "unitsPerEm": 1000, - "azAvgWidth": 485.8139534883721 - }, - "Mrs Saint Delafield": { - "category": "handwriting", - "ascent": 906, - "descent": -619, - "lineGap": 0, - "xAvgCharWidth": 255, - "unitsPerEm": 1000, - "azAvgWidth": 260.16279069767444 - }, - "Pompiere": { - "category": "display", - "ascent": 1918, - "descent": -543, - "lineGap": 0, - "xAvgCharWidth": 799, - "unitsPerEm": 2048, - "azAvgWidth": 623.1395348837209 - }, - "Port Lligat Slab": { - "category": "serif", - "ascent": 860, - "descent": -211, - "lineGap": 0, - "xAvgCharWidth": 398, - "unitsPerEm": 1000, - "azAvgWidth": 408.5813953488372 - }, - "Solway": { - "category": "serif", - "ascent": 950, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 580, - "unitsPerEm": 1000, - "azAvgWidth": 503.3720930232558 - }, - "Saira Extra Condensed": { - "category": "sans-serif", - "ascent": 1135, - "descent": -439, - "lineGap": 0, - "xAvgCharWidth": 370, - "unitsPerEm": 1000, - "azAvgWidth": 311.8837209302326 - }, - "Simonetta": { - "category": "display", - "ascent": 1970, - "descent": -594, - "lineGap": 0, - "xAvgCharWidth": 821, - "unitsPerEm": 2048, - "azAvgWidth": 843.3953488372093 - }, - "Redacted Script": { - "category": "display", - "ascent": 800, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 447, - "unitsPerEm": 1000, - "azAvgWidth": 457.2325581395349 - }, - "Federant": { - "category": "display", - "ascent": 942, - "descent": -284, - "lineGap": 0, - "xAvgCharWidth": 513, - "unitsPerEm": 1000, - "azAvgWidth": 468.2093023255814 - }, - "Junge": { - "category": "serif", - "ascent": 1901, - "descent": -588, - "lineGap": 0, - "xAvgCharWidth": 1108, - "unitsPerEm": 2048, - "azAvgWidth": 987.1395348837209 - }, - "Noto Sans Adlam": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 645, - "unitsPerEm": 1000, - "azAvgWidth": 528.7906976744187 - }, - "Square Peg": { - "category": "handwriting", - "ascent": 920, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 361, - "unitsPerEm": 1000, - "azAvgWidth": 255.90697674418604 - }, - "Noto Sans Chakma": { - "category": "sans-serif", - "ascent": 1140, - "descent": -320, - "lineGap": 0, - "xAvgCharWidth": 773, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Piedra": { - "category": "display", - "ascent": 973, - "descent": -328, - "lineGap": 0, - "xAvgCharWidth": 399, - "unitsPerEm": 1000, - "azAvgWidth": 417.27906976744185 - }, - "Molle": { - "category": "handwriting", - "ascent": 1852, - "descent": -701, - "lineGap": 0, - "xAvgCharWidth": 1290, - "unitsPerEm": 2048, - "azAvgWidth": 995.953488372093 - }, - "KoHo": { - "category": "sans-serif", - "ascent": 1045, - "descent": -255, - "lineGap": 0, - "xAvgCharWidth": 559, - "unitsPerEm": 1000, - "azAvgWidth": 444.09302325581393 - }, - "Noto Sans Modi": { - "category": "sans-serif", - "ascent": 891, - "descent": -463, - "lineGap": 0, - "xAvgCharWidth": 579, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Give You Glory": { - "category": "handwriting", - "ascent": 1020, - "descent": -625, - "lineGap": 0, - "xAvgCharWidth": 556, - "unitsPerEm": 1024, - "azAvgWidth": 468 - }, - "Ramabhadra": { - "category": "sans-serif", - "ascent": 1101, - "descent": -474, - "lineGap": 0, - "xAvgCharWidth": 487, - "unitsPerEm": 830, - "azAvgWidth": 407.72093023255815 - }, - "Khand": { - "category": "sans-serif", - "ascent": 1050, - "descent": -479, - "lineGap": 0, - "xAvgCharWidth": 416, - "unitsPerEm": 1000, - "azAvgWidth": 362.3720930232558 - }, - "Krub": { - "category": "sans-serif", - "ascent": 1007, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 557, - "unitsPerEm": 1000, - "azAvgWidth": 481.5813953488372 - }, - "Alike": { - "category": "serif", - "ascent": 984, - "descent": -270, - "lineGap": 0, - "xAvgCharWidth": 520, - "unitsPerEm": 1000, - "azAvgWidth": 465.5581395348837 - }, - "Noto Sans Tai Tham": { - "category": "sans-serif", - "ascent": 1069, - "descent": -520, - "lineGap": 0, - "xAvgCharWidth": 1429, - "unitsPerEm": 1000, - "azAvgWidth": 587.1860465116279 - }, - "Titillium Web": { - "category": "sans-serif", - "ascent": 1133, - "descent": -388, - "lineGap": 0, - "xAvgCharWidth": 493, - "unitsPerEm": 1000, - "azAvgWidth": 432.3255813953488 - }, - "Tulpen One": { - "category": "display", - "ascent": 1767, - "descent": -465, - "lineGap": 0, - "xAvgCharWidth": 397, - "unitsPerEm": 2048, - "azAvgWidth": 410.69767441860466 - }, - "Noto Sans Lepcha": { - "category": "sans-serif", - "ascent": 1069, - "descent": -450, - "lineGap": 0, - "xAvgCharWidth": 700, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "IBM Plex Sans Thai": { - "category": "sans-serif", - "ascent": 1116, - "descent": -534, - "lineGap": 0, - "xAvgCharWidth": 595, - "unitsPerEm": 1000, - "azAvgWidth": 461.4651162790698 - }, - "Eagle Lake": { - "category": "handwriting", - "ascent": 2420, - "descent": -925, - "lineGap": 0, - "xAvgCharWidth": 1164, - "unitsPerEm": 2048, - "azAvgWidth": 1194.8139534883721 - }, - "Neucha": { - "category": "handwriting", - "ascent": 787, - "descent": -292, - "lineGap": 49, - "xAvgCharWidth": 468, - "unitsPerEm": 1024, - "azAvgWidth": 384.90697674418607 - }, - "Zeyada": { - "category": "handwriting", - "ascent": 934, - "descent": -680, - "lineGap": 0, - "xAvgCharWidth": 415, - "unitsPerEm": 1024, - "azAvgWidth": 356.48837209302326 - }, - "Syne": { - "category": "sans-serif", - "ascent": 925, - "descent": -275, - "lineGap": 0, - "xAvgCharWidth": 550, - "unitsPerEm": 1000, - "azAvgWidth": 454.6279069767442 - }, - "Urbanist": { - "category": "sans-serif", - "ascent": 1900, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 1067, - "unitsPerEm": 2000, - "azAvgWidth": 921.5348837209302 - }, - "Castoro": { - "category": "serif", - "ascent": 755, - "descent": -245, - "lineGap": 250, - "xAvgCharWidth": 559, - "unitsPerEm": 1000, - "azAvgWidth": 460.16279069767444 - }, - "Lato": { - "category": "sans-serif", - "ascent": 1974, - "descent": -426, - "lineGap": 0, - "xAvgCharWidth": 1042, - "unitsPerEm": 2000, - "azAvgWidth": 892.9302325581396 - }, - "Hind Vadodara": { - "category": "sans-serif", - "ascent": 1125, - "descent": -373, - "lineGap": 0, - "xAvgCharWidth": 531, - "unitsPerEm": 1000, - "azAvgWidth": 444 - }, - "Mansalva": { - "category": "handwriting", - "ascent": 889, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 570, - "unitsPerEm": 1000, - "azAvgWidth": 423.27906976744185 - }, - "Khula": { - "category": "sans-serif", - "ascent": 1978, - "descent": -1198, - "lineGap": 0, - "xAvgCharWidth": 1130, - "unitsPerEm": 1978, - "azAvgWidth": 893.1162790697674 - }, - "Markazi Text": { - "category": "serif", - "ascent": 1718, - "descent": -740, - "lineGap": 0, - "xAvgCharWidth": 1034, - "unitsPerEm": 2048, - "azAvgWidth": 706.8837209302326 - }, - "Zilla Slab": { - "category": "serif", - "ascent": 944, - "descent": -256, - "lineGap": 0, - "xAvgCharWidth": 538, - "unitsPerEm": 1000, - "azAvgWidth": 445.6511627906977 - }, - "Lemon": { - "category": "display", - "ascent": 1019, - "descent": -287, - "lineGap": 0, - "xAvgCharWidth": 591, - "unitsPerEm": 1000, - "azAvgWidth": 611.3720930232558 - }, - "Petrona": { - "category": "serif", - "ascent": 858, - "descent": -270, - "lineGap": 0, - "xAvgCharWidth": 544, - "unitsPerEm": 1000, - "azAvgWidth": 444.5348837209302 - }, - "Grechen Fuemen": { - "category": "handwriting", - "ascent": 900, - "descent": -320, - "lineGap": 0, - "xAvgCharWidth": 558, - "unitsPerEm": 1000, - "azAvgWidth": 437.27906976744185 - }, - "Epilogue": { - "category": "sans-serif", - "ascent": 1580, - "descent": -470, - "lineGap": 0, - "xAvgCharWidth": 1123, - "unitsPerEm": 2000, - "azAvgWidth": 1017.4883720930233 - }, - "Smokum": { - "category": "display", - "ascent": 1986, - "descent": -512, - "lineGap": 0, - "xAvgCharWidth": 787, - "unitsPerEm": 2048, - "azAvgWidth": 713.2093023255813 - }, - "Mitr": { - "category": "sans-serif", - "ascent": 1150, - "descent": -420, - "lineGap": 0, - "xAvgCharWidth": 592, - "unitsPerEm": 1000, - "azAvgWidth": 526.7441860465116 - }, - "Rum Raisin": { - "category": "sans-serif", - "ascent": 2013, - "descent": -629, - "lineGap": 0, - "xAvgCharWidth": 724, - "unitsPerEm": 2048, - "azAvgWidth": 745.9302325581396 - }, - "Vidaloka": { - "category": "serif", - "ascent": 1927, - "descent": -560, - "lineGap": 0, - "xAvgCharWidth": 1017, - "unitsPerEm": 2048, - "azAvgWidth": 911.3488372093024 - }, - "Suwannaphum": { - "category": "serif", - "ascent": 2500, - "descent": -1200, - "lineGap": 0, - "xAvgCharWidth": 1279, - "unitsPerEm": 2048, - "azAvgWidth": 1032.2790697674418 - }, - "Syne Mono": { - "category": "monospace", - "ascent": 925, - "descent": -275, - "lineGap": 0, - "xAvgCharWidth": 553, - "unitsPerEm": 1000, - "azAvgWidth": 550 - }, - "Julius Sans One": { - "category": "sans-serif", - "ascent": 863, - "descent": -228, - "lineGap": 0, - "xAvgCharWidth": 560, - "unitsPerEm": 1000, - "azAvgWidth": 567.9767441860465 - }, - "Lexend Giga": { - "category": "sans-serif", - "ascent": 1000, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 588, - "unitsPerEm": 1000, - "azAvgWidth": 689.8604651162791 - }, - "Silkscreen": { - "category": "display", - "ascent": 1030, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 704, - "unitsPerEm": 1000, - "azAvgWidth": 691.8604651162791 - }, - "Tenali Ramakrishna": { - "category": "sans-serif", - "ascent": 661, - "descent": -512, - "lineGap": 0, - "xAvgCharWidth": 335, - "unitsPerEm": 750, - "azAvgWidth": 271.83720930232556 - }, - "Questrial": { - "category": "sans-serif", - "ascent": 820, - "descent": -210, - "lineGap": 0, - "xAvgCharWidth": 544, - "unitsPerEm": 1000, - "azAvgWidth": 457.6046511627907 - }, - "Iceland": { - "category": "display", - "ascent": 750, - "descent": -220, - "lineGap": 0, - "xAvgCharWidth": 465, - "unitsPerEm": 1000, - "azAvgWidth": 400.93023255813955 - }, - "Libre Franklin": { - "category": "sans-serif", - "ascent": 966, - "descent": -246, - "lineGap": 0, - "xAvgCharWidth": 568, - "unitsPerEm": 1000, - "azAvgWidth": 478.7674418604651 - }, - "Gentium Book Basic": { - "category": "serif", - "ascent": 1790, - "descent": -580, - "lineGap": 0, - "xAvgCharWidth": 1045, - "unitsPerEm": 2048, - "azAvgWidth": 892.3023255813954 - }, - "Roboto": { - "category": "sans-serif", - "ascent": 1900, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 1158, - "unitsPerEm": 2048, - "azAvgWidth": 937.3255813953489 - }, - "Libre Caslon Display": { - "category": "serif", - "ascent": 970, - "descent": -266, - "lineGap": 0, - "xAvgCharWidth": 494, - "unitsPerEm": 1000, - "azAvgWidth": 378 - }, - "Shalimar": { - "category": "handwriting", - "ascent": 800, - "descent": -420, - "lineGap": 0, - "xAvgCharWidth": 454, - "unitsPerEm": 1000, - "azAvgWidth": 227.27906976744185 - }, - "Voces": { - "category": "display", - "ascent": 1014, - "descent": -335, - "lineGap": 0, - "xAvgCharWidth": 515, - "unitsPerEm": 1000, - "azAvgWidth": 484.72093023255815 - }, - "Noto Sans Cherokee": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 724, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Nova Oval": { - "category": "display", - "ascent": 1966, - "descent": -506, - "lineGap": 0, - "xAvgCharWidth": 1176, - "unitsPerEm": 2048, - "azAvgWidth": 1018.3953488372093 - }, - "Dr Sugiyama": { - "category": "handwriting", - "ascent": 1009, - "descent": -450, - "lineGap": 0, - "xAvgCharWidth": 299, - "unitsPerEm": 1000, - "azAvgWidth": 301.5348837209302 - }, - "Gideon Roman": { - "category": "display", - "ascent": 900, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 559, - "unitsPerEm": 1000, - "azAvgWidth": 475.7674418604651 - }, - "Noto Sans Manichaean": { - "category": "sans-serif", - "ascent": 790, - "descent": -340, - "lineGap": 0, - "xAvgCharWidth": 688, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Zen Tokyo Zoo": { - "category": "display", - "ascent": 950, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 492, - "unitsPerEm": 1000, - "azAvgWidth": 383.72093023255815 - }, - "Lora": { - "category": "serif", - "ascent": 1006, - "descent": -274, - "lineGap": 0, - "xAvgCharWidth": 598, - "unitsPerEm": 1000, - "azAvgWidth": 479.4651162790698 - }, - "Unkempt": { - "category": "display", - "ascent": 977, - "descent": -246, - "lineGap": 28, - "xAvgCharWidth": 436, - "unitsPerEm": 1024, - "azAvgWidth": 453.1860465116279 - }, - "IBM Plex Sans Thai Looped": { - "category": "sans-serif", - "ascent": 1116, - "descent": -534, - "lineGap": 0, - "xAvgCharWidth": 606, - "unitsPerEm": 1000, - "azAvgWidth": 461.4651162790698 - }, - "Metamorphous": { - "category": "display", - "ascent": 1972, - "descent": -588, - "lineGap": 0, - "xAvgCharWidth": 1364, - "unitsPerEm": 2048, - "azAvgWidth": 1173.3953488372092 - }, - "DynaPuff": { - "category": "display", - "ascent": 965, - "descent": -235, - "lineGap": 0, - "xAvgCharWidth": 596, - "unitsPerEm": 1000, - "azAvgWidth": 525.3023255813954 - }, - "Comfortaa": { - "category": "display", - "ascent": 881, - "descent": -234, - "lineGap": 0, - "xAvgCharWidth": 641, - "unitsPerEm": 1000, - "azAvgWidth": 538.9069767441861 - }, - "Tiro Bangla": { - "category": "serif", - "ascent": 755, - "descent": -245, - "lineGap": 330, - "xAvgCharWidth": 600, - "unitsPerEm": 1000, - "azAvgWidth": 465.74418604651163 - }, - "Noto Naskh Arabic": { - "category": "serif", - "ascent": 1069, - "descent": -634, - "lineGap": 0, - "xAvgCharWidth": 736, - "unitsPerEm": 1000, - "azAvgWidth": 586.6976744186046 - }, - "DM Sans": { - "category": "sans-serif", - "ascent": 992, - "descent": -310, - "lineGap": 0, - "xAvgCharWidth": 544, - "unitsPerEm": 1000, - "azAvgWidth": 477.90697674418607 - }, - "Bree Serif": { - "category": "serif", - "ascent": 1077, - "descent": -281, - "lineGap": 0, - "xAvgCharWidth": 449, - "unitsPerEm": 1000, - "azAvgWidth": 465.8139534883721 - }, - "Tangerine": { - "category": "handwriting", - "ascent": 750, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 217, - "unitsPerEm": 1000, - "azAvgWidth": 223.93023255813952 - }, - "Rubik Puddles": { - "category": "display", - "ascent": 935, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 635, - "unitsPerEm": 1000, - "azAvgWidth": 544.6279069767442 - }, - "Hepta Slab": { - "category": "serif", - "ascent": 1976, - "descent": -526, - "lineGap": 0, - "xAvgCharWidth": 1335, - "unitsPerEm": 2000, - "azAvgWidth": 1136.4883720930231 - }, - "Luxurious Roman": { - "category": "display", - "ascent": 950, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 567, - "unitsPerEm": 1000, - "azAvgWidth": 478.93023255813955 - }, - "Tiro Gurmukhi": { - "category": "serif", - "ascent": 755, - "descent": -245, - "lineGap": 250, - "xAvgCharWidth": 554, - "unitsPerEm": 1000, - "azAvgWidth": 465.74418604651163 - }, - "Noto Sans Cham": { - "category": "sans-serif", - "ascent": 1117, - "descent": -351, - "lineGap": 0, - "xAvgCharWidth": 833, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Just Another Hand": { - "category": "handwriting", - "ascent": 1440, - "descent": -608, - "lineGap": 0, - "xAvgCharWidth": 583, - "unitsPerEm": 2048, - "azAvgWidth": 449.83720930232556 - }, - "Lustria": { - "category": "serif", - "ascent": 955, - "descent": -327, - "lineGap": 0, - "xAvgCharWidth": 466, - "unitsPerEm": 1000, - "azAvgWidth": 480.51162790697674 - }, - "Itim": { - "category": "handwriting", - "ascent": 950, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 548, - "unitsPerEm": 1000, - "azAvgWidth": 440.6511627906977 - }, - "Gorditas": { - "category": "display", - "ascent": 954, - "descent": -259, - "lineGap": 0, - "xAvgCharWidth": 597, - "unitsPerEm": 1000, - "azAvgWidth": 534.5581395348837 - }, - "Mali": { - "category": "handwriting", - "ascent": 1050, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 587, - "unitsPerEm": 1000, - "azAvgWidth": 512.3488372093024 - }, - "Noto Sans Mono": { - "category": "monospace", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 645, - "unitsPerEm": 1000, - "azAvgWidth": 600 - }, - "Spicy Rice": { - "category": "display", - "ascent": 2091, - "descent": -733, - "lineGap": 0, - "xAvgCharWidth": 859, - "unitsPerEm": 2048, - "azAvgWidth": 888.6744186046511 - }, - "Passions Conflict": { - "category": "handwriting", - "ascent": 750, - "descent": -350, - "lineGap": 0, - "xAvgCharWidth": 414, - "unitsPerEm": 1000, - "azAvgWidth": 247.69767441860466 - }, - "Alegreya Sans SC": { - "category": "sans-serif", - "ascent": 900, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 524, - "unitsPerEm": 1000, - "azAvgWidth": 441.1162790697674 - }, - "Rubik Marker Hatch": { - "category": "display", - "ascent": 935, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 635, - "unitsPerEm": 1000, - "azAvgWidth": 544.6279069767442 - }, - "Changa": { - "category": "sans-serif", - "ascent": 1227, - "descent": -613, - "lineGap": 0, - "xAvgCharWidth": 591, - "unitsPerEm": 1000, - "azAvgWidth": 457.4418604651163 - }, - "Noto Serif Balinese": { - "category": "serif", - "ascent": 1069, - "descent": -726, - "lineGap": 0, - "xAvgCharWidth": 654, - "unitsPerEm": 1000, - "azAvgWidth": 497.2325581395349 - }, - "Peralta": { - "category": "display", - "ascent": 2004, - "descent": -647, - "lineGap": 0, - "xAvgCharWidth": 1167, - "unitsPerEm": 2048, - "azAvgWidth": 1195.8139534883721 - }, - "Sail": { - "category": "display", - "ascent": 860, - "descent": -294, - "lineGap": 0, - "xAvgCharWidth": 385, - "unitsPerEm": 1000, - "azAvgWidth": 398.13953488372096 - }, - "IM Fell English SC": { - "category": "serif", - "ascent": 1854, - "descent": -744, - "lineGap": 0, - "xAvgCharWidth": 886, - "unitsPerEm": 2048, - "azAvgWidth": 894.6046511627907 - }, - "Signika": { - "category": "sans-serif", - "ascent": 1880, - "descent": -584, - "lineGap": 0, - "xAvgCharWidth": 1241, - "unitsPerEm": 2000, - "azAvgWidth": 874.1860465116279 - }, - "Scheherazade New": { - "category": "serif", - "ascent": 2750, - "descent": -1427, - "lineGap": 0, - "xAvgCharWidth": 1207, - "unitsPerEm": 2048, - "azAvgWidth": 786.0697674418604 - }, - "Erica One": { - "category": "display", - "ascent": 1153, - "descent": -339, - "lineGap": 0, - "xAvgCharWidth": 552, - "unitsPerEm": 1000, - "azAvgWidth": 570.0232558139535 - }, - "Fahkwang": { - "category": "sans-serif", - "ascent": 1008, - "descent": -292, - "lineGap": 0, - "xAvgCharWidth": 628, - "unitsPerEm": 1000, - "azAvgWidth": 519.4651162790698 - }, - "Mohave": { - "category": "sans-serif", - "ascent": 1980, - "descent": -806, - "lineGap": 0, - "xAvgCharWidth": 874, - "unitsPerEm": 2000, - "azAvgWidth": 771.1395348837209 - }, - "Modak": { - "category": "display", - "ascent": 2035, - "descent": -1049, - "lineGap": 0, - "xAvgCharWidth": 1112, - "unitsPerEm": 2048, - "azAvgWidth": 981.9069767441861 - }, - "Darker Grotesque": { - "category": "sans-serif", - "ascent": 1060, - "descent": -296, - "lineGap": 0, - "xAvgCharWidth": 436, - "unitsPerEm": 1000, - "azAvgWidth": 371.5348837209302 - }, - "UnifrakturMaguntia": { - "category": "display", - "ascent": 1607, - "descent": -513, - "lineGap": 0, - "xAvgCharWidth": 1062, - "unitsPerEm": 2048, - "azAvgWidth": 801.1860465116279 - }, - "Kadwa": { - "category": "serif", - "ascent": 2691, - "descent": -1421, - "lineGap": 0, - "xAvgCharWidth": 1234, - "unitsPerEm": 2048, - "azAvgWidth": 1019.4883720930233 - }, - "Odibee Sans": { - "category": "display", - "ascent": 858, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 428, - "unitsPerEm": 1000, - "azAvgWidth": 323.3720930232558 - }, - "Pavanam": { - "category": "sans-serif", - "ascent": 952, - "descent": -339, - "lineGap": 0, - "xAvgCharWidth": 389, - "unitsPerEm": 1000, - "azAvgWidth": 402.4418604651163 - }, - "Edu TAS Beginner": { - "category": "handwriting", - "ascent": 1016, - "descent": -244, - "lineGap": 0, - "xAvgCharWidth": 498, - "unitsPerEm": 1000, - "azAvgWidth": 378.3953488372093 - }, - "Noto Serif Malayalam": { - "category": "serif", - "ascent": 864, - "descent": -383, - "lineGap": 0, - "xAvgCharWidth": 746, - "unitsPerEm": 1000, - "azAvgWidth": 504.06976744186045 - }, - "Nova Slim": { - "category": "display", - "ascent": 1966, - "descent": -506, - "lineGap": 0, - "xAvgCharWidth": 1168, - "unitsPerEm": 2048, - "azAvgWidth": 1015.4186046511628 - }, - "Noto Sans Hebrew": { - "category": "sans-serif", - "ascent": 1068, - "descent": -292, - "lineGap": 0, - "xAvgCharWidth": 550, - "unitsPerEm": 1000, - "azAvgWidth": 485.8139534883721 - }, - "Rye": { - "category": "display", - "ascent": 2020, - "descent": -540, - "lineGap": 0, - "xAvgCharWidth": 1238, - "unitsPerEm": 2048, - "azAvgWidth": 1112.3720930232557 - }, - "Galdeano": { - "category": "sans-serif", - "ascent": 820, - "descent": -230, - "lineGap": 0, - "xAvgCharWidth": 394, - "unitsPerEm": 1000, - "azAvgWidth": 405.3255813953488 - }, - "Taprom": { - "category": "display", - "ascent": 2500, - "descent": -1200, - "lineGap": 0, - "xAvgCharWidth": 1503, - "unitsPerEm": 2048, - "azAvgWidth": 760.1395348837209 - }, - "Eczar": { - "category": "serif", - "ascent": 1143, - "descent": -634, - "lineGap": 0, - "xAvgCharWidth": 618, - "unitsPerEm": 1000, - "azAvgWidth": 450.7674418604651 - }, - "Crimson Text": { - "category": "serif", - "ascent": 972, - "descent": -359, - "lineGap": 0, - "xAvgCharWidth": 547, - "unitsPerEm": 1024, - "azAvgWidth": 412.4418604651163 - }, - "DM Serif Display": { - "category": "serif", - "ascent": 1036, - "descent": -335, - "lineGap": 0, - "xAvgCharWidth": 561, - "unitsPerEm": 1000, - "azAvgWidth": 462.4418604651163 - }, - "Khmer": { - "category": "display", - "ascent": 2300, - "descent": -1200, - "lineGap": 0, - "xAvgCharWidth": 1110, - "unitsPerEm": 2048, - "azAvgWidth": 1836.4651162790697 - }, - "Josefin Slab": { - "category": "serif", - "ascent": 750, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 508, - "unitsPerEm": 1000, - "azAvgWidth": 439.48837209302326 - }, - "Maitree": { - "category": "serif", - "ascent": 1150, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 583, - "unitsPerEm": 1000, - "azAvgWidth": 484.4651162790698 - }, - "Gupter": { - "category": "serif", - "ascent": 900, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 444, - "unitsPerEm": 1000, - "azAvgWidth": 393.5348837209302 - }, - "Varta": { - "category": "sans-serif", - "ascent": 1902, - "descent": -1068, - "lineGap": 0, - "xAvgCharWidth": 1010, - "unitsPerEm": 2048, - "azAvgWidth": 877.2325581395348 - }, - "Merienda One": { - "category": "handwriting", - "ascent": 1102, - "descent": -342, - "lineGap": 0, - "xAvgCharWidth": 503, - "unitsPerEm": 1000, - "azAvgWidth": 517.3720930232558 - }, - "Mukta Mahee": { - "category": "sans-serif", - "ascent": 1130, - "descent": -532, - "lineGap": 0, - "xAvgCharWidth": 501, - "unitsPerEm": 1000, - "azAvgWidth": 431.06976744186045 - }, - "Work Sans": { - "category": "sans-serif", - "ascent": 930, - "descent": -243, - "lineGap": 0, - "xAvgCharWidth": 597, - "unitsPerEm": 1000, - "azAvgWidth": 511.3953488372093 - }, - "Sarabun": { - "category": "sans-serif", - "ascent": 1068, - "descent": -232, - "lineGap": 0, - "xAvgCharWidth": 532, - "unitsPerEm": 1000, - "azAvgWidth": 443.5581395348837 - }, - "Henny Penny": { - "category": "display", - "ascent": 2324, - "descent": -1305, - "lineGap": 0, - "xAvgCharWidth": 931, - "unitsPerEm": 2048, - "azAvgWidth": 958.8837209302326 - }, - "Fanwood Text": { - "category": "serif", - "ascent": 3761, - "descent": -1609, - "lineGap": 0, - "xAvgCharWidth": 2053, - "unitsPerEm": 4096, - "azAvgWidth": 1606.0697674418604 - }, - "Space Grotesk": { - "category": "sans-serif", - "ascent": 984, - "descent": -292, - "lineGap": 0, - "xAvgCharWidth": 559, - "unitsPerEm": 1000, - "azAvgWidth": 505.90697674418607 - }, - "Kantumruy": { - "category": "sans-serif", - "ascent": 2500, - "descent": -1200, - "lineGap": 0, - "xAvgCharWidth": 1333, - "unitsPerEm": 2048, - "azAvgWidth": 1836.4651162790697 - }, - "Damion": { - "category": "handwriting", - "ascent": 2068, - "descent": -746, - "lineGap": 0, - "xAvgCharWidth": 731, - "unitsPerEm": 2048, - "azAvgWidth": 755.4883720930233 - }, - "Cormorant SC": { - "category": "serif", - "ascent": 924, - "descent": -287, - "lineGap": 0, - "xAvgCharWidth": 535, - "unitsPerEm": 1000, - "azAvgWidth": 467.86046511627904 - }, - "Limelight": { - "category": "display", - "ascent": 1864, - "descent": -629, - "lineGap": 0, - "xAvgCharWidth": 1245, - "unitsPerEm": 2048, - "azAvgWidth": 1126 - }, - "Rubik Dirt": { - "category": "display", - "ascent": 935, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 635, - "unitsPerEm": 1000, - "azAvgWidth": 544.6279069767442 - }, - "Gilda Display": { - "category": "serif", - "ascent": 892, - "descent": -285, - "lineGap": 0, - "xAvgCharWidth": 537, - "unitsPerEm": 1000, - "azAvgWidth": 461.2093023255814 - }, - "Princess Sofia": { - "category": "handwriting", - "ascent": 1010, - "descent": -574, - "lineGap": 0, - "xAvgCharWidth": 352, - "unitsPerEm": 1024, - "azAvgWidth": 361.1162790697674 - }, - "Tiro Devanagari Marathi": { - "category": "serif", - "ascent": 755, - "descent": -245, - "lineGap": 330, - "xAvgCharWidth": 672, - "unitsPerEm": 1000, - "azAvgWidth": 465.74418604651163 - }, - "Noto Sans Deseret": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 580, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Kdam Thmor Pro": { - "category": "sans-serif", - "ascent": 1146, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 676, - "unitsPerEm": 1000, - "azAvgWidth": 468.13953488372096 - }, - "Almendra Display": { - "category": "display", - "ascent": 951, - "descent": -345, - "lineGap": 0, - "xAvgCharWidth": 469, - "unitsPerEm": 1000, - "azAvgWidth": 420.90697674418607 - }, - "Mulish": { - "category": "sans-serif", - "ascent": 1005, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 581, - "unitsPerEm": 1000, - "azAvgWidth": 479.13953488372096 - }, - "Noto Sans Thai Looped": { - "category": "sans-serif", - "ascent": 1250, - "descent": -350, - "lineGap": 0, - "xAvgCharWidth": 586, - "unitsPerEm": 1000, - "azAvgWidth": 552.6976744186046 - }, - "Handlee": { - "category": "handwriting", - "ascent": 934, - "descent": -401, - "lineGap": 0, - "xAvgCharWidth": 393, - "unitsPerEm": 1000, - "azAvgWidth": 402.5813953488372 - }, - "Sawarabi Mincho": { - "category": "serif", - "ascent": 1070, - "descent": -319, - "lineGap": 90, - "xAvgCharWidth": 915, - "unitsPerEm": 1000, - "azAvgWidth": 499.72093023255815 - }, - "Shrikhand": { - "category": "display", - "ascent": 1026, - "descent": -432, - "lineGap": 0, - "xAvgCharWidth": 847, - "unitsPerEm": 1000, - "azAvgWidth": 549.5348837209302 - }, - "Gabriela": { - "category": "serif", - "ascent": 986, - "descent": -295, - "lineGap": 0, - "xAvgCharWidth": 586, - "unitsPerEm": 1000, - "azAvgWidth": 497.30232558139534 - }, - "Lexend Zetta": { - "category": "sans-serif", - "ascent": 1000, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 588, - "unitsPerEm": 1000, - "azAvgWidth": 834.6279069767442 - }, - "Comforter": { - "category": "handwriting", - "ascent": 930, - "descent": -480, - "lineGap": 0, - "xAvgCharWidth": 494, - "unitsPerEm": 1000, - "azAvgWidth": 291.5581395348837 - }, - "Meddon": { - "category": "handwriting", - "ascent": 2860, - "descent": -1457, - "lineGap": 0, - "xAvgCharWidth": 1218, - "unitsPerEm": 2048, - "azAvgWidth": 1245.5348837209303 - }, - "Noto Sans Thaana": { - "category": "sans-serif", - "ascent": 1069, - "descent": -424, - "lineGap": 0, - "xAvgCharWidth": 560, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Sriracha": { - "category": "handwriting", - "ascent": 1220, - "descent": -550, - "lineGap": 0, - "xAvgCharWidth": 562, - "unitsPerEm": 1000, - "azAvgWidth": 454.6511627906977 - }, - "Source Serif Pro": { - "category": "serif", - "ascent": 918, - "descent": -335, - "lineGap": 0, - "xAvgCharWidth": 558, - "unitsPerEm": 1000, - "azAvgWidth": 461.6046511627907 - }, - "Biryani": { - "category": "sans-serif", - "ascent": 1109, - "descent": -656, - "lineGap": 0, - "xAvgCharWidth": 560, - "unitsPerEm": 1000, - "azAvgWidth": 502.69767441860466 - }, - "Libre Caslon Text": { - "category": "serif", - "ascent": 970, - "descent": -260, - "lineGap": 0, - "xAvgCharWidth": 585, - "unitsPerEm": 1000, - "azAvgWidth": 490.4651162790698 - }, - "Noto Sans Vai": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 756, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Mr De Haviland": { - "category": "handwriting", - "ascent": 875, - "descent": -442, - "lineGap": 0, - "xAvgCharWidth": 239, - "unitsPerEm": 1000, - "azAvgWidth": 243 - }, - "Pridi": { - "category": "serif", - "ascent": 1100, - "descent": -450, - "lineGap": 0, - "xAvgCharWidth": 556, - "unitsPerEm": 1000, - "azAvgWidth": 497.9767441860465 - }, - "Wallpoet": { - "category": "display", - "ascent": 806, - "descent": -196, - "lineGap": 0, - "xAvgCharWidth": 639, - "unitsPerEm": 1000, - "azAvgWidth": 630.6046511627907 - }, - "Anek Odia": { - "category": "sans-serif", - "ascent": 1960, - "descent": -1400, - "lineGap": 0, - "xAvgCharWidth": 1221, - "unitsPerEm": 2000, - "azAvgWidth": 868.3488372093024 - }, - "Modern Antiqua": { - "category": "display", - "ascent": 1815, - "descent": -508, - "lineGap": 0, - "xAvgCharWidth": 1192, - "unitsPerEm": 2048, - "azAvgWidth": 1048.7209302325582 - }, - "IM Fell French Canon SC": { - "category": "serif", - "ascent": 1868, - "descent": -530, - "lineGap": 0, - "xAvgCharWidth": 929, - "unitsPerEm": 2048, - "azAvgWidth": 946.046511627907 - }, - "Dekko": { - "category": "handwriting", - "ascent": 2231, - "descent": -1112, - "lineGap": 0, - "xAvgCharWidth": 1223, - "unitsPerEm": 2048, - "azAvgWidth": 835.9302325581396 - }, - "Headland One": { - "category": "serif", - "ascent": 2043, - "descent": -522, - "lineGap": 0, - "xAvgCharWidth": 1341, - "unitsPerEm": 2048, - "azAvgWidth": 1125.7674418604652 - }, - "Noto Serif": { - "category": "serif", - "ascent": 2189, - "descent": -600, - "lineGap": 0, - "xAvgCharWidth": 1244, - "unitsPerEm": 2048, - "azAvgWidth": 1018.2790697674419 - }, - "Hind Siliguri": { - "category": "sans-serif", - "ascent": 1116, - "descent": -501, - "lineGap": 0, - "xAvgCharWidth": 524, - "unitsPerEm": 1000, - "azAvgWidth": 441.48837209302326 - }, - "Noto Sans Gurmukhi": { - "category": "sans-serif", - "ascent": 896, - "descent": -408, - "lineGap": 0, - "xAvgCharWidth": 580, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Adamina": { - "category": "serif", - "ascent": 1072, - "descent": -290, - "lineGap": 0, - "xAvgCharWidth": 569, - "unitsPerEm": 1000, - "azAvgWidth": 491.25581395348837 - }, - "Wire One": { - "category": "sans-serif", - "ascent": 890, - "descent": -210, - "lineGap": 0, - "xAvgCharWidth": 267, - "unitsPerEm": 1000, - "azAvgWidth": 239.58139534883722 - }, - "Aladin": { - "category": "handwriting", - "ascent": 905, - "descent": -321, - "lineGap": 0, - "xAvgCharWidth": 328, - "unitsPerEm": 1000, - "azAvgWidth": 342.5348837209302 - }, - "Gelasio": { - "category": "serif", - "ascent": 1900, - "descent": -700, - "lineGap": 0, - "xAvgCharWidth": 1202, - "unitsPerEm": 2048, - "azAvgWidth": 928.3953488372093 - }, - "Georama": { - "category": "sans-serif", - "ascent": 968, - "descent": -226, - "lineGap": 0, - "xAvgCharWidth": 254, - "unitsPerEm": 1000, - "azAvgWidth": 451.5813953488372 - }, - "Crimson Pro": { - "category": "serif", - "ascent": 918, - "descent": -220, - "lineGap": 0, - "xAvgCharWidth": 527, - "unitsPerEm": 1024, - "azAvgWidth": 421.48837209302326 - }, - "Noto Sans Cuneiform": { - "category": "sans-serif", - "ascent": 1596, - "descent": -690, - "lineGap": 0, - "xAvgCharWidth": 1604, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Birthstone": { - "category": "handwriting", - "ascent": 950, - "descent": -410, - "lineGap": 0, - "xAvgCharWidth": 515, - "unitsPerEm": 1000, - "azAvgWidth": 289.1162790697674 - }, - "Merriweather": { - "category": "serif", - "ascent": 984, - "descent": -273, - "lineGap": 0, - "xAvgCharWidth": 657, - "unitsPerEm": 1000, - "azAvgWidth": 508.83720930232556 - }, - "B612": { - "category": "sans-serif", - "ascent": 1930, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 1287, - "unitsPerEm": 2000, - "azAvgWidth": 998.8372093023256 - }, - "Almarai": { - "category": "sans-serif", - "ascent": 905, - "descent": -211, - "lineGap": 0, - "xAvgCharWidth": 612, - "unitsPerEm": 1000, - "azAvgWidth": 436.74418604651163 - }, - "Taviraj": { - "category": "serif", - "ascent": 1172, - "descent": -534, - "lineGap": 0, - "xAvgCharWidth": 587, - "unitsPerEm": 1000, - "azAvgWidth": 477.6511627906977 - }, - "Elsie Swash Caps": { - "category": "display", - "ascent": 878, - "descent": -274, - "lineGap": 0, - "xAvgCharWidth": 510, - "unitsPerEm": 1000, - "azAvgWidth": 454.4418604651163 - }, - "Hanalei": { - "category": "display", - "ascent": 2124, - "descent": -541, - "lineGap": 0, - "xAvgCharWidth": 940, - "unitsPerEm": 2048, - "azAvgWidth": 967.4883720930233 - }, - "Anek Telugu": { - "category": "sans-serif", - "ascent": 1800, - "descent": -1200, - "lineGap": 0, - "xAvgCharWidth": 1608, - "unitsPerEm": 2000, - "azAvgWidth": 874.2093023255813 - }, - "Squada One": { - "category": "display", - "ascent": 861, - "descent": -196, - "lineGap": 0, - "xAvgCharWidth": 370, - "unitsPerEm": 1000, - "azAvgWidth": 383.27906976744185 - }, - "Esteban": { - "category": "serif", - "ascent": 984, - "descent": -290, - "lineGap": 0, - "xAvgCharWidth": 442, - "unitsPerEm": 1000, - "azAvgWidth": 455.51162790697674 - }, - "Fascinate": { - "category": "display", - "ascent": 2125, - "descent": -591, - "lineGap": 0, - "xAvgCharWidth": 1123, - "unitsPerEm": 2048, - "azAvgWidth": 1148.1860465116279 - }, - "Kodchasan": { - "category": "sans-serif", - "ascent": 1024, - "descent": -276, - "lineGap": 0, - "xAvgCharWidth": 609, - "unitsPerEm": 1000, - "azAvgWidth": 519.2325581395348 - }, - "Quicksand": { - "category": "sans-serif", - "ascent": 1000, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 541, - "unitsPerEm": 1000, - "azAvgWidth": 481.7674418604651 - }, - "Noto Sans Egyptian Hieroglyphs": { - "category": "sans-serif", - "ascent": 1324, - "descent": -326, - "lineGap": 0, - "xAvgCharWidth": 965, - "unitsPerEm": 1000, - "azAvgWidth": 550.3255813953489 - }, - "Noto Sans Indic Siyaq Numbers": { - "category": "sans-serif", - "ascent": 1215, - "descent": -347, - "lineGap": 0, - "xAvgCharWidth": 1021, - "unitsPerEm": 1000, - "azAvgWidth": 534.6976744186046 - }, - "Kalam": { - "category": "handwriting", - "ascent": 1063, - "descent": -531, - "lineGap": 0, - "xAvgCharWidth": 528, - "unitsPerEm": 1000, - "azAvgWidth": 437.9767441860465 - }, - "Passero One": { - "category": "display", - "ascent": 1820, - "descent": -618, - "lineGap": 0, - "xAvgCharWidth": 974, - "unitsPerEm": 2048, - "azAvgWidth": 838.5348837209302 - }, - "Waiting for the Sunrise": { - "category": "handwriting", - "ascent": 1146, - "descent": -547, - "lineGap": 0, - "xAvgCharWidth": 400, - "unitsPerEm": 1024, - "azAvgWidth": 409.69767441860466 - }, - "Istok Web": { - "category": "sans-serif", - "ascent": 2061, - "descent": -887, - "lineGap": 0, - "xAvgCharWidth": 1107, - "unitsPerEm": 2048, - "azAvgWidth": 941.2790697674419 - }, - "Noto Sans Display": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 548, - "unitsPerEm": 1000, - "azAvgWidth": 459 - }, - "Sancreek": { - "category": "display", - "ascent": 2104, - "descent": -738, - "lineGap": 0, - "xAvgCharWidth": 1037, - "unitsPerEm": 2048, - "azAvgWidth": 994.4883720930233 - }, - "Are You Serious": { - "category": "handwriting", - "ascent": 880, - "descent": -320, - "lineGap": 0, - "xAvgCharWidth": 471, - "unitsPerEm": 1000, - "azAvgWidth": 315.5348837209302 - }, - "Grandstander": { - "category": "display", - "ascent": 1465, - "descent": -530, - "lineGap": 0, - "xAvgCharWidth": 1125, - "unitsPerEm": 2000, - "azAvgWidth": 1028.5581395348838 - }, - "Voltaire": { - "category": "sans-serif", - "ascent": 2020, - "descent": -531, - "lineGap": 0, - "xAvgCharWidth": 895, - "unitsPerEm": 2048, - "azAvgWidth": 770.2790697674419 - }, - "Tiro Devanagari Sanskrit": { - "category": "serif", - "ascent": 755, - "descent": -245, - "lineGap": 330, - "xAvgCharWidth": 743, - "unitsPerEm": 1000, - "azAvgWidth": 465.74418604651163 - }, - "Major Mono Display": { - "category": "monospace", - "ascent": 900, - "descent": -100, - "lineGap": 0, - "xAvgCharWidth": 759, - "unitsPerEm": 1000, - "azAvgWidth": 740 - }, - "Suranna": { - "category": "serif", - "ascent": 1101, - "descent": -607, - "lineGap": 0, - "xAvgCharWidth": 382, - "unitsPerEm": 780, - "azAvgWidth": 302.74418604651163 - }, - "Comforter Brush": { - "category": "handwriting", - "ascent": 930, - "descent": -480, - "lineGap": 0, - "xAvgCharWidth": 496, - "unitsPerEm": 1000, - "azAvgWidth": 290.3488372093023 - }, - "Rubik Glitch": { - "category": "display", - "ascent": 935, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 635, - "unitsPerEm": 1000, - "azAvgWidth": 544.6279069767442 - }, - "Caveat Brush": { - "category": "handwriting", - "ascent": 960, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 449, - "unitsPerEm": 1000, - "azAvgWidth": 361.93023255813955 - }, - "Cherry Swash": { - "category": "display", - "ascent": 1025, - "descent": -301, - "lineGap": 0, - "xAvgCharWidth": 556, - "unitsPerEm": 1000, - "azAvgWidth": 474.30232558139534 - }, - "Irish Grover": { - "category": "display", - "ascent": 965, - "descent": -246, - "lineGap": 27, - "xAvgCharWidth": 473, - "unitsPerEm": 1024, - "azAvgWidth": 483.8139534883721 - }, - "Lovers Quarrel": { - "category": "handwriting", - "ascent": 726, - "descent": -401, - "lineGap": 0, - "xAvgCharWidth": 409, - "unitsPerEm": 1000, - "azAvgWidth": 221.2093023255814 - }, - "La Belle Aurore": { - "category": "handwriting", - "ascent": 1103, - "descent": -794, - "lineGap": 0, - "xAvgCharWidth": 519, - "unitsPerEm": 1024, - "azAvgWidth": 430.7674418604651 - }, - "Karantina": { - "category": "display", - "ascent": 859, - "descent": -153, - "lineGap": 0, - "xAvgCharWidth": 293, - "unitsPerEm": 1000, - "azAvgWidth": 265.74418604651163 - }, - "Sassy Frass": { - "category": "handwriting", - "ascent": 800, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 454, - "unitsPerEm": 1000, - "azAvgWidth": 204.13953488372093 - }, - "Permanent Marker": { - "category": "handwriting", - "ascent": 1136, - "descent": -325, - "lineGap": 31, - "xAvgCharWidth": 517, - "unitsPerEm": 1024, - "azAvgWidth": 532.1627906976744 - }, - "Hanuman": { - "category": "serif", - "ascent": 2000, - "descent": -1000, - "lineGap": 0, - "xAvgCharWidth": 1275, - "unitsPerEm": 2048, - "azAvgWidth": 1032.2790697674418 - }, - "Smooch Sans": { - "category": "sans-serif", - "ascent": 900, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 355, - "unitsPerEm": 1000, - "azAvgWidth": 320.93023255813955 - }, - "Numans": { - "category": "sans-serif", - "ascent": 1853, - "descent": -553, - "lineGap": 0, - "xAvgCharWidth": 1185, - "unitsPerEm": 2048, - "azAvgWidth": 1125.6744186046512 - }, - "Red Hat Display": { - "category": "sans-serif", - "ascent": 1018, - "descent": -305, - "lineGap": 0, - "xAvgCharWidth": 526, - "unitsPerEm": 1000, - "azAvgWidth": 452.4186046511628 - }, - "Kufam": { - "category": "sans-serif", - "ascent": 900, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 619, - "unitsPerEm": 1000, - "azAvgWidth": 499.72093023255815 - }, - "Noto Sans Nabataean": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 517, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Lancelot": { - "category": "display", - "ascent": 1595, - "descent": -668, - "lineGap": 0, - "xAvgCharWidth": 723, - "unitsPerEm": 2048, - "azAvgWidth": 746.8837209302326 - }, - "Noticia Text": { - "category": "serif", - "ascent": 2202, - "descent": -593, - "lineGap": 0, - "xAvgCharWidth": 1107, - "unitsPerEm": 2048, - "azAvgWidth": 991.5581395348837 - }, - "Pontano Sans": { - "category": "sans-serif", - "ascent": 2025, - "descent": -599, - "lineGap": 0, - "xAvgCharWidth": 838, - "unitsPerEm": 2048, - "azAvgWidth": 867.4651162790698 - }, - "Titan One": { - "category": "display", - "ascent": 970, - "descent": -175, - "lineGap": 0, - "xAvgCharWidth": 545, - "unitsPerEm": 1000, - "azAvgWidth": 566.9767441860465 - }, - "Engagement": { - "category": "handwriting", - "ascent": 1843, - "descent": -684, - "lineGap": 0, - "xAvgCharWidth": 495, - "unitsPerEm": 2048, - "azAvgWidth": 509.6744186046512 - }, - "Tiro Devanagari Hindi": { - "category": "serif", - "ascent": 755, - "descent": -245, - "lineGap": 330, - "xAvgCharWidth": 661, - "unitsPerEm": 1000, - "azAvgWidth": 465.74418604651163 - }, - "Rambla": { - "category": "sans-serif", - "ascent": 929, - "descent": -295, - "lineGap": 0, - "xAvgCharWidth": 476, - "unitsPerEm": 1000, - "azAvgWidth": 421.5581395348837 - }, - "Miss Fajardose": { - "category": "handwriting", - "ascent": 859, - "descent": -389, - "lineGap": 0, - "xAvgCharWidth": 187, - "unitsPerEm": 1000, - "azAvgWidth": 195.46511627906978 - }, - "Fredericka the Great": { - "category": "display", - "ascent": 1001, - "descent": -254, - "lineGap": 0, - "xAvgCharWidth": 547, - "unitsPerEm": 1024, - "azAvgWidth": 483.3255813953488 - }, - "Nova Round": { - "category": "display", - "ascent": 1966, - "descent": -506, - "lineGap": 0, - "xAvgCharWidth": 1169, - "unitsPerEm": 2048, - "azAvgWidth": 1015.6279069767442 - }, - "IBM Plex Sans Condensed": { - "category": "sans-serif", - "ascent": 1025, - "descent": -275, - "lineGap": 0, - "xAvgCharWidth": 525, - "unitsPerEm": 1000, - "azAvgWidth": 416.95348837209303 - }, - "Miltonian Tattoo": { - "category": "display", - "ascent": 918, - "descent": -274, - "lineGap": 0, - "xAvgCharWidth": 566, - "unitsPerEm": 1000, - "azAvgWidth": 520.4883720930233 - }, - "IM Fell DW Pica SC": { - "category": "serif", - "ascent": 1868, - "descent": -692, - "lineGap": 0, - "xAvgCharWidth": 861, - "unitsPerEm": 2048, - "azAvgWidth": 874.2325581395348 - }, - "Clicker Script": { - "category": "handwriting", - "ascent": 1898, - "descent": -807, - "lineGap": 0, - "xAvgCharWidth": 613, - "unitsPerEm": 2048, - "azAvgWidth": 630.4883720930233 - }, - "Noto Traditional Nushu": { - "category": "sans-serif", - "ascent": 1080, - "descent": -120, - "lineGap": 0, - "xAvgCharWidth": 857, - "unitsPerEm": 1024, - "azAvgWidth": 520.3023255813954 - }, - "Euphoria Script": { - "category": "handwriting", - "ascent": 1014, - "descent": -442, - "lineGap": 0, - "xAvgCharWidth": 379, - "unitsPerEm": 1250, - "azAvgWidth": 391.4186046511628 - }, - "Xanh Mono": { - "category": "monospace", - "ascent": 970, - "descent": -220, - "lineGap": 0, - "xAvgCharWidth": 500, - "unitsPerEm": 1000, - "azAvgWidth": 500 - }, - "Oxygen Mono": { - "category": "monospace", - "ascent": 2015, - "descent": -672, - "lineGap": 0, - "xAvgCharWidth": 1237, - "unitsPerEm": 2048, - "azAvgWidth": 1229 - }, - "Tapestry": { - "category": "handwriting", - "ascent": 950, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 564, - "unitsPerEm": 1000, - "azAvgWidth": 443.6744186046512 - }, - "Bad Script": { - "category": "handwriting", - "ascent": 2710, - "descent": -1327, - "lineGap": 0, - "xAvgCharWidth": 996, - "unitsPerEm": 2048, - "azAvgWidth": 781.8604651162791 - }, - "Noto Sans Medefaidrin": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 643, - "unitsPerEm": 1000, - "azAvgWidth": 457.90697674418607 - }, - "Just Me Again Down Here": { - "category": "handwriting", - "ascent": 1069, - "descent": -429, - "lineGap": 0, - "xAvgCharWidth": 311, - "unitsPerEm": 1000, - "azAvgWidth": 311.0232558139535 - }, - "Ephesis": { - "category": "handwriting", - "ascent": 900, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 550, - "unitsPerEm": 1000, - "azAvgWidth": 293.9767441860465 - }, - "Lexend Exa": { - "category": "sans-serif", - "ascent": 1000, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 588, - "unitsPerEm": 1000, - "azAvgWidth": 637.1162790697674 - }, - "WindSong": { - "category": "handwriting", - "ascent": 890, - "descent": -515, - "lineGap": 0, - "xAvgCharWidth": 861, - "unitsPerEm": 1000, - "azAvgWidth": 461 - }, - "Halant": { - "category": "serif", - "ascent": 1089, - "descent": -486, - "lineGap": 0, - "xAvgCharWidth": 528, - "unitsPerEm": 1000, - "azAvgWidth": 436.5581395348837 - }, - "Asul": { - "category": "sans-serif", - "ascent": 949, - "descent": -264, - "lineGap": 0, - "xAvgCharWidth": 442, - "unitsPerEm": 1000, - "azAvgWidth": 452.8837209302326 - }, - "Karla": { - "category": "sans-serif", - "ascent": 1834, - "descent": -504, - "lineGap": 0, - "xAvgCharWidth": 1049, - "unitsPerEm": 2000, - "azAvgWidth": 944.6279069767442 - }, - "Noto Sans HK": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 984, - "unitsPerEm": 1000, - "azAvgWidth": 480.13953488372096 - }, - "Mallanna": { - "category": "sans-serif", - "ascent": 1105, - "descent": -504, - "lineGap": 0, - "xAvgCharWidth": 475, - "unitsPerEm": 870, - "azAvgWidth": 359.6046511627907 - }, - "Monofett": { - "category": "display", - "ascent": 2001, - "descent": -315, - "lineGap": 0, - "xAvgCharWidth": 1132, - "unitsPerEm": 2048, - "azAvgWidth": 1059.953488372093 - }, - "IM Fell Double Pica SC": { - "category": "serif", - "ascent": 1924, - "descent": -643, - "lineGap": 0, - "xAvgCharWidth": 876, - "unitsPerEm": 2048, - "azAvgWidth": 884.6511627906976 - }, - "Spectral": { - "category": "serif", - "ascent": 1059, - "descent": -463, - "lineGap": 0, - "xAvgCharWidth": 589, - "unitsPerEm": 1000, - "azAvgWidth": 456.04651162790697 - }, - "Emilys Candy": { - "category": "display", - "ascent": 996, - "descent": -286, - "lineGap": 0, - "xAvgCharWidth": 431, - "unitsPerEm": 1024, - "azAvgWidth": 440.13953488372096 - }, - "Patua One": { - "category": "display", - "ascent": 972, - "descent": -247, - "lineGap": 0, - "xAvgCharWidth": 443, - "unitsPerEm": 1000, - "azAvgWidth": 459.93023255813955 - }, - "Stick No Bills": { - "category": "sans-serif", - "ascent": 940, - "descent": -312, - "lineGap": 0, - "xAvgCharWidth": 610, - "unitsPerEm": 1000, - "azAvgWidth": 386.5581395348837 - }, - "Cherish": { - "category": "handwriting", - "ascent": 850, - "descent": -320, - "lineGap": 0, - "xAvgCharWidth": 470, - "unitsPerEm": 1000, - "azAvgWidth": 242.74418604651163 - }, - "Gulzar": { - "category": "serif", - "ascent": 1500, - "descent": -1200, - "lineGap": 0, - "xAvgCharWidth": 515, - "unitsPerEm": 1000, - "azAvgWidth": 415.7906976744186 - }, - "Arya": { - "category": "sans-serif", - "ascent": 1265, - "descent": -544, - "lineGap": 0, - "xAvgCharWidth": 539, - "unitsPerEm": 1000, - "azAvgWidth": 433.7906976744186 - }, - "Atomic Age": { - "category": "display", - "ascent": 2091, - "descent": -656, - "lineGap": 0, - "xAvgCharWidth": 1271, - "unitsPerEm": 2048, - "azAvgWidth": 1104.7906976744187 - }, - "Noto Sans Kaithi": { - "category": "sans-serif", - "ascent": 1077, - "descent": -425, - "lineGap": 0, - "xAvgCharWidth": 628, - "unitsPerEm": 1000, - "azAvgWidth": 553.8139534883721 - }, - "Tenor Sans": { - "category": "sans-serif", - "ascent": 920, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 484, - "unitsPerEm": 1000, - "azAvgWidth": 496.06976744186045 - }, - "M PLUS 1p": { - "category": "sans-serif", - "ascent": 1075, - "descent": -320, - "lineGap": 90, - "xAvgCharWidth": 907, - "unitsPerEm": 1000, - "azAvgWidth": 500.0232558139535 - }, - "Metrophobic": { - "category": "sans-serif", - "ascent": 2065, - "descent": -460, - "lineGap": 0, - "xAvgCharWidth": 1177, - "unitsPerEm": 2048, - "azAvgWidth": 956.8837209302326 - }, - "Chenla": { - "category": "display", - "ascent": 2500, - "descent": -1200, - "lineGap": 67, - "xAvgCharWidth": 2212, - "unitsPerEm": 2048, - "azAvgWidth": 1401.0697674418604 - }, - "Cherry Cream Soda": { - "category": "display", - "ascent": 1006, - "descent": -247, - "lineGap": 29, - "xAvgCharWidth": 680, - "unitsPerEm": 1024, - "azAvgWidth": 577.0930232558139 - }, - "Stint Ultra Condensed": { - "category": "display", - "ascent": 1829, - "descent": -483, - "lineGap": 0, - "xAvgCharWidth": 508, - "unitsPerEm": 2048, - "azAvgWidth": 520.5348837209302 - }, - "Shadows Into Light Two": { - "category": "handwriting", - "ascent": 1145, - "descent": -341, - "lineGap": 0, - "xAvgCharWidth": 467, - "unitsPerEm": 1024, - "azAvgWidth": 417.2325581395349 - }, - "Lexend Peta": { - "category": "sans-serif", - "ascent": 1000, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 588, - "unitsPerEm": 1000, - "azAvgWidth": 742.5116279069767 - }, - "Charis SIL": { - "category": "serif", - "ascent": 2450, - "descent": -900, - "lineGap": 0, - "xAvgCharWidth": 1118, - "unitsPerEm": 2048, - "azAvgWidth": 943.2558139534884 - }, - "Syncopate": { - "category": "sans-serif", - "ascent": 1556, - "descent": -426, - "lineGap": 150, - "xAvgCharWidth": 1538, - "unitsPerEm": 2048, - "azAvgWidth": 1579.6976744186047 - }, - "Nerko One": { - "category": "handwriting", - "ascent": 894, - "descent": -317, - "lineGap": 0, - "xAvgCharWidth": 474, - "unitsPerEm": 1000, - "azAvgWidth": 428.8139534883721 - }, - "Sen": { - "category": "sans-serif", - "ascent": 962, - "descent": -270, - "lineGap": 0, - "xAvgCharWidth": 576, - "unitsPerEm": 1024, - "azAvgWidth": 502.5348837209302 - }, - "Sansita": { - "category": "sans-serif", - "ascent": 1020, - "descent": -180, - "lineGap": 0, - "xAvgCharWidth": 475, - "unitsPerEm": 1000, - "azAvgWidth": 413.1860465116279 - }, - "IM Fell Great Primer SC": { - "category": "serif", - "ascent": 1942, - "descent": -562, - "lineGap": 0, - "xAvgCharWidth": 935, - "unitsPerEm": 2048, - "azAvgWidth": 939.9069767441861 - }, - "Press Start 2P": { - "category": "display", - "ascent": 1000, - "descent": 0, - "lineGap": 0, - "xAvgCharWidth": 1000, - "unitsPerEm": 1000, - "azAvgWidth": 1000 - }, - "Fira Mono": { - "category": "monospace", - "ascent": 935, - "descent": -265, - "lineGap": 0, - "xAvgCharWidth": 600, - "unitsPerEm": 1000, - "azAvgWidth": 600 - }, - "Vibur": { - "category": "handwriting", - "ascent": 1960, - "descent": -792, - "lineGap": 184, - "xAvgCharWidth": 718, - "unitsPerEm": 2048, - "azAvgWidth": 739.046511627907 - }, - "Lily Script One": { - "category": "display", - "ascent": 1017, - "descent": -359, - "lineGap": 0, - "xAvgCharWidth": 554, - "unitsPerEm": 1000, - "azAvgWidth": 441.7906976744186 - }, - "Reggae One": { - "category": "display", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 969, - "unitsPerEm": 1000, - "azAvgWidth": 547.6511627906976 - }, - "Racing Sans One": { - "category": "display", - "ascent": 976, - "descent": -284, - "lineGap": 0, - "xAvgCharWidth": 461, - "unitsPerEm": 1000, - "azAvgWidth": 477.1860465116279 - }, - "Monsieur La Doulaise": { - "category": "handwriting", - "ascent": 1048, - "descent": -513, - "lineGap": 0, - "xAvgCharWidth": 273, - "unitsPerEm": 1000, - "azAvgWidth": 287.3255813953488 - }, - "Gloria Hallelujah": { - "category": "handwriting", - "ascent": 1439, - "descent": -591, - "lineGap": 0, - "xAvgCharWidth": 516, - "unitsPerEm": 1024, - "azAvgWidth": 525.9767441860465 - }, - "Island Moments": { - "category": "handwriting", - "ascent": 750, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 556, - "unitsPerEm": 1000, - "azAvgWidth": 281.7674418604651 - }, - "Ravi Prakash": { - "category": "display", - "ascent": 938, - "descent": -684, - "lineGap": 0, - "xAvgCharWidth": 542, - "unitsPerEm": 1024, - "azAvgWidth": 426.51162790697674 - }, - "Gentium Book Plus": { - "category": "serif", - "ascent": 2250, - "descent": -750, - "lineGap": 0, - "xAvgCharWidth": 1059, - "unitsPerEm": 2048, - "azAvgWidth": 888.4418604651163 - }, - "Unica One": { - "category": "display", - "ascent": 917, - "descent": -265, - "lineGap": 0, - "xAvgCharWidth": 469, - "unitsPerEm": 1000, - "azAvgWidth": 442.7674418604651 - }, - "Hind Madurai": { - "category": "sans-serif", - "ascent": 982, - "descent": -398, - "lineGap": 0, - "xAvgCharWidth": 598, - "unitsPerEm": 1000, - "azAvgWidth": 444 - }, - "Fasthand": { - "category": "display", - "ascent": 2500, - "descent": -1200, - "lineGap": 0, - "xAvgCharWidth": 1471, - "unitsPerEm": 2048, - "azAvgWidth": 760.1395348837209 - }, - "Smythe": { - "category": "display", - "ascent": 1883, - "descent": -480, - "lineGap": 0, - "xAvgCharWidth": 625, - "unitsPerEm": 2048, - "azAvgWidth": 647.4651162790698 - }, - "Tiro Telugu": { - "category": "serif", - "ascent": 755, - "descent": -245, - "lineGap": 794, - "xAvgCharWidth": 763, - "unitsPerEm": 1000, - "azAvgWidth": 465.74418604651163 - }, - "Odor Mean Chey": { - "category": "serif", - "ascent": 2500, - "descent": -1200, - "lineGap": 0, - "xAvgCharWidth": 1337, - "unitsPerEm": 2048, - "azAvgWidth": 951.4651162790698 - }, - "Flow Block": { - "category": "display", - "ascent": 1000, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 495, - "unitsPerEm": 1000, - "azAvgWidth": 516.046511627907 - }, - "Domine": { - "category": "serif", - "ascent": 900, - "descent": -240, - "lineGap": 0, - "xAvgCharWidth": 594, - "unitsPerEm": 1000, - "azAvgWidth": 500.5581395348837 - }, - "Yanone Kaffeesatz": { - "category": "sans-serif", - "ascent": 735, - "descent": -200, - "lineGap": 57, - "xAvgCharWidth": 405, - "unitsPerEm": 1000, - "azAvgWidth": 317.6511627906977 - }, - "Metal": { - "category": "display", - "ascent": 2600, - "descent": -1600, - "lineGap": 0, - "xAvgCharWidth": 1388, - "unitsPerEm": 2048, - "azAvgWidth": 766.2790697674419 - }, - "Encode Sans Semi Expanded": { - "category": "sans-serif", - "ascent": 2060, - "descent": -440, - "lineGap": 0, - "xAvgCharWidth": 1188, - "unitsPerEm": 2000, - "azAvgWidth": 974.2790697674419 - }, - "Gwendolyn": { - "category": "handwriting", - "ascent": 880, - "descent": -320, - "lineGap": 0, - "xAvgCharWidth": 477, - "unitsPerEm": 1000, - "azAvgWidth": 315.6511627906977 - }, - "Bigelow Rules": { - "category": "display", - "ascent": 1857, - "descent": -516, - "lineGap": 0, - "xAvgCharWidth": 514, - "unitsPerEm": 2048, - "azAvgWidth": 521.7441860465116 - }, - "Encode Sans Expanded": { - "category": "sans-serif", - "ascent": 2060, - "descent": -440, - "lineGap": 0, - "xAvgCharWidth": 1257, - "unitsPerEm": 2000, - "azAvgWidth": 1039.093023255814 - }, - "Beau Rivage": { - "category": "handwriting", - "ascent": 940, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 596, - "unitsPerEm": 1000, - "azAvgWidth": 266.48837209302326 - }, - "Noto Serif TC": { - "category": "serif", - "ascent": 1151, - "descent": -286, - "lineGap": 0, - "xAvgCharWidth": 982, - "unitsPerEm": 1000, - "azAvgWidth": 500.7674418604651 - }, - "Italiana": { - "category": "serif", - "ascent": 928, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 435, - "unitsPerEm": 1000, - "azAvgWidth": 445.48837209302326 - }, - "Zen Kaku Gothic Antique": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 979, - "unitsPerEm": 1000, - "azAvgWidth": 452.2093023255814 - }, - "Noto Sans Thai": { - "category": "sans-serif", - "ascent": 1061, - "descent": -450, - "lineGap": 0, - "xAvgCharWidth": 558, - "unitsPerEm": 1000, - "azAvgWidth": 485.8139534883721 - }, - "Nosifer": { - "category": "display", - "ascent": 2236, - "descent": -1328, - "lineGap": 0, - "xAvgCharWidth": 1653, - "unitsPerEm": 2048, - "azAvgWidth": 1662.3488372093022 - }, - "Mandali": { - "category": "sans-serif", - "ascent": 1087, - "descent": -475, - "lineGap": 0, - "xAvgCharWidth": 468, - "unitsPerEm": 790, - "azAvgWidth": 365.6511627906977 - }, - "Kantumruy Pro": { - "category": "sans-serif", - "ascent": 920, - "descent": -260, - "lineGap": 0, - "xAvgCharWidth": 627, - "unitsPerEm": 1000, - "azAvgWidth": 488.95348837209303 - }, - "The Girl Next Door": { - "category": "handwriting", - "ascent": 1139, - "descent": -748, - "lineGap": 0, - "xAvgCharWidth": 482, - "unitsPerEm": 1024, - "azAvgWidth": 492.1860465116279 - }, - "Cutive Mono": { - "category": "monospace", - "ascent": 1697, - "descent": -558, - "lineGap": 0, - "xAvgCharWidth": 1240, - "unitsPerEm": 2048, - "azAvgWidth": 1240 - }, - "Italianno": { - "category": "handwriting", - "ascent": 800, - "descent": -450, - "lineGap": 0, - "xAvgCharWidth": 419, - "unitsPerEm": 1000, - "azAvgWidth": 259.3720930232558 - }, - "Sunshiney": { - "category": "handwriting", - "ascent": 1019, - "descent": -306, - "lineGap": 27, - "xAvgCharWidth": 346, - "unitsPerEm": 1024, - "azAvgWidth": 354.5813953488372 - }, - "Della Respira": { - "category": "serif", - "ascent": 2196, - "descent": -607, - "lineGap": 0, - "xAvgCharWidth": 889, - "unitsPerEm": 2048, - "azAvgWidth": 919.2093023255813 - }, - "Belgrano": { - "category": "serif", - "ascent": 990, - "descent": -278, - "lineGap": 0, - "xAvgCharWidth": 500, - "unitsPerEm": 1000, - "azAvgWidth": 517.5116279069767 - }, - "My Soul": { - "category": "handwriting", - "ascent": 975, - "descent": -350, - "lineGap": 0, - "xAvgCharWidth": 594, - "unitsPerEm": 1000, - "azAvgWidth": 346.6511627906977 - }, - "Andada Pro": { - "category": "serif", - "ascent": 942, - "descent": -235, - "lineGap": 0, - "xAvgCharWidth": 589, - "unitsPerEm": 1000, - "azAvgWidth": 470.1860465116279 - }, - "New Rocker": { - "category": "display", - "ascent": 946, - "descent": -283, - "lineGap": 0, - "xAvgCharWidth": 420, - "unitsPerEm": 1000, - "azAvgWidth": 434.8139534883721 - }, - "Strait": { - "category": "sans-serif", - "ascent": 901, - "descent": -194, - "lineGap": 0, - "xAvgCharWidth": 468, - "unitsPerEm": 1000, - "azAvgWidth": 425.51162790697674 - }, - "Radley": { - "category": "serif", - "ascent": 1973, - "descent": -615, - "lineGap": 0, - "xAvgCharWidth": 1152, - "unitsPerEm": 2048, - "azAvgWidth": 920.6511627906976 - }, - "Genos": { - "category": "sans-serif", - "ascent": 900, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 441, - "unitsPerEm": 1000, - "azAvgWidth": 404.2093023255814 - }, - "Monda": { - "category": "sans-serif", - "ascent": 2461, - "descent": -875, - "lineGap": 0, - "xAvgCharWidth": 1195, - "unitsPerEm": 2048, - "azAvgWidth": 996.6976744186046 - }, - "Sarala": { - "category": "sans-serif", - "ascent": 2398, - "descent": -941, - "lineGap": 0, - "xAvgCharWidth": 1137, - "unitsPerEm": 2048, - "azAvgWidth": 958.046511627907 - }, - "Dangrek": { - "category": "display", - "ascent": 2500, - "descent": -1200, - "lineGap": 0, - "xAvgCharWidth": 1109, - "unitsPerEm": 2048, - "azAvgWidth": 898.7906976744187 - }, - "Artifika": { - "category": "serif", - "ascent": 1984, - "descent": -508, - "lineGap": 0, - "xAvgCharWidth": 1195, - "unitsPerEm": 2048, - "azAvgWidth": 1106.4883720930231 - }, - "Sonsie One": { - "category": "display", - "ascent": 2050, - "descent": -600, - "lineGap": 0, - "xAvgCharWidth": 1473, - "unitsPerEm": 2048, - "azAvgWidth": 1527.7906976744187 - }, - "Anek Latin": { - "category": "sans-serif", - "ascent": 1800, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 1000, - "unitsPerEm": 2000, - "azAvgWidth": 868.4186046511628 - }, - "RocknRoll One": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 969, - "unitsPerEm": 1000, - "azAvgWidth": 531.0232558139535 - }, - "Noto Sans Warang Citi": { - "category": "sans-serif", - "ascent": 1042, - "descent": -100, - "lineGap": 0, - "xAvgCharWidth": 619, - "unitsPerEm": 1000, - "azAvgWidth": 558.1395348837209 - }, - "Nixie One": { - "category": "display", - "ascent": 926, - "descent": -210, - "lineGap": 0, - "xAvgCharWidth": 563, - "unitsPerEm": 1000, - "azAvgWidth": 518.4186046511628 - }, - "Figtree": { - "category": "sans-serif", - "ascent": 950, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 528, - "unitsPerEm": 1000, - "azAvgWidth": 464.27906976744185 - }, - "IM Fell English": { - "category": "serif", - "ascent": 1854, - "descent": -744, - "lineGap": 0, - "xAvgCharWidth": 834, - "unitsPerEm": 2048, - "azAvgWidth": 862.0697674418604 - }, - "Meow Script": { - "category": "handwriting", - "ascent": 830, - "descent": -370, - "lineGap": 0, - "xAvgCharWidth": 487, - "unitsPerEm": 1000, - "azAvgWidth": 304.0232558139535 - }, - "Benne": { - "category": "serif", - "ascent": 630, - "descent": -370, - "lineGap": 0, - "xAvgCharWidth": 707, - "unitsPerEm": 1000, - "azAvgWidth": 394.30232558139534 - }, - "Gidugu": { - "category": "sans-serif", - "ascent": 1294, - "descent": -790, - "lineGap": 0, - "xAvgCharWidth": 324, - "unitsPerEm": 1124, - "azAvgWidth": 332.86046511627904 - }, - "Londrina Shadow": { - "category": "display", - "ascent": 945, - "descent": -238, - "lineGap": 0, - "xAvgCharWidth": 443, - "unitsPerEm": 1000, - "azAvgWidth": 395.8837209302326 - }, - "Jura": { - "category": "sans-serif", - "ascent": 1930, - "descent": -436, - "lineGap": 0, - "xAvgCharWidth": 1112, - "unitsPerEm": 2000, - "azAvgWidth": 979.7674418604652 - }, - "Prata": { - "category": "serif", - "ascent": 993, - "descent": -362, - "lineGap": 0, - "xAvgCharWidth": 636, - "unitsPerEm": 1000, - "azAvgWidth": 494.6744186046512 - }, - "Rosarivo": { - "category": "serif", - "ascent": 979, - "descent": -424, - "lineGap": 0, - "xAvgCharWidth": 473, - "unitsPerEm": 1000, - "azAvgWidth": 485.16279069767444 - }, - "Niramit": { - "category": "sans-serif", - "ascent": 1105, - "descent": -195, - "lineGap": 0, - "xAvgCharWidth": 546, - "unitsPerEm": 1000, - "azAvgWidth": 469.3953488372093 - }, - "Big Shoulders Inline Text": { - "category": "display", - "ascent": 3936, - "descent": -852, - "lineGap": 0, - "xAvgCharWidth": 1072, - "unitsPerEm": 4000, - "azAvgWidth": 1367.093023255814 - }, - "Encode Sans SC": { - "category": "sans-serif", - "ascent": 2060, - "descent": -440, - "lineGap": 0, - "xAvgCharWidth": 967, - "unitsPerEm": 2000, - "azAvgWidth": 1025.1627906976744 - }, - "Baloo 2": { - "category": "display", - "ascent": 1078, - "descent": -524, - "lineGap": 0, - "xAvgCharWidth": 654, - "unitsPerEm": 1000, - "azAvgWidth": 442.3720930232558 - }, - "MuseoModerno": { - "category": "display", - "ascent": 1145, - "descent": -445, - "lineGap": 0, - "xAvgCharWidth": 599, - "unitsPerEm": 1000, - "azAvgWidth": 509.30232558139534 - }, - "Zhi Mang Xing": { - "category": "handwriting", - "ascent": 880, - "descent": -120, - "lineGap": 0, - "xAvgCharWidth": 891, - "unitsPerEm": 1000, - "azAvgWidth": 310.48837209302326 - }, - "McLaren": { - "category": "display", - "ascent": 2216, - "descent": -722, - "lineGap": 0, - "xAvgCharWidth": 1038, - "unitsPerEm": 2048, - "azAvgWidth": 1064.1860465116279 - }, - "Nobile": { - "category": "sans-serif", - "ascent": 1731, - "descent": -578, - "lineGap": 0, - "xAvgCharWidth": 982, - "unitsPerEm": 2048, - "azAvgWidth": 1015.0697674418604 - }, - "Noto Sans Miao": { - "category": "sans-serif", - "ascent": 1142, - "descent": -350, - "lineGap": 0, - "xAvgCharWidth": 448, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Enriqueta": { - "category": "serif", - "ascent": 1077, - "descent": -261, - "lineGap": 0, - "xAvgCharWidth": 520, - "unitsPerEm": 1000, - "azAvgWidth": 459.6511627906977 - }, - "Abril Fatface": { - "category": "display", - "ascent": 1058, - "descent": -291, - "lineGap": 0, - "xAvgCharWidth": 458, - "unitsPerEm": 1000, - "azAvgWidth": 476.69767441860466 - }, - "Stick": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 968, - "unitsPerEm": 1000, - "azAvgWidth": 471.6511627906977 - }, - "Libre Baskerville": { - "category": "serif", - "ascent": 970, - "descent": -270, - "lineGap": 0, - "xAvgCharWidth": 513, - "unitsPerEm": 1000, - "azAvgWidth": 530.5348837209302 - }, - "Style Script": { - "category": "handwriting", - "ascent": 1000, - "descent": -520, - "lineGap": 0, - "xAvgCharWidth": 568, - "unitsPerEm": 1000, - "azAvgWidth": 292.13953488372096 - }, - "Frank Ruhl Libre": { - "category": "serif", - "ascent": 957, - "descent": -334, - "lineGap": 0, - "xAvgCharWidth": 506, - "unitsPerEm": 1000, - "azAvgWidth": 448.90697674418607 - }, - "Dosis": { - "category": "sans-serif", - "ascent": 1027, - "descent": -237, - "lineGap": 0, - "xAvgCharWidth": 435, - "unitsPerEm": 1000, - "azAvgWidth": 388.86046511627904 - }, - "Sarpanch": { - "category": "sans-serif", - "ascent": 1050, - "descent": -350, - "lineGap": 0, - "xAvgCharWidth": 648, - "unitsPerEm": 1000, - "azAvgWidth": 519.1627906976744 - }, - "Quintessential": { - "category": "handwriting", - "ascent": 2341, - "descent": -799, - "lineGap": 0, - "xAvgCharWidth": 794, - "unitsPerEm": 2048, - "azAvgWidth": 817.2790697674419 - }, - "Noto Sans Myanmar": { - "category": "sans-serif", - "ascent": 1324, - "descent": -860, - "lineGap": 0, - "xAvgCharWidth": 641, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Vibes": { - "category": "display", - "ascent": 1105, - "descent": -680, - "lineGap": 0, - "xAvgCharWidth": 451, - "unitsPerEm": 1000, - "azAvgWidth": 388.13953488372096 - }, - "Courier Prime": { - "category": "monospace", - "ascent": 1600, - "descent": -700, - "lineGap": 0, - "xAvgCharWidth": 1228, - "unitsPerEm": 2048, - "azAvgWidth": 1228 - }, - "Do Hyeon": { - "category": "sans-serif", - "ascent": 800, - "descent": -200, - "lineGap": 250, - "xAvgCharWidth": 752, - "unitsPerEm": 1000, - "azAvgWidth": 495.09302325581393 - }, - "IBM Plex Sans KR": { - "category": "sans-serif", - "ascent": 1085, - "descent": -415, - "lineGap": 0, - "xAvgCharWidth": 893, - "unitsPerEm": 1000, - "azAvgWidth": 461.4651162790698 - }, - "Amiri": { - "category": "serif", - "ascent": 1124, - "descent": -634, - "lineGap": 0, - "xAvgCharWidth": 454, - "unitsPerEm": 1000, - "azAvgWidth": 412.6744186046512 - }, - "Signika Negative": { - "category": "sans-serif", - "ascent": 1880, - "descent": -584, - "lineGap": 0, - "xAvgCharWidth": 1238, - "unitsPerEm": 2000, - "azAvgWidth": 872.0930232558139 - }, - "Kolker Brush": { - "category": "handwriting", - "ascent": 750, - "descent": -350, - "lineGap": 0, - "xAvgCharWidth": 385, - "unitsPerEm": 1000, - "azAvgWidth": 212.13953488372093 - }, - "Noto Serif Devanagari": { - "category": "serif", - "ascent": 930, - "descent": -625, - "lineGap": 0, - "xAvgCharWidth": 528, - "unitsPerEm": 1000, - "azAvgWidth": 497.2325581395349 - }, - "Amiko": { - "category": "sans-serif", - "ascent": 928, - "descent": -406, - "lineGap": 0, - "xAvgCharWidth": 611, - "unitsPerEm": 1000, - "azAvgWidth": 513.4883720930233 - }, - "Kelly Slab": { - "category": "display", - "ascent": 962, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 522, - "unitsPerEm": 1000, - "azAvgWidth": 457.30232558139534 - }, - "Turret Road": { - "category": "display", - "ascent": 850, - "descent": -243, - "lineGap": 0, - "xAvgCharWidth": 561, - "unitsPerEm": 1000, - "azAvgWidth": 485.86046511627904 - }, - "Noto Sans Math": { - "category": "sans-serif", - "ascent": 1069, - "descent": -423, - "lineGap": 0, - "xAvgCharWidth": 647, - "unitsPerEm": 1000, - "azAvgWidth": 485.8139534883721 - }, - "Stalinist One": { - "category": "display", - "ascent": 1037, - "descent": -439, - "lineGap": 0, - "xAvgCharWidth": 1028, - "unitsPerEm": 1000, - "azAvgWidth": 918 - }, - "Moul": { - "category": "display", - "ascent": 2500, - "descent": -1200, - "lineGap": 0, - "xAvgCharWidth": 1629, - "unitsPerEm": 2048, - "azAvgWidth": 1224.4186046511627 - }, - "Sofadi One": { - "category": "display", - "ascent": 856, - "descent": -310, - "lineGap": 0, - "xAvgCharWidth": 516, - "unitsPerEm": 1000, - "azAvgWidth": 502.9767441860465 - }, - "Cairo": { - "category": "sans-serif", - "ascent": 1303, - "descent": -571, - "lineGap": 0, - "xAvgCharWidth": 592, - "unitsPerEm": 1000, - "azAvgWidth": 433.09302325581393 - }, - "Spline Sans Mono": { - "category": "monospace", - "ascent": 1927, - "descent": -473, - "lineGap": 0, - "xAvgCharWidth": 1216, - "unitsPerEm": 2000, - "azAvgWidth": 1200 - }, - "Annie Use Your Telescope": { - "category": "handwriting", - "ascent": 1049, - "descent": -419, - "lineGap": 0, - "xAvgCharWidth": 393, - "unitsPerEm": 1024, - "azAvgWidth": 363.6046511627907 - }, - "Murecho": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 888, - "unitsPerEm": 1000, - "azAvgWidth": 448.5813953488372 - }, - "Poiret One": { - "category": "display", - "ascent": 962, - "descent": -208, - "lineGap": 0, - "xAvgCharWidth": 426, - "unitsPerEm": 1000, - "azAvgWidth": 438.25581395348837 - }, - "Public Sans": { - "category": "sans-serif", - "ascent": 1900, - "descent": -450, - "lineGap": 0, - "xAvgCharWidth": 1089, - "unitsPerEm": 2000, - "azAvgWidth": 962.5348837209302 - }, - "Tai Heritage Pro": { - "category": "serif", - "ascent": 2700, - "descent": -1600, - "lineGap": 0, - "xAvgCharWidth": 1259, - "unitsPerEm": 2048, - "azAvgWidth": 867.1627906976744 - }, - "Lemonada": { - "category": "display", - "ascent": 1345, - "descent": -653, - "lineGap": 0, - "xAvgCharWidth": 680, - "unitsPerEm": 1000, - "azAvgWidth": 601.7441860465116 - }, - "Noto Serif Sinhala": { - "category": "serif", - "ascent": 997, - "descent": -307, - "lineGap": 0, - "xAvgCharWidth": 779, - "unitsPerEm": 1000, - "azAvgWidth": 530.7209302325581 - }, - "Libre Barcode 39 Extended": { - "category": "display", - "ascent": 600, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 721, - "unitsPerEm": 1000, - "azAvgWidth": 893.0232558139535 - }, - "UnifrakturCook": { - "category": "display", - "ascent": 2110, - "descent": -570, - "lineGap": 0, - "xAvgCharWidth": 1015, - "unitsPerEm": 2048, - "azAvgWidth": 783.2790697674419 - }, - "Kaisei Opti": { - "category": "serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 969, - "unitsPerEm": 1000, - "azAvgWidth": 500.3720930232558 - }, - "Noto Sans Old North Arabian": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 603, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Red Rose": { - "category": "display", - "ascent": 937, - "descent": -312, - "lineGap": 0, - "xAvgCharWidth": 594, - "unitsPerEm": 1000, - "azAvgWidth": 502.3488372093023 - }, - "Fleur De Leah": { - "category": "handwriting", - "ascent": 920, - "descent": -450, - "lineGap": 0, - "xAvgCharWidth": 521, - "unitsPerEm": 1000, - "azAvgWidth": 304.4186046511628 - }, - "League Spartan": { - "category": "sans-serif", - "ascent": 1400, - "descent": -440, - "lineGap": 0, - "xAvgCharWidth": 987, - "unitsPerEm": 2000, - "azAvgWidth": 849.2790697674419 - }, - "Notable": { - "category": "sans-serif", - "ascent": 1143, - "descent": -157, - "lineGap": 0, - "xAvgCharWidth": 759, - "unitsPerEm": 1000, - "azAvgWidth": 786.953488372093 - }, - "Basic": { - "category": "sans-serif", - "ascent": 2066, - "descent": -511, - "lineGap": 0, - "xAvgCharWidth": 1085, - "unitsPerEm": 2048, - "azAvgWidth": 911.6744186046511 - }, - "Charmonman": { - "category": "handwriting", - "ascent": 1200, - "descent": -700, - "lineGap": 0, - "xAvgCharWidth": 548, - "unitsPerEm": 1000, - "azAvgWidth": 406.30232558139534 - }, - "Noto Sans Tirhuta": { - "category": "sans-serif", - "ascent": 1026, - "descent": -519, - "lineGap": 0, - "xAvgCharWidth": 618, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Lakki Reddy": { - "category": "handwriting", - "ascent": 938, - "descent": -765, - "lineGap": 0, - "xAvgCharWidth": 612, - "unitsPerEm": 1024, - "azAvgWidth": 472.6511627906977 - }, - "Noto Sans Multani": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 614, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Buda": { - "category": "display", - "ascent": 1836, - "descent": -724, - "lineGap": 0, - "xAvgCharWidth": 781, - "unitsPerEm": 2048, - "azAvgWidth": 802.046511627907 - }, - "Prompt": { - "category": "sans-serif", - "ascent": 1090, - "descent": -422, - "lineGap": 0, - "xAvgCharWidth": 588, - "unitsPerEm": 1000, - "azAvgWidth": 518.1627906976744 - }, - "Crafty Girls": { - "category": "handwriting", - "ascent": 1001, - "descent": -461, - "lineGap": 21, - "xAvgCharWidth": 565, - "unitsPerEm": 1024, - "azAvgWidth": 539.9302325581396 - }, - "Ramaraja": { - "category": "serif", - "ascent": 741, - "descent": -544, - "lineGap": 0, - "xAvgCharWidth": 371, - "unitsPerEm": 750, - "azAvgWidth": 284.06976744186045 - }, - "Noto Sans Old Turkic": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 602, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Chakra Petch": { - "category": "sans-serif", - "ascent": 992, - "descent": -308, - "lineGap": 0, - "xAvgCharWidth": 546, - "unitsPerEm": 1000, - "azAvgWidth": 470.0232558139535 - }, - "Suez One": { - "category": "serif", - "ascent": 987, - "descent": -319, - "lineGap": 0, - "xAvgCharWidth": 575, - "unitsPerEm": 1000, - "azAvgWidth": 487.3953488372093 - }, - "DM Serif Text": { - "category": "serif", - "ascent": 1036, - "descent": -335, - "lineGap": 0, - "xAvgCharWidth": 559, - "unitsPerEm": 1000, - "azAvgWidth": 459.1860465116279 - }, - "Montaga": { - "category": "serif", - "ascent": 978, - "descent": -254, - "lineGap": 0, - "xAvgCharWidth": 437, - "unitsPerEm": 1000, - "azAvgWidth": 450.51162790697674 - }, - "Delius Unicase": { - "category": "handwriting", - "ascent": 1016, - "descent": -236, - "lineGap": 0, - "xAvgCharWidth": 644, - "unitsPerEm": 1000, - "azAvgWidth": 658.8372093023256 - }, - "Courgette": { - "category": "handwriting", - "ascent": 2000, - "descent": -560, - "lineGap": 0, - "xAvgCharWidth": 1107, - "unitsPerEm": 2048, - "azAvgWidth": 938.2558139534884 - }, - "Tiro Kannada": { - "category": "serif", - "ascent": 755, - "descent": -245, - "lineGap": 794, - "xAvgCharWidth": 767, - "unitsPerEm": 1000, - "azAvgWidth": 465.74418604651163 - }, - "Short Stack": { - "category": "handwriting", - "ascent": 1913, - "descent": -609, - "lineGap": 0, - "xAvgCharWidth": 1268, - "unitsPerEm": 2048, - "azAvgWidth": 1209.7441860465117 - }, - "The Nautigal": { - "category": "handwriting", - "ascent": 870, - "descent": -330, - "lineGap": 0, - "xAvgCharWidth": 452, - "unitsPerEm": 1000, - "azAvgWidth": 237.65116279069767 - }, - "Mukta Malar": { - "category": "sans-serif", - "ascent": 1130, - "descent": -532, - "lineGap": 0, - "xAvgCharWidth": 617, - "unitsPerEm": 1000, - "azAvgWidth": 439.16279069767444 - }, - "Noto Sans Tifinagh": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 654, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Crete Round": { - "category": "serif", - "ascent": 990, - "descent": -286, - "lineGap": 0, - "xAvgCharWidth": 446, - "unitsPerEm": 1000, - "azAvgWidth": 462.69767441860466 - }, - "Blinker": { - "category": "sans-serif", - "ascent": 960, - "descent": -240, - "lineGap": 0, - "xAvgCharWidth": 479, - "unitsPerEm": 1000, - "azAvgWidth": 426.25581395348837 - }, - "Plus Jakarta Sans": { - "category": "sans-serif", - "ascent": 1038, - "descent": -222, - "lineGap": 0, - "xAvgCharWidth": 585, - "unitsPerEm": 1000, - "azAvgWidth": 482.5348837209302 - }, - "Siemreap": { - "category": "display", - "ascent": 2500, - "descent": -1200, - "lineGap": 67, - "xAvgCharWidth": 2215, - "unitsPerEm": 2048, - "azAvgWidth": 1401.0697674418604 - }, - "Alex Brush": { - "category": "handwriting", - "ascent": 825, - "descent": -425, - "lineGap": 0, - "xAvgCharWidth": 539, - "unitsPerEm": 1000, - "azAvgWidth": 325.83720930232556 - }, - "Noto Sans Newa": { - "category": "sans-serif", - "ascent": 1036, - "descent": -396, - "lineGap": 0, - "xAvgCharWidth": 552, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Days One": { - "category": "sans-serif", - "ascent": 2040, - "descent": -567, - "lineGap": 0, - "xAvgCharWidth": 1340, - "unitsPerEm": 2048, - "azAvgWidth": 1154.1627906976744 - }, - "Mada": { - "category": "sans-serif", - "ascent": 900, - "descent": -300, - "lineGap": 96, - "xAvgCharWidth": 506, - "unitsPerEm": 1000, - "azAvgWidth": 429.7906976744186 - }, - "Noto Sans Khojki": { - "category": "sans-serif", - "ascent": 1409, - "descent": -447, - "lineGap": 0, - "xAvgCharWidth": 670, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Sue Ellen Francisco": { - "category": "handwriting", - "ascent": 1362, - "descent": -634, - "lineGap": 0, - "xAvgCharWidth": 280, - "unitsPerEm": 1024, - "azAvgWidth": 288.83720930232556 - }, - "Niconne": { - "category": "handwriting", - "ascent": 1898, - "descent": -585, - "lineGap": 0, - "xAvgCharWidth": 667, - "unitsPerEm": 2048, - "azAvgWidth": 688.9302325581396 - }, - "Hind Guntur": { - "category": "sans-serif", - "ascent": 1115, - "descent": -773, - "lineGap": 0, - "xAvgCharWidth": 549, - "unitsPerEm": 1000, - "azAvgWidth": 444 - }, - "Noto Sans Meroitic": { - "category": "sans-serif", - "ascent": 928, - "descent": -415, - "lineGap": 0, - "xAvgCharWidth": 949, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Loved by the King": { - "category": "handwriting", - "ascent": 2398, - "descent": -1137, - "lineGap": 0, - "xAvgCharWidth": 715, - "unitsPerEm": 2048, - "azAvgWidth": 666.4651162790698 - }, - "Original Surfer": { - "category": "display", - "ascent": 2036, - "descent": -526, - "lineGap": 0, - "xAvgCharWidth": 946, - "unitsPerEm": 2048, - "azAvgWidth": 976.6279069767442 - }, - "Londrina Sketch": { - "category": "display", - "ascent": 945, - "descent": -238, - "lineGap": 0, - "xAvgCharWidth": 443, - "unitsPerEm": 1000, - "azAvgWidth": 395.8837209302326 - }, - "Noto Sans Balinese": { - "category": "sans-serif", - "ascent": 1363, - "descent": -838, - "lineGap": 0, - "xAvgCharWidth": 734, - "unitsPerEm": 1000, - "azAvgWidth": 485.8139534883721 - }, - "Quando": { - "category": "serif", - "ascent": 2030, - "descent": -530, - "lineGap": 0, - "xAvgCharWidth": 1363, - "unitsPerEm": 2048, - "azAvgWidth": 1141.7441860465117 - }, - "Rajdhani": { - "category": "sans-serif", - "ascent": 930, - "descent": -346, - "lineGap": 0, - "xAvgCharWidth": 477, - "unitsPerEm": 1000, - "azAvgWidth": 416.5348837209302 - }, - "Fira Sans Extra Condensed": { - "category": "sans-serif", - "ascent": 935, - "descent": -265, - "lineGap": 0, - "xAvgCharWidth": 465, - "unitsPerEm": 1000, - "azAvgWidth": 389.2093023255814 - }, - "Dancing Script": { - "category": "handwriting", - "ascent": 920, - "descent": -280, - "lineGap": 0, - "xAvgCharWidth": 497, - "unitsPerEm": 1000, - "azAvgWidth": 362.5813953488372 - }, - "Scope One": { - "category": "serif", - "ascent": 928, - "descent": -455, - "lineGap": 0, - "xAvgCharWidth": 524, - "unitsPerEm": 1000, - "azAvgWidth": 473.51162790697674 - }, - "Exo 2": { - "category": "sans-serif", - "ascent": 999, - "descent": -201, - "lineGap": 0, - "xAvgCharWidth": 559, - "unitsPerEm": 1000, - "azAvgWidth": 470.48837209302326 - }, - "Varela": { - "category": "sans-serif", - "ascent": 1015, - "descent": -285, - "lineGap": 0, - "xAvgCharWidth": 476, - "unitsPerEm": 1000, - "azAvgWidth": 491.1860465116279 - }, - "Cedarville Cursive": { - "category": "handwriting", - "ascent": 1279, - "descent": -663, - "lineGap": 0, - "xAvgCharWidth": 583, - "unitsPerEm": 1024, - "azAvgWidth": 474.2325581395349 - }, - "Sigmar One": { - "category": "display", - "ascent": 1172, - "descent": -466, - "lineGap": 0, - "xAvgCharWidth": 753, - "unitsPerEm": 1000, - "azAvgWidth": 640.6744186046511 - }, - "DM Mono": { - "category": "monospace", - "ascent": 992, - "descent": -310, - "lineGap": 0, - "xAvgCharWidth": 600, - "unitsPerEm": 1000, - "azAvgWidth": 600 - }, - "IBM Plex Sans Devanagari": { - "category": "sans-serif", - "ascent": 1070, - "descent": -460, - "lineGap": 0, - "xAvgCharWidth": 791, - "unitsPerEm": 1000, - "azAvgWidth": 461.4651162790698 - }, - "Special Elite": { - "category": "display", - "ascent": 1440, - "descent": -608, - "lineGap": 0, - "xAvgCharWidth": 1075, - "unitsPerEm": 2048, - "azAvgWidth": 1090.906976744186 - }, - "Song Myung": { - "category": "serif", - "ascent": 848, - "descent": -152, - "lineGap": 250, - "xAvgCharWidth": 867, - "unitsPerEm": 1000, - "azAvgWidth": 454.7906976744186 - }, - "Petemoss": { - "category": "handwriting", - "ascent": 800, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 409, - "unitsPerEm": 1000, - "azAvgWidth": 213.09302325581396 - }, - "Iceberg": { - "category": "display", - "ascent": 936, - "descent": -284, - "lineGap": 0, - "xAvgCharWidth": 497, - "unitsPerEm": 1000, - "azAvgWidth": 423.04651162790697 - }, - "Anek Gujarati": { - "category": "sans-serif", - "ascent": 1975, - "descent": -1064, - "lineGap": 0, - "xAvgCharWidth": 1427, - "unitsPerEm": 2000, - "azAvgWidth": 865.9767441860465 - }, - "BIZ UDMincho": { - "category": "serif", - "ascent": 1802, - "descent": -246, - "lineGap": 0, - "xAvgCharWidth": 1718, - "unitsPerEm": 2048, - "azAvgWidth": 1024 - }, - "Shippori Antique": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 993, - "unitsPerEm": 1000, - "azAvgWidth": 495.51162790697674 - }, - "Slabo 27px": { - "category": "serif", - "ascent": 750, - "descent": -240, - "lineGap": 0, - "xAvgCharWidth": 397, - "unitsPerEm": 810, - "azAvgWidth": 330 - }, - "Redacted": { - "category": "display", - "ascent": 800, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 375, - "unitsPerEm": 1000, - "azAvgWidth": 322.6744186046512 - }, - "Herr Von Muellerhoff": { - "category": "handwriting", - "ascent": 925, - "descent": -497, - "lineGap": 0, - "xAvgCharWidth": 250, - "unitsPerEm": 1000, - "azAvgWidth": 260.27906976744185 - }, - "M PLUS 1": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 967, - "unitsPerEm": 1000, - "azAvgWidth": 499.13953488372096 - }, - "Oooh Baby": { - "category": "handwriting", - "ascent": 900, - "descent": -325, - "lineGap": 0, - "xAvgCharWidth": 519, - "unitsPerEm": 1000, - "azAvgWidth": 367.6744186046512 - }, - "NTR": { - "category": "sans-serif", - "ascent": 1294, - "descent": -877, - "lineGap": 0, - "xAvgCharWidth": 392, - "unitsPerEm": 1024, - "azAvgWidth": 404.1860465116279 - }, - "Zen Kurenaido": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 972, - "unitsPerEm": 1000, - "azAvgWidth": 407.69767441860466 - }, - "Padauk": { - "category": "sans-serif", - "ascent": 1010, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 572, - "unitsPerEm": 1024, - "azAvgWidth": 443.69767441860466 - }, - "Noto Serif Ethiopic": { - "category": "serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 679, - "unitsPerEm": 1000, - "azAvgWidth": 497.2325581395349 - }, - "Red Hat Text": { - "category": "sans-serif", - "ascent": 1018, - "descent": -305, - "lineGap": 0, - "xAvgCharWidth": 530, - "unitsPerEm": 1000, - "azAvgWidth": 455.6744186046512 - }, - "Gowun Batang": { - "category": "serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 896, - "unitsPerEm": 1000, - "azAvgWidth": 450.8139534883721 - }, - "Babylonica": { - "category": "handwriting", - "ascent": 875, - "descent": -450, - "lineGap": 0, - "xAvgCharWidth": 552, - "unitsPerEm": 1000, - "azAvgWidth": 257.3255813953488 - }, - "IM Fell Double Pica": { - "category": "serif", - "ascent": 1924, - "descent": -643, - "lineGap": 0, - "xAvgCharWidth": 792, - "unitsPerEm": 2048, - "azAvgWidth": 819.3488372093024 - }, - "Noto Sans Telugu": { - "category": "sans-serif", - "ascent": 869, - "descent": -483, - "lineGap": 0, - "xAvgCharWidth": 696, - "unitsPerEm": 1000, - "azAvgWidth": 489.0232558139535 - }, - "Snippet": { - "category": "sans-serif", - "ascent": 890, - "descent": -261, - "lineGap": 0, - "xAvgCharWidth": 515, - "unitsPerEm": 1000, - "azAvgWidth": 459.30232558139534 - }, - "Noto Sans Pahawh Hmong": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 686, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Redressed": { - "category": "handwriting", - "ascent": 1907, - "descent": -494, - "lineGap": 0, - "xAvgCharWidth": 714, - "unitsPerEm": 2048, - "azAvgWidth": 737.2558139534884 - }, - "Quattrocento": { - "category": "serif", - "ascent": 848, - "descent": -260, - "lineGap": 0, - "xAvgCharWidth": 452, - "unitsPerEm": 1000, - "azAvgWidth": 466.95348837209303 - }, - "El Messiri": { - "category": "sans-serif", - "ascent": 1019, - "descent": -544, - "lineGap": 0, - "xAvgCharWidth": 569, - "unitsPerEm": 1000, - "azAvgWidth": 438.4651162790698 - }, - "Syne Tactile": { - "category": "display", - "ascent": 925, - "descent": -275, - "lineGap": 0, - "xAvgCharWidth": 527, - "unitsPerEm": 1000, - "azAvgWidth": 415.9767441860465 - }, - "M PLUS Code Latin": { - "category": "sans-serif", - "ascent": 1000, - "descent": -235, - "lineGap": 0, - "xAvgCharWidth": 500, - "unitsPerEm": 1000, - "azAvgWidth": 500 - }, - "Anek Kannada": { - "category": "sans-serif", - "ascent": 2030, - "descent": -1310, - "lineGap": 0, - "xAvgCharWidth": 1503, - "unitsPerEm": 2000, - "azAvgWidth": 876.7906976744187 - }, - "Rhodium Libre": { - "category": "serif", - "ascent": 1100, - "descent": -610, - "lineGap": 0, - "xAvgCharWidth": 607, - "unitsPerEm": 1000, - "azAvgWidth": 522 - }, - "Luckiest Guy": { - "category": "display", - "ascent": 1440, - "descent": -608, - "lineGap": 0, - "xAvgCharWidth": 1051, - "unitsPerEm": 2048, - "azAvgWidth": 1090.7441860465117 - }, - "Antic Didone": { - "category": "serif", - "ascent": 940, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 476, - "unitsPerEm": 1000, - "azAvgWidth": 492.90697674418607 - }, - "Long Cang": { - "category": "handwriting", - "ascent": 880, - "descent": -120, - "lineGap": 0, - "xAvgCharWidth": 989, - "unitsPerEm": 1000, - "azAvgWidth": 413.2093023255814 - }, - "Jua": { - "category": "sans-serif", - "ascent": 800, - "descent": -200, - "lineGap": 250, - "xAvgCharWidth": 803, - "unitsPerEm": 1000, - "azAvgWidth": 555.1395348837209 - }, - "Life Savers": { - "category": "display", - "ascent": 972, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 419, - "unitsPerEm": 1000, - "azAvgWidth": 432.06976744186045 - }, - "Marvel": { - "category": "sans-serif", - "ascent": 951, - "descent": -259, - "lineGap": 0, - "xAvgCharWidth": 407, - "unitsPerEm": 1000, - "azAvgWidth": 351.4418604651163 - }, - "Aldrich": { - "category": "sans-serif", - "ascent": 1475, - "descent": -430, - "lineGap": 98, - "xAvgCharWidth": 1053, - "unitsPerEm": 2048, - "azAvgWidth": 1077.1162790697674 - }, - "Kosugi Maru": { - "category": "sans-serif", - "ascent": 901, - "descent": -123, - "lineGap": 0, - "xAvgCharWidth": 1013, - "unitsPerEm": 1024, - "azAvgWidth": 512 - }, - "PT Sans": { - "category": "sans-serif", - "ascent": 1018, - "descent": -276, - "lineGap": 0, - "xAvgCharWidth": 527, - "unitsPerEm": 1000, - "azAvgWidth": 443.4418604651163 - }, - "Ma Shan Zheng": { - "category": "handwriting", - "ascent": 880, - "descent": -120, - "lineGap": 0, - "xAvgCharWidth": 988, - "unitsPerEm": 1000, - "azAvgWidth": 310.48837209302326 - }, - "Archivo Narrow": { - "category": "sans-serif", - "ascent": 1035, - "descent": -312, - "lineGap": 0, - "xAvgCharWidth": 470, - "unitsPerEm": 1000, - "azAvgWidth": 376.30232558139534 - }, - "Encode Sans Condensed": { - "category": "sans-serif", - "ascent": 2060, - "descent": -440, - "lineGap": 0, - "xAvgCharWidth": 979, - "unitsPerEm": 2000, - "azAvgWidth": 784.4418604651163 - }, - "Rasa": { - "category": "serif", - "ascent": 728, - "descent": -272, - "lineGap": 218, - "xAvgCharWidth": 488, - "unitsPerEm": 1000, - "azAvgWidth": 406.4186046511628 - }, - "Sunflower": { - "category": "sans-serif", - "ascent": 782, - "descent": -218, - "lineGap": 250, - "xAvgCharWidth": 883, - "unitsPerEm": 1000, - "azAvgWidth": 432.3255813953488 - }, - "Alike Angular": { - "category": "serif", - "ascent": 984, - "descent": -270, - "lineGap": 0, - "xAvgCharWidth": 521, - "unitsPerEm": 1000, - "azAvgWidth": 465.4418604651163 - }, - "Croissant One": { - "category": "display", - "ascent": 1071, - "descent": -344, - "lineGap": 0, - "xAvgCharWidth": 612, - "unitsPerEm": 1000, - "azAvgWidth": 568.1627906976744 - }, - "Denk One": { - "category": "sans-serif", - "ascent": 2118, - "descent": -442, - "lineGap": 0, - "xAvgCharWidth": 1018, - "unitsPerEm": 2048, - "azAvgWidth": 919.953488372093 - }, - "Prociono": { - "category": "serif", - "ascent": 1008, - "descent": -212, - "lineGap": 0, - "xAvgCharWidth": 540, - "unitsPerEm": 1000, - "azAvgWidth": 441.2093023255814 - }, - "Unna": { - "category": "serif", - "ascent": 883, - "descent": -269, - "lineGap": 0, - "xAvgCharWidth": 473, - "unitsPerEm": 1000, - "azAvgWidth": 413.3488372093023 - }, - "Bungee Inline": { - "category": "display", - "ascent": 860, - "descent": -140, - "lineGap": 200, - "xAvgCharWidth": 781, - "unitsPerEm": 1000, - "azAvgWidth": 638 - }, - "Oxanium": { - "category": "display", - "ascent": 790, - "descent": -210, - "lineGap": 250, - "xAvgCharWidth": 529, - "unitsPerEm": 1000, - "azAvgWidth": 475.69767441860466 - }, - "Kameron": { - "category": "serif", - "ascent": 1823, - "descent": -608, - "lineGap": 0, - "xAvgCharWidth": 920, - "unitsPerEm": 2048, - "azAvgWidth": 953.6744186046511 - }, - "Cormorant Unicase": { - "category": "serif", - "ascent": 924, - "descent": -287, - "lineGap": 0, - "xAvgCharWidth": 535, - "unitsPerEm": 1000, - "azAvgWidth": 461.6744186046512 - }, - "Maven Pro": { - "category": "sans-serif", - "ascent": 965, - "descent": -210, - "lineGap": 0, - "xAvgCharWidth": 550, - "unitsPerEm": 1000, - "azAvgWidth": 474.09302325581393 - }, - "Noto Sans N Ko": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 530, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Nokora": { - "category": "sans-serif", - "ascent": 1907, - "descent": -800, - "lineGap": 0, - "xAvgCharWidth": 1179, - "unitsPerEm": 2048, - "azAvgWidth": 994.4418604651163 - }, - "Readex Pro": { - "category": "sans-serif", - "ascent": 1000, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 596, - "unitsPerEm": 1000, - "azAvgWidth": 498.6279069767442 - }, - "Noto Serif Grantha": { - "category": "serif", - "ascent": 1290, - "descent": -534, - "lineGap": 0, - "xAvgCharWidth": 1335, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Athiti": { - "category": "sans-serif", - "ascent": 1150, - "descent": -450, - "lineGap": 0, - "xAvgCharWidth": 512, - "unitsPerEm": 1000, - "azAvgWidth": 434.2325581395349 - }, - "Kings": { - "category": "handwriting", - "ascent": 950, - "descent": -450, - "lineGap": 0, - "xAvgCharWidth": 632, - "unitsPerEm": 1000, - "azAvgWidth": 370.6046511627907 - }, - "Chango": { - "category": "display", - "ascent": 995, - "descent": -216, - "lineGap": 0, - "xAvgCharWidth": 684, - "unitsPerEm": 1000, - "azAvgWidth": 703.3720930232558 - }, - "Secular One": { - "category": "sans-serif", - "ascent": 1022, - "descent": -433, - "lineGap": 0, - "xAvgCharWidth": 579, - "unitsPerEm": 1000, - "azAvgWidth": 491.2093023255814 - }, - "Libre Barcode 39": { - "category": "display", - "ascent": 600, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 480, - "unitsPerEm": 1000, - "azAvgWidth": 480 - }, - "MonteCarlo": { - "category": "handwriting", - "ascent": 1200, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 604, - "unitsPerEm": 1000, - "azAvgWidth": 291.04651162790697 - }, - "Noto Serif Dogra": { - "category": "serif", - "ascent": 1130, - "descent": -364, - "lineGap": 0, - "xAvgCharWidth": 582, - "unitsPerEm": 1000, - "azAvgWidth": 549.7674418604652 - }, - "Jomolhari": { - "category": "serif", - "ascent": 1248, - "descent": -392, - "lineGap": 0, - "xAvgCharWidth": 521, - "unitsPerEm": 1024, - "azAvgWidth": 478.5813953488372 - }, - "Sirin Stencil": { - "category": "display", - "ascent": 2380, - "descent": -604, - "lineGap": 0, - "xAvgCharWidth": 1034, - "unitsPerEm": 2048, - "azAvgWidth": 856.3488372093024 - }, - "Kavivanar": { - "category": "handwriting", - "ascent": 1065, - "descent": -417, - "lineGap": 0, - "xAvgCharWidth": 418, - "unitsPerEm": 1000, - "azAvgWidth": 436.93023255813955 - }, - "Lexend Deca": { - "category": "sans-serif", - "ascent": 1000, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 588, - "unitsPerEm": 1000, - "azAvgWidth": 505.5348837209302 - }, - "EB Garamond": { - "category": "serif", - "ascent": 1007, - "descent": -298, - "lineGap": 0, - "xAvgCharWidth": 528, - "unitsPerEm": 1000, - "azAvgWidth": 390.2325581395349 - }, - "Bai Jamjuree": { - "category": "sans-serif", - "ascent": 1000, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 555, - "unitsPerEm": 1000, - "azAvgWidth": 472.4186046511628 - }, - "Kulim Park": { - "category": "sans-serif", - "ascent": 931, - "descent": -204, - "lineGap": 0, - "xAvgCharWidth": 536, - "unitsPerEm": 1000, - "azAvgWidth": 467.8139534883721 - }, - "Nanum Gothic": { - "category": "sans-serif", - "ascent": 920, - "descent": -230, - "lineGap": 0, - "xAvgCharWidth": 463, - "unitsPerEm": 1000, - "azAvgWidth": 477.2325581395349 - }, - "Allan": { - "category": "display", - "ascent": 1928, - "descent": -412, - "lineGap": 0, - "xAvgCharWidth": 632, - "unitsPerEm": 2048, - "azAvgWidth": 654.6976744186046 - }, - "Noto Sans Ol Chiki": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 562, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Inter": { - "category": "sans-serif", - "ascent": 2728, - "descent": -680, - "lineGap": 0, - "xAvgCharWidth": 1838, - "unitsPerEm": 2816, - "azAvgWidth": 1383.0697674418604 - }, - "Warnes": { - "category": "display", - "ascent": 994, - "descent": -310, - "lineGap": 0, - "xAvgCharWidth": 612, - "unitsPerEm": 1000, - "azAvgWidth": 636.3488372093024 - }, - "Black Han Sans": { - "category": "sans-serif", - "ascent": 790, - "descent": -210, - "lineGap": 250, - "xAvgCharWidth": 827, - "unitsPerEm": 1000, - "azAvgWidth": 580.7906976744187 - }, - "Raleway": { - "category": "sans-serif", - "ascent": 940, - "descent": -234, - "lineGap": 0, - "xAvgCharWidth": 566, - "unitsPerEm": 1000, - "azAvgWidth": 479.5348837209302 - }, - "Teko": { - "category": "sans-serif", - "ascent": 958, - "descent": -475, - "lineGap": 0, - "xAvgCharWidth": 377, - "unitsPerEm": 1000, - "azAvgWidth": 302 - }, - "Amita": { - "category": "handwriting", - "ascent": 1292, - "descent": -650, - "lineGap": 0, - "xAvgCharWidth": 568, - "unitsPerEm": 1000, - "azAvgWidth": 464.25581395348837 - }, - "Tourney": { - "category": "display", - "ascent": 1800, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 1179, - "unitsPerEm": 2000, - "azAvgWidth": 1090.3720930232557 - }, - "Spinnaker": { - "category": "sans-serif", - "ascent": 1920, - "descent": -487, - "lineGap": 0, - "xAvgCharWidth": 1174, - "unitsPerEm": 2048, - "azAvgWidth": 1012.6976744186046 - }, - "Rancho": { - "category": "handwriting", - "ascent": 919, - "descent": -329, - "lineGap": 24, - "xAvgCharWidth": 306, - "unitsPerEm": 1024, - "azAvgWidth": 317.1162790697674 - }, - "Schoolbell": { - "category": "handwriting", - "ascent": 1019, - "descent": -383, - "lineGap": 24, - "xAvgCharWidth": 419, - "unitsPerEm": 1024, - "azAvgWidth": 426.0232558139535 - }, - "Roboto Mono": { - "category": "monospace", - "ascent": 2146, - "descent": -555, - "lineGap": 0, - "xAvgCharWidth": 1229, - "unitsPerEm": 2048, - "azAvgWidth": 1229 - }, - "Shanti": { - "category": "sans-serif", - "ascent": 2012, - "descent": -599, - "lineGap": 0, - "xAvgCharWidth": 906, - "unitsPerEm": 2048, - "azAvgWidth": 933.953488372093 - }, - "Homemade Apple": { - "category": "handwriting", - "ascent": 1327, - "descent": -866, - "lineGap": 18, - "xAvgCharWidth": 567, - "unitsPerEm": 1024, - "azAvgWidth": 573.6976744186046 - }, - "Akshar": { - "category": "sans-serif", - "ascent": 990, - "descent": -390, - "lineGap": 0, - "xAvgCharWidth": 439, - "unitsPerEm": 1000, - "azAvgWidth": 397.51162790697674 - }, - "Freehand": { - "category": "display", - "ascent": 2500, - "descent": -1200, - "lineGap": 0, - "xAvgCharWidth": 1466, - "unitsPerEm": 2048, - "azAvgWidth": 760.1395348837209 - }, - "Holtwood One SC": { - "category": "serif", - "ascent": 2457, - "descent": -876, - "lineGap": 0, - "xAvgCharWidth": 1459, - "unitsPerEm": 2048, - "azAvgWidth": 1500.093023255814 - }, - "Fira Sans Condensed": { - "category": "sans-serif", - "ascent": 935, - "descent": -265, - "lineGap": 0, - "xAvgCharWidth": 505, - "unitsPerEm": 1000, - "azAvgWidth": 423.06976744186045 - }, - "Geostar": { - "category": "display", - "ascent": 922, - "descent": -226, - "lineGap": 0, - "xAvgCharWidth": 779, - "unitsPerEm": 1000, - "azAvgWidth": 673.2325581395348 - }, - "Gemunu Libre": { - "category": "sans-serif", - "ascent": 884, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 569, - "unitsPerEm": 1000, - "azAvgWidth": 365.83720930232556 - }, - "JetBrains Mono": { - "category": "monospace", - "ascent": 1020, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 602, - "unitsPerEm": 1000, - "azAvgWidth": 600 - }, - "Freckle Face": { - "category": "display", - "ascent": 1946, - "descent": -571, - "lineGap": 0, - "xAvgCharWidth": 869, - "unitsPerEm": 2048, - "azAvgWidth": 891.1162790697674 - }, - "Quattrocento Sans": { - "category": "sans-serif", - "ascent": 848, - "descent": -260, - "lineGap": 0, - "xAvgCharWidth": 432, - "unitsPerEm": 1000, - "azAvgWidth": 446.6511627906977 - }, - "Peddana": { - "category": "serif", - "ascent": 703, - "descent": -518, - "lineGap": 0, - "xAvgCharWidth": 371, - "unitsPerEm": 750, - "azAvgWidth": 237.95348837209303 - }, - "Meera Inimai": { - "category": "sans-serif", - "ascent": 1986, - "descent": -1200, - "lineGap": 184, - "xAvgCharWidth": 1275, - "unitsPerEm": 2048, - "azAvgWidth": 935.6511627906976 - }, - "Rubik Microbe": { - "category": "display", - "ascent": 935, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 635, - "unitsPerEm": 1000, - "azAvgWidth": 544.6279069767442 - }, - "Six Caps": { - "category": "sans-serif", - "ascent": 2263, - "descent": -432, - "lineGap": 0, - "xAvgCharWidth": 410, - "unitsPerEm": 2048, - "azAvgWidth": 418.1860465116279 - }, - "Noto Nastaliq Urdu": { - "category": "serif", - "ascent": 1904, - "descent": -596, - "lineGap": 0, - "xAvgCharWidth": 550, - "unitsPerEm": 1000, - "azAvgWidth": 792.8372093023256 - }, - "Inconsolata": { - "category": "monospace", - "ascent": 859, - "descent": -190, - "lineGap": 0, - "xAvgCharWidth": 505, - "unitsPerEm": 1000, - "azAvgWidth": 500 - }, - "Roboto Condensed": { - "category": "sans-serif", - "ascent": 1900, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 1021, - "unitsPerEm": 2048, - "azAvgWidth": 832.1627906976744 - }, - "Ibarra Real Nova": { - "category": "serif", - "ascent": 950, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 579, - "unitsPerEm": 1000, - "azAvgWidth": 426.6279069767442 - }, - "Yuji Boku": { - "category": "serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 970, - "unitsPerEm": 1000, - "azAvgWidth": 516.4186046511628 - }, - "Festive": { - "category": "handwriting", - "ascent": 1100, - "descent": -590, - "lineGap": 0, - "xAvgCharWidth": 662, - "unitsPerEm": 1000, - "azAvgWidth": 309.95348837209303 - }, - "Nova Mono": { - "category": "monospace", - "ascent": 2215, - "descent": -639, - "lineGap": 0, - "xAvgCharWidth": 1150, - "unitsPerEm": 2048, - "azAvgWidth": 1150 - }, - "Alumni Sans Inline One": { - "category": "display", - "ascent": 900, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 398, - "unitsPerEm": 1000, - "azAvgWidth": 333.4186046511628 - }, - "Noto Serif KR": { - "category": "serif", - "ascent": 1151, - "descent": -286, - "lineGap": 0, - "xAvgCharWidth": 969, - "unitsPerEm": 1000, - "azAvgWidth": 500.7674418604651 - }, - "Zen Dots": { - "category": "display", - "ascent": 930, - "descent": -270, - "lineGap": 0, - "xAvgCharWidth": 740, - "unitsPerEm": 1000, - "azAvgWidth": 637.8837209302326 - }, - "Vazirmatn": { - "category": "sans-serif", - "ascent": 2100, - "descent": -1100, - "lineGap": 0, - "xAvgCharWidth": 1159, - "unitsPerEm": 2048, - "azAvgWidth": 943.8604651162791 - }, - "Oswald": { - "category": "sans-serif", - "ascent": 1193, - "descent": -289, - "lineGap": 0, - "xAvgCharWidth": 459, - "unitsPerEm": 1000, - "azAvgWidth": 371.93023255813955 - }, - "Noto Sans Linear A": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 741, - "unitsPerEm": 1000, - "azAvgWidth": 605.046511627907 - }, - "M PLUS 1 Code": { - "category": "sans-serif", - "ascent": 1000, - "descent": -235, - "lineGap": 0, - "xAvgCharWidth": 958, - "unitsPerEm": 1000, - "azAvgWidth": 500 - }, - "Allerta": { - "category": "sans-serif", - "ascent": 1057, - "descent": -252, - "lineGap": 0, - "xAvgCharWidth": 577, - "unitsPerEm": 1024, - "azAvgWidth": 543.4418604651163 - }, - "Yrsa": { - "category": "serif", - "ascent": 728, - "descent": -272, - "lineGap": 218, - "xAvgCharWidth": 476, - "unitsPerEm": 1000, - "azAvgWidth": 406.4186046511628 - }, - "Source Sans Pro": { - "category": "sans-serif", - "ascent": 984, - "descent": -273, - "lineGap": 0, - "xAvgCharWidth": 521, - "unitsPerEm": 1000, - "azAvgWidth": 429.7906976744186 - }, - "Mochiy Pop P One": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 991, - "unitsPerEm": 1000, - "azAvgWidth": 590.8837209302326 - }, - "Ribeye Marrow": { - "category": "display", - "ascent": 2130, - "descent": -668, - "lineGap": 0, - "xAvgCharWidth": 1280, - "unitsPerEm": 2048, - "azAvgWidth": 1128.953488372093 - }, - "Noto Sans Nushu": { - "category": "sans-serif", - "ascent": 1069, - "descent": -321, - "lineGap": 0, - "xAvgCharWidth": 843, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Hammersmith One": { - "category": "sans-serif", - "ascent": 1844, - "descent": -716, - "lineGap": 0, - "xAvgCharWidth": 1158, - "unitsPerEm": 2048, - "azAvgWidth": 1000.4418604651163 - }, - "Noto Sans Inscriptional Pahlavi": { - "category": "sans-serif", - "ascent": 1069, - "descent": -352, - "lineGap": 0, - "xAvgCharWidth": 581, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Milonga": { - "category": "display", - "ascent": 990, - "descent": -260, - "lineGap": 0, - "xAvgCharWidth": 446, - "unitsPerEm": 1000, - "azAvgWidth": 461.30232558139534 - }, - "Noto Serif Tibetan": { - "category": "serif", - "ascent": 1466, - "descent": -1349, - "lineGap": 0, - "xAvgCharWidth": 644, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Radio Canada": { - "category": "sans-serif", - "ascent": 945, - "descent": -255, - "lineGap": 0, - "xAvgCharWidth": 575, - "unitsPerEm": 1000, - "azAvgWidth": 476.4651162790698 - }, - "Tinos": { - "category": "serif", - "ascent": 1825, - "descent": -443, - "lineGap": 87, - "xAvgCharWidth": 1116, - "unitsPerEm": 2048, - "azAvgWidth": 854.3953488372093 - }, - "Libre Barcode 39 Text": { - "category": "display", - "ascent": 600, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 402, - "unitsPerEm": 1000, - "azAvgWidth": 480 - }, - "Noto Sans Lisu": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 553, - "unitsPerEm": 1000, - "azAvgWidth": 485.8139534883721 - }, - "Libre Barcode 128 Text": { - "category": "display", - "ascent": 600, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 298, - "unitsPerEm": 1000, - "azAvgWidth": 330 - }, - "Sumana": { - "category": "serif", - "ascent": 1922, - "descent": -1005, - "lineGap": 0, - "xAvgCharWidth": 542, - "unitsPerEm": 1000, - "azAvgWidth": 450.25581395348837 - }, - "Noto Sans Anatolian Hieroglyphs": { - "category": "sans-serif", - "ascent": 1153, - "descent": -253, - "lineGap": 0, - "xAvgCharWidth": 802, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Cormorant Garamond": { - "category": "serif", - "ascent": 924, - "descent": -287, - "lineGap": 0, - "xAvgCharWidth": 538, - "unitsPerEm": 1000, - "azAvgWidth": 400.8837209302326 - }, - "Yeon Sung": { - "category": "display", - "ascent": 800, - "descent": -200, - "lineGap": 250, - "xAvgCharWidth": 698, - "unitsPerEm": 1000, - "azAvgWidth": 501.0232558139535 - }, - "Whisper": { - "category": "handwriting", - "ascent": 880, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 517, - "unitsPerEm": 1000, - "azAvgWidth": 297.6511627906977 - }, - "Glegoo": { - "category": "serif", - "ascent": 1267, - "descent": -526, - "lineGap": 0, - "xAvgCharWidth": 510, - "unitsPerEm": 1000, - "azAvgWidth": 523.0232558139535 - }, - "Yatra One": { - "category": "display", - "ascent": 991, - "descent": -487, - "lineGap": 0, - "xAvgCharWidth": 592, - "unitsPerEm": 1000, - "azAvgWidth": 505.5581395348837 - }, - "Hachi Maru Pop": { - "category": "handwriting", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 990, - "unitsPerEm": 1000, - "azAvgWidth": 663.7906976744187 - }, - "Balsamiq Sans": { - "category": "display", - "ascent": 900, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 644, - "unitsPerEm": 1000, - "azAvgWidth": 462.86046511627904 - }, - "Love Ya Like A Sister": { - "category": "display", - "ascent": 942, - "descent": -333, - "lineGap": 0, - "xAvgCharWidth": 476, - "unitsPerEm": 1024, - "azAvgWidth": 487.6744186046512 - }, - "Nunito": { - "category": "sans-serif", - "ascent": 1011, - "descent": -353, - "lineGap": 0, - "xAvgCharWidth": 566, - "unitsPerEm": 1000, - "azAvgWidth": 463.83720930232556 - }, - "Noto Serif Armenian": { - "category": "serif", - "ascent": 1068, - "descent": -292, - "lineGap": 0, - "xAvgCharWidth": 626, - "unitsPerEm": 1000, - "azAvgWidth": 512.9767441860465 - }, - "Noto Sans Georgian": { - "category": "sans-serif", - "ascent": 1068, - "descent": -292, - "lineGap": 0, - "xAvgCharWidth": 600, - "unitsPerEm": 1000, - "azAvgWidth": 485.8139534883721 - }, - "Anek Bangla": { - "category": "sans-serif", - "ascent": 2500, - "descent": -1232, - "lineGap": 0, - "xAvgCharWidth": 1307, - "unitsPerEm": 2000, - "azAvgWidth": 859.4186046511628 - }, - "Shippori Mincho B1": { - "category": "serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 993, - "unitsPerEm": 1000, - "azAvgWidth": 488.86046511627904 - }, - "Kosugi": { - "category": "sans-serif", - "ascent": 901, - "descent": -123, - "lineGap": 0, - "xAvgCharWidth": 1013, - "unitsPerEm": 1024, - "azAvgWidth": 512 - }, - "Nanum Myeongjo": { - "category": "serif", - "ascent": 942, - "descent": -236, - "lineGap": 0, - "xAvgCharWidth": 512, - "unitsPerEm": 1024, - "azAvgWidth": 464 - }, - "Miltonian": { - "category": "display", - "ascent": 918, - "descent": -274, - "lineGap": 0, - "xAvgCharWidth": 564, - "unitsPerEm": 1000, - "azAvgWidth": 520.4883720930233 - }, - "Antic Slab": { - "category": "serif", - "ascent": 940, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 476, - "unitsPerEm": 1000, - "azAvgWidth": 492.90697674418607 - }, - "Judson": { - "category": "serif", - "ascent": 902, - "descent": -248, - "lineGap": 0, - "xAvgCharWidth": 426, - "unitsPerEm": 1000, - "azAvgWidth": 437.6744186046512 - }, - "Moo Lah Lah": { - "category": "display", - "ascent": 920, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 548, - "unitsPerEm": 1000, - "azAvgWidth": 415.95348837209303 - }, - "Dongle": { - "category": "sans-serif", - "ascent": 850, - "descent": -598, - "lineGap": 0, - "xAvgCharWidth": 547, - "unitsPerEm": 1000, - "azAvgWidth": 298.48837209302326 - }, - "Noto Sans JP": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 982, - "unitsPerEm": 1000, - "azAvgWidth": 480.13953488372096 - }, - "IM Fell Great Primer": { - "category": "serif", - "ascent": 1942, - "descent": -562, - "lineGap": 0, - "xAvgCharWidth": 821, - "unitsPerEm": 2048, - "azAvgWidth": 842.1627906976744 - }, - "MedievalSharp": { - "category": "display", - "ascent": 1771, - "descent": -543, - "lineGap": 0, - "xAvgCharWidth": 1101, - "unitsPerEm": 2048, - "azAvgWidth": 974.5813953488372 - }, - "Alatsi": { - "category": "sans-serif", - "ascent": 2000, - "descent": -560, - "lineGap": 0, - "xAvgCharWidth": 1095, - "unitsPerEm": 2000, - "azAvgWidth": 888.2790697674419 - }, - "Zen Antique Soft": { - "category": "serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 979, - "unitsPerEm": 1000, - "azAvgWidth": 498.16279069767444 - }, - "Carme": { - "category": "sans-serif", - "ascent": 1946, - "descent": -513, - "lineGap": 0, - "xAvgCharWidth": 942, - "unitsPerEm": 2048, - "azAvgWidth": 974.3255813953489 - }, - "IBM Plex Serif": { - "category": "serif", - "ascent": 1025, - "descent": -275, - "lineGap": 0, - "xAvgCharWidth": 616, - "unitsPerEm": 1000, - "azAvgWidth": 485.90697674418607 - }, - "Pirata One": { - "category": "display", - "ascent": 1006, - "descent": -279, - "lineGap": 0, - "xAvgCharWidth": 393, - "unitsPerEm": 1000, - "azAvgWidth": 367.3488372093023 - }, - "ZCOOL KuaiLe": { - "category": "display", - "ascent": 880, - "descent": -120, - "lineGap": 0, - "xAvgCharWidth": 912, - "unitsPerEm": 1000, - "azAvgWidth": 496.8837209302326 - }, - "Nanum Gothic Coding": { - "category": "monospace", - "ascent": 800, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 500, - "unitsPerEm": 1000, - "azAvgWidth": 500 - }, - "Pattaya": { - "category": "sans-serif", - "ascent": 2065, - "descent": -777, - "lineGap": 0, - "xAvgCharWidth": 1213, - "unitsPerEm": 2048, - "azAvgWidth": 822.2325581395348 - }, - "Bigshot One": { - "category": "display", - "ascent": 869, - "descent": -179, - "lineGap": 0, - "xAvgCharWidth": 519, - "unitsPerEm": 1000, - "azAvgWidth": 455.30232558139534 - }, - "Edu VIC WA NT Beginner": { - "category": "handwriting", - "ascent": 1016, - "descent": -244, - "lineGap": 0, - "xAvgCharWidth": 485, - "unitsPerEm": 1000, - "azAvgWidth": 387.83720930232556 - }, - "Metal Mania": { - "category": "display", - "ascent": 965, - "descent": -303, - "lineGap": 0, - "xAvgCharWidth": 427, - "unitsPerEm": 1024, - "azAvgWidth": 404.6046511627907 - }, - "Tillana": { - "category": "handwriting", - "ascent": 1158, - "descent": -484, - "lineGap": 0, - "xAvgCharWidth": 503, - "unitsPerEm": 1000, - "azAvgWidth": 452.5348837209302 - }, - "Sedgwick Ave": { - "category": "handwriting", - "ascent": 937, - "descent": -312, - "lineGap": 0, - "xAvgCharWidth": 584, - "unitsPerEm": 1000, - "azAvgWidth": 432.3953488372093 - }, - "Geostar Fill": { - "category": "display", - "ascent": 922, - "descent": -226, - "lineGap": 0, - "xAvgCharWidth": 779, - "unitsPerEm": 1000, - "azAvgWidth": 673.2325581395348 - }, - "Cormorant Infant": { - "category": "serif", - "ascent": 924, - "descent": -287, - "lineGap": 0, - "xAvgCharWidth": 537, - "unitsPerEm": 1000, - "azAvgWidth": 407.4418604651163 - }, - "Cantata One": { - "category": "serif", - "ascent": 2040, - "descent": -560, - "lineGap": 0, - "xAvgCharWidth": 1349, - "unitsPerEm": 2048, - "azAvgWidth": 1095.1860465116279 - }, - "Noto Sans Tagbanwa": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 711, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Noto Sans Carian": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 661, - "unitsPerEm": 1000, - "azAvgWidth": 466.51162790697674 - }, - "Bonbon": { - "category": "handwriting", - "ascent": 845, - "descent": -330, - "lineGap": 0, - "xAvgCharWidth": 554, - "unitsPerEm": 1000, - "azAvgWidth": 520.2558139534884 - }, - "Pragati Narrow": { - "category": "sans-serif", - "ascent": 1158, - "descent": -534, - "lineGap": 0, - "xAvgCharWidth": 423, - "unitsPerEm": 1000, - "azAvgWidth": 343.7674418604651 - }, - "Outfit": { - "category": "sans-serif", - "ascent": 1000, - "descent": -260, - "lineGap": 0, - "xAvgCharWidth": 559, - "unitsPerEm": 1000, - "azAvgWidth": 456.5813953488372 - }, - "News Cycle": { - "category": "sans-serif", - "ascent": 2574, - "descent": -794, - "lineGap": 0, - "xAvgCharWidth": 792, - "unitsPerEm": 2048, - "azAvgWidth": 814.0930232558139 - }, - "Moon Dance": { - "category": "handwriting", - "ascent": 970, - "descent": -370, - "lineGap": 0, - "xAvgCharWidth": 520, - "unitsPerEm": 1000, - "azAvgWidth": 299.74418604651163 - }, - "Kiwi Maru": { - "category": "serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 969, - "unitsPerEm": 1000, - "azAvgWidth": 534.2093023255813 - }, - "Libre Bodoni": { - "category": "serif", - "ascent": 924, - "descent": -326, - "lineGap": 0, - "xAvgCharWidth": 571, - "unitsPerEm": 1000, - "azAvgWidth": 458.6744186046512 - }, - "Yomogi": { - "category": "handwriting", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 964, - "unitsPerEm": 1000, - "azAvgWidth": 513.953488372093 - }, - "Hina Mincho": { - "category": "serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 961, - "unitsPerEm": 1000, - "azAvgWidth": 373.6744186046512 - }, - "IBM Plex Sans Arabic": { - "category": "sans-serif", - "ascent": 1085, - "descent": -415, - "lineGap": 0, - "xAvgCharWidth": 632, - "unitsPerEm": 1000, - "azAvgWidth": 461.4651162790698 - }, - "Mogra": { - "category": "display", - "ascent": 750, - "descent": -250, - "lineGap": 200, - "xAvgCharWidth": 780, - "unitsPerEm": 1000, - "azAvgWidth": 522.4418604651163 - }, - "Spline Sans": { - "category": "sans-serif", - "ascent": 1927, - "descent": -473, - "lineGap": 0, - "xAvgCharWidth": 1065, - "unitsPerEm": 2000, - "azAvgWidth": 934.3255813953489 - }, - "Gravitas One": { - "category": "display", - "ascent": 1937, - "descent": -668, - "lineGap": 0, - "xAvgCharWidth": 1552, - "unitsPerEm": 2048, - "azAvgWidth": 1533.3720930232557 - }, - "IBM Plex Mono": { - "category": "monospace", - "ascent": 1025, - "descent": -275, - "lineGap": 0, - "xAvgCharWidth": 600, - "unitsPerEm": 1000, - "azAvgWidth": 600 - }, - "Glory": { - "category": "sans-serif", - "ascent": 900, - "descent": -220, - "lineGap": 0, - "xAvgCharWidth": 468, - "unitsPerEm": 1000, - "azAvgWidth": 396.93023255813955 - }, - "New Tegomin": { - "category": "serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 983, - "unitsPerEm": 1000, - "azAvgWidth": 505.86046511627904 - }, - "Noto Sans Inscriptional Parthian": { - "category": "sans-serif", - "ascent": 1069, - "descent": -301, - "lineGap": 0, - "xAvgCharWidth": 695, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Buenard": { - "category": "serif", - "ascent": 1031, - "descent": -270, - "lineGap": 0, - "xAvgCharWidth": 412, - "unitsPerEm": 1000, - "azAvgWidth": 422.7906976744186 - }, - "Sintony": { - "category": "sans-serif", - "ascent": 995, - "descent": -308, - "lineGap": 0, - "xAvgCharWidth": 554, - "unitsPerEm": 1000, - "azAvgWidth": 505.3488372093023 - }, - "Great Vibes": { - "category": "handwriting", - "ascent": 851, - "descent": -401, - "lineGap": 0, - "xAvgCharWidth": 551, - "unitsPerEm": 1000, - "azAvgWidth": 296.90697674418607 - }, - "Fira Code": { - "category": "monospace", - "ascent": 1980, - "descent": -644, - "lineGap": 0, - "xAvgCharWidth": 1209, - "unitsPerEm": 2000, - "azAvgWidth": 1200 - }, - "Noto Sans Wancho": { - "category": "sans-serif", - "ascent": 1096, - "descent": -161, - "lineGap": 0, - "xAvgCharWidth": 524, - "unitsPerEm": 1000, - "azAvgWidth": 572.0930232558139 - }, - "Gruppo": { - "category": "display", - "ascent": 1639, - "descent": -340, - "lineGap": 0, - "xAvgCharWidth": 1040, - "unitsPerEm": 2048, - "azAvgWidth": 967.6511627906976 - }, - "Griffy": { - "category": "display", - "ascent": 984, - "descent": -399, - "lineGap": 0, - "xAvgCharWidth": 428, - "unitsPerEm": 1024, - "azAvgWidth": 436.74418604651163 - }, - "Chicle": { - "category": "display", - "ascent": 915, - "descent": -294, - "lineGap": 0, - "xAvgCharWidth": 337, - "unitsPerEm": 1000, - "azAvgWidth": 350.7906976744186 - }, - "Noto Sans Arabic": { - "category": "sans-serif", - "ascent": 1374, - "descent": -738, - "lineGap": 0, - "xAvgCharWidth": 850, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "IM Fell French Canon": { - "category": "serif", - "ascent": 1868, - "descent": -530, - "lineGap": 0, - "xAvgCharWidth": 873, - "unitsPerEm": 2048, - "azAvgWidth": 900.4651162790698 - }, - "Gurajada": { - "category": "serif", - "ascent": 1294, - "descent": -810, - "lineGap": 0, - "xAvgCharWidth": 294, - "unitsPerEm": 1070, - "azAvgWidth": 305.4186046511628 - }, - "Harmattan": { - "category": "sans-serif", - "ascent": 2166, - "descent": -1323, - "lineGap": 0, - "xAvgCharWidth": 1003, - "unitsPerEm": 2048, - "azAvgWidth": 733.6046511627907 - }, - "Gentium Plus": { - "category": "serif", - "ascent": 2250, - "descent": -750, - "lineGap": 0, - "xAvgCharWidth": 1036, - "unitsPerEm": 2048, - "azAvgWidth": 870.6744186046511 - }, - "Hurricane": { - "category": "handwriting", - "ascent": 950, - "descent": -430, - "lineGap": 0, - "xAvgCharWidth": 505, - "unitsPerEm": 1000, - "azAvgWidth": 279.09302325581393 - }, - "Mystery Quest": { - "category": "display", - "ascent": 989, - "descent": -409, - "lineGap": 0, - "xAvgCharWidth": 434, - "unitsPerEm": 1024, - "azAvgWidth": 447.51162790697674 - }, - "Noto Serif JP": { - "category": "serif", - "ascent": 1151, - "descent": -286, - "lineGap": 0, - "xAvgCharWidth": 983, - "unitsPerEm": 1000, - "azAvgWidth": 500.7674418604651 - }, - "Brygada 1918": { - "category": "serif", - "ascent": 920, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 570, - "unitsPerEm": 1000, - "azAvgWidth": 480 - }, - "Federo": { - "category": "sans-serif", - "ascent": 1883, - "descent": -530, - "lineGap": 0, - "xAvgCharWidth": 1034, - "unitsPerEm": 2048, - "azAvgWidth": 846.3953488372093 - }, - "Zen Antique": { - "category": "serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 976, - "unitsPerEm": 1000, - "azAvgWidth": 498.16279069767444 - }, - "Water Brush": { - "category": "handwriting", - "ascent": 1000, - "descent": -450, - "lineGap": 0, - "xAvgCharWidth": 550, - "unitsPerEm": 1000, - "azAvgWidth": 302.5581395348837 - }, - "Nunito Sans": { - "category": "sans-serif", - "ascent": 1011, - "descent": -353, - "lineGap": 0, - "xAvgCharWidth": 581, - "unitsPerEm": 1000, - "azAvgWidth": 463.69767441860466 - }, - "Hahmlet": { - "category": "serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 853, - "unitsPerEm": 1000, - "azAvgWidth": 500.9767441860465 - }, - "Gothic A1": { - "category": "sans-serif", - "ascent": 817, - "descent": -207, - "lineGap": 256, - "xAvgCharWidth": 964, - "unitsPerEm": 1024, - "azAvgWidth": 473.74418604651163 - }, - "Noto Serif Lao": { - "category": "serif", - "ascent": 1174, - "descent": -482, - "lineGap": 0, - "xAvgCharWidth": 571, - "unitsPerEm": 1000, - "azAvgWidth": 497.2325581395349 - }, - "Neonderthaw": { - "category": "handwriting", - "ascent": 1050, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 629, - "unitsPerEm": 1000, - "azAvgWidth": 381.93023255813955 - }, - "Lalezar": { - "category": "display", - "ascent": 979, - "descent": -588, - "lineGap": 0, - "xAvgCharWidth": 627, - "unitsPerEm": 1000, - "azAvgWidth": 431.5813953488372 - }, - "Noto Sans Gothic": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 596, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Mate": { - "category": "serif", - "ascent": 958, - "descent": -262, - "lineGap": 0, - "xAvgCharWidth": 424, - "unitsPerEm": 1000, - "azAvgWidth": 435.8837209302326 - }, - "Noto Sans Yi": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 565, - "unitsPerEm": 1000, - "azAvgWidth": 411.7906976744186 - }, - "Duru Sans": { - "category": "sans-serif", - "ascent": 2020, - "descent": -540, - "lineGap": 0, - "xAvgCharWidth": 1226, - "unitsPerEm": 2048, - "azAvgWidth": 1088.6976744186047 - }, - "Noto Sans Old Permic": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 607, - "unitsPerEm": 1000, - "azAvgWidth": 550.3255813953489 - }, - "Kurale": { - "category": "serif", - "ascent": 1095, - "descent": -383, - "lineGap": 0, - "xAvgCharWidth": 558, - "unitsPerEm": 1000, - "azAvgWidth": 458.30232558139534 - }, - "Shippori Antique B1": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 993, - "unitsPerEm": 1000, - "azAvgWidth": 495.51162790697674 - }, - "Nova Flat": { - "category": "display", - "ascent": 1966, - "descent": -506, - "lineGap": 0, - "xAvgCharWidth": 1169, - "unitsPerEm": 2048, - "azAvgWidth": 1015.6279069767442 - }, - "Space Mono": { - "category": "monospace", - "ascent": 1120, - "descent": -361, - "lineGap": 0, - "xAvgCharWidth": 612, - "unitsPerEm": 1000, - "azAvgWidth": 612 - }, - "Geo": { - "category": "sans-serif", - "ascent": 821, - "descent": -225, - "lineGap": 92, - "xAvgCharWidth": 451, - "unitsPerEm": 1024, - "azAvgWidth": 424.7674418604651 - }, - "Port Lligat Sans": { - "category": "sans-serif", - "ascent": 860, - "descent": -211, - "lineGap": 0, - "xAvgCharWidth": 398, - "unitsPerEm": 1000, - "azAvgWidth": 409.27906976744185 - }, - "Nova Cut": { - "category": "display", - "ascent": 1966, - "descent": -506, - "lineGap": 0, - "xAvgCharWidth": 1168, - "unitsPerEm": 2048, - "azAvgWidth": 1029.8139534883721 - }, - "Kenia": { - "category": "display", - "ascent": 750, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 374, - "unitsPerEm": 1000, - "azAvgWidth": 388.4186046511628 - }, - "Imperial Script": { - "category": "handwriting", - "ascent": 880, - "descent": -330, - "lineGap": 0, - "xAvgCharWidth": 497, - "unitsPerEm": 1000, - "azAvgWidth": 283.7906976744186 - }, - "Asar": { - "category": "serif", - "ascent": 1196, - "descent": -557, - "lineGap": 0, - "xAvgCharWidth": 790, - "unitsPerEm": 1000, - "azAvgWidth": 432.09302325581393 - }, - "Farsan": { - "category": "display", - "ascent": 711, - "descent": -289, - "lineGap": 200, - "xAvgCharWidth": 454, - "unitsPerEm": 1000, - "azAvgWidth": 318.6511627906977 - }, - "Noto Sans Bamum": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 700, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Yellowtail": { - "category": "handwriting", - "ascent": 1990, - "descent": -617, - "lineGap": 184, - "xAvgCharWidth": 668, - "unitsPerEm": 2048, - "azAvgWidth": 691.8837209302326 - }, - "Luxurious Script": { - "category": "handwriting", - "ascent": 850, - "descent": -350, - "lineGap": 0, - "xAvgCharWidth": 530, - "unitsPerEm": 1000, - "azAvgWidth": 252.5581395348837 - }, - "Ballet": { - "category": "handwriting", - "ascent": 1130, - "descent": -770, - "lineGap": 0, - "xAvgCharWidth": 575, - "unitsPerEm": 1000, - "azAvgWidth": 298.86046511627904 - }, - "Zen Old Mincho": { - "category": "serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 978, - "unitsPerEm": 1000, - "azAvgWidth": 441.3255813953488 - }, - "Barlow Condensed": { - "category": "sans-serif", - "ascent": 1000, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 397, - "unitsPerEm": 1000, - "azAvgWidth": 352.1162790697674 - }, - "Spectral SC": { - "category": "serif", - "ascent": 1059, - "descent": -463, - "lineGap": 0, - "xAvgCharWidth": 589, - "unitsPerEm": 1000, - "azAvgWidth": 574.7674418604652 - }, - "Noto Serif Tangut": { - "category": "serif", - "ascent": 856, - "descent": -150, - "lineGap": 0, - "xAvgCharWidth": 1000, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Kavoon": { - "category": "display", - "ascent": 2020, - "descent": -540, - "lineGap": 0, - "xAvgCharWidth": 1245, - "unitsPerEm": 2048, - "azAvgWidth": 1031.8837209302326 - }, - "Yaldevi": { - "category": "sans-serif", - "ascent": 1060, - "descent": -256, - "lineGap": 0, - "xAvgCharWidth": 683, - "unitsPerEm": 1000, - "azAvgWidth": 445.74418604651163 - }, - "Vesper Libre": { - "category": "serif", - "ascent": 2330, - "descent": -1550, - "lineGap": 0, - "xAvgCharWidth": 1083, - "unitsPerEm": 2048, - "azAvgWidth": 911.1860465116279 - }, - "Noto Sans Tai Viet": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 728, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Truculenta": { - "category": "sans-serif", - "ascent": 1050, - "descent": -340, - "lineGap": 0, - "xAvgCharWidth": 476, - "unitsPerEm": 1000, - "azAvgWidth": 370.8837209302326 - }, - "Crushed": { - "category": "display", - "ascent": 1820, - "descent": -483, - "lineGap": 51, - "xAvgCharWidth": 768, - "unitsPerEm": 2048, - "azAvgWidth": 786.1627906976744 - }, - "Londrina Solid": { - "category": "display", - "ascent": 945, - "descent": -238, - "lineGap": 0, - "xAvgCharWidth": 443, - "unitsPerEm": 1000, - "azAvgWidth": 395.8837209302326 - }, - "Fredoka": { - "category": "sans-serif", - "ascent": 974, - "descent": -236, - "lineGap": 0, - "xAvgCharWidth": 534, - "unitsPerEm": 1000, - "azAvgWidth": 467.3488372093023 - }, - "IBM Plex Sans": { - "category": "sans-serif", - "ascent": 1025, - "descent": -275, - "lineGap": 0, - "xAvgCharWidth": 589, - "unitsPerEm": 1000, - "azAvgWidth": 461.4651162790698 - }, - "Shippori Mincho": { - "category": "serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 993, - "unitsPerEm": 1000, - "azAvgWidth": 488.86046511627904 - }, - "Uchen": { - "category": "serif", - "ascent": 1248, - "descent": -660, - "lineGap": 0, - "xAvgCharWidth": 635, - "unitsPerEm": 1024, - "azAvgWidth": 505.74418604651163 - }, - "Fauna One": { - "category": "serif", - "ascent": 987, - "descent": -243, - "lineGap": 0, - "xAvgCharWidth": 554, - "unitsPerEm": 1000, - "azAvgWidth": 526.1395348837209 - }, - "Graduate": { - "category": "display", - "ascent": 953, - "descent": -186, - "lineGap": 0, - "xAvgCharWidth": 602, - "unitsPerEm": 1000, - "azAvgWidth": 612.8604651162791 - }, - "Noto Sans Marchen": { - "category": "sans-serif", - "ascent": 1107, - "descent": -534, - "lineGap": 0, - "xAvgCharWidth": 662, - "unitsPerEm": 1000, - "azAvgWidth": 546.9767441860465 - }, - "Megrim": { - "category": "display", - "ascent": 880, - "descent": -200, - "lineGap": 90, - "xAvgCharWidth": 487, - "unitsPerEm": 1000, - "azAvgWidth": 497.4651162790698 - }, - "Noto Emoji": { - "category": "sans-serif", - "ascent": 1900, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 2598, - "unitsPerEm": 2048, - "azAvgWidth": 1223.2558139534883 - }, - "Chivo": { - "category": "sans-serif", - "ascent": 940, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 547, - "unitsPerEm": 1000, - "azAvgWidth": 483.1860465116279 - }, - "Noto Sans": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 571, - "unitsPerEm": 1000, - "azAvgWidth": 485.8139534883721 - }, - "Fredoka One": { - "category": "display", - "ascent": 974, - "descent": -236, - "lineGap": 0, - "xAvgCharWidth": 486, - "unitsPerEm": 1000, - "azAvgWidth": 501.8837209302326 - }, - "Patrick Hand SC": { - "category": "handwriting", - "ascent": 1042, - "descent": -312, - "lineGap": 0, - "xAvgCharWidth": 437, - "unitsPerEm": 1000, - "azAvgWidth": 380.4651162790698 - }, - "Gowun Dodum": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 896, - "unitsPerEm": 1000, - "azAvgWidth": 434.8837209302326 - }, - "Noto Serif HK": { - "category": "serif", - "ascent": 1000, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 988, - "unitsPerEm": 1000, - "azAvgWidth": 505.1860465116279 - }, - "Fresca": { - "category": "sans-serif", - "ascent": 869, - "descent": -285, - "lineGap": 0, - "xAvgCharWidth": 408, - "unitsPerEm": 1000, - "azAvgWidth": 422.4418604651163 - }, - "Noto Serif Khmer": { - "category": "serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 692, - "unitsPerEm": 1000, - "azAvgWidth": 497.2325581395349 - }, - "Sarina": { - "category": "display", - "ascent": 1916, - "descent": -644, - "lineGap": 0, - "xAvgCharWidth": 1742, - "unitsPerEm": 2048, - "azAvgWidth": 1285.2558139534883 - }, - "Encode Sans Semi Condensed": { - "category": "sans-serif", - "ascent": 2060, - "descent": -440, - "lineGap": 0, - "xAvgCharWidth": 1048, - "unitsPerEm": 2000, - "azAvgWidth": 849.1162790697674 - }, - "Train One": { - "category": "display", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 945, - "unitsPerEm": 1000, - "azAvgWidth": 547.7674418604652 - }, - "Barlow": { - "category": "sans-serif", - "ascent": 1000, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 513, - "unitsPerEm": 1000, - "azAvgWidth": 442.4418604651163 - }, - "Roboto Flex": { - "category": "sans-serif", - "ascent": 1900, - "descent": -500, - "lineGap": 0, - "xAvgCharWidth": 1145, - "unitsPerEm": 2048, - "azAvgWidth": 929.6279069767442 - }, - "Dorsa": { - "category": "sans-serif", - "ascent": 857, - "descent": -200, - "lineGap": 0, - "xAvgCharWidth": 192, - "unitsPerEm": 1000, - "azAvgWidth": 170.46511627906978 - }, - "Gochi Hand": { - "category": "handwriting", - "ascent": 1579, - "descent": -835, - "lineGap": 0, - "xAvgCharWidth": 976, - "unitsPerEm": 2048, - "azAvgWidth": 885.9069767441861 - }, - "Lusitana": { - "category": "serif", - "ascent": 956, - "descent": -341, - "lineGap": 0, - "xAvgCharWidth": 416, - "unitsPerEm": 1000, - "azAvgWidth": 430.4651162790698 - }, - "Bahianita": { - "category": "display", - "ascent": 962, - "descent": -238, - "lineGap": 0, - "xAvgCharWidth": 302, - "unitsPerEm": 1000, - "azAvgWidth": 247.72093023255815 - }, - "Oleo Script": { - "category": "display", - "ascent": 1004, - "descent": -379, - "lineGap": 0, - "xAvgCharWidth": 486, - "unitsPerEm": 1000, - "azAvgWidth": 389.2325581395349 - }, - "Bevan": { - "category": "display", - "ascent": 2366, - "descent": -925, - "lineGap": 0, - "xAvgCharWidth": 1469, - "unitsPerEm": 2048, - "azAvgWidth": 1187.3488372093022 - }, - "Noto Sans Buginese": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 814, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Chathura": { - "category": "sans-serif", - "ascent": 1020, - "descent": -602, - "lineGap": 0, - "xAvgCharWidth": 313, - "unitsPerEm": 1000, - "azAvgWidth": 223.6046511627907 - }, - "Jacques Francois Shadow": { - "category": "display", - "ascent": 2095, - "descent": -606, - "lineGap": 0, - "xAvgCharWidth": 1323, - "unitsPerEm": 2048, - "azAvgWidth": 1045 - }, - "Montserrat Alternates": { - "category": "sans-serif", - "ascent": 968, - "descent": -251, - "lineGap": 0, - "xAvgCharWidth": 636, - "unitsPerEm": 1000, - "azAvgWidth": 532.1162790697674 - }, - "Kirang Haerang": { - "category": "display", - "ascent": 750, - "descent": -250, - "lineGap": 250, - "xAvgCharWidth": 689, - "unitsPerEm": 1000, - "azAvgWidth": 458.4418604651163 - }, - "Montserrat": { - "category": "sans-serif", - "ascent": 968, - "descent": -251, - "lineGap": 0, - "xAvgCharWidth": 626, - "unitsPerEm": 1000, - "azAvgWidth": 519.8139534883721 - }, - "Gotu": { - "category": "sans-serif", - "ascent": 1115, - "descent": -545, - "lineGap": 0, - "xAvgCharWidth": 787, - "unitsPerEm": 1000, - "azAvgWidth": 508.04651162790697 - }, - "Zen Kaku Gothic New": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 979, - "unitsPerEm": 1000, - "azAvgWidth": 452.2093023255814 - }, - "Lateef": { - "category": "handwriting", - "ascent": 1937, - "descent": -1024, - "lineGap": 0, - "xAvgCharWidth": 633, - "unitsPerEm": 2048, - "azAvgWidth": 656.1395348837209 - }, - "Stint Ultra Expanded": { - "category": "display", - "ascent": 1853, - "descent": -483, - "lineGap": 0, - "xAvgCharWidth": 1210, - "unitsPerEm": 2048, - "azAvgWidth": 1241.046511627907 - }, - "M PLUS Rounded 1c": { - "category": "sans-serif", - "ascent": 1075, - "descent": -320, - "lineGap": 90, - "xAvgCharWidth": 901, - "unitsPerEm": 1000, - "azAvgWidth": 486.13953488372096 - }, - "Noto Serif Telugu": { - "category": "serif", - "ascent": 869, - "descent": -483, - "lineGap": 0, - "xAvgCharWidth": 671, - "unitsPerEm": 1000, - "azAvgWidth": 500.4418604651163 - }, - "Orienta": { - "category": "sans-serif", - "ascent": 960, - "descent": -235, - "lineGap": 0, - "xAvgCharWidth": 529, - "unitsPerEm": 1000, - "azAvgWidth": 496.27906976744185 - }, - "Cambay": { - "category": "sans-serif", - "ascent": 800, - "descent": -503, - "lineGap": 0, - "xAvgCharWidth": 445, - "unitsPerEm": 800, - "azAvgWidth": 361.3255813953488 - }, - "Mountains of Christmas": { - "category": "display", - "ascent": 1066, - "descent": -354, - "lineGap": 0, - "xAvgCharWidth": 439, - "unitsPerEm": 1024, - "azAvgWidth": 377.83720930232556 - }, - "K2D": { - "category": "sans-serif", - "ascent": 1048, - "descent": -252, - "lineGap": 0, - "xAvgCharWidth": 572, - "unitsPerEm": 1000, - "azAvgWidth": 471.9767441860465 - }, - "Source Sans 3": { - "category": "sans-serif", - "ascent": 1024, - "descent": -400, - "lineGap": 0, - "xAvgCharWidth": 493, - "unitsPerEm": 1000, - "azAvgWidth": 429.8139534883721 - }, - "Rakkas": { - "category": "display", - "ascent": 1046, - "descent": -445, - "lineGap": 0, - "xAvgCharWidth": 538, - "unitsPerEm": 1000, - "azAvgWidth": 407.51162790697674 - }, - "Libre Barcode EAN13 Text": { - "category": "display", - "ascent": 840, - "descent": -120, - "lineGap": 0, - "xAvgCharWidth": 126, - "unitsPerEm": 1024, - "azAvgWidth": 146.8139534883721 - }, - "Kaisei HarunoUmi": { - "category": "serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 969, - "unitsPerEm": 1000, - "azAvgWidth": 500.3720930232558 - }, - "Cookie": { - "category": "handwriting", - "ascent": 789, - "descent": -320, - "lineGap": 0, - "xAvgCharWidth": 287, - "unitsPerEm": 1000, - "azAvgWidth": 298.2093023255814 - }, - "Coustard": { - "category": "serif", - "ascent": 2095, - "descent": -781, - "lineGap": 0, - "xAvgCharWidth": 1009, - "unitsPerEm": 2048, - "azAvgWidth": 1050.6279069767443 - }, - "Elsie": { - "category": "display", - "ascent": 878, - "descent": -274, - "lineGap": 0, - "xAvgCharWidth": 510, - "unitsPerEm": 1000, - "azAvgWidth": 454.4418604651163 - }, - "Montagu Slab": { - "category": "serif", - "ascent": 982, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 646, - "unitsPerEm": 1000, - "azAvgWidth": 506.4651162790698 - }, - "Aguafina Script": { - "category": "handwriting", - "ascent": 966, - "descent": -581, - "lineGap": 0, - "xAvgCharWidth": 288, - "unitsPerEm": 1000, - "azAvgWidth": 298.0232558139535 - }, - "Stoke": { - "category": "serif", - "ascent": 2030, - "descent": -530, - "lineGap": 0, - "xAvgCharWidth": 1386, - "unitsPerEm": 2048, - "azAvgWidth": 1193.7209302325582 - }, - "Caveat": { - "category": "handwriting", - "ascent": 960, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 445, - "unitsPerEm": 1000, - "azAvgWidth": 341.16279069767444 - }, - "Noto Sans Tamil Supplement": { - "category": "sans-serif", - "ascent": 870, - "descent": -370, - "lineGap": 0, - "xAvgCharWidth": 1250, - "unitsPerEm": 1000, - "azAvgWidth": 600 - }, - "Dhurjati": { - "category": "sans-serif", - "ascent": 1101, - "descent": -509, - "lineGap": 0, - "xAvgCharWidth": 467, - "unitsPerEm": 870, - "azAvgWidth": 333.06976744186045 - }, - "Anaheim": { - "category": "sans-serif", - "ascent": 1968, - "descent": -672, - "lineGap": 0, - "xAvgCharWidth": 863, - "unitsPerEm": 2048, - "azAvgWidth": 875.6511627906976 - }, - "Ole": { - "category": "handwriting", - "ascent": 880, - "descent": -380, - "lineGap": 0, - "xAvgCharWidth": 418, - "unitsPerEm": 1000, - "azAvgWidth": 270.2093023255814 - }, - "Nanum Brush Script": { - "category": "handwriting", - "ascent": 920, - "descent": -230, - "lineGap": 0, - "xAvgCharWidth": 330, - "unitsPerEm": 1000, - "azAvgWidth": 336.5581395348837 - }, - "Sanchez": { - "category": "serif", - "ascent": 1004, - "descent": -274, - "lineGap": 0, - "xAvgCharWidth": 586, - "unitsPerEm": 1000, - "azAvgWidth": 507.2325581395349 - }, - "Didact Gothic": { - "category": "sans-serif", - "ascent": 1046, - "descent": -265, - "lineGap": 0, - "xAvgCharWidth": 534, - "unitsPerEm": 1000, - "azAvgWidth": 434.51162790697674 - }, - "Delius Swash Caps": { - "category": "handwriting", - "ascent": 986, - "descent": -270, - "lineGap": 0, - "xAvgCharWidth": 448, - "unitsPerEm": 1000, - "azAvgWidth": 462.51162790697674 - }, - "Mochiy Pop One": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 991, - "unitsPerEm": 1000, - "azAvgWidth": 590.8837209302326 - }, - "Noto Serif SC": { - "category": "serif", - "ascent": 1151, - "descent": -286, - "lineGap": 0, - "xAvgCharWidth": 990, - "unitsPerEm": 1000, - "azAvgWidth": 500.7674418604651 - }, - "Yeseva One": { - "category": "display", - "ascent": 915, - "descent": -240, - "lineGap": 0, - "xAvgCharWidth": 617, - "unitsPerEm": 1000, - "azAvgWidth": 525.1162790697674 - }, - "Playball": { - "category": "display", - "ascent": 950, - "descent": -300, - "lineGap": 0, - "xAvgCharWidth": 517, - "unitsPerEm": 1000, - "azAvgWidth": 383.5348837209302 - }, - "Saira Stencil One": { - "category": "display", - "ascent": 1135, - "descent": -439, - "lineGap": 0, - "xAvgCharWidth": 564, - "unitsPerEm": 1000, - "azAvgWidth": 492.13953488372096 - }, - "Satisfy": { - "category": "handwriting", - "ascent": 957, - "descent": -501, - "lineGap": 17, - "xAvgCharWidth": 386, - "unitsPerEm": 1024, - "azAvgWidth": 398.25581395348837 - }, - "Abel": { - "category": "sans-serif", - "ascent": 2006, - "descent": -604, - "lineGap": 0, - "xAvgCharWidth": 926, - "unitsPerEm": 2048, - "azAvgWidth": 801.0232558139535 - }, - "Splash": { - "category": "handwriting", - "ascent": 1050, - "descent": -580, - "lineGap": 0, - "xAvgCharWidth": 644, - "unitsPerEm": 1000, - "azAvgWidth": 393.83720930232556 - }, - "Baumans": { - "category": "display", - "ascent": 942, - "descent": -240, - "lineGap": 0, - "xAvgCharWidth": 500, - "unitsPerEm": 1000, - "azAvgWidth": 442.3953488372093 - }, - "Text Me One": { - "category": "sans-serif", - "ascent": 952, - "descent": -269, - "lineGap": 0, - "xAvgCharWidth": 485, - "unitsPerEm": 1000, - "azAvgWidth": 456.06976744186045 - }, - "Noto Serif Display": { - "category": "serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 594, - "unitsPerEm": 1000, - "azAvgWidth": 492.3488372093023 - }, - "Klee One": { - "category": "handwriting", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 966, - "unitsPerEm": 1000, - "azAvgWidth": 487.83720930232556 - }, - "Edu NSW ACT Foundation": { - "category": "handwriting", - "ascent": 1016, - "descent": -244, - "lineGap": 0, - "xAvgCharWidth": 432, - "unitsPerEm": 1000, - "azAvgWidth": 349.6279069767442 - }, - "Noto Sans Tagalog": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 778, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "ZCOOL XiaoWei": { - "category": "serif", - "ascent": 880, - "descent": -120, - "lineGap": 0, - "xAvgCharWidth": 1014, - "unitsPerEm": 1000, - "azAvgWidth": 438.4651162790698 - }, - "Kaisei Tokumin": { - "category": "serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 969, - "unitsPerEm": 1000, - "azAvgWidth": 500.3720930232558 - }, - "Noto Sans KR": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 945, - "unitsPerEm": 1000, - "azAvgWidth": 480.13953488372096 - }, - "Kaushan Script": { - "category": "handwriting", - "ascent": 1084, - "descent": -367, - "lineGap": 0, - "xAvgCharWidth": 391, - "unitsPerEm": 1000, - "azAvgWidth": 404.4418604651163 - }, - "Cormorant Upright": { - "category": "serif", - "ascent": 924, - "descent": -287, - "lineGap": 0, - "xAvgCharWidth": 510, - "unitsPerEm": 1000, - "azAvgWidth": 386.2325581395349 - }, - "Noto Sans Old Italic": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 619, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Rubik Distressed": { - "category": "display", - "ascent": 935, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 635, - "unitsPerEm": 1000, - "azAvgWidth": 544.6279069767442 - }, - "Nanum Pen Script": { - "category": "handwriting", - "ascent": 920, - "descent": -230, - "lineGap": 0, - "xAvgCharWidth": 772, - "unitsPerEm": 1000, - "azAvgWidth": 363.6279069767442 - }, - "Asap": { - "category": "sans-serif", - "ascent": 934, - "descent": -212, - "lineGap": 0, - "xAvgCharWidth": 536, - "unitsPerEm": 1000, - "azAvgWidth": 456.6279069767442 - }, - "Electrolize": { - "category": "sans-serif", - "ascent": 911, - "descent": -275, - "lineGap": 0, - "xAvgCharWidth": 533, - "unitsPerEm": 1000, - "azAvgWidth": 465.90697674418607 - }, - "Dela Gothic One": { - "category": "display", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 970, - "unitsPerEm": 1000, - "azAvgWidth": 601.1395348837209 - }, - "Tajawal": { - "category": "sans-serif", - "ascent": 643, - "descent": -357, - "lineGap": 200, - "xAvgCharWidth": 421, - "unitsPerEm": 1000, - "azAvgWidth": 430.90697674418607 - }, - "Kaisei Decol": { - "category": "serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 969, - "unitsPerEm": 1000, - "azAvgWidth": 500.3720930232558 - }, - "Overpass": { - "category": "sans-serif", - "ascent": 1766, - "descent": -766, - "lineGap": 0, - "xAvgCharWidth": 1184, - "unitsPerEm": 2000, - "azAvgWidth": 921.3023255813954 - }, - "Rubik Wet Paint": { - "category": "display", - "ascent": 935, - "descent": -250, - "lineGap": 0, - "xAvgCharWidth": 635, - "unitsPerEm": 1000, - "azAvgWidth": 544.6279069767442 - }, - "Noto Sans Bassa Vah": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 664, - "unitsPerEm": 1000, - "azAvgWidth": 564 - }, - "Hind": { - "category": "sans-serif", - "ascent": 1055, - "descent": -546, - "lineGap": 0, - "xAvgCharWidth": 523, - "unitsPerEm": 1000, - "azAvgWidth": 444 - }, - "ZCOOL QingKe HuangYou": { - "category": "display", - "ascent": 880, - "descent": -120, - "lineGap": 0, - "xAvgCharWidth": 760, - "unitsPerEm": 1000, - "azAvgWidth": 360.25581395348837 - }, - "Noto Sans Hanifi Rohingya": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 534, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Contrail One": { - "category": "display", - "ascent": 1939, - "descent": -625, - "lineGap": 0, - "xAvgCharWidth": 837, - "unitsPerEm": 2048, - "azAvgWidth": 862.7906976744187 - }, - "Noto Sans Pau Cin Hau": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 597, - "unitsPerEm": 1000, - "azAvgWidth": 555.4883720930233 - }, - "Vast Shadow": { - "category": "display", - "ascent": 1875, - "descent": -685, - "lineGap": 0, - "xAvgCharWidth": 1584, - "unitsPerEm": 2048, - "azAvgWidth": 1475.7441860465117 - }, - "Fondamento": { - "category": "handwriting", - "ascent": 2060, - "descent": -774, - "lineGap": 0, - "xAvgCharWidth": 1141, - "unitsPerEm": 2048, - "azAvgWidth": 901.1395348837209 - }, - "Noto Sans Hatran": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 569, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Noto Sans Phags Pa": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 657, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Noto Sans Psalter Pahlavi": { - "category": "sans-serif", - "ascent": 737, - "descent": -554, - "lineGap": 0, - "xAvgCharWidth": 611, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Noto Sans Phoenician": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 599, - "unitsPerEm": 1000, - "azAvgWidth": 466.51162790697674 - }, - "Noto Sans Syloti Nagri": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 663, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Noto Sans Symbols 2": { - "category": "sans-serif", - "ascent": 1069, - "descent": -630, - "lineGap": 0, - "xAvgCharWidth": 830, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Noto Sans Shavian": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 450, - "unitsPerEm": 1000, - "azAvgWidth": 466.51162790697674 - }, - "Noto Sans Siddham": { - "category": "sans-serif", - "ascent": 1000, - "descent": -1030, - "lineGap": 0, - "xAvgCharWidth": 625, - "unitsPerEm": 1000, - "azAvgWidth": 544.1860465116279 - }, - "Noto Sans Saurashtra": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 665, - "unitsPerEm": 1000, - "azAvgWidth": 556.1860465116279 - }, - "Noto Sans Symbols": { - "category": "sans-serif", - "ascent": 1480, - "descent": -570, - "lineGap": 0, - "xAvgCharWidth": 1043, - "unitsPerEm": 1000, - "azAvgWidth": 485.8139534883721 - }, - "Noto Sans Sora Sompeng": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 444, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Noto Sans Soyombo": { - "category": "sans-serif", - "ascent": 1239, - "descent": -357, - "lineGap": 0, - "xAvgCharWidth": 553, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Noto Sans Runic": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 516, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Noto Sans TC": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 984, - "unitsPerEm": 1000, - "azAvgWidth": 480.13953488372096 - }, - "Noto Sans Sundanese": { - "category": "sans-serif", - "ascent": 1069, - "descent": -368, - "lineGap": 0, - "xAvgCharWidth": 757, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Noto Sans Rejang": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 560, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Noto Sans Sinhala": { - "category": "sans-serif", - "ascent": 1011, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 909, - "unitsPerEm": 1000, - "azAvgWidth": 586.046511627907 - }, - "Noto Sans Sogdian": { - "category": "sans-serif", - "ascent": 1069, - "descent": -313, - "lineGap": 0, - "xAvgCharWidth": 571, - "unitsPerEm": 1000, - "azAvgWidth": 537.2093023255813 - }, - "Noto Sans Samaritan": { - "category": "sans-serif", - "ascent": 1069, - "descent": -293, - "lineGap": 0, - "xAvgCharWidth": 717, - "unitsPerEm": 1000, - "azAvgWidth": 466.51162790697674 - }, - "Noto Sans Sharada": { - "category": "sans-serif", - "ascent": 925, - "descent": -455, - "lineGap": 0, - "xAvgCharWidth": 600, - "unitsPerEm": 1000, - "azAvgWidth": 552.5581395348837 - }, - "Noto Sans SC": { - "category": "sans-serif", - "ascent": 1160, - "descent": -288, - "lineGap": 0, - "xAvgCharWidth": 989, - "unitsPerEm": 1000, - "azAvgWidth": 480.13953488372096 - } -} diff --git a/packages/next/taskfile.js b/packages/next/taskfile.js index 5e6a08c293feb..d09cc1e03771d 100644 --- a/packages/next/taskfile.js +++ b/packages/next/taskfile.js @@ -2387,11 +2387,6 @@ export async function server(task, opts) { .source('src/server/**/!(*.test).+(js|ts|tsx)') .swc('server', { dev: opts.dev }) .target('dist/server') - - await fs.copyFile( - join(__dirname, 'src/server/google-font-metrics.json'), - join(__dirname, 'dist/server/google-font-metrics.json') - ) } export async function server_esm(task, opts) { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 334e41e5597d7..17e3bb3779b2e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -906,8 +906,8 @@ importers: specifier: 7.22.5 version: 7.22.5 '@capsizecss/metrics': - specifier: 1.1.0 - version: 1.1.0 + specifier: 2.0.0 + version: 2.0.0 '@edge-runtime/cookies': specifier: 4.0.2 version: 4.0.2 @@ -3399,8 +3399,8 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@capsizecss/metrics@1.1.0: - resolution: {integrity: sha512-HnnFHi/WXkvwueKEaQbBVsBSFcBG8xoumbHlI4+tIMUv7oqmtqDsrm48cHREFl1MfFuowNP96AJVHj17JH+VyA==} + /@capsizecss/metrics@2.0.0: + resolution: {integrity: sha512-tbYOyIXIMqWZJ2mw2JXvpQiecgTpvioBmduzUEJ+55xGbJz4AtlcatiuNI/rVYiOLLLvGuOOxpkuaY8qAxN63g==} dev: true /@csstools/postcss-color-function@1.1.0(postcss@8.4.31): diff --git a/test/e2e/next-font/google-fetch-error.test.ts b/test/e2e/next-font/google-fetch-error.test.ts index 514a5365d3e5b..435da8570a572 100644 --- a/test/e2e/next-font/google-fetch-error.test.ts +++ b/test/e2e/next-font/google-fetch-error.test.ts @@ -38,12 +38,12 @@ describe('next/font/google fetch error', () => { const ascentOverride = await browser.eval( 'Array.from(document.fonts.values()).find(font => font.family.includes("Inter_Fallback")).ascentOverride' ) - expect(ascentOverride).toBe('90.2%') + expect(ascentOverride).toBe('90%') const descentOverride = await browser.eval( 'Array.from(document.fonts.values()).find(font => font.family.includes("Inter_Fallback")).descentOverride' ) - expect(descentOverride).toBe('22.48%') + expect(descentOverride).toBe('22.43%') const lineGapOverride = await browser.eval( 'Array.from(document.fonts.values()).find(font => font.family.includes("Inter_Fallback")).lineGapOverride' @@ -53,7 +53,7 @@ describe('next/font/google fetch error', () => { const sizeAdjust = await browser.eval( 'Array.from(document.fonts.values()).find(font => font.family.includes("Inter_Fallback")).sizeAdjust' ) - expect(sizeAdjust).toBe('107.4%') + expect(sizeAdjust).toBe('107.64%') expect(next.cliOutput.slice(outputIndex)).toInclude( 'Failed to download `Inter` from Google Fonts. Using fallback font instead.' diff --git a/test/e2e/next-font/index.test.ts b/test/e2e/next-font/index.test.ts index fa95235f3f375..97f646b96196a 100644 --- a/test/e2e/next-font/index.test.ts +++ b/test/e2e/next-font/index.test.ts @@ -608,12 +608,12 @@ describe('next/font', () => { const ascentOverride = await browser.eval( 'Array.from(document.fonts.values()).find(font => font.family.includes("Indie_Flower_Fallback")).ascentOverride' ) - expect(ascentOverride).toBe('101.1%') + expect(ascentOverride).toBe('108.04%') const descentOverride = await browser.eval( 'Array.from(document.fonts.values()).find(font => font.family.includes("Indie_Flower_Fallback")).descentOverride' ) - expect(descentOverride).toBe('50.85%') + expect(descentOverride).toBe('54.35%') const lineGapOverride = await browser.eval( 'Array.from(document.fonts.values()).find(font => font.family.includes("Indie_Flower_Fallback")).lineGapOverride' @@ -623,7 +623,7 @@ describe('next/font', () => { const sizeAdjust = await browser.eval( 'Array.from(document.fonts.values()).find(font => font.family.includes("Indie_Flower_Fallback")).sizeAdjust' ) - expect(sizeAdjust).toBe('96.02%') + expect(sizeAdjust).toBe('89.85%') }) test('Fraunces', async () => { @@ -632,12 +632,12 @@ describe('next/font', () => { const ascentOverride = await browser.eval( 'Array.from(document.fonts.values()).find(font => font.family.includes("Fraunces_Fallback")).ascentOverride' ) - expect(ascentOverride).toBe('84.29%') + expect(ascentOverride).toBe('82.85%') const descentOverride = await browser.eval( 'Array.from(document.fonts.values()).find(font => font.family.includes("Fraunces_Fallback")).descentOverride' ) - expect(descentOverride).toBe('21.98%') + expect(descentOverride).toBe('21.6%') const lineGapOverride = await browser.eval( 'Array.from(document.fonts.values()).find(font => font.family.includes("Fraunces_Fallback")).lineGapOverride' @@ -647,7 +647,7 @@ describe('next/font', () => { const sizeAdjust = await browser.eval( 'Array.from(document.fonts.values()).find(font => font.family.includes("Fraunces_Fallback")).sizeAdjust' ) - expect(sizeAdjust).toBe('116.03%') + expect(sizeAdjust).toBe('118.05%') }) }) }) diff --git a/test/integration/font-optimization/test/index.test.js b/test/integration/font-optimization/test/index.test.js index 1d3857ae27221..0dbf0552923fa 100644 --- a/test/integration/font-optimization/test/index.test.js +++ b/test/integration/font-optimization/test/index.test.js @@ -330,14 +330,14 @@ describe('Font Optimization', () => { ) expect(inlineStyle.length).toBe(1) expect(inlineStyle.html()).toContain( - '@font-face{font-family:"Roboto Fallback";ascent-override:92.67%;descent-override:24.39%;line-gap-override:0.00%;size-adjust:100.11%;src:local("Arial")}' + '@font-face{font-family:"Roboto Fallback";ascent-override:91.92%;descent-override:24.19%;line-gap-override:0.00%;size-adjust:100.92%;src:local("Arial")}' ) expect(inlineStyleMultiple.length).toBe(1) expect(inlineStyleMultiple.html()).toContain( - '@font-face{font-family:"Libre Baskerville Fallback";ascent-override:75.76%;descent-override:21.09%;line-gap-override:0.00%;size-adjust:128.03%;src:local("Times New Roman")}' + '@font-face{font-family:"Libre Baskerville Fallback";ascent-override:75.41%;descent-override:20.99%;line-gap-override:0.00%;size-adjust:128.63%;src:local("Times New Roman")}' ) expect(inlineStyleMultiple.html()).toContain( - '@font-face{font-family:"Open Sans Fallback";ascent-override:101.18%;descent-override:27.73%;line-gap-override:0.00%;size-adjust:105.64%;src:local("Arial")}' + '@font-face{font-family:"Open Sans Fallback";ascent-override:100.49%;descent-override:27.55%;line-gap-override:0.00%;size-adjust:106.36%;src:local("Arial")}' ) }) } From 79b7cb5f075c26698bc2cb8a569cda8a6e3b49bd Mon Sep 17 00:00:00 2001 From: vercel-release-bot Date: Wed, 21 Feb 2024 06:09:07 +0000 Subject: [PATCH 4/4] v14.1.1-canary.66 --- lerna.json | 2 +- packages/create-next-app/package.json | 2 +- packages/eslint-config-next/package.json | 4 ++-- packages/eslint-plugin-next/package.json | 2 +- packages/font/package.json | 2 +- packages/next-bundle-analyzer/package.json | 2 +- packages/next-codemod/package.json | 2 +- packages/next-env/package.json | 2 +- packages/next-mdx/package.json | 2 +- packages/next-plugin-storybook/package.json | 2 +- packages/next-polyfill-module/package.json | 2 +- packages/next-polyfill-nomodule/package.json | 2 +- packages/next-swc/package.json | 2 +- packages/next/package.json | 12 ++++++------ packages/react-refresh-utils/package.json | 2 +- packages/third-parties/package.json | 4 ++-- pnpm-lock.yaml | 14 +++++++------- 17 files changed, 30 insertions(+), 30 deletions(-) diff --git a/lerna.json b/lerna.json index 845fa119ba7ad..51b6c3ca495b7 100644 --- a/lerna.json +++ b/lerna.json @@ -16,5 +16,5 @@ "registry": "https://registry.npmjs.org/" } }, - "version": "14.1.1-canary.65" + "version": "14.1.1-canary.66" } diff --git a/packages/create-next-app/package.json b/packages/create-next-app/package.json index f9c1b0ceb2d62..83885b973d5b4 100644 --- a/packages/create-next-app/package.json +++ b/packages/create-next-app/package.json @@ -1,6 +1,6 @@ { "name": "create-next-app", - "version": "14.1.1-canary.65", + "version": "14.1.1-canary.66", "keywords": [ "react", "next", diff --git a/packages/eslint-config-next/package.json b/packages/eslint-config-next/package.json index 1ac5e68d99883..33534dbd5aaae 100644 --- a/packages/eslint-config-next/package.json +++ b/packages/eslint-config-next/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-next", - "version": "14.1.1-canary.65", + "version": "14.1.1-canary.66", "description": "ESLint configuration used by Next.js.", "main": "index.js", "license": "MIT", @@ -10,7 +10,7 @@ }, "homepage": "https://nextjs.org/docs/app/building-your-application/configuring/eslint#eslint-config", "dependencies": { - "@next/eslint-plugin-next": "14.1.1-canary.65", + "@next/eslint-plugin-next": "14.1.1-canary.66", "@rushstack/eslint-patch": "^1.3.3", "@typescript-eslint/parser": "^5.4.2 || ^6.0.0", "eslint-import-resolver-node": "^0.3.6", diff --git a/packages/eslint-plugin-next/package.json b/packages/eslint-plugin-next/package.json index d1a845fcbf3c5..6bbfb08cb1778 100644 --- a/packages/eslint-plugin-next/package.json +++ b/packages/eslint-plugin-next/package.json @@ -1,6 +1,6 @@ { "name": "@next/eslint-plugin-next", - "version": "14.1.1-canary.65", + "version": "14.1.1-canary.66", "description": "ESLint plugin for Next.js.", "main": "dist/index.js", "license": "MIT", diff --git a/packages/font/package.json b/packages/font/package.json index d6d61ed08cff1..85321d63384e3 100644 --- a/packages/font/package.json +++ b/packages/font/package.json @@ -1,6 +1,6 @@ { "name": "@next/font", - "version": "14.1.1-canary.65", + "version": "14.1.1-canary.66", "repository": { "url": "vercel/next.js", "directory": "packages/font" diff --git a/packages/next-bundle-analyzer/package.json b/packages/next-bundle-analyzer/package.json index 3f1ae830bdb05..2a5c565cbb7de 100644 --- a/packages/next-bundle-analyzer/package.json +++ b/packages/next-bundle-analyzer/package.json @@ -1,6 +1,6 @@ { "name": "@next/bundle-analyzer", - "version": "14.1.1-canary.65", + "version": "14.1.1-canary.66", "main": "index.js", "types": "index.d.ts", "license": "MIT", diff --git a/packages/next-codemod/package.json b/packages/next-codemod/package.json index 4848879d6e9a8..b6dd5038e5894 100644 --- a/packages/next-codemod/package.json +++ b/packages/next-codemod/package.json @@ -1,6 +1,6 @@ { "name": "@next/codemod", - "version": "14.1.1-canary.65", + "version": "14.1.1-canary.66", "license": "MIT", "repository": { "type": "git", diff --git a/packages/next-env/package.json b/packages/next-env/package.json index ba699de447ddd..e1ec61a8f60de 100644 --- a/packages/next-env/package.json +++ b/packages/next-env/package.json @@ -1,6 +1,6 @@ { "name": "@next/env", - "version": "14.1.1-canary.65", + "version": "14.1.1-canary.66", "keywords": [ "react", "next", diff --git a/packages/next-mdx/package.json b/packages/next-mdx/package.json index a1eec37817f50..f60f6ebdab4da 100644 --- a/packages/next-mdx/package.json +++ b/packages/next-mdx/package.json @@ -1,6 +1,6 @@ { "name": "@next/mdx", - "version": "14.1.1-canary.65", + "version": "14.1.1-canary.66", "main": "index.js", "license": "MIT", "repository": { diff --git a/packages/next-plugin-storybook/package.json b/packages/next-plugin-storybook/package.json index 61f9a36297809..99c7253ddddd8 100644 --- a/packages/next-plugin-storybook/package.json +++ b/packages/next-plugin-storybook/package.json @@ -1,6 +1,6 @@ { "name": "@next/plugin-storybook", - "version": "14.1.1-canary.65", + "version": "14.1.1-canary.66", "repository": { "url": "vercel/next.js", "directory": "packages/next-plugin-storybook" diff --git a/packages/next-polyfill-module/package.json b/packages/next-polyfill-module/package.json index 726dcb02369e2..ac22109aa4cb8 100644 --- a/packages/next-polyfill-module/package.json +++ b/packages/next-polyfill-module/package.json @@ -1,6 +1,6 @@ { "name": "@next/polyfill-module", - "version": "14.1.1-canary.65", + "version": "14.1.1-canary.66", "description": "A standard library polyfill for ES Modules supporting browsers (Edge 16+, Firefox 60+, Chrome 61+, Safari 10.1+)", "main": "dist/polyfill-module.js", "license": "MIT", diff --git a/packages/next-polyfill-nomodule/package.json b/packages/next-polyfill-nomodule/package.json index ada231ca8ab59..5db27e88491f7 100644 --- a/packages/next-polyfill-nomodule/package.json +++ b/packages/next-polyfill-nomodule/package.json @@ -1,6 +1,6 @@ { "name": "@next/polyfill-nomodule", - "version": "14.1.1-canary.65", + "version": "14.1.1-canary.66", "description": "A polyfill for non-dead, nomodule browsers.", "main": "dist/polyfill-nomodule.js", "license": "MIT", diff --git a/packages/next-swc/package.json b/packages/next-swc/package.json index a95494dd90814..59582f6c1598a 100644 --- a/packages/next-swc/package.json +++ b/packages/next-swc/package.json @@ -1,6 +1,6 @@ { "name": "@next/swc", - "version": "14.1.1-canary.65", + "version": "14.1.1-canary.66", "private": true, "scripts": { "clean": "node ../../scripts/rm.mjs native", diff --git a/packages/next/package.json b/packages/next/package.json index f8ed9a1d3fd3d..a5c57abd56470 100644 --- a/packages/next/package.json +++ b/packages/next/package.json @@ -1,6 +1,6 @@ { "name": "next", - "version": "14.1.1-canary.65", + "version": "14.1.1-canary.66", "description": "The React Framework", "main": "./dist/server/next.js", "license": "MIT", @@ -92,7 +92,7 @@ ] }, "dependencies": { - "@next/env": "14.1.1-canary.65", + "@next/env": "14.1.1-canary.66", "@swc/helpers": "0.5.5", "busboy": "1.6.0", "caniuse-lite": "^1.0.30001579", @@ -145,10 +145,10 @@ "@jest/types": "29.5.0", "@mswjs/interceptors": "0.23.0", "@napi-rs/triples": "1.2.0", - "@next/polyfill-module": "14.1.1-canary.65", - "@next/polyfill-nomodule": "14.1.1-canary.65", - "@next/react-refresh-utils": "14.1.1-canary.65", - "@next/swc": "14.1.1-canary.65", + "@next/polyfill-module": "14.1.1-canary.66", + "@next/polyfill-nomodule": "14.1.1-canary.66", + "@next/react-refresh-utils": "14.1.1-canary.66", + "@next/swc": "14.1.1-canary.66", "@opentelemetry/api": "1.6.0", "@playwright/test": "1.41.2", "@taskr/clear": "1.1.0", diff --git a/packages/react-refresh-utils/package.json b/packages/react-refresh-utils/package.json index e22513000bb33..9c63605375711 100644 --- a/packages/react-refresh-utils/package.json +++ b/packages/react-refresh-utils/package.json @@ -1,6 +1,6 @@ { "name": "@next/react-refresh-utils", - "version": "14.1.1-canary.65", + "version": "14.1.1-canary.66", "description": "An experimental package providing utilities for React Refresh.", "repository": { "url": "vercel/next.js", diff --git a/packages/third-parties/package.json b/packages/third-parties/package.json index 13845ac470dfc..0fbfd582c09e8 100644 --- a/packages/third-parties/package.json +++ b/packages/third-parties/package.json @@ -1,6 +1,6 @@ { "name": "@next/third-parties", - "version": "14.1.1-canary.65", + "version": "14.1.1-canary.66", "repository": { "url": "vercel/next.js", "directory": "packages/third-parties" @@ -26,7 +26,7 @@ "third-party-capital": "1.0.20" }, "devDependencies": { - "next": "14.1.1-canary.65", + "next": "14.1.1-canary.66", "outdent": "0.8.0", "prettier": "2.5.1" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 17e3bb3779b2e..24a7b0c530bbd 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -750,7 +750,7 @@ importers: packages/eslint-config-next: dependencies: '@next/eslint-plugin-next': - specifier: 14.1.1-canary.65 + specifier: 14.1.1-canary.66 version: link:../eslint-plugin-next '@rushstack/eslint-patch': specifier: ^1.3.3 @@ -812,7 +812,7 @@ importers: packages/next: dependencies: '@next/env': - specifier: 14.1.1-canary.65 + specifier: 14.1.1-canary.66 version: link:../next-env '@swc/helpers': specifier: 0.5.5 @@ -933,16 +933,16 @@ importers: specifier: 1.2.0 version: 1.2.0 '@next/polyfill-module': - specifier: 14.1.1-canary.65 + specifier: 14.1.1-canary.66 version: link:../next-polyfill-module '@next/polyfill-nomodule': - specifier: 14.1.1-canary.65 + specifier: 14.1.1-canary.66 version: link:../next-polyfill-nomodule '@next/react-refresh-utils': - specifier: 14.1.1-canary.65 + specifier: 14.1.1-canary.66 version: link:../react-refresh-utils '@next/swc': - specifier: 14.1.1-canary.65 + specifier: 14.1.1-canary.66 version: link:../next-swc '@opentelemetry/api': specifier: 1.6.0 @@ -1554,7 +1554,7 @@ importers: version: 1.0.20 devDependencies: next: - specifier: 14.1.1-canary.65 + specifier: 14.1.1-canary.66 version: link:../next outdent: specifier: 0.8.0