diff --git a/app/features/cv/README.md b/app/features/cv/README.md index 8249ceed5..9e8f7be1d 100644 --- a/app/features/cv/README.md +++ b/app/features/cv/README.md @@ -70,21 +70,30 @@ video file → capture/vod-frames (WebCodecs decode, seek fallback) [VoD tab] ## Assets (CDN) and fonts -Glyph atlases, weapon/ability/special/sub template sets, and the planner -signature atlas live in the **sendou-ink/assets repo** under `assets/cv/v1/**` -(local checkout expected at `../assets`, override with `CV_ASSETS_DIR`; -version segment bumps on breaking atlas-format changes so old deploys keep -reading old files): +Weapon/ability/special/sub template sources are the site's shared game +icons in the **sendou-ink/assets repo** under `assets/img/**` (`.avif`; ids +come from `~/modules/in-game-lists`, plus the CV-only `UNKNOWN` ability +badge — `toCvAbility` narrows template ids back to sendou ids). The +CV-specific sets — glyph atlases and the planner signature atlas — live in +this repo under `public/cv/v1/**` (override with `CV_ASSETS_DIR`; the +version segment bumps on breaking atlas-format changes). xxx: the atlases +are in `public/` only while the feature is in development — move them to +the assets repo (and the worker back to the CDN base) later: -- Browser/worker: fetched from `${Config.staticAssetsUrl}/cv/v1` (the base URL - rides the worker init message). For local dev against fresh regens, serve - the checkout with CORS — `npx serve /Users/kalle/Developer/assets/assets -l 9100 --cors` +- Browser/worker: icons fetched from `Config.staticAssetsUrl` at `img/**` + (the base URL rides the worker init message; the DO Space needs CORS — + GET, sendou.ink + localhost origins — because the worker `fetch()`es + cross-origin, plain `` consumers don't); atlases fetched same-origin + from `/cv/v1/**`. For local dev against fresh icon regens, serve the + checkout with CORS — + `npx serve /Users/kalle/Developer/assets/assets -l 9100 --cors` — and set `VITE_STATIC_ASSETS_URL=http://localhost:9100` in `.env`. - The DO Space needs CORS (GET, sendou.ink + localhost origins) because the - worker `fetch()`es JSON/PNG cross-origin — plain `` consumers don't. -- Node (tests/scripts): read from the checkout directly, never the CDN. -- Shipping a regen = commit + push the assets repo (CDN mirrors on push to - main); plain regens overwrite in place, breaking format changes bump `v1`. +- Node (tests/scripts): atlases from `public/cv/v1`, icons from the + `../assets` checkout directly, never the CDN. AVIF icons decode through + `sharp` (`node/image-io.ts`) — `@napi-rs/canvas` mis-decodes AVIF + partial-alpha pixels. +- Atlas regens overwrite `public/cv/v1` in place and ship with the app + build; breaking format changes bump `v1`. Fonts are proprietary and gitignored: `BlitzMain.otf`, `BlitzBold.otf`, `FOT-RowdyStd-EB.otf`, `FOT-KurokaneStd-EB.otf` in `assets/fonts/` (repo diff --git a/app/features/cv/components/ScreenshotPage.tsx b/app/features/cv/components/ScreenshotPage.tsx index 9c2da8b09..318600a57 100644 --- a/app/features/cv/components/ScreenshotPage.tsx +++ b/app/features/cv/components/ScreenshotPage.tsx @@ -1,5 +1,6 @@ import { useCallback, useEffect, useRef, useState } from "react"; -import { CV_ASSETS_URL } from "~/utils/urls"; +import type { MainWeaponId } from "~/modules/in-game-lists/types"; +import { mainWeaponImageUrl } from "~/utils/urls"; import { CANONICAL_HEIGHT, CANONICAL_WIDTH, type Roi } from "../core/canonical"; import type { DeathData } from "../core/detectors/death/index"; import * as death from "../core/detectors/death/rois"; @@ -552,7 +553,7 @@ export function ScreenshotPage() { {c.id} {c.id} diff --git a/app/features/cv/core/resources.ts b/app/features/cv/core/resources.ts index f09be5fb2..267f0d819 100644 --- a/app/features/cv/core/resources.ts +++ b/app/features/cv/core/resources.ts @@ -11,6 +11,12 @@ * dominated startup. */ +import { abilities as abilityList } from "~/modules/in-game-lists/abilities"; +import { + mainWeaponIds, + specialWeaponIds, + subWeaponIds, +} from "~/modules/in-game-lists/weapon-ids"; import { prepareAbilityTemplates } from "./detectors/death/abilities"; import { BURST_ICON_TEMPLATE_SIZES } from "./detectors/death/rois"; import { prepareMinimapAbilityTemplates } from "./detectors/minimap/abilities"; @@ -31,9 +37,7 @@ import type { GlyphSet } from "./glyphs"; import type { FrameData } from "./image"; export interface ResourceIO { - /** ids listed in //manifest.json */ - readManifest(dir: string): Promise; - /** decoded RGBA of //.png */ + /** decoded RGBA of the shared game icon img//.avif */ readIcon(dir: string, id: string): Promise; /** glyph atlas by name as a (possibly lazy) getter; () => null when absent */ loadAtlas(name: string): Promise<() => GlyphSet | null>; @@ -75,12 +79,13 @@ function lazy(build: () => T): () => T { export async function assembleScoreboardResources( io: ResourceIO, ): Promise { - const icons = async (dir: string) => { - const ids = await io.readManifest(dir); - return Promise.all( - ids.map(async (id) => ({ id, image: await io.readIcon(dir, id) })), + const icons = (dir: string, ids: readonly (number | string)[]) => + Promise.all( + ids.map(async (id) => ({ + id: String(id), + image: await io.readIcon(dir, String(id)), + })), ); - }; const [ weaponIcons, @@ -90,10 +95,15 @@ export async function assembleScoreboardResources( plannerStages, atlasEntries, ] = await Promise.all([ - icons("main-weapons"), - icons("specials"), - icons("sub-weapons"), - icons("abilities"), + icons("main-weapons", mainWeaponIds), + icons("special-weapons", specialWeaponIds), + icons("sub-weapons", subWeaponIds), + // UNKNOWN is the garbled-badge template: it competes in matching and + // wins on unreadable slots (see CvAbility in cv-types.ts) + icons("abilities", [ + ...abilityList.map((ability) => ability.name), + "UNKNOWN", + ]), io.loadPlannerStages(), Promise.all( (Object.entries(ATLASES) as [keyof typeof ATLASES, string][]).map( diff --git a/app/features/cv/cv-types.ts b/app/features/cv/cv-types.ts index 55a4a3861..caa951460 100644 --- a/app/features/cv/cv-types.ts +++ b/app/features/cv/cv-types.ts @@ -14,8 +14,8 @@ export type CvLobby = (typeof CV_LOBBIES)[number]; /** * A detected gear ability: a sendou ability id, or the explicit - * unrecognized marker (the UNKNOWN template in assets/cv/abilities — - * distinct from null, which means the badge was covered/absent). + * unrecognized marker (the UNKNOWN template in the shared img/abilities + * set — distinct from null, which means the badge was covered/absent). */ export type CvAbility = Ability | "UNKNOWN"; // xxx: why not AbilityWithUnknown diff --git a/app/features/cv/node/assets-dir.ts b/app/features/cv/node/assets-dir.ts index ef1afa3d0..e8914a4d4 100644 --- a/app/features/cv/node/assets-dir.ts +++ b/app/features/cv/node/assets-dir.ts @@ -1,9 +1,18 @@ /** * Where Node-side code (tests, atlas builders) reads and writes the CV - * asset sets. Defaults to the sibling sendou-ink/assets checkout — the same - * files the CDN mirrors — and can be overridden with CV_ASSETS_DIR. The - * version segment must match worker-side CV_ASSETS_URL (app/utils/urls.ts). + * asset sets. CV_ASSETS_DIR holds the CV-specific atlases (glyphs, planner + * signatures; overridable with the env var of the same name) — its version + * segment must match the worker-side ATLAS_BASE (worker/resources.ts). + * GAME_IMG_DIR is the sibling sendou-ink/assets checkout's shared `img/**` + * tree the game icons are read from — the same files the CDN mirrors. + * xxx: atlases temporarily live in this repo's public/ while the feature + * is in development; move them to the assets repo later */ export const CV_ASSETS_DIR = process.env.CV_ASSETS_DIR ?? - new URL("../../../../../assets/assets/cv/v1", import.meta.url).pathname; + new URL("../../../../public/cv/v1", import.meta.url).pathname; + +export const GAME_IMG_DIR = new URL( + "../../../../../assets/assets/img", + import.meta.url, +).pathname; diff --git a/app/features/cv/node/image-io.ts b/app/features/cv/node/image-io.ts index dcb207b93..9ebb6d260 100644 --- a/app/features/cv/node/image-io.ts +++ b/app/features/cv/node/image-io.ts @@ -8,9 +8,23 @@ */ import { readFileSync, writeFileSync } from "node:fs"; import { createCanvas, Image, ImageData } from "@napi-rs/canvas"; +import sharp from "sharp"; import type { FrameData } from "../core/image"; export async function readImage(path: string): Promise { + // @napi-rs/canvas mis-decodes AVIF at partial-alpha pixels (white-matte + // leak); sharp returns clean straight-alpha RGBA for those + if (path.endsWith(".avif")) { + const { data, info } = await sharp(path) + .ensureAlpha() + .raw() + .toBuffer({ resolveWithObject: true }); + return { + width: info.width, + height: info.height, + data: new Uint8ClampedArray(data), + }; + } const img = new Image(); img.src = readFileSync(path); await img.decode(); diff --git a/app/features/cv/node/resources.ts b/app/features/cv/node/resources.ts index bc44aff17..6b64130b6 100644 --- a/app/features/cv/node/resources.ts +++ b/app/features/cv/node/resources.ts @@ -1,9 +1,10 @@ /** * Node IO for ScoreboardResources: reads the CV asset sets from the local * sendou-ink/assets checkout (tests and atlas builders never touch the - * CDN). What the bundle contains — every key, template option set, and - * atlas name — lives in core/resources.ts, shared with the worker's HTTP - * loader. + * CDN). Game icons come from the checkout's shared `img/**` tree, the + * CV-specific atlases from `cv/v1/**`. What the bundle contains — every + * key, template option set, and atlas name — lives in core/resources.ts, + * shared with the worker's HTTP loader. */ import { existsSync, readFileSync } from "node:fs"; import { join } from "node:path"; @@ -15,7 +16,7 @@ import { import type { ScoreboardResources } from "../core/detectors/scoreboard/index"; import { type AtlasMeta, type GlyphSet, loadGlyphSet } from "../core/glyphs"; import { assembleScoreboardResources } from "../core/resources"; -import { CV_ASSETS_DIR as ASSETS_DIR } from "./assets-dir"; +import { CV_ASSETS_DIR as ASSETS_DIR, GAME_IMG_DIR } from "./assets-dir"; import { readImage } from "./image-io"; /** Decode eagerly, defer the (CPU-heavy) glyph slicing to first access. */ @@ -43,13 +44,7 @@ async function loadPlannerStagesLazy(): Promise<() => PlannerStage[] | null> { /** Requires loadOpenCV() to have resolved. */ export function loadScoreboardResources(): Promise { return assembleScoreboardResources({ - readManifest: (dir) => - Promise.resolve( - JSON.parse( - readFileSync(join(ASSETS_DIR, dir, "manifest.json"), "utf8"), - ) as string[], - ), - readIcon: (dir, id) => readImage(join(ASSETS_DIR, dir, `${id}.png`)), + readIcon: (dir, id) => readImage(join(GAME_IMG_DIR, dir, `${id}.avif`)), loadAtlas: loadAtlasLazy, loadPlannerStages: loadPlannerStagesLazy, }); diff --git a/app/features/cv/worker/client.ts b/app/features/cv/worker/client.ts index 42d4fde4a..5de51d9e9 100644 --- a/app/features/cv/worker/client.ts +++ b/app/features/cv/worker/client.ts @@ -3,7 +3,7 @@ * in-flight frame at a time (the sampler drops frames while busy). Each * frame yields one result per registered detector, then a single "done". */ -import { CV_ASSETS_URL } from "../../../utils/urls"; +import { Config } from "../../../config"; import type { WorkerResponse } from "./protocol"; export type ResultHandler = ( @@ -69,7 +69,7 @@ export class AnalyzerClient { }; this.#worker.postMessage({ kind: "init", - assetsBaseUrl: CV_ASSETS_URL, + assetsBaseUrl: Config.staticAssetsUrl, suppressSteadyFrames: options.suppressSteadyFrames ?? true, }); } diff --git a/app/features/cv/worker/protocol.ts b/app/features/cv/worker/protocol.ts index 372a0d324..eb1d81e1d 100644 --- a/app/features/cv/worker/protocol.ts +++ b/app/features/cv/worker/protocol.ts @@ -3,9 +3,9 @@ import type { DetectedEvent, GateResult } from "../core/detectors/types"; export interface InitRequest { kind: "init"; /** - * base URL the worker fetches atlases/templates from (e.g. - * `${Config.staticAssetsUrl}/cv/v1`); passed in the init message so the - * worker bundle stays free of the app config graph + * static assets CDN root the worker fetches icons and atlases from + * (`Config.staticAssetsUrl`); passed in the init message so the worker + * bundle stays free of the app config graph */ assetsBaseUrl: string; /** diff --git a/app/features/cv/worker/resources.ts b/app/features/cv/worker/resources.ts index 9634c2055..1e40fc6db 100644 --- a/app/features/cv/worker/resources.ts +++ b/app/features/cv/worker/resources.ts @@ -1,6 +1,8 @@ /** - * Worker/browser IO for ScoreboardResources: fetches the CDN-hosted CV - * assets (assets repo `assets/cv/v1/**`) over HTTP. What the bundle + * Worker/browser IO for ScoreboardResources: fetches over HTTP. Game icons + * come from the CDN's shared `img//.avif` sets the rest of the app + * already uses; the CV-specific atlases (glyphs, planner signatures) are + * served same-origin from this repo's `public/cv/v1/**`. What the bundle * contains — every key, template option set, and atlas name — lives in * core/resources.ts, shared with the Node loader. The base URL arrives via * the worker init message (see worker/protocol.ts) so this module never @@ -17,6 +19,14 @@ import { type AtlasMeta, type GlyphSet, loadGlyphSet } from "../core/glyphs"; import type { FrameData } from "../core/image"; import { assembleScoreboardResources } from "../core/resources"; +/** CV parser atlases; the version segment guards against CDN cache skew — + * bump it together with breaking atlas format changes (must match the + * Node-side CV_ASSETS_DIR default in node/assets-dir.ts). + * xxx: temporarily served same-origin from this repo's public/ while the + * feature is in development; move to the assets repo CDN + * (`${base}/cv/v1`) later */ +const ATLAS_BASE = "/cv/v1"; + async function fetchImage(url: string): Promise { const res = await fetch(url); if (!res.ok) throw new Error(`fetch ${url}: ${res.status}`); @@ -74,12 +84,8 @@ export function fetchScoreboardResources( base: string, ): Promise { return assembleScoreboardResources({ - readManifest: (dir) => - fetch(`${base}/${dir}/manifest.json`).then( - (r) => r.json() as Promise, - ), - readIcon: (dir, id) => fetchImage(`${base}/${dir}/${id}.png`), - loadAtlas: makeFetchAtlas(base), - loadPlannerStages: makeFetchPlannerStages(base), + readIcon: (dir, id) => fetchImage(`${base}/img/${dir}/${id}.avif`), + loadAtlas: makeFetchAtlas(ATLAS_BASE), + loadPlannerStages: makeFetchPlannerStages(ATLAS_BASE), }); } diff --git a/app/utils/urls.ts b/app/utils/urls.ts index a1f1fd309..f4db1941d 100644 --- a/app/utils/urls.ts +++ b/app/utils/urls.ts @@ -200,10 +200,6 @@ export const SECOND_PLACEMENT_ICON_PATH = `${STATIC_ASSETS_URL}/svg/placements/s export const THIRD_PLACEMENT_ICON_PATH = `${STATIC_ASSETS_URL}/svg/placements/third.svg`; export const WELCOME_HERO_IMAGE_PATH = `${STATIC_ASSETS_URL}/img/welcome-hero.webp`; -/** CV parser atlases/templates; the version segment guards against CDN cache - * skew — bump it together with breaking atlas format changes */ -export const CV_ASSETS_URL = `${STATIC_ASSETS_URL}/cv/v1`; - export const APP_ICON_URL = `${STATIC_ASSETS_URL}/img/app-icon.png`; export const pwaSplashScreenImageUrl = (fileName: string) => `${STATIC_ASSETS_URL}/img/splash-screens/${fileName}`; diff --git a/biome.json b/biome.json index 8f385e8ad..38846073f 100644 --- a/biome.json +++ b/biome.json @@ -8,6 +8,7 @@ "!app/db/seed/data/placements.json", "!build/**/*", "!app/features/cv/tests/fixtures", + "!public/cv/**/*", "!test-results/**/*", "!playwright-report/**/*", "!.react-router/**/*", diff --git a/package.json b/package.json index 9e58277c0..9bf6f3b89 100644 --- a/package.json +++ b/package.json @@ -125,6 +125,7 @@ "i18next-locales-sync": "2.1.1", "knip": "6.29.0", "magic-string": "0.30.21", + "sharp": "^0.35.3", "sql-formatter": "15.8.2", "typescript": "7.0.2", "vite": "8.1.5", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 472412677..79f6b9d81 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -242,6 +242,9 @@ importers: magic-string: specifier: 0.30.21 version: 0.30.21 + sharp: + specifier: ^0.35.3 + version: 0.35.3(@types/node@26.1.1) sql-formatter: specifier: 15.8.2 version: 15.8.2 @@ -639,6 +642,168 @@ packages: '@floating-ui/utils@0.2.11': resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==} + '@img/colour@1.1.0': + resolution: {integrity: sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==} + engines: {node: '>=18'} + + '@img/sharp-darwin-arm64@0.35.3': + resolution: {integrity: sha512-RMnFX7YQsMoh7lWfcM4NEHHymBX/rLuKNPVM84XE9ONPcaSCDgE7CHIHpSgPcO2xcRthgBy1HfNO319mwhIAkg==} + engines: {node: '>=20.9.0'} + cpu: [arm64] + os: [darwin] + + '@img/sharp-darwin-x64@0.35.3': + resolution: {integrity: sha512-Xo+5uFBtLN0BKqieTxiFzFPQAUlBbbH5iBKyRX/z1JrbnYsHTfKJnUfL8+p2TPXr1pXqao4eeL4Rl144uDpK9w==} + engines: {node: '>=20.9.0'} + cpu: [x64] + os: [darwin] + + '@img/sharp-freebsd-wasm32@0.35.3': + resolution: {integrity: sha512-lUxcqWIj2wMQ9BrwNjngcr1gWUr5xgaGThBRqPPalIC2n67Cqj1uPh8NnA/ZhAg8hUbKl+kVHKwgUIwe6ZYPrg==} + engines: {node: '>=20.9.0'} + os: [freebsd] + + '@img/sharp-libvips-darwin-arm64@1.3.2': + resolution: {integrity: sha512-9J6ypZFpQBj4YnePGoq/S38w6nz+vqg5WZLrLGY4YuSemdMq47GMLBPO42MzwdGwpg/agZ7xzZcFHa48xlywfg==} + cpu: [arm64] + os: [darwin] + + '@img/sharp-libvips-darwin-x64@1.3.2': + resolution: {integrity: sha512-m2pW1n6cns9VaubNwsZ+c3CRYjxNQWgJ5gPlnL1nbBcpkBvFm6SCFN5o0psFHI8w9n11NKhFkeEDns98tiqbEw==} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-linux-arm64@1.3.2': + resolution: {integrity: sha512-dqVSFynCox4C/J8kT16V7SIFAns0IjgLwkvYT7p8LQVmJ5OS5b6tI9IGflxTeuBS//zXeFIUbwt5dwxyZ17cnA==} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@img/sharp-libvips-linux-arm@1.3.2': + resolution: {integrity: sha512-1eMLzy92I4J6rmi4mAT8yC3HxOtniyGELlzGbNMLLeqe052ahFQ0h6LFq+lh5DsDIdYViIDst08abvSbcEdLXQ==} + cpu: [arm] + os: [linux] + libc: [glibc] + + '@img/sharp-libvips-linux-ppc64@1.3.2': + resolution: {integrity: sha512-3z0NHDxD6n5I9gc05U1eW1AyRm+Gznzq3naMrthPNqE6oYykcogW0l/jfpJdjYnuNl8R7yI9pNbE1XiUeyq0Aw==} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@img/sharp-libvips-linux-riscv64@1.3.2': + resolution: {integrity: sha512-bsb4rI+NldGOsXuej2r8OdSS8+zXDVaCWxyWrcv6kneTOlgAHtZABRzBBCwdsPiD90J4myNJuHpg6kA20ImW/w==} + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@img/sharp-libvips-linux-s390x@1.3.2': + resolution: {integrity: sha512-/ABshyj8gCpyIrNXnHn4LorDJ0HHm1VhXPBlxZ8zAtfVPAaSafXPGn+sUSIRiwaSBy0mmFjSjiXI5mkcwdChKQ==} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@img/sharp-libvips-linux-x64@1.3.2': + resolution: {integrity: sha512-ITPEtgffGJ0S6G9dRyw/366tJQqFRcHWPHhC+Stpg3Z8AEMrDrTr2lhdz4f/Y/HMbRh//7Z5mBzEpVdi62Oc3w==} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@img/sharp-libvips-linuxmusl-arm64@1.3.2': + resolution: {integrity: sha512-zE9EdiUzUmg5mDT5a1rk5fYJ6GWPloTwWBYDS14naqHsL+EaMpDj1AWnpLgh3u0YCORv2Tt50wrcrpYqkP97Kw==} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@img/sharp-libvips-linuxmusl-x64@1.3.2': + resolution: {integrity: sha512-m0lrLiUt+lBYnCFr8qV/65yMR4E/c7/wf78I5eKTdkEakFAlZ9QlzEM3QIhhAwVeUhLAHLcCq7a7Vszq/oFNZQ==} + cpu: [x64] + os: [linux] + libc: [musl] + + '@img/sharp-linux-arm64@0.35.3': + resolution: {integrity: sha512-QgKDspHPnrU+GQ55XPhGwyhC8acLVOOSyAvo1oVfFmrIXLkDNmGWzAfDZ4xK8oSA1qBQrALcHX0G5UZni/SuFQ==} + engines: {node: '>=20.9.0'} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@img/sharp-linux-arm@0.35.3': + resolution: {integrity: sha512-affVWCTLooy8TSxbDx2qkzuDeaWLNVBA+P//FNBirHsXpP2fuBhk5AuboYUnrDnzoXes8GFjpTx0SBFOCRg+FA==} + engines: {node: '>=20.9.0'} + cpu: [arm] + os: [linux] + libc: [glibc] + + '@img/sharp-linux-ppc64@0.35.3': + resolution: {integrity: sha512-sMd8rDxmpLOwv/7N44klFjOD5DUO7FLdjiXDI0hoxYaf7Ar262dQIEkosE98bps+5HPLtp/EvNqeqQtOycP/IA==} + engines: {node: '>=20.9.0'} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@img/sharp-linux-riscv64@0.35.3': + resolution: {integrity: sha512-0Eob78yjlYPfL5vMNWAW55l3R9Y6BQS/gOfe0ZcP9mEz9ohhKSt4im1hayiknXgf8AWrFqMvJcKIdmLmEe7yeQ==} + engines: {node: '>=20.9.0'} + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@img/sharp-linux-s390x@0.35.3': + resolution: {integrity: sha512-KgAxQ0DxpNOq1rG2t5cgTgShJFGSuU7XO45cqC+1NVOuZnP6tlgZRuSYOfNupGkHID0o3cJOsw4DVeJpMovcGw==} + engines: {node: '>=20.9.0'} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@img/sharp-linux-x64@0.35.3': + resolution: {integrity: sha512-8pqvxubL2PGdhlPy6GLqzDYMUjyRmKAwKHYKixpdJYBUK7PJ0C029XdsnpFIdgRZG68fZiGdHVWcKPvtiPB4cA==} + engines: {node: '>=20.9.0'} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@img/sharp-linuxmusl-arm64@0.35.3': + resolution: {integrity: sha512-Vz0iQjzzcSX3HCbfwFfCSG/9SCIqyO0mH2sXyiHaAYfBk0cRsCWXRyQYX0ovCK/PAQBbTzQ0dsPQHh5MAFL59w==} + engines: {node: '>=20.9.0'} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@img/sharp-linuxmusl-x64@0.35.3': + resolution: {integrity: sha512-6O1NPKcDVj9QEdg7Hx549EX8U0rp6yXQERqru6yRN7fGBn32UvIRJUlWnk+8xDCiG76hXVBbX82NZ/ZKr0euIg==} + engines: {node: '>=20.9.0'} + cpu: [x64] + os: [linux] + libc: [musl] + + '@img/sharp-wasm32@0.35.3': + resolution: {integrity: sha512-cZ0XkcYGpHZkqW6iCkqTcmUC0CD9DhD5d/qeZlZkfRBn6GnHniZXLUo5+9xw8Iv76YE6LQFN9YNBlKREcCG76w==} + engines: {node: '>=20.9.0'} + + '@img/sharp-webcontainers-wasm32@0.35.3': + resolution: {integrity: sha512-2rnq7bX3NzeR2T4YWgz8qiG4h3TSdMe+vN1iQXpJleSJ3SM5zQ8Fy2SyyXAWlbxpEZ2Y+Z4u1BePgJEYbSy80Q==} + engines: {node: '>=20.9.0'} + cpu: [wasm32] + + '@img/sharp-win32-arm64@0.35.3': + resolution: {integrity: sha512-4bPwFdMbeC4JQ8L8LOyWp6nsHcboP5fxkp6iPOXz2Vg49R42TuMs2whkJ5OAP4/Ul035qOzy0AecOF9VOscn4w==} + engines: {node: '>=20.9.0'} + cpu: [arm64] + os: [win32] + + '@img/sharp-win32-ia32@0.35.3': + resolution: {integrity: sha512-r53mXsBN6lFUDiST764SvgwUdHAqM4rPAiDzAmf4fLoB6X/rkfyTrLCg6+g17wJJiCmB3JYgHuUldCWUIRFSXw==} + engines: {node: ^20.9.0} + cpu: [ia32] + os: [win32] + + '@img/sharp-win32-x64@0.35.3': + resolution: {integrity: sha512-D4y1vNeZrIIJCN+uHaWVtH86B+aCrdMYYjicy9pXHvbGZeGYLLSd3wdVuC37FxVXlU1ARsk84eKWfWMXGYEqvA==} + engines: {node: '>=20.9.0'} + cpu: [x64] + os: [win32] + '@internationalized/date@3.12.2': resolution: {integrity: sha512-FY1Y+H64NDs+HAF6omlnWxm3mEpfgaCSWtL5l551ZZfImA+kGjPFgrnJrGjH6lfmLL0g8Z/mBu1R3kufeCp6Jw==} @@ -4280,6 +4445,15 @@ packages: setprototypeof@1.2.0: resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + sharp@0.35.3: + resolution: {integrity: sha512-ej0zVHuZGHCiABXcNxeYhpRnPNPAcvbG8RMdBAhDAxLKkCRVSpK3Iyu7qbqw3JMzoj0REeM6f3tJLtVwl0023Q==} + engines: {node: '>=20.9.0'} + peerDependencies: + '@types/node': '*' + peerDependenciesMeta: + '@types/node': + optional: true + shebang-command@2.0.0: resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} engines: {node: '>=8'} @@ -5254,6 +5428,112 @@ snapshots: '@floating-ui/utils@0.2.11': {} + '@img/colour@1.1.0': {} + + '@img/sharp-darwin-arm64@0.35.3': + optionalDependencies: + '@img/sharp-libvips-darwin-arm64': 1.3.2 + optional: true + + '@img/sharp-darwin-x64@0.35.3': + optionalDependencies: + '@img/sharp-libvips-darwin-x64': 1.3.2 + optional: true + + '@img/sharp-freebsd-wasm32@0.35.3': + dependencies: + '@img/sharp-wasm32': 0.35.3 + optional: true + + '@img/sharp-libvips-darwin-arm64@1.3.2': + optional: true + + '@img/sharp-libvips-darwin-x64@1.3.2': + optional: true + + '@img/sharp-libvips-linux-arm64@1.3.2': + optional: true + + '@img/sharp-libvips-linux-arm@1.3.2': + optional: true + + '@img/sharp-libvips-linux-ppc64@1.3.2': + optional: true + + '@img/sharp-libvips-linux-riscv64@1.3.2': + optional: true + + '@img/sharp-libvips-linux-s390x@1.3.2': + optional: true + + '@img/sharp-libvips-linux-x64@1.3.2': + optional: true + + '@img/sharp-libvips-linuxmusl-arm64@1.3.2': + optional: true + + '@img/sharp-libvips-linuxmusl-x64@1.3.2': + optional: true + + '@img/sharp-linux-arm64@0.35.3': + optionalDependencies: + '@img/sharp-libvips-linux-arm64': 1.3.2 + optional: true + + '@img/sharp-linux-arm@0.35.3': + optionalDependencies: + '@img/sharp-libvips-linux-arm': 1.3.2 + optional: true + + '@img/sharp-linux-ppc64@0.35.3': + optionalDependencies: + '@img/sharp-libvips-linux-ppc64': 1.3.2 + optional: true + + '@img/sharp-linux-riscv64@0.35.3': + optionalDependencies: + '@img/sharp-libvips-linux-riscv64': 1.3.2 + optional: true + + '@img/sharp-linux-s390x@0.35.3': + optionalDependencies: + '@img/sharp-libvips-linux-s390x': 1.3.2 + optional: true + + '@img/sharp-linux-x64@0.35.3': + optionalDependencies: + '@img/sharp-libvips-linux-x64': 1.3.2 + optional: true + + '@img/sharp-linuxmusl-arm64@0.35.3': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-arm64': 1.3.2 + optional: true + + '@img/sharp-linuxmusl-x64@0.35.3': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-x64': 1.3.2 + optional: true + + '@img/sharp-wasm32@0.35.3': + dependencies: + '@emnapi/runtime': 1.11.2 + optional: true + + '@img/sharp-webcontainers-wasm32@0.35.3': + dependencies: + '@img/sharp-wasm32': 0.35.3 + optional: true + + '@img/sharp-win32-arm64@0.35.3': + optional: true + + '@img/sharp-win32-ia32@0.35.3': + optional: true + + '@img/sharp-win32-x64@0.35.3': + optional: true + '@internationalized/date@3.12.2': dependencies: '@swc/helpers': 0.5.23 @@ -8885,6 +9165,39 @@ snapshots: setprototypeof@1.2.0: {} + sharp@0.35.3(@types/node@26.1.1): + dependencies: + '@img/colour': 1.1.0 + detect-libc: 2.1.2 + semver: 7.8.5 + optionalDependencies: + '@img/sharp-darwin-arm64': 0.35.3 + '@img/sharp-darwin-x64': 0.35.3 + '@img/sharp-freebsd-wasm32': 0.35.3 + '@img/sharp-libvips-darwin-arm64': 1.3.2 + '@img/sharp-libvips-darwin-x64': 1.3.2 + '@img/sharp-libvips-linux-arm': 1.3.2 + '@img/sharp-libvips-linux-arm64': 1.3.2 + '@img/sharp-libvips-linux-ppc64': 1.3.2 + '@img/sharp-libvips-linux-riscv64': 1.3.2 + '@img/sharp-libvips-linux-s390x': 1.3.2 + '@img/sharp-libvips-linux-x64': 1.3.2 + '@img/sharp-libvips-linuxmusl-arm64': 1.3.2 + '@img/sharp-libvips-linuxmusl-x64': 1.3.2 + '@img/sharp-linux-arm': 0.35.3 + '@img/sharp-linux-arm64': 0.35.3 + '@img/sharp-linux-ppc64': 0.35.3 + '@img/sharp-linux-riscv64': 0.35.3 + '@img/sharp-linux-s390x': 0.35.3 + '@img/sharp-linux-x64': 0.35.3 + '@img/sharp-linuxmusl-arm64': 0.35.3 + '@img/sharp-linuxmusl-x64': 0.35.3 + '@img/sharp-webcontainers-wasm32': 0.35.3 + '@img/sharp-win32-arm64': 0.35.3 + '@img/sharp-win32-ia32': 0.35.3 + '@img/sharp-win32-x64': 0.35.3 + '@types/node': 26.1.1 + shebang-command@2.0.0: dependencies: shebang-regex: 3.0.0 diff --git a/public/cv/v1/glyphs/death-tag-name.json b/public/cv/v1/glyphs/death-tag-name.json new file mode 100644 index 000000000..92458381e --- /dev/null +++ b/public/cv/v1/glyphs/death-tag-name.json @@ -0,0 +1,12029 @@ +{ + "height": 42, + "glyphs": [ + { + "char": "ー", + "x": 2, + "y": 2, + "w": 33, + "h": 17, + "source": "fixture" + }, + { + "char": "F", + "x": 37, + "y": 2, + "w": 31, + "h": 45, + "source": "fixture" + }, + { + "char": "G", + "x": 70, + "y": 2, + "w": 42, + "h": 45, + "source": "fixture" + }, + { + "char": "x", + "x": 114, + "y": 2, + "w": 33, + "h": 36, + "source": "fixture" + }, + { + "char": "あ", + "x": 149, + "y": 2, + "w": 49, + "h": 50, + "source": "fixture" + }, + { + "char": "い", + "x": 200, + "y": 2, + "w": 48, + "h": 38, + "source": "fixture" + }, + { + "char": "か", + "x": 250, + "y": 2, + "w": 57, + "h": 49, + "source": "fixture" + }, + { + "char": "げ", + "x": 309, + "y": 2, + "w": 50, + "h": 66, + "source": "fixture" + }, + { + "char": "ご", + "x": 361, + "y": 2, + "w": 41, + "h": 68, + "source": "fixture" + }, + { + "char": "さ", + "x": 404, + "y": 2, + "w": 44, + "h": 50, + "source": "fixture" + }, + { + "char": "ス", + "x": 450, + "y": 2, + "w": 46, + "h": 46, + "source": "fixture" + }, + { + "char": "ぜ", + "x": 498, + "y": 2, + "w": 52, + "h": 66, + "source": "fixture" + }, + { + "char": "タ", + "x": 552, + "y": 2, + "w": 41, + "h": 47, + "source": "fixture" + }, + { + "char": "だ", + "x": 595, + "y": 2, + "w": 50, + "h": 55, + "source": "fixture" + }, + { + "char": "ド", + "x": 647, + "y": 2, + "w": 41, + "h": 53, + "source": "fixture" + }, + { + "char": "に", + "x": 690, + "y": 2, + "w": 51, + "h": 44, + "source": "fixture" + }, + { + "char": "パ", + "x": 743, + "y": 2, + "w": 52, + "h": 53, + "source": "fixture" + }, + { + "char": "パ", + "x": 797, + "y": 2, + "w": 54, + "h": 54, + "source": "fixture" + }, + { + "char": "め", + "x": 853, + "y": 2, + "w": 54, + "h": 42, + "source": "fixture" + }, + { + "char": "ん", + "x": 909, + "y": 2, + "w": 47, + "h": 49, + "source": "fixture" + }, + { + "char": "ん", + "x": 958, + "y": 2, + "w": 47, + "h": 49, + "source": "fixture" + }, + { + "char": "ん", + "x": 1007, + "y": 2, + "w": 47, + "h": 49, + "source": "fixture" + }, + { + "char": "ン", + "x": 1056, + "y": 2, + "w": 43, + "h": 45, + "source": "fixture" + }, + { + "char": "!", + "x": 1101, + "y": 2, + "w": 22, + "h": 43, + "source": "font" + }, + { + "char": "!", + "x": 1125, + "y": 2, + "w": 23, + "h": 44, + "source": "font" + }, + { + "char": "\"", + "x": 1150, + "y": 2, + "w": 20, + "h": 18, + "source": "font" + }, + { + "char": "\"", + "x": 1172, + "y": 2, + "w": 21, + "h": 18, + "source": "font" + }, + { + "char": "#", + "x": 1195, + "y": 2, + "w": 43, + "h": 42, + "source": "font" + }, + { + "char": "#", + "x": 1240, + "y": 2, + "w": 44, + "h": 42, + "source": "font" + }, + { + "char": "$", + "x": 1286, + "y": 2, + "w": 38, + "h": 51, + "source": "font" + }, + { + "char": "$", + "x": 1326, + "y": 2, + "w": 39, + "h": 51, + "source": "font" + }, + { + "char": "%", + "x": 1367, + "y": 2, + "w": 52, + "h": 42, + "source": "font" + }, + { + "char": "%", + "x": 1421, + "y": 2, + "w": 52, + "h": 43, + "source": "font" + }, + { + "char": "&", + "x": 1475, + "y": 2, + "w": 40, + "h": 46, + "source": "font" + }, + { + "char": "&", + "x": 1517, + "y": 2, + "w": 41, + "h": 47, + "source": "font" + }, + { + "char": "'", + "x": 1560, + "y": 2, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "'", + "x": 1573, + "y": 2, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "(", + "x": 2, + "y": 72, + "w": 25, + "h": 49, + "source": "font" + }, + { + "char": "(", + "x": 29, + "y": 72, + "w": 25, + "h": 50, + "source": "font" + }, + { + "char": ")", + "x": 56, + "y": 72, + "w": 25, + "h": 49, + "source": "font" + }, + { + "char": ")", + "x": 83, + "y": 72, + "w": 26, + "h": 50, + "source": "font" + }, + { + "char": "*", + "x": 111, + "y": 72, + "w": 27, + "h": 25, + "source": "font" + }, + { + "char": "*", + "x": 140, + "y": 72, + "w": 27, + "h": 26, + "source": "font" + }, + { + "char": "+", + "x": 169, + "y": 72, + "w": 35, + "h": 35, + "source": "font" + }, + { + "char": "+", + "x": 206, + "y": 72, + "w": 36, + "h": 35, + "source": "font" + }, + { + "char": ",", + "x": 244, + "y": 72, + "w": 15, + "h": 17, + "source": "font" + }, + { + "char": ",", + "x": 261, + "y": 72, + "w": 15, + "h": 17, + "source": "font" + }, + { + "char": "-", + "x": 278, + "y": 72, + "w": 22, + "h": 12, + "source": "font" + }, + { + "char": "-", + "x": 302, + "y": 72, + "w": 22, + "h": 12, + "source": "font" + }, + { + "char": ".", + "x": 326, + "y": 72, + "w": 13, + "h": 12, + "source": "font" + }, + { + "char": ".", + "x": 341, + "y": 72, + "w": 14, + "h": 13, + "source": "font" + }, + { + "char": "/", + "x": 357, + "y": 72, + "w": 24, + "h": 41, + "source": "font" + }, + { + "char": "/", + "x": 383, + "y": 72, + "w": 24, + "h": 42, + "source": "font" + }, + { + "char": "0", + "x": 409, + "y": 72, + "w": 36, + "h": 42, + "source": "font" + }, + { + "char": "0", + "x": 447, + "y": 72, + "w": 37, + "h": 43, + "source": "font" + }, + { + "char": "1", + "x": 486, + "y": 72, + "w": 23, + "h": 43, + "source": "font" + }, + { + "char": "1", + "x": 511, + "y": 72, + "w": 23, + "h": 43, + "source": "font" + }, + { + "char": "2", + "x": 536, + "y": 72, + "w": 35, + "h": 43, + "source": "font" + }, + { + "char": "2", + "x": 573, + "y": 72, + "w": 36, + "h": 43, + "source": "font" + }, + { + "char": "3", + "x": 611, + "y": 72, + "w": 33, + "h": 43, + "source": "font" + }, + { + "char": "3", + "x": 646, + "y": 72, + "w": 34, + "h": 43, + "source": "font" + }, + { + "char": "4", + "x": 682, + "y": 72, + "w": 36, + "h": 42, + "source": "font" + }, + { + "char": "4", + "x": 720, + "y": 72, + "w": 36, + "h": 43, + "source": "font" + }, + { + "char": "5", + "x": 758, + "y": 72, + "w": 35, + "h": 42, + "source": "font" + }, + { + "char": "5", + "x": 795, + "y": 72, + "w": 35, + "h": 44, + "source": "font" + }, + { + "char": "6", + "x": 832, + "y": 72, + "w": 38, + "h": 43, + "source": "font" + }, + { + "char": "6", + "x": 872, + "y": 72, + "w": 39, + "h": 44, + "source": "font" + }, + { + "char": "7", + "x": 913, + "y": 72, + "w": 34, + "h": 42, + "source": "font" + }, + { + "char": "7", + "x": 949, + "y": 72, + "w": 35, + "h": 43, + "source": "font" + }, + { + "char": "8", + "x": 986, + "y": 72, + "w": 34, + "h": 43, + "source": "font" + }, + { + "char": "8", + "x": 1022, + "y": 72, + "w": 35, + "h": 44, + "source": "font" + }, + { + "char": "9", + "x": 1059, + "y": 72, + "w": 38, + "h": 44, + "source": "font" + }, + { + "char": "9", + "x": 1099, + "y": 72, + "w": 39, + "h": 45, + "source": "font" + }, + { + "char": ":", + "x": 1140, + "y": 72, + "w": 13, + "h": 33, + "source": "font" + }, + { + "char": ":", + "x": 1155, + "y": 72, + "w": 14, + "h": 33, + "source": "font" + }, + { + "char": ";", + "x": 1171, + "y": 72, + "w": 14, + "h": 39, + "source": "font" + }, + { + "char": ";", + "x": 1187, + "y": 72, + "w": 14, + "h": 39, + "source": "font" + }, + { + "char": "<", + "x": 1203, + "y": 72, + "w": 26, + "h": 34, + "source": "font" + }, + { + "char": "<", + "x": 1231, + "y": 72, + "w": 26, + "h": 34, + "source": "font" + }, + { + "char": "=", + "x": 1259, + "y": 72, + "w": 32, + "h": 27, + "source": "font" + }, + { + "char": "=", + "x": 1293, + "y": 72, + "w": 32, + "h": 28, + "source": "font" + }, + { + "char": ">", + "x": 1327, + "y": 72, + "w": 26, + "h": 34, + "source": "font" + }, + { + "char": ">", + "x": 1355, + "y": 72, + "w": 26, + "h": 34, + "source": "font" + }, + { + "char": "?", + "x": 1383, + "y": 72, + "w": 36, + "h": 44, + "source": "font" + }, + { + "char": "?", + "x": 1421, + "y": 72, + "w": 37, + "h": 45, + "source": "font" + }, + { + "char": "@", + "x": 1460, + "y": 72, + "w": 42, + "h": 44, + "source": "font" + }, + { + "char": "@", + "x": 1504, + "y": 72, + "w": 43, + "h": 45, + "source": "font" + }, + { + "char": "A", + "x": 1549, + "y": 72, + "w": 39, + "h": 43, + "source": "font" + }, + { + "char": "A", + "x": 2, + "y": 124, + "w": 40, + "h": 43, + "source": "font" + }, + { + "char": "B", + "x": 44, + "y": 124, + "w": 34, + "h": 43, + "source": "font" + }, + { + "char": "B", + "x": 80, + "y": 124, + "w": 35, + "h": 44, + "source": "font" + }, + { + "char": "C", + "x": 117, + "y": 124, + "w": 37, + "h": 43, + "source": "font" + }, + { + "char": "C", + "x": 156, + "y": 124, + "w": 38, + "h": 44, + "source": "font" + }, + { + "char": "D", + "x": 196, + "y": 124, + "w": 36, + "h": 43, + "source": "font" + }, + { + "char": "D", + "x": 234, + "y": 124, + "w": 37, + "h": 43, + "source": "font" + }, + { + "char": "E", + "x": 273, + "y": 124, + "w": 28, + "h": 42, + "source": "font" + }, + { + "char": "E", + "x": 303, + "y": 124, + "w": 28, + "h": 43, + "source": "font" + }, + { + "char": "F", + "x": 333, + "y": 124, + "w": 29, + "h": 43, + "source": "font" + }, + { + "char": "F", + "x": 364, + "y": 124, + "w": 30, + "h": 43, + "source": "font" + }, + { + "char": "G", + "x": 396, + "y": 124, + "w": 39, + "h": 43, + "source": "font" + }, + { + "char": "G", + "x": 437, + "y": 124, + "w": 40, + "h": 43, + "source": "font" + }, + { + "char": "H", + "x": 479, + "y": 124, + "w": 36, + "h": 42, + "source": "font" + }, + { + "char": "H", + "x": 517, + "y": 124, + "w": 37, + "h": 43, + "source": "font" + }, + { + "char": "I", + "x": 556, + "y": 124, + "w": 15, + "h": 42, + "source": "font" + }, + { + "char": "I", + "x": 573, + "y": 124, + "w": 16, + "h": 43, + "source": "font" + }, + { + "char": "J", + "x": 591, + "y": 124, + "w": 35, + "h": 43, + "source": "font" + }, + { + "char": "J", + "x": 628, + "y": 124, + "w": 35, + "h": 44, + "source": "font" + }, + { + "char": "K", + "x": 665, + "y": 124, + "w": 39, + "h": 43, + "source": "font" + }, + { + "char": "K", + "x": 706, + "y": 124, + "w": 40, + "h": 43, + "source": "font" + }, + { + "char": "L", + "x": 748, + "y": 124, + "w": 26, + "h": 42, + "source": "font" + }, + { + "char": "L", + "x": 776, + "y": 124, + "w": 26, + "h": 43, + "source": "font" + }, + { + "char": "M", + "x": 804, + "y": 124, + "w": 50, + "h": 42, + "source": "font" + }, + { + "char": "M", + "x": 856, + "y": 124, + "w": 51, + "h": 43, + "source": "font" + }, + { + "char": "N", + "x": 909, + "y": 124, + "w": 40, + "h": 42, + "source": "font" + }, + { + "char": "N", + "x": 951, + "y": 124, + "w": 41, + "h": 43, + "source": "font" + }, + { + "char": "O", + "x": 994, + "y": 124, + "w": 36, + "h": 43, + "source": "font" + }, + { + "char": "O", + "x": 1032, + "y": 124, + "w": 37, + "h": 44, + "source": "font" + }, + { + "char": "P", + "x": 1071, + "y": 124, + "w": 36, + "h": 43, + "source": "font" + }, + { + "char": "P", + "x": 1109, + "y": 124, + "w": 36, + "h": 43, + "source": "font" + }, + { + "char": "Q", + "x": 1147, + "y": 124, + "w": 36, + "h": 46, + "source": "font" + }, + { + "char": "Q", + "x": 1185, + "y": 124, + "w": 37, + "h": 46, + "source": "font" + }, + { + "char": "R", + "x": 1224, + "y": 124, + "w": 36, + "h": 43, + "source": "font" + }, + { + "char": "R", + "x": 1262, + "y": 124, + "w": 36, + "h": 43, + "source": "font" + }, + { + "char": "S", + "x": 1300, + "y": 124, + "w": 32, + "h": 42, + "source": "font" + }, + { + "char": "S", + "x": 1334, + "y": 124, + "w": 33, + "h": 43, + "source": "font" + }, + { + "char": "T", + "x": 1369, + "y": 124, + "w": 37, + "h": 42, + "source": "font" + }, + { + "char": "T", + "x": 1408, + "y": 124, + "w": 38, + "h": 43, + "source": "font" + }, + { + "char": "U", + "x": 1448, + "y": 124, + "w": 37, + "h": 42, + "source": "font" + }, + { + "char": "U", + "x": 1487, + "y": 124, + "w": 38, + "h": 43, + "source": "font" + }, + { + "char": "V", + "x": 1527, + "y": 124, + "w": 40, + "h": 42, + "source": "font" + }, + { + "char": "V", + "x": 2, + "y": 172, + "w": 41, + "h": 43, + "source": "font" + }, + { + "char": "W", + "x": 45, + "y": 172, + "w": 55, + "h": 43, + "source": "font" + }, + { + "char": "W", + "x": 102, + "y": 172, + "w": 56, + "h": 43, + "source": "font" + }, + { + "char": "X", + "x": 160, + "y": 172, + "w": 41, + "h": 42, + "source": "font" + }, + { + "char": "X", + "x": 203, + "y": 172, + "w": 42, + "h": 43, + "source": "font" + }, + { + "char": "Y", + "x": 247, + "y": 172, + "w": 37, + "h": 42, + "source": "font" + }, + { + "char": "Y", + "x": 286, + "y": 172, + "w": 38, + "h": 43, + "source": "font" + }, + { + "char": "Z", + "x": 326, + "y": 172, + "w": 35, + "h": 42, + "source": "font" + }, + { + "char": "Z", + "x": 363, + "y": 172, + "w": 35, + "h": 43, + "source": "font" + }, + { + "char": "[", + "x": 400, + "y": 172, + "w": 21, + "h": 50, + "source": "font" + }, + { + "char": "[", + "x": 423, + "y": 172, + "w": 21, + "h": 51, + "source": "font" + }, + { + "char": "\\", + "x": 446, + "y": 172, + "w": 24, + "h": 42, + "source": "font" + }, + { + "char": "\\", + "x": 472, + "y": 172, + "w": 24, + "h": 43, + "source": "font" + }, + { + "char": "]", + "x": 498, + "y": 172, + "w": 20, + "h": 50, + "source": "font" + }, + { + "char": "]", + "x": 520, + "y": 172, + "w": 21, + "h": 51, + "source": "font" + }, + { + "char": "^", + "x": 543, + "y": 172, + "w": 33, + "h": 25, + "source": "font" + }, + { + "char": "^", + "x": 578, + "y": 172, + "w": 34, + "h": 26, + "source": "font" + }, + { + "char": "_", + "x": 614, + "y": 172, + "w": 25, + "h": 12, + "source": "font" + }, + { + "char": "_", + "x": 641, + "y": 172, + "w": 26, + "h": 12, + "source": "font" + }, + { + "char": "`", + "x": 669, + "y": 172, + "w": 18, + "h": 15, + "source": "font" + }, + { + "char": "`", + "x": 689, + "y": 172, + "w": 19, + "h": 15, + "source": "font" + }, + { + "char": "a", + "x": 710, + "y": 172, + "w": 33, + "h": 34, + "source": "font" + }, + { + "char": "a", + "x": 745, + "y": 172, + "w": 34, + "h": 34, + "source": "font" + }, + { + "char": "b", + "x": 781, + "y": 172, + "w": 34, + "h": 43, + "source": "font" + }, + { + "char": "b", + "x": 817, + "y": 172, + "w": 34, + "h": 44, + "source": "font" + }, + { + "char": "c", + "x": 853, + "y": 172, + "w": 31, + "h": 35, + "source": "font" + }, + { + "char": "c", + "x": 886, + "y": 172, + "w": 32, + "h": 35, + "source": "font" + }, + { + "char": "d", + "x": 920, + "y": 172, + "w": 34, + "h": 43, + "source": "font" + }, + { + "char": "d", + "x": 956, + "y": 172, + "w": 35, + "h": 44, + "source": "font" + }, + { + "char": "e", + "x": 993, + "y": 172, + "w": 35, + "h": 34, + "source": "font" + }, + { + "char": "e", + "x": 1030, + "y": 172, + "w": 36, + "h": 35, + "source": "font" + }, + { + "char": "f", + "x": 1068, + "y": 172, + "w": 24, + "h": 43, + "source": "font" + }, + { + "char": "f", + "x": 1094, + "y": 172, + "w": 25, + "h": 43, + "source": "font" + }, + { + "char": "g", + "x": 1121, + "y": 172, + "w": 36, + "h": 43, + "source": "font" + }, + { + "char": "g", + "x": 1159, + "y": 172, + "w": 36, + "h": 43, + "source": "font" + }, + { + "char": "h", + "x": 1197, + "y": 172, + "w": 35, + "h": 43, + "source": "font" + }, + { + "char": "h", + "x": 1234, + "y": 172, + "w": 36, + "h": 44, + "source": "font" + }, + { + "char": "i", + "x": 1272, + "y": 172, + "w": 17, + "h": 43, + "source": "font" + }, + { + "char": "i", + "x": 1291, + "y": 172, + "w": 17, + "h": 43, + "source": "font" + }, + { + "char": "j", + "x": 1310, + "y": 172, + "w": 24, + "h": 52, + "source": "font" + }, + { + "char": "j", + "x": 1336, + "y": 172, + "w": 25, + "h": 52, + "source": "font" + }, + { + "char": "k", + "x": 1363, + "y": 172, + "w": 34, + "h": 43, + "source": "font" + }, + { + "char": "k", + "x": 1399, + "y": 172, + "w": 35, + "h": 44, + "source": "font" + }, + { + "char": "l", + "x": 1436, + "y": 172, + "w": 17, + "h": 43, + "source": "font" + }, + { + "char": "l", + "x": 1455, + "y": 172, + "w": 17, + "h": 44, + "source": "font" + }, + { + "char": "m", + "x": 1474, + "y": 172, + "w": 50, + "h": 34, + "source": "font" + }, + { + "char": "m", + "x": 1526, + "y": 172, + "w": 51, + "h": 35, + "source": "font" + }, + { + "char": "n", + "x": 2, + "y": 226, + "w": 36, + "h": 35, + "source": "font" + }, + { + "char": "n", + "x": 40, + "y": 226, + "w": 36, + "h": 35, + "source": "font" + }, + { + "char": "o", + "x": 78, + "y": 226, + "w": 34, + "h": 35, + "source": "font" + }, + { + "char": "o", + "x": 114, + "y": 226, + "w": 34, + "h": 35, + "source": "font" + }, + { + "char": "p", + "x": 150, + "y": 226, + "w": 34, + "h": 42, + "source": "font" + }, + { + "char": "p", + "x": 186, + "y": 226, + "w": 35, + "h": 43, + "source": "font" + }, + { + "char": "q", + "x": 223, + "y": 226, + "w": 35, + "h": 42, + "source": "font" + }, + { + "char": "q", + "x": 260, + "y": 226, + "w": 35, + "h": 44, + "source": "font" + }, + { + "char": "r", + "x": 297, + "y": 226, + "w": 25, + "h": 34, + "source": "font" + }, + { + "char": "r", + "x": 324, + "y": 226, + "w": 26, + "h": 34, + "source": "font" + }, + { + "char": "s", + "x": 352, + "y": 226, + "w": 29, + "h": 34, + "source": "font" + }, + { + "char": "s", + "x": 383, + "y": 226, + "w": 30, + "h": 35, + "source": "font" + }, + { + "char": "t", + "x": 415, + "y": 226, + "w": 29, + "h": 38, + "source": "font" + }, + { + "char": "t", + "x": 446, + "y": 226, + "w": 30, + "h": 39, + "source": "font" + }, + { + "char": "u", + "x": 478, + "y": 226, + "w": 35, + "h": 34, + "source": "font" + }, + { + "char": "u", + "x": 515, + "y": 226, + "w": 36, + "h": 35, + "source": "font" + }, + { + "char": "v", + "x": 553, + "y": 226, + "w": 34, + "h": 34, + "source": "font" + }, + { + "char": "v", + "x": 589, + "y": 226, + "w": 35, + "h": 34, + "source": "font" + }, + { + "char": "w", + "x": 626, + "y": 226, + "w": 43, + "h": 34, + "source": "font" + }, + { + "char": "w", + "x": 671, + "y": 226, + "w": 44, + "h": 34, + "source": "font" + }, + { + "char": "x", + "x": 717, + "y": 226, + "w": 35, + "h": 34, + "source": "font" + }, + { + "char": "x", + "x": 754, + "y": 226, + "w": 35, + "h": 34, + "source": "font" + }, + { + "char": "y", + "x": 791, + "y": 226, + "w": 37, + "h": 42, + "source": "font" + }, + { + "char": "y", + "x": 830, + "y": 226, + "w": 39, + "h": 43, + "source": "font" + }, + { + "char": "z", + "x": 871, + "y": 226, + "w": 27, + "h": 34, + "source": "font" + }, + { + "char": "z", + "x": 900, + "y": 226, + "w": 28, + "h": 34, + "source": "font" + }, + { + "char": "{", + "x": 930, + "y": 226, + "w": 21, + "h": 50, + "source": "font" + }, + { + "char": "{", + "x": 953, + "y": 226, + "w": 21, + "h": 51, + "source": "font" + }, + { + "char": "|", + "x": 976, + "y": 226, + "w": 12, + "h": 42, + "source": "font" + }, + { + "char": "|", + "x": 990, + "y": 226, + "w": 12, + "h": 42, + "source": "font" + }, + { + "char": "}", + "x": 1004, + "y": 226, + "w": 21, + "h": 49, + "source": "font" + }, + { + "char": "}", + "x": 1027, + "y": 226, + "w": 21, + "h": 51, + "source": "font" + }, + { + "char": "~", + "x": 1050, + "y": 226, + "w": 21, + "h": 12, + "source": "font" + }, + { + "char": "~", + "x": 1073, + "y": 226, + "w": 21, + "h": 12, + "source": "font" + }, + { + "char": "¡", + "x": 1096, + "y": 226, + "w": 23, + "h": 43, + "source": "font" + }, + { + "char": "¡", + "x": 1121, + "y": 226, + "w": 22, + "h": 44, + "source": "font" + }, + { + "char": "¢", + "x": 1145, + "y": 226, + "w": 32, + "h": 42, + "source": "font" + }, + { + "char": "¢", + "x": 1179, + "y": 226, + "w": 33, + "h": 42, + "source": "font" + }, + { + "char": "£", + "x": 1214, + "y": 226, + "w": 30, + "h": 43, + "source": "font" + }, + { + "char": "£", + "x": 1246, + "y": 226, + "w": 31, + "h": 45, + "source": "font" + }, + { + "char": "¤", + "x": 1279, + "y": 226, + "w": 31, + "h": 31, + "source": "font" + }, + { + "char": "¤", + "x": 1312, + "y": 226, + "w": 31, + "h": 30, + "source": "font" + }, + { + "char": "¥", + "x": 1345, + "y": 226, + "w": 37, + "h": 42, + "source": "font" + }, + { + "char": "¥", + "x": 1384, + "y": 226, + "w": 38, + "h": 43, + "source": "font" + }, + { + "char": "¦", + "x": 1424, + "y": 226, + "w": 12, + "h": 42, + "source": "font" + }, + { + "char": "¦", + "x": 1438, + "y": 226, + "w": 12, + "h": 43, + "source": "font" + }, + { + "char": "§", + "x": 1452, + "y": 226, + "w": 35, + "h": 44, + "source": "font" + }, + { + "char": "§", + "x": 1489, + "y": 226, + "w": 35, + "h": 45, + "source": "font" + }, + { + "char": "¨", + "x": 1526, + "y": 226, + "w": 24, + "h": 10, + "source": "font" + }, + { + "char": "¨", + "x": 1552, + "y": 226, + "w": 24, + "h": 11, + "source": "font" + }, + { + "char": "©", + "x": 2, + "y": 279, + "w": 41, + "h": 41, + "source": "font" + }, + { + "char": "©", + "x": 45, + "y": 279, + "w": 41, + "h": 41, + "source": "font" + }, + { + "char": "ª", + "x": 88, + "y": 279, + "w": 12, + "h": 12, + "source": "font" + }, + { + "char": "ª", + "x": 102, + "y": 279, + "w": 12, + "h": 13, + "source": "font" + }, + { + "char": "«", + "x": 116, + "y": 279, + "w": 38, + "h": 34, + "source": "font" + }, + { + "char": "«", + "x": 156, + "y": 279, + "w": 39, + "h": 34, + "source": "font" + }, + { + "char": "¬", + "x": 197, + "y": 279, + "w": 43, + "h": 21, + "source": "font" + }, + { + "char": "¬", + "x": 242, + "y": 279, + "w": 44, + "h": 22, + "source": "font" + }, + { + "char": "®", + "x": 288, + "y": 279, + "w": 41, + "h": 41, + "source": "font" + }, + { + "char": "®", + "x": 331, + "y": 279, + "w": 41, + "h": 42, + "source": "font" + }, + { + "char": "¯", + "x": 374, + "y": 279, + "w": 20, + "h": 9, + "source": "font" + }, + { + "char": "¯", + "x": 396, + "y": 279, + "w": 21, + "h": 10, + "source": "font" + }, + { + "char": "°", + "x": 419, + "y": 279, + "w": 14, + "h": 13, + "source": "font" + }, + { + "char": "°", + "x": 435, + "y": 279, + "w": 14, + "h": 13, + "source": "font" + }, + { + "char": "±", + "x": 451, + "y": 279, + "w": 35, + "h": 43, + "source": "font" + }, + { + "char": "±", + "x": 488, + "y": 279, + "w": 36, + "h": 44, + "source": "font" + }, + { + "char": "²", + "x": 526, + "y": 279, + "w": 16, + "h": 18, + "source": "font" + }, + { + "char": "²", + "x": 544, + "y": 279, + "w": 16, + "h": 19, + "source": "font" + }, + { + "char": "³", + "x": 562, + "y": 279, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "³", + "x": 578, + "y": 279, + "w": 14, + "h": 19, + "source": "font" + }, + { + "char": "´", + "x": 594, + "y": 279, + "w": 16, + "h": 13, + "source": "font" + }, + { + "char": "´", + "x": 612, + "y": 279, + "w": 16, + "h": 14, + "source": "font" + }, + { + "char": "µ", + "x": 630, + "y": 279, + "w": 37, + "h": 43, + "source": "font" + }, + { + "char": "µ", + "x": 669, + "y": 279, + "w": 38, + "h": 44, + "source": "font" + }, + { + "char": "¶", + "x": 709, + "y": 279, + "w": 36, + "h": 43, + "source": "font" + }, + { + "char": "¶", + "x": 747, + "y": 279, + "w": 37, + "h": 44, + "source": "font" + }, + { + "char": "·", + "x": 786, + "y": 279, + "w": 15, + "h": 15, + "source": "font" + }, + { + "char": "·", + "x": 803, + "y": 279, + "w": 16, + "h": 16, + "source": "font" + }, + { + "char": "¸", + "x": 821, + "y": 279, + "w": 14, + "h": 14, + "source": "font" + }, + { + "char": "¸", + "x": 837, + "y": 279, + "w": 13, + "h": 14, + "source": "font" + }, + { + "char": "¹", + "x": 852, + "y": 279, + "w": 9, + "h": 18, + "source": "font" + }, + { + "char": "¹", + "x": 863, + "y": 279, + "w": 9, + "h": 19, + "source": "font" + }, + { + "char": "º", + "x": 874, + "y": 279, + "w": 17, + "h": 20, + "source": "font" + }, + { + "char": "º", + "x": 893, + "y": 279, + "w": 17, + "h": 20, + "source": "font" + }, + { + "char": "»", + "x": 912, + "y": 279, + "w": 38, + "h": 34, + "source": "font" + }, + { + "char": "»", + "x": 952, + "y": 279, + "w": 39, + "h": 34, + "source": "font" + }, + { + "char": "¼", + "x": 993, + "y": 279, + "w": 43, + "h": 42, + "source": "font" + }, + { + "char": "¼", + "x": 1038, + "y": 279, + "w": 44, + "h": 43, + "source": "font" + }, + { + "char": "½", + "x": 1084, + "y": 279, + "w": 45, + "h": 42, + "source": "font" + }, + { + "char": "½", + "x": 1131, + "y": 279, + "w": 46, + "h": 43, + "source": "font" + }, + { + "char": "¾", + "x": 1179, + "y": 279, + "w": 50, + "h": 42, + "source": "font" + }, + { + "char": "¾", + "x": 1231, + "y": 279, + "w": 50, + "h": 43, + "source": "font" + }, + { + "char": "¿", + "x": 1283, + "y": 279, + "w": 37, + "h": 44, + "source": "font" + }, + { + "char": "¿", + "x": 1322, + "y": 279, + "w": 38, + "h": 45, + "source": "font" + }, + { + "char": "À", + "x": 1362, + "y": 279, + "w": 39, + "h": 57, + "source": "font" + }, + { + "char": "À", + "x": 1403, + "y": 279, + "w": 40, + "h": 58, + "source": "font" + }, + { + "char": "Á", + "x": 1445, + "y": 279, + "w": 40, + "h": 57, + "source": "font" + }, + { + "char": "Á", + "x": 1487, + "y": 279, + "w": 40, + "h": 58, + "source": "font" + }, + { + "char": "Â", + "x": 1529, + "y": 279, + "w": 40, + "h": 58, + "source": "font" + }, + { + "char": "Â", + "x": 2, + "y": 339, + "w": 41, + "h": 59, + "source": "font" + }, + { + "char": "Ã", + "x": 45, + "y": 339, + "w": 39, + "h": 55, + "source": "font" + }, + { + "char": "Ã", + "x": 86, + "y": 339, + "w": 40, + "h": 56, + "source": "font" + }, + { + "char": "Ä", + "x": 128, + "y": 339, + "w": 40, + "h": 54, + "source": "font" + }, + { + "char": "Ä", + "x": 170, + "y": 339, + "w": 40, + "h": 55, + "source": "font" + }, + { + "char": "Å", + "x": 212, + "y": 339, + "w": 39, + "h": 57, + "source": "font" + }, + { + "char": "Å", + "x": 253, + "y": 339, + "w": 40, + "h": 58, + "source": "font" + }, + { + "char": "Æ", + "x": 295, + "y": 339, + "w": 45, + "h": 43, + "source": "font" + }, + { + "char": "Æ", + "x": 342, + "y": 339, + "w": 46, + "h": 44, + "source": "font" + }, + { + "char": "Ç", + "x": 390, + "y": 339, + "w": 37, + "h": 55, + "source": "font" + }, + { + "char": "Ç", + "x": 429, + "y": 339, + "w": 38, + "h": 55, + "source": "font" + }, + { + "char": "È", + "x": 469, + "y": 339, + "w": 28, + "h": 56, + "source": "font" + }, + { + "char": "È", + "x": 499, + "y": 339, + "w": 28, + "h": 58, + "source": "font" + }, + { + "char": "É", + "x": 529, + "y": 339, + "w": 28, + "h": 57, + "source": "font" + }, + { + "char": "É", + "x": 559, + "y": 339, + "w": 29, + "h": 58, + "source": "font" + }, + { + "char": "Ê", + "x": 590, + "y": 339, + "w": 28, + "h": 58, + "source": "font" + }, + { + "char": "Ê", + "x": 620, + "y": 339, + "w": 29, + "h": 59, + "source": "font" + }, + { + "char": "Ë", + "x": 651, + "y": 339, + "w": 28, + "h": 54, + "source": "font" + }, + { + "char": "Ë", + "x": 681, + "y": 339, + "w": 28, + "h": 55, + "source": "font" + }, + { + "char": "Ì", + "x": 711, + "y": 339, + "w": 16, + "h": 57, + "source": "font" + }, + { + "char": "Ì", + "x": 729, + "y": 339, + "w": 16, + "h": 58, + "source": "font" + }, + { + "char": "Í", + "x": 747, + "y": 339, + "w": 16, + "h": 57, + "source": "font" + }, + { + "char": "Í", + "x": 765, + "y": 339, + "w": 16, + "h": 58, + "source": "font" + }, + { + "char": "Î", + "x": 783, + "y": 339, + "w": 20, + "h": 58, + "source": "font" + }, + { + "char": "Î", + "x": 805, + "y": 339, + "w": 20, + "h": 59, + "source": "font" + }, + { + "char": "Ï", + "x": 827, + "y": 339, + "w": 24, + "h": 55, + "source": "font" + }, + { + "char": "Ï", + "x": 853, + "y": 339, + "w": 24, + "h": 56, + "source": "font" + }, + { + "char": "Ð", + "x": 879, + "y": 339, + "w": 41, + "h": 43, + "source": "font" + }, + { + "char": "Ð", + "x": 922, + "y": 339, + "w": 42, + "h": 44, + "source": "font" + }, + { + "char": "Ñ", + "x": 966, + "y": 339, + "w": 39, + "h": 55, + "source": "font" + }, + { + "char": "Ñ", + "x": 1007, + "y": 339, + "w": 40, + "h": 56, + "source": "font" + }, + { + "char": "Ò", + "x": 1049, + "y": 339, + "w": 36, + "h": 57, + "source": "font" + }, + { + "char": "Ò", + "x": 1087, + "y": 339, + "w": 37, + "h": 58, + "source": "font" + }, + { + "char": "Ó", + "x": 1126, + "y": 339, + "w": 36, + "h": 57, + "source": "font" + }, + { + "char": "Ó", + "x": 1164, + "y": 339, + "w": 37, + "h": 58, + "source": "font" + }, + { + "char": "Ô", + "x": 1203, + "y": 339, + "w": 37, + "h": 58, + "source": "font" + }, + { + "char": "Ô", + "x": 1242, + "y": 339, + "w": 37, + "h": 59, + "source": "font" + }, + { + "char": "Õ", + "x": 1281, + "y": 339, + "w": 37, + "h": 55, + "source": "font" + }, + { + "char": "Õ", + "x": 1320, + "y": 339, + "w": 38, + "h": 56, + "source": "font" + }, + { + "char": "Ö", + "x": 1360, + "y": 339, + "w": 37, + "h": 54, + "source": "font" + }, + { + "char": "Ö", + "x": 1399, + "y": 339, + "w": 38, + "h": 55, + "source": "font" + }, + { + "char": "×", + "x": 1439, + "y": 339, + "w": 36, + "h": 40, + "source": "font" + }, + { + "char": "×", + "x": 1477, + "y": 339, + "w": 37, + "h": 41, + "source": "font" + }, + { + "char": "Ø", + "x": 1516, + "y": 339, + "w": 37, + "h": 46, + "source": "font" + }, + { + "char": "Ø", + "x": 1555, + "y": 339, + "w": 38, + "h": 47, + "source": "font" + }, + { + "char": "Ù", + "x": 2, + "y": 400, + "w": 37, + "h": 57, + "source": "font" + }, + { + "char": "Ù", + "x": 41, + "y": 400, + "w": 38, + "h": 58, + "source": "font" + }, + { + "char": "Ú", + "x": 81, + "y": 400, + "w": 38, + "h": 57, + "source": "font" + }, + { + "char": "Ú", + "x": 121, + "y": 400, + "w": 38, + "h": 58, + "source": "font" + }, + { + "char": "Û", + "x": 161, + "y": 400, + "w": 38, + "h": 58, + "source": "font" + }, + { + "char": "Û", + "x": 201, + "y": 400, + "w": 38, + "h": 59, + "source": "font" + }, + { + "char": "Ü", + "x": 241, + "y": 400, + "w": 37, + "h": 55, + "source": "font" + }, + { + "char": "Ü", + "x": 280, + "y": 400, + "w": 38, + "h": 56, + "source": "font" + }, + { + "char": "Ý", + "x": 320, + "y": 400, + "w": 37, + "h": 57, + "source": "font" + }, + { + "char": "Ý", + "x": 359, + "y": 400, + "w": 38, + "h": 58, + "source": "font" + }, + { + "char": "Þ", + "x": 399, + "y": 400, + "w": 36, + "h": 43, + "source": "font" + }, + { + "char": "Þ", + "x": 437, + "y": 400, + "w": 37, + "h": 44, + "source": "font" + }, + { + "char": "ß", + "x": 476, + "y": 400, + "w": 35, + "h": 45, + "source": "font" + }, + { + "char": "ß", + "x": 513, + "y": 400, + "w": 36, + "h": 45, + "source": "font" + }, + { + "char": "à", + "x": 551, + "y": 400, + "w": 34, + "h": 47, + "source": "font" + }, + { + "char": "à", + "x": 587, + "y": 400, + "w": 34, + "h": 48, + "source": "font" + }, + { + "char": "á", + "x": 623, + "y": 400, + "w": 34, + "h": 47, + "source": "font" + }, + { + "char": "á", + "x": 659, + "y": 400, + "w": 34, + "h": 48, + "source": "font" + }, + { + "char": "â", + "x": 695, + "y": 400, + "w": 34, + "h": 48, + "source": "font" + }, + { + "char": "â", + "x": 731, + "y": 400, + "w": 34, + "h": 49, + "source": "font" + }, + { + "char": "ã", + "x": 767, + "y": 400, + "w": 33, + "h": 45, + "source": "font" + }, + { + "char": "ã", + "x": 802, + "y": 400, + "w": 34, + "h": 46, + "source": "font" + }, + { + "char": "ä", + "x": 838, + "y": 400, + "w": 33, + "h": 45, + "source": "font" + }, + { + "char": "ä", + "x": 873, + "y": 400, + "w": 34, + "h": 45, + "source": "font" + }, + { + "char": "å", + "x": 909, + "y": 400, + "w": 34, + "h": 47, + "source": "font" + }, + { + "char": "å", + "x": 945, + "y": 400, + "w": 34, + "h": 48, + "source": "font" + }, + { + "char": "æ", + "x": 981, + "y": 400, + "w": 51, + "h": 35, + "source": "font" + }, + { + "char": "æ", + "x": 1034, + "y": 400, + "w": 52, + "h": 35, + "source": "font" + }, + { + "char": "ç", + "x": 1088, + "y": 400, + "w": 31, + "h": 47, + "source": "font" + }, + { + "char": "ç", + "x": 1121, + "y": 400, + "w": 32, + "h": 47, + "source": "font" + }, + { + "char": "è", + "x": 1155, + "y": 400, + "w": 35, + "h": 47, + "source": "font" + }, + { + "char": "è", + "x": 1192, + "y": 400, + "w": 36, + "h": 48, + "source": "font" + }, + { + "char": "é", + "x": 1230, + "y": 400, + "w": 35, + "h": 48, + "source": "font" + }, + { + "char": "é", + "x": 1267, + "y": 400, + "w": 35, + "h": 48, + "source": "font" + }, + { + "char": "ê", + "x": 1304, + "y": 400, + "w": 35, + "h": 48, + "source": "font" + }, + { + "char": "ê", + "x": 1341, + "y": 400, + "w": 36, + "h": 49, + "source": "font" + }, + { + "char": "ë", + "x": 1379, + "y": 400, + "w": 35, + "h": 45, + "source": "font" + }, + { + "char": "ë", + "x": 1416, + "y": 400, + "w": 35, + "h": 46, + "source": "font" + }, + { + "char": "ì", + "x": 1453, + "y": 400, + "w": 17, + "h": 47, + "source": "font" + }, + { + "char": "ì", + "x": 1472, + "y": 400, + "w": 17, + "h": 48, + "source": "font" + }, + { + "char": "í", + "x": 1491, + "y": 400, + "w": 17, + "h": 47, + "source": "font" + }, + { + "char": "í", + "x": 1510, + "y": 400, + "w": 17, + "h": 48, + "source": "font" + }, + { + "char": "î", + "x": 1529, + "y": 400, + "w": 21, + "h": 48, + "source": "font" + }, + { + "char": "î", + "x": 1552, + "y": 400, + "w": 21, + "h": 49, + "source": "font" + }, + { + "char": "ï", + "x": 2, + "y": 461, + "w": 24, + "h": 45, + "source": "font" + }, + { + "char": "ï", + "x": 28, + "y": 461, + "w": 24, + "h": 46, + "source": "font" + }, + { + "char": "ð", + "x": 54, + "y": 461, + "w": 34, + "h": 48, + "source": "font" + }, + { + "char": "ð", + "x": 90, + "y": 461, + "w": 35, + "h": 49, + "source": "font" + }, + { + "char": "ñ", + "x": 127, + "y": 461, + "w": 36, + "h": 46, + "source": "font" + }, + { + "char": "ñ", + "x": 165, + "y": 461, + "w": 37, + "h": 47, + "source": "font" + }, + { + "char": "ò", + "x": 204, + "y": 461, + "w": 34, + "h": 47, + "source": "font" + }, + { + "char": "ò", + "x": 240, + "y": 461, + "w": 34, + "h": 48, + "source": "font" + }, + { + "char": "ó", + "x": 276, + "y": 461, + "w": 34, + "h": 47, + "source": "font" + }, + { + "char": "ó", + "x": 312, + "y": 461, + "w": 34, + "h": 48, + "source": "font" + }, + { + "char": "ô", + "x": 348, + "y": 461, + "w": 33, + "h": 48, + "source": "font" + }, + { + "char": "ô", + "x": 383, + "y": 461, + "w": 34, + "h": 49, + "source": "font" + }, + { + "char": "õ", + "x": 419, + "y": 461, + "w": 34, + "h": 45, + "source": "font" + }, + { + "char": "õ", + "x": 455, + "y": 461, + "w": 34, + "h": 46, + "source": "font" + }, + { + "char": "ö", + "x": 491, + "y": 461, + "w": 34, + "h": 45, + "source": "font" + }, + { + "char": "ö", + "x": 527, + "y": 461, + "w": 34, + "h": 46, + "source": "font" + }, + { + "char": "÷", + "x": 563, + "y": 461, + "w": 38, + "h": 42, + "source": "font" + }, + { + "char": "÷", + "x": 603, + "y": 461, + "w": 39, + "h": 43, + "source": "font" + }, + { + "char": "ø", + "x": 644, + "y": 461, + "w": 34, + "h": 37, + "source": "font" + }, + { + "char": "ø", + "x": 680, + "y": 461, + "w": 35, + "h": 38, + "source": "font" + }, + { + "char": "ù", + "x": 717, + "y": 461, + "w": 36, + "h": 47, + "source": "font" + }, + { + "char": "ù", + "x": 755, + "y": 461, + "w": 37, + "h": 48, + "source": "font" + }, + { + "char": "ú", + "x": 794, + "y": 461, + "w": 35, + "h": 47, + "source": "font" + }, + { + "char": "ú", + "x": 831, + "y": 461, + "w": 36, + "h": 48, + "source": "font" + }, + { + "char": "û", + "x": 869, + "y": 461, + "w": 36, + "h": 48, + "source": "font" + }, + { + "char": "û", + "x": 907, + "y": 461, + "w": 37, + "h": 49, + "source": "font" + }, + { + "char": "ü", + "x": 946, + "y": 461, + "w": 36, + "h": 45, + "source": "font" + }, + { + "char": "ü", + "x": 984, + "y": 461, + "w": 36, + "h": 46, + "source": "font" + }, + { + "char": "ý", + "x": 1022, + "y": 461, + "w": 38, + "h": 56, + "source": "font" + }, + { + "char": "ý", + "x": 1062, + "y": 461, + "w": 38, + "h": 56, + "source": "font" + }, + { + "char": "þ", + "x": 1102, + "y": 461, + "w": 35, + "h": 51, + "source": "font" + }, + { + "char": "þ", + "x": 1139, + "y": 461, + "w": 36, + "h": 53, + "source": "font" + }, + { + "char": "ÿ", + "x": 1177, + "y": 461, + "w": 38, + "h": 53, + "source": "font" + }, + { + "char": "ÿ", + "x": 1217, + "y": 461, + "w": 38, + "h": 54, + "source": "font" + }, + { + "char": "ぁ", + "x": 1257, + "y": 461, + "w": 33, + "h": 33, + "source": "font" + }, + { + "char": "ぁ", + "x": 1292, + "y": 461, + "w": 33, + "h": 34, + "source": "font" + }, + { + "char": "あ", + "x": 1327, + "y": 461, + "w": 45, + "h": 46, + "source": "font" + }, + { + "char": "あ", + "x": 1374, + "y": 461, + "w": 46, + "h": 47, + "source": "font" + }, + { + "char": "ぃ", + "x": 1422, + "y": 461, + "w": 33, + "h": 27, + "source": "font" + }, + { + "char": "ぃ", + "x": 1457, + "y": 461, + "w": 34, + "h": 28, + "source": "font" + }, + { + "char": "い", + "x": 1493, + "y": 461, + "w": 45, + "h": 37, + "source": "font" + }, + { + "char": "い", + "x": 1540, + "y": 461, + "w": 46, + "h": 37, + "source": "font" + }, + { + "char": "ぅ", + "x": 2, + "y": 519, + "w": 24, + "h": 34, + "source": "font" + }, + { + "char": "ぅ", + "x": 28, + "y": 519, + "w": 24, + "h": 35, + "source": "font" + }, + { + "char": "う", + "x": 54, + "y": 519, + "w": 33, + "h": 47, + "source": "font" + }, + { + "char": "う", + "x": 89, + "y": 519, + "w": 33, + "h": 47, + "source": "font" + }, + { + "char": "ぇ", + "x": 124, + "y": 519, + "w": 30, + "h": 34, + "source": "font" + }, + { + "char": "ぇ", + "x": 156, + "y": 519, + "w": 30, + "h": 35, + "source": "font" + }, + { + "char": "え", + "x": 188, + "y": 519, + "w": 40, + "h": 47, + "source": "font" + }, + { + "char": "え", + "x": 230, + "y": 519, + "w": 41, + "h": 48, + "source": "font" + }, + { + "char": "ぉ", + "x": 273, + "y": 519, + "w": 34, + "h": 34, + "source": "font" + }, + { + "char": "ぉ", + "x": 309, + "y": 519, + "w": 35, + "h": 34, + "source": "font" + }, + { + "char": "お", + "x": 346, + "y": 519, + "w": 48, + "h": 46, + "source": "font" + }, + { + "char": "お", + "x": 396, + "y": 519, + "w": 48, + "h": 46, + "source": "font" + }, + { + "char": "か", + "x": 446, + "y": 519, + "w": 53, + "h": 46, + "source": "font" + }, + { + "char": "か", + "x": 501, + "y": 519, + "w": 54, + "h": 47, + "source": "font" + }, + { + "char": "が", + "x": 557, + "y": 519, + "w": 53, + "h": 58, + "source": "font" + }, + { + "char": "が", + "x": 612, + "y": 519, + "w": 54, + "h": 59, + "source": "font" + }, + { + "char": "き", + "x": 668, + "y": 519, + "w": 36, + "h": 45, + "source": "font" + }, + { + "char": "き", + "x": 706, + "y": 519, + "w": 36, + "h": 46, + "source": "font" + }, + { + "char": "ぎ", + "x": 744, + "y": 519, + "w": 37, + "h": 60, + "source": "font" + }, + { + "char": "ぎ", + "x": 783, + "y": 519, + "w": 37, + "h": 61, + "source": "font" + }, + { + "char": "く", + "x": 822, + "y": 519, + "w": 34, + "h": 46, + "source": "font" + }, + { + "char": "く", + "x": 858, + "y": 519, + "w": 35, + "h": 46, + "source": "font" + }, + { + "char": "ぐ", + "x": 895, + "y": 519, + "w": 40, + "h": 45, + "source": "font" + }, + { + "char": "ぐ", + "x": 937, + "y": 519, + "w": 41, + "h": 46, + "source": "font" + }, + { + "char": "け", + "x": 980, + "y": 519, + "w": 46, + "h": 46, + "source": "font" + }, + { + "char": "け", + "x": 1028, + "y": 519, + "w": 47, + "h": 46, + "source": "font" + }, + { + "char": "げ", + "x": 1077, + "y": 519, + "w": 46, + "h": 61, + "source": "font" + }, + { + "char": "げ", + "x": 1125, + "y": 519, + "w": 47, + "h": 62, + "source": "font" + }, + { + "char": "こ", + "x": 1174, + "y": 519, + "w": 34, + "h": 47, + "source": "font" + }, + { + "char": "こ", + "x": 1210, + "y": 519, + "w": 35, + "h": 47, + "source": "font" + }, + { + "char": "ご", + "x": 1247, + "y": 519, + "w": 37, + "h": 62, + "source": "font" + }, + { + "char": "ご", + "x": 1286, + "y": 519, + "w": 37, + "h": 63, + "source": "font" + }, + { + "char": "さ", + "x": 1325, + "y": 519, + "w": 41, + "h": 47, + "source": "font" + }, + { + "char": "さ", + "x": 1368, + "y": 519, + "w": 42, + "h": 48, + "source": "font" + }, + { + "char": "ざ", + "x": 1412, + "y": 519, + "w": 42, + "h": 62, + "source": "font" + }, + { + "char": "ざ", + "x": 1456, + "y": 519, + "w": 43, + "h": 63, + "source": "font" + }, + { + "char": "し", + "x": 1501, + "y": 519, + "w": 37, + "h": 46, + "source": "font" + }, + { + "char": "し", + "x": 1540, + "y": 519, + "w": 37, + "h": 47, + "source": "font" + }, + { + "char": "じ", + "x": 2, + "y": 584, + "w": 38, + "h": 52, + "source": "font" + }, + { + "char": "じ", + "x": 42, + "y": 584, + "w": 39, + "h": 53, + "source": "font" + }, + { + "char": "す", + "x": 83, + "y": 584, + "w": 40, + "h": 46, + "source": "font" + }, + { + "char": "す", + "x": 125, + "y": 584, + "w": 41, + "h": 47, + "source": "font" + }, + { + "char": "ず", + "x": 168, + "y": 584, + "w": 41, + "h": 61, + "source": "font" + }, + { + "char": "ず", + "x": 211, + "y": 584, + "w": 42, + "h": 62, + "source": "font" + }, + { + "char": "せ", + "x": 255, + "y": 584, + "w": 48, + "h": 44, + "source": "font" + }, + { + "char": "せ", + "x": 305, + "y": 584, + "w": 47, + "h": 45, + "source": "font" + }, + { + "char": "ぜ", + "x": 354, + "y": 584, + "w": 48, + "h": 60, + "source": "font" + }, + { + "char": "ぜ", + "x": 404, + "y": 584, + "w": 47, + "h": 61, + "source": "font" + }, + { + "char": "そ", + "x": 453, + "y": 584, + "w": 39, + "h": 46, + "source": "font" + }, + { + "char": "そ", + "x": 494, + "y": 584, + "w": 40, + "h": 47, + "source": "font" + }, + { + "char": "ぞ", + "x": 536, + "y": 584, + "w": 40, + "h": 61, + "source": "font" + }, + { + "char": "ぞ", + "x": 578, + "y": 584, + "w": 41, + "h": 62, + "source": "font" + }, + { + "char": "た", + "x": 621, + "y": 584, + "w": 46, + "h": 45, + "source": "font" + }, + { + "char": "た", + "x": 669, + "y": 584, + "w": 47, + "h": 46, + "source": "font" + }, + { + "char": "だ", + "x": 718, + "y": 584, + "w": 47, + "h": 52, + "source": "font" + }, + { + "char": "だ", + "x": 767, + "y": 584, + "w": 48, + "h": 52, + "source": "font" + }, + { + "char": "ち", + "x": 817, + "y": 584, + "w": 39, + "h": 46, + "source": "font" + }, + { + "char": "ち", + "x": 858, + "y": 584, + "w": 39, + "h": 47, + "source": "font" + }, + { + "char": "ぢ", + "x": 899, + "y": 584, + "w": 43, + "h": 56, + "source": "font" + }, + { + "char": "ぢ", + "x": 944, + "y": 584, + "w": 44, + "h": 57, + "source": "font" + }, + { + "char": "っ", + "x": 990, + "y": 584, + "w": 33, + "h": 30, + "source": "font" + }, + { + "char": "っ", + "x": 1025, + "y": 584, + "w": 34, + "h": 31, + "source": "font" + }, + { + "char": "つ", + "x": 1061, + "y": 584, + "w": 40, + "h": 36, + "source": "font" + }, + { + "char": "つ", + "x": 1103, + "y": 584, + "w": 40, + "h": 36, + "source": "font" + }, + { + "char": "づ", + "x": 1145, + "y": 584, + "w": 43, + "h": 51, + "source": "font" + }, + { + "char": "づ", + "x": 1190, + "y": 584, + "w": 44, + "h": 52, + "source": "font" + }, + { + "char": "て", + "x": 1236, + "y": 584, + "w": 41, + "h": 45, + "source": "font" + }, + { + "char": "て", + "x": 1279, + "y": 584, + "w": 42, + "h": 46, + "source": "font" + }, + { + "char": "で", + "x": 1323, + "y": 584, + "w": 41, + "h": 61, + "source": "font" + }, + { + "char": "で", + "x": 1366, + "y": 584, + "w": 42, + "h": 62, + "source": "font" + }, + { + "char": "と", + "x": 1410, + "y": 584, + "w": 36, + "h": 46, + "source": "font" + }, + { + "char": "と", + "x": 1448, + "y": 584, + "w": 36, + "h": 47, + "source": "font" + }, + { + "char": "ど", + "x": 1486, + "y": 584, + "w": 38, + "h": 56, + "source": "font" + }, + { + "char": "ど", + "x": 1526, + "y": 584, + "w": 38, + "h": 57, + "source": "font" + }, + { + "char": "な", + "x": 2, + "y": 648, + "w": 47, + "h": 45, + "source": "font" + }, + { + "char": "な", + "x": 51, + "y": 648, + "w": 47, + "h": 46, + "source": "font" + }, + { + "char": "に", + "x": 100, + "y": 648, + "w": 46, + "h": 40, + "source": "font" + }, + { + "char": "に", + "x": 148, + "y": 648, + "w": 47, + "h": 41, + "source": "font" + }, + { + "char": "ぬ", + "x": 197, + "y": 648, + "w": 53, + "h": 41, + "source": "font" + }, + { + "char": "ぬ", + "x": 252, + "y": 648, + "w": 54, + "h": 42, + "source": "font" + }, + { + "char": "ね", + "x": 308, + "y": 648, + "w": 50, + "h": 46, + "source": "font" + }, + { + "char": "ね", + "x": 360, + "y": 648, + "w": 51, + "h": 47, + "source": "font" + }, + { + "char": "の", + "x": 413, + "y": 648, + "w": 47, + "h": 38, + "source": "font" + }, + { + "char": "の", + "x": 462, + "y": 648, + "w": 48, + "h": 38, + "source": "font" + }, + { + "char": "は", + "x": 512, + "y": 648, + "w": 46, + "h": 45, + "source": "font" + }, + { + "char": "は", + "x": 560, + "y": 648, + "w": 46, + "h": 46, + "source": "font" + }, + { + "char": "ば", + "x": 608, + "y": 648, + "w": 48, + "h": 61, + "source": "font" + }, + { + "char": "ば", + "x": 658, + "y": 648, + "w": 49, + "h": 62, + "source": "font" + }, + { + "char": "ぱ", + "x": 709, + "y": 648, + "w": 48, + "h": 61, + "source": "font" + }, + { + "char": "ぱ", + "x": 759, + "y": 648, + "w": 49, + "h": 62, + "source": "font" + }, + { + "char": "ひ", + "x": 810, + "y": 648, + "w": 41, + "h": 41, + "source": "font" + }, + { + "char": "ひ", + "x": 853, + "y": 648, + "w": 42, + "h": 41, + "source": "font" + }, + { + "char": "び", + "x": 897, + "y": 648, + "w": 44, + "h": 54, + "source": "font" + }, + { + "char": "び", + "x": 943, + "y": 648, + "w": 45, + "h": 55, + "source": "font" + }, + { + "char": "ぴ", + "x": 990, + "y": 648, + "w": 43, + "h": 54, + "source": "font" + }, + { + "char": "ぴ", + "x": 1035, + "y": 648, + "w": 44, + "h": 55, + "source": "font" + }, + { + "char": "ふ", + "x": 1081, + "y": 648, + "w": 56, + "h": 45, + "source": "font" + }, + { + "char": "ふ", + "x": 1139, + "y": 648, + "w": 57, + "h": 46, + "source": "font" + }, + { + "char": "ぶ", + "x": 1198, + "y": 648, + "w": 58, + "h": 51, + "source": "font" + }, + { + "char": "ぶ", + "x": 1258, + "y": 648, + "w": 59, + "h": 52, + "source": "font" + }, + { + "char": "ぷ", + "x": 1319, + "y": 648, + "w": 56, + "h": 55, + "source": "font" + }, + { + "char": "ぷ", + "x": 1377, + "y": 648, + "w": 57, + "h": 56, + "source": "font" + }, + { + "char": "へ", + "x": 1436, + "y": 648, + "w": 51, + "h": 38, + "source": "font" + }, + { + "char": "へ", + "x": 1489, + "y": 648, + "w": 52, + "h": 39, + "source": "font" + }, + { + "char": "べ", + "x": 1543, + "y": 648, + "w": 52, + "h": 41, + "source": "font" + }, + { + "char": "べ", + "x": 2, + "y": 712, + "w": 53, + "h": 41, + "source": "font" + }, + { + "char": "ぺ", + "x": 57, + "y": 712, + "w": 51, + "h": 39, + "source": "font" + }, + { + "char": "ぺ", + "x": 110, + "y": 712, + "w": 52, + "h": 39, + "source": "font" + }, + { + "char": "ほ", + "x": 164, + "y": 712, + "w": 46, + "h": 45, + "source": "font" + }, + { + "char": "ほ", + "x": 212, + "y": 712, + "w": 47, + "h": 46, + "source": "font" + }, + { + "char": "ぼ", + "x": 261, + "y": 712, + "w": 46, + "h": 61, + "source": "font" + }, + { + "char": "ぼ", + "x": 309, + "y": 712, + "w": 47, + "h": 62, + "source": "font" + }, + { + "char": "ぽ", + "x": 358, + "y": 712, + "w": 50, + "h": 60, + "source": "font" + }, + { + "char": "ぽ", + "x": 410, + "y": 712, + "w": 50, + "h": 61, + "source": "font" + }, + { + "char": "ま", + "x": 462, + "y": 712, + "w": 35, + "h": 46, + "source": "font" + }, + { + "char": "ま", + "x": 499, + "y": 712, + "w": 35, + "h": 47, + "source": "font" + }, + { + "char": "み", + "x": 536, + "y": 712, + "w": 48, + "h": 43, + "source": "font" + }, + { + "char": "み", + "x": 586, + "y": 712, + "w": 48, + "h": 44, + "source": "font" + }, + { + "char": "む", + "x": 636, + "y": 712, + "w": 51, + "h": 45, + "source": "font" + }, + { + "char": "む", + "x": 689, + "y": 712, + "w": 52, + "h": 46, + "source": "font" + }, + { + "char": "め", + "x": 743, + "y": 712, + "w": 51, + "h": 39, + "source": "font" + }, + { + "char": "め", + "x": 796, + "y": 712, + "w": 51, + "h": 40, + "source": "font" + }, + { + "char": "も", + "x": 849, + "y": 712, + "w": 38, + "h": 47, + "source": "font" + }, + { + "char": "も", + "x": 889, + "y": 712, + "w": 39, + "h": 48, + "source": "font" + }, + { + "char": "ゃ", + "x": 930, + "y": 712, + "w": 34, + "h": 33, + "source": "font" + }, + { + "char": "ゃ", + "x": 966, + "y": 712, + "w": 35, + "h": 34, + "source": "font" + }, + { + "char": "や", + "x": 1003, + "y": 712, + "w": 44, + "h": 46, + "source": "font" + }, + { + "char": "や", + "x": 1049, + "y": 712, + "w": 45, + "h": 46, + "source": "font" + }, + { + "char": "ゅ", + "x": 1096, + "y": 712, + "w": 36, + "h": 33, + "source": "font" + }, + { + "char": "ゅ", + "x": 1134, + "y": 712, + "w": 37, + "h": 34, + "source": "font" + }, + { + "char": "ゆ", + "x": 1173, + "y": 712, + "w": 50, + "h": 46, + "source": "font" + }, + { + "char": "ゆ", + "x": 1225, + "y": 712, + "w": 51, + "h": 46, + "source": "font" + }, + { + "char": "ょ", + "x": 1278, + "y": 712, + "w": 29, + "h": 35, + "source": "font" + }, + { + "char": "ょ", + "x": 1309, + "y": 712, + "w": 29, + "h": 36, + "source": "font" + }, + { + "char": "よ", + "x": 1340, + "y": 712, + "w": 36, + "h": 45, + "source": "font" + }, + { + "char": "よ", + "x": 1378, + "y": 712, + "w": 37, + "h": 46, + "source": "font" + }, + { + "char": "ら", + "x": 1417, + "y": 712, + "w": 37, + "h": 46, + "source": "font" + }, + { + "char": "ら", + "x": 1456, + "y": 712, + "w": 38, + "h": 46, + "source": "font" + }, + { + "char": "り", + "x": 1496, + "y": 712, + "w": 38, + "h": 43, + "source": "font" + }, + { + "char": "り", + "x": 1536, + "y": 712, + "w": 39, + "h": 44, + "source": "font" + }, + { + "char": "る", + "x": 2, + "y": 776, + "w": 37, + "h": 46, + "source": "font" + }, + { + "char": "る", + "x": 41, + "y": 776, + "w": 38, + "h": 46, + "source": "font" + }, + { + "char": "れ", + "x": 81, + "y": 776, + "w": 47, + "h": 46, + "source": "font" + }, + { + "char": "れ", + "x": 130, + "y": 776, + "w": 48, + "h": 47, + "source": "font" + }, + { + "char": "ろ", + "x": 180, + "y": 776, + "w": 35, + "h": 45, + "source": "font" + }, + { + "char": "ろ", + "x": 217, + "y": 776, + "w": 35, + "h": 46, + "source": "font" + }, + { + "char": "ゎ", + "x": 254, + "y": 776, + "w": 35, + "h": 34, + "source": "font" + }, + { + "char": "ゎ", + "x": 291, + "y": 776, + "w": 35, + "h": 35, + "source": "font" + }, + { + "char": "わ", + "x": 328, + "y": 776, + "w": 47, + "h": 46, + "source": "font" + }, + { + "char": "わ", + "x": 377, + "y": 776, + "w": 48, + "h": 47, + "source": "font" + }, + { + "char": "を", + "x": 427, + "y": 776, + "w": 33, + "h": 47, + "source": "font" + }, + { + "char": "を", + "x": 462, + "y": 776, + "w": 34, + "h": 48, + "source": "font" + }, + { + "char": "ん", + "x": 498, + "y": 776, + "w": 44, + "h": 45, + "source": "font" + }, + { + "char": "ん", + "x": 544, + "y": 776, + "w": 45, + "h": 46, + "source": "font" + }, + { + "char": "ゔ", + "x": 591, + "y": 776, + "w": 33, + "h": 61, + "source": "font" + }, + { + "char": "ゔ", + "x": 626, + "y": 776, + "w": 34, + "h": 62, + "source": "font" + }, + { + "char": "ゕ", + "x": 662, + "y": 776, + "w": 37, + "h": 32, + "source": "font" + }, + { + "char": "ゕ", + "x": 701, + "y": 776, + "w": 38, + "h": 33, + "source": "font" + }, + { + "char": "ゖ", + "x": 741, + "y": 776, + "w": 34, + "h": 33, + "source": "font" + }, + { + "char": "ゖ", + "x": 777, + "y": 776, + "w": 35, + "h": 34, + "source": "font" + }, + { + "char": "ァ", + "x": 814, + "y": 776, + "w": 36, + "h": 35, + "source": "font" + }, + { + "char": "ァ", + "x": 852, + "y": 776, + "w": 37, + "h": 35, + "source": "font" + }, + { + "char": "ア", + "x": 891, + "y": 776, + "w": 45, + "h": 43, + "source": "font" + }, + { + "char": "ア", + "x": 938, + "y": 776, + "w": 45, + "h": 44, + "source": "font" + }, + { + "char": "ィ", + "x": 985, + "y": 776, + "w": 31, + "h": 36, + "source": "font" + }, + { + "char": "ィ", + "x": 1018, + "y": 776, + "w": 32, + "h": 36, + "source": "font" + }, + { + "char": "イ", + "x": 1052, + "y": 776, + "w": 38, + "h": 44, + "source": "font" + }, + { + "char": "イ", + "x": 1092, + "y": 776, + "w": 38, + "h": 44, + "source": "font" + }, + { + "char": "ゥ", + "x": 1132, + "y": 776, + "w": 34, + "h": 37, + "source": "font" + }, + { + "char": "ゥ", + "x": 1168, + "y": 776, + "w": 35, + "h": 38, + "source": "font" + }, + { + "char": "ウ", + "x": 1205, + "y": 776, + "w": 41, + "h": 45, + "source": "font" + }, + { + "char": "ウ", + "x": 1248, + "y": 776, + "w": 42, + "h": 46, + "source": "font" + }, + { + "char": "ェ", + "x": 1292, + "y": 776, + "w": 32, + "h": 32, + "source": "font" + }, + { + "char": "ェ", + "x": 1326, + "y": 776, + "w": 32, + "h": 33, + "source": "font" + }, + { + "char": "エ", + "x": 1360, + "y": 776, + "w": 39, + "h": 39, + "source": "font" + }, + { + "char": "エ", + "x": 1401, + "y": 776, + "w": 40, + "h": 40, + "source": "font" + }, + { + "char": "ォ", + "x": 1443, + "y": 776, + "w": 35, + "h": 36, + "source": "font" + }, + { + "char": "ォ", + "x": 1480, + "y": 776, + "w": 36, + "h": 36, + "source": "font" + }, + { + "char": "オ", + "x": 1518, + "y": 776, + "w": 43, + "h": 45, + "source": "font" + }, + { + "char": "オ", + "x": 2, + "y": 840, + "w": 44, + "h": 46, + "source": "font" + }, + { + "char": "カ", + "x": 48, + "y": 840, + "w": 41, + "h": 46, + "source": "font" + }, + { + "char": "カ", + "x": 91, + "y": 840, + "w": 41, + "h": 46, + "source": "font" + }, + { + "char": "ガ", + "x": 134, + "y": 840, + "w": 46, + "h": 56, + "source": "font" + }, + { + "char": "ガ", + "x": 182, + "y": 840, + "w": 46, + "h": 57, + "source": "font" + }, + { + "char": "キ", + "x": 230, + "y": 840, + "w": 37, + "h": 45, + "source": "font" + }, + { + "char": "キ", + "x": 269, + "y": 840, + "w": 37, + "h": 46, + "source": "font" + }, + { + "char": "ギ", + "x": 308, + "y": 840, + "w": 45, + "h": 54, + "source": "font" + }, + { + "char": "ギ", + "x": 355, + "y": 840, + "w": 46, + "h": 55, + "source": "font" + }, + { + "char": "ク", + "x": 403, + "y": 840, + "w": 41, + "h": 43, + "source": "font" + }, + { + "char": "ク", + "x": 446, + "y": 840, + "w": 41, + "h": 44, + "source": "font" + }, + { + "char": "グ", + "x": 489, + "y": 840, + "w": 41, + "h": 60, + "source": "font" + }, + { + "char": "グ", + "x": 532, + "y": 840, + "w": 41, + "h": 61, + "source": "font" + }, + { + "char": "ケ", + "x": 575, + "y": 840, + "w": 45, + "h": 46, + "source": "font" + }, + { + "char": "ケ", + "x": 622, + "y": 840, + "w": 46, + "h": 47, + "source": "font" + }, + { + "char": "ゲ", + "x": 670, + "y": 840, + "w": 45, + "h": 57, + "source": "font" + }, + { + "char": "ゲ", + "x": 717, + "y": 840, + "w": 46, + "h": 58, + "source": "font" + }, + { + "char": "コ", + "x": 765, + "y": 840, + "w": 35, + "h": 41, + "source": "font" + }, + { + "char": "コ", + "x": 802, + "y": 840, + "w": 36, + "h": 42, + "source": "font" + }, + { + "char": "ゴ", + "x": 840, + "y": 840, + "w": 35, + "h": 57, + "source": "font" + }, + { + "char": "ゴ", + "x": 877, + "y": 840, + "w": 36, + "h": 58, + "source": "font" + }, + { + "char": "サ", + "x": 915, + "y": 840, + "w": 50, + "h": 45, + "source": "font" + }, + { + "char": "サ", + "x": 967, + "y": 840, + "w": 51, + "h": 46, + "source": "font" + }, + { + "char": "ザ", + "x": 1020, + "y": 840, + "w": 50, + "h": 61, + "source": "font" + }, + { + "char": "ザ", + "x": 1072, + "y": 840, + "w": 51, + "h": 62, + "source": "font" + }, + { + "char": "シ", + "x": 1125, + "y": 840, + "w": 41, + "h": 43, + "source": "font" + }, + { + "char": "シ", + "x": 1168, + "y": 840, + "w": 42, + "h": 44, + "source": "font" + }, + { + "char": "ジ", + "x": 1212, + "y": 840, + "w": 42, + "h": 60, + "source": "font" + }, + { + "char": "ジ", + "x": 1256, + "y": 840, + "w": 43, + "h": 61, + "source": "font" + }, + { + "char": "ス", + "x": 1301, + "y": 840, + "w": 44, + "h": 44, + "source": "font" + }, + { + "char": "ス", + "x": 1347, + "y": 840, + "w": 45, + "h": 45, + "source": "font" + }, + { + "char": "ズ", + "x": 1394, + "y": 840, + "w": 44, + "h": 59, + "source": "font" + }, + { + "char": "ズ", + "x": 1440, + "y": 840, + "w": 45, + "h": 60, + "source": "font" + }, + { + "char": "セ", + "x": 1487, + "y": 840, + "w": 49, + "h": 45, + "source": "font" + }, + { + "char": "セ", + "x": 1538, + "y": 840, + "w": 50, + "h": 46, + "source": "font" + }, + { + "char": "ゼ", + "x": 2, + "y": 904, + "w": 49, + "h": 57, + "source": "font" + }, + { + "char": "ゼ", + "x": 53, + "y": 904, + "w": 50, + "h": 58, + "source": "font" + }, + { + "char": "ソ", + "x": 105, + "y": 904, + "w": 47, + "h": 42, + "source": "font" + }, + { + "char": "ソ", + "x": 154, + "y": 904, + "w": 48, + "h": 44, + "source": "font" + }, + { + "char": "ゾ", + "x": 204, + "y": 904, + "w": 47, + "h": 57, + "source": "font" + }, + { + "char": "ゾ", + "x": 253, + "y": 904, + "w": 48, + "h": 59, + "source": "font" + }, + { + "char": "タ", + "x": 303, + "y": 904, + "w": 40, + "h": 44, + "source": "font" + }, + { + "char": "タ", + "x": 345, + "y": 904, + "w": 41, + "h": 45, + "source": "font" + }, + { + "char": "ダ", + "x": 388, + "y": 904, + "w": 40, + "h": 60, + "source": "font" + }, + { + "char": "ダ", + "x": 430, + "y": 904, + "w": 41, + "h": 61, + "source": "font" + }, + { + "char": "チ", + "x": 473, + "y": 904, + "w": 39, + "h": 47, + "source": "font" + }, + { + "char": "チ", + "x": 514, + "y": 904, + "w": 39, + "h": 47, + "source": "font" + }, + { + "char": "ヂ", + "x": 555, + "y": 904, + "w": 39, + "h": 62, + "source": "font" + }, + { + "char": "ヂ", + "x": 596, + "y": 904, + "w": 39, + "h": 63, + "source": "font" + }, + { + "char": "ッ", + "x": 637, + "y": 904, + "w": 38, + "h": 33, + "source": "font" + }, + { + "char": "ッ", + "x": 677, + "y": 904, + "w": 38, + "h": 34, + "source": "font" + }, + { + "char": "ツ", + "x": 717, + "y": 904, + "w": 48, + "h": 42, + "source": "font" + }, + { + "char": "ツ", + "x": 767, + "y": 904, + "w": 49, + "h": 43, + "source": "font" + }, + { + "char": "ヅ", + "x": 818, + "y": 904, + "w": 48, + "h": 59, + "source": "font" + }, + { + "char": "ヅ", + "x": 868, + "y": 904, + "w": 49, + "h": 60, + "source": "font" + }, + { + "char": "テ", + "x": 919, + "y": 904, + "w": 40, + "h": 45, + "source": "font" + }, + { + "char": "テ", + "x": 961, + "y": 904, + "w": 41, + "h": 46, + "source": "font" + }, + { + "char": "デ", + "x": 1004, + "y": 904, + "w": 40, + "h": 62, + "source": "font" + }, + { + "char": "デ", + "x": 1046, + "y": 904, + "w": 41, + "h": 63, + "source": "font" + }, + { + "char": "ト", + "x": 1089, + "y": 904, + "w": 33, + "h": 45, + "source": "font" + }, + { + "char": "ト", + "x": 1124, + "y": 904, + "w": 33, + "h": 46, + "source": "font" + }, + { + "char": "ド", + "x": 1159, + "y": 904, + "w": 38, + "h": 50, + "source": "font" + }, + { + "char": "ド", + "x": 1199, + "y": 904, + "w": 39, + "h": 51, + "source": "font" + }, + { + "char": "ナ", + "x": 1240, + "y": 904, + "w": 38, + "h": 46, + "source": "font" + }, + { + "char": "ナ", + "x": 1280, + "y": 904, + "w": 39, + "h": 47, + "source": "font" + }, + { + "char": "ニ", + "x": 1321, + "y": 904, + "w": 38, + "h": 38, + "source": "font" + }, + { + "char": "ニ", + "x": 1361, + "y": 904, + "w": 38, + "h": 39, + "source": "font" + }, + { + "char": "ヌ", + "x": 1401, + "y": 904, + "w": 35, + "h": 45, + "source": "font" + }, + { + "char": "ヌ", + "x": 1438, + "y": 904, + "w": 36, + "h": 46, + "source": "font" + }, + { + "char": "ネ", + "x": 1476, + "y": 904, + "w": 43, + "h": 46, + "source": "font" + }, + { + "char": "ネ", + "x": 1521, + "y": 904, + "w": 44, + "h": 47, + "source": "font" + }, + { + "char": "ノ", + "x": 1567, + "y": 904, + "w": 30, + "h": 43, + "source": "font" + }, + { + "char": "ノ", + "x": 2, + "y": 969, + "w": 30, + "h": 44, + "source": "font" + }, + { + "char": "ハ", + "x": 34, + "y": 969, + "w": 52, + "h": 40, + "source": "font" + }, + { + "char": "ハ", + "x": 88, + "y": 969, + "w": 53, + "h": 41, + "source": "font" + }, + { + "char": "バ", + "x": 143, + "y": 969, + "w": 52, + "h": 50, + "source": "font" + }, + { + "char": "バ", + "x": 197, + "y": 969, + "w": 53, + "h": 51, + "source": "font" + }, + { + "char": "パ", + "x": 252, + "y": 969, + "w": 51, + "h": 50, + "source": "font" + }, + { + "char": "パ", + "x": 305, + "y": 969, + "w": 52, + "h": 51, + "source": "font" + }, + { + "char": "ヒ", + "x": 359, + "y": 969, + "w": 36, + "h": 43, + "source": "font" + }, + { + "char": "ヒ", + "x": 397, + "y": 969, + "w": 37, + "h": 44, + "source": "font" + }, + { + "char": "ビ", + "x": 436, + "y": 969, + "w": 40, + "h": 52, + "source": "font" + }, + { + "char": "ビ", + "x": 478, + "y": 969, + "w": 41, + "h": 53, + "source": "font" + }, + { + "char": "ピ", + "x": 521, + "y": 969, + "w": 40, + "h": 53, + "source": "font" + }, + { + "char": "ピ", + "x": 563, + "y": 969, + "w": 41, + "h": 54, + "source": "font" + }, + { + "char": "フ", + "x": 606, + "y": 969, + "w": 39, + "h": 43, + "source": "font" + }, + { + "char": "フ", + "x": 647, + "y": 969, + "w": 40, + "h": 44, + "source": "font" + }, + { + "char": "ブ", + "x": 689, + "y": 969, + "w": 39, + "h": 61, + "source": "font" + }, + { + "char": "ブ", + "x": 730, + "y": 969, + "w": 40, + "h": 62, + "source": "font" + }, + { + "char": "プ", + "x": 772, + "y": 969, + "w": 39, + "h": 61, + "source": "font" + }, + { + "char": "プ", + "x": 813, + "y": 969, + "w": 40, + "h": 62, + "source": "font" + }, + { + "char": "ヘ", + "x": 855, + "y": 969, + "w": 50, + "h": 41, + "source": "font" + }, + { + "char": "ヘ", + "x": 907, + "y": 969, + "w": 51, + "h": 42, + "source": "font" + }, + { + "char": "ベ", + "x": 960, + "y": 969, + "w": 51, + "h": 43, + "source": "font" + }, + { + "char": "ベ", + "x": 1013, + "y": 969, + "w": 52, + "h": 44, + "source": "font" + }, + { + "char": "ペ", + "x": 1067, + "y": 969, + "w": 50, + "h": 42, + "source": "font" + }, + { + "char": "ペ", + "x": 1119, + "y": 969, + "w": 51, + "h": 42, + "source": "font" + }, + { + "char": "ホ", + "x": 1172, + "y": 969, + "w": 47, + "h": 44, + "source": "font" + }, + { + "char": "ホ", + "x": 1221, + "y": 969, + "w": 48, + "h": 45, + "source": "font" + }, + { + "char": "ボ", + "x": 1271, + "y": 969, + "w": 47, + "h": 61, + "source": "font" + }, + { + "char": "ボ", + "x": 1320, + "y": 969, + "w": 48, + "h": 62, + "source": "font" + }, + { + "char": "ポ", + "x": 1370, + "y": 969, + "w": 47, + "h": 57, + "source": "font" + }, + { + "char": "ポ", + "x": 1419, + "y": 969, + "w": 48, + "h": 58, + "source": "font" + }, + { + "char": "マ", + "x": 1469, + "y": 969, + "w": 44, + "h": 44, + "source": "font" + }, + { + "char": "マ", + "x": 1515, + "y": 969, + "w": 45, + "h": 45, + "source": "font" + }, + { + "char": "ミ", + "x": 1562, + "y": 969, + "w": 36, + "h": 45, + "source": "font" + }, + { + "char": "ミ", + "x": 2, + "y": 1033, + "w": 36, + "h": 47, + "source": "font" + }, + { + "char": "ム", + "x": 40, + "y": 1033, + "w": 49, + "h": 43, + "source": "font" + }, + { + "char": "ム", + "x": 91, + "y": 1033, + "w": 49, + "h": 43, + "source": "font" + }, + { + "char": "メ", + "x": 142, + "y": 1033, + "w": 40, + "h": 45, + "source": "font" + }, + { + "char": "メ", + "x": 184, + "y": 1033, + "w": 41, + "h": 46, + "source": "font" + }, + { + "char": "モ", + "x": 227, + "y": 1033, + "w": 38, + "h": 45, + "source": "font" + }, + { + "char": "モ", + "x": 267, + "y": 1033, + "w": 39, + "h": 46, + "source": "font" + }, + { + "char": "ャ", + "x": 308, + "y": 1033, + "w": 35, + "h": 34, + "source": "font" + }, + { + "char": "ャ", + "x": 345, + "y": 1033, + "w": 36, + "h": 35, + "source": "font" + }, + { + "char": "ヤ", + "x": 383, + "y": 1033, + "w": 45, + "h": 45, + "source": "font" + }, + { + "char": "ヤ", + "x": 430, + "y": 1033, + "w": 46, + "h": 46, + "source": "font" + }, + { + "char": "ュ", + "x": 478, + "y": 1033, + "w": 30, + "h": 31, + "source": "font" + }, + { + "char": "ュ", + "x": 510, + "y": 1033, + "w": 31, + "h": 32, + "source": "font" + }, + { + "char": "ユ", + "x": 543, + "y": 1033, + "w": 41, + "h": 41, + "source": "font" + }, + { + "char": "ユ", + "x": 586, + "y": 1033, + "w": 41, + "h": 42, + "source": "font" + }, + { + "char": "ョ", + "x": 629, + "y": 1033, + "w": 24, + "h": 34, + "source": "font" + }, + { + "char": "ョ", + "x": 655, + "y": 1033, + "w": 25, + "h": 35, + "source": "font" + }, + { + "char": "ヨ", + "x": 682, + "y": 1033, + "w": 31, + "h": 43, + "source": "font" + }, + { + "char": "ヨ", + "x": 715, + "y": 1033, + "w": 32, + "h": 43, + "source": "font" + }, + { + "char": "ラ", + "x": 749, + "y": 1033, + "w": 38, + "h": 45, + "source": "font" + }, + { + "char": "ラ", + "x": 789, + "y": 1033, + "w": 38, + "h": 46, + "source": "font" + }, + { + "char": "リ", + "x": 829, + "y": 1033, + "w": 37, + "h": 43, + "source": "font" + }, + { + "char": "リ", + "x": 868, + "y": 1033, + "w": 38, + "h": 44, + "source": "font" + }, + { + "char": "ル", + "x": 908, + "y": 1033, + "w": 49, + "h": 41, + "source": "font" + }, + { + "char": "ル", + "x": 959, + "y": 1033, + "w": 50, + "h": 41, + "source": "font" + }, + { + "char": "レ", + "x": 1011, + "y": 1033, + "w": 34, + "h": 42, + "source": "font" + }, + { + "char": "レ", + "x": 1047, + "y": 1033, + "w": 35, + "h": 43, + "source": "font" + }, + { + "char": "ロ", + "x": 1084, + "y": 1033, + "w": 37, + "h": 37, + "source": "font" + }, + { + "char": "ロ", + "x": 1123, + "y": 1033, + "w": 38, + "h": 38, + "source": "font" + }, + { + "char": "ヮ", + "x": 1163, + "y": 1033, + "w": 34, + "h": 34, + "source": "font" + }, + { + "char": "ヮ", + "x": 1199, + "y": 1033, + "w": 35, + "h": 34, + "source": "font" + }, + { + "char": "ワ", + "x": 1236, + "y": 1033, + "w": 43, + "h": 43, + "source": "font" + }, + { + "char": "ワ", + "x": 1281, + "y": 1033, + "w": 44, + "h": 44, + "source": "font" + }, + { + "char": "ヲ", + "x": 1327, + "y": 1033, + "w": 39, + "h": 43, + "source": "font" + }, + { + "char": "ヲ", + "x": 1368, + "y": 1033, + "w": 40, + "h": 44, + "source": "font" + }, + { + "char": "ン", + "x": 1410, + "y": 1033, + "w": 40, + "h": 43, + "source": "font" + }, + { + "char": "ン", + "x": 1452, + "y": 1033, + "w": 41, + "h": 43, + "source": "font" + }, + { + "char": "ヴ", + "x": 1495, + "y": 1033, + "w": 48, + "h": 56, + "source": "font" + }, + { + "char": "ヴ", + "x": 1545, + "y": 1033, + "w": 49, + "h": 57, + "source": "font" + }, + { + "char": "ヵ", + "x": 2, + "y": 1092, + "w": 36, + "h": 37, + "source": "font" + }, + { + "char": "ヵ", + "x": 40, + "y": 1092, + "w": 36, + "h": 37, + "source": "font" + }, + { + "char": "ヶ", + "x": 78, + "y": 1092, + "w": 36, + "h": 37, + "source": "font" + }, + { + "char": "ヶ", + "x": 116, + "y": 1092, + "w": 36, + "h": 37, + "source": "font" + }, + { + "char": "・", + "x": 154, + "y": 1092, + "w": 16, + "h": 15, + "source": "font" + }, + { + "char": "・", + "x": 172, + "y": 1092, + "w": 16, + "h": 16, + "source": "font" + }, + { + "char": "ー", + "x": 190, + "y": 1092, + "w": 31, + "h": 18, + "source": "font" + }, + { + "char": "ー", + "x": 223, + "y": 1092, + "w": 32, + "h": 18, + "source": "font" + }, + { + "char": "、", + "x": 257, + "y": 1092, + "w": 15, + "h": 16, + "source": "font" + }, + { + "char": "、", + "x": 274, + "y": 1092, + "w": 15, + "h": 16, + "source": "font" + }, + { + "char": "。", + "x": 291, + "y": 1092, + "w": 16, + "h": 15, + "source": "font" + }, + { + "char": "。", + "x": 309, + "y": 1092, + "w": 16, + "h": 16, + "source": "font" + }, + { + "char": "「", + "x": 327, + "y": 1092, + "w": 22, + "h": 49, + "source": "font" + }, + { + "char": "「", + "x": 351, + "y": 1092, + "w": 23, + "h": 50, + "source": "font" + }, + { + "char": "」", + "x": 376, + "y": 1092, + "w": 22, + "h": 49, + "source": "font" + }, + { + "char": "」", + "x": 400, + "y": 1092, + "w": 23, + "h": 50, + "source": "font" + }, + { + "char": "★", + "x": 425, + "y": 1092, + "w": 44, + "h": 44, + "source": "font" + }, + { + "char": "★", + "x": 471, + "y": 1092, + "w": 46, + "h": 45, + "source": "font" + }, + { + "char": "☆", + "x": 519, + "y": 1092, + "w": 44, + "h": 44, + "source": "font" + }, + { + "char": "☆", + "x": 565, + "y": 1092, + "w": 46, + "h": 45, + "source": "font" + }, + { + "char": "•", + "x": 613, + "y": 1092, + "w": 41, + "h": 41, + "source": "font" + }, + { + "char": "•", + "x": 656, + "y": 1092, + "w": 41, + "h": 41, + "source": "font" + }, + { + "char": "♪", + "x": 699, + "y": 1092, + "w": 36, + "h": 44, + "source": "font" + }, + { + "char": "♪", + "x": 737, + "y": 1092, + "w": 37, + "h": 45, + "source": "font" + }, + { + "char": "!", + "x": 776, + "y": 1092, + "w": 19, + "h": 43, + "source": "font" + }, + { + "char": "!", + "x": 797, + "y": 1092, + "w": 20, + "h": 44, + "source": "font" + }, + { + "char": "\"", + "x": 819, + "y": 1092, + "w": 24, + "h": 18, + "source": "font" + }, + { + "char": "\"", + "x": 845, + "y": 1092, + "w": 24, + "h": 19, + "source": "font" + }, + { + "char": "#", + "x": 871, + "y": 1092, + "w": 38, + "h": 42, + "source": "font" + }, + { + "char": "#", + "x": 911, + "y": 1092, + "w": 39, + "h": 45, + "source": "font" + }, + { + "char": "$", + "x": 952, + "y": 1092, + "w": 35, + "h": 50, + "source": "font" + }, + { + "char": "$", + "x": 989, + "y": 1092, + "w": 36, + "h": 52, + "source": "font" + }, + { + "char": "%", + "x": 1027, + "y": 1092, + "w": 50, + "h": 45, + "source": "font" + }, + { + "char": "%", + "x": 1079, + "y": 1092, + "w": 52, + "h": 46, + "source": "font" + }, + { + "char": "&", + "x": 1133, + "y": 1092, + "w": 40, + "h": 45, + "source": "font" + }, + { + "char": "&", + "x": 1175, + "y": 1092, + "w": 41, + "h": 46, + "source": "font" + }, + { + "char": "'", + "x": 1218, + "y": 1092, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "'", + "x": 1233, + "y": 1092, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "(", + "x": 1248, + "y": 1092, + "w": 19, + "h": 54, + "source": "font" + }, + { + "char": "(", + "x": 1269, + "y": 1092, + "w": 20, + "h": 56, + "source": "font" + }, + { + "char": ")", + "x": 1291, + "y": 1092, + "w": 23, + "h": 54, + "source": "font" + }, + { + "char": ")", + "x": 1316, + "y": 1092, + "w": 23, + "h": 56, + "source": "font" + }, + { + "char": "*", + "x": 1341, + "y": 1092, + "w": 28, + "h": 26, + "source": "font" + }, + { + "char": "*", + "x": 1371, + "y": 1092, + "w": 29, + "h": 28, + "source": "font" + }, + { + "char": "+", + "x": 1402, + "y": 1092, + "w": 34, + "h": 31, + "source": "font" + }, + { + "char": "+", + "x": 1438, + "y": 1092, + "w": 36, + "h": 32, + "source": "font" + }, + { + "char": ",", + "x": 1476, + "y": 1092, + "w": 15, + "h": 20, + "source": "font" + }, + { + "char": ",", + "x": 1493, + "y": 1092, + "w": 15, + "h": 20, + "source": "font" + }, + { + "char": "-", + "x": 1510, + "y": 1092, + "w": 23, + "h": 13, + "source": "font" + }, + { + "char": "-", + "x": 1535, + "y": 1092, + "w": 24, + "h": 13, + "source": "font" + }, + { + "char": ".", + "x": 1561, + "y": 1092, + "w": 15, + "h": 12, + "source": "font" + }, + { + "char": ".", + "x": 1578, + "y": 1092, + "w": 15, + "h": 12, + "source": "font" + }, + { + "char": "/", + "x": 2, + "y": 1150, + "w": 26, + "h": 45, + "source": "font" + }, + { + "char": "/", + "x": 30, + "y": 1150, + "w": 27, + "h": 47, + "source": "font" + }, + { + "char": "0", + "x": 59, + "y": 1150, + "w": 37, + "h": 45, + "source": "font" + }, + { + "char": "0", + "x": 98, + "y": 1150, + "w": 38, + "h": 46, + "source": "font" + }, + { + "char": "1", + "x": 138, + "y": 1150, + "w": 26, + "h": 43, + "source": "font" + }, + { + "char": "1", + "x": 166, + "y": 1150, + "w": 26, + "h": 44, + "source": "font" + }, + { + "char": "2", + "x": 194, + "y": 1150, + "w": 34, + "h": 44, + "source": "font" + }, + { + "char": "2", + "x": 230, + "y": 1150, + "w": 36, + "h": 45, + "source": "font" + }, + { + "char": "3", + "x": 268, + "y": 1150, + "w": 35, + "h": 45, + "source": "font" + }, + { + "char": "3", + "x": 305, + "y": 1150, + "w": 37, + "h": 46, + "source": "font" + }, + { + "char": "4", + "x": 344, + "y": 1150, + "w": 36, + "h": 43, + "source": "font" + }, + { + "char": "4", + "x": 382, + "y": 1150, + "w": 38, + "h": 45, + "source": "font" + }, + { + "char": "5", + "x": 422, + "y": 1150, + "w": 35, + "h": 44, + "source": "font" + }, + { + "char": "5", + "x": 459, + "y": 1150, + "w": 37, + "h": 45, + "source": "font" + }, + { + "char": "6", + "x": 498, + "y": 1150, + "w": 37, + "h": 45, + "source": "font" + }, + { + "char": "6", + "x": 537, + "y": 1150, + "w": 38, + "h": 46, + "source": "font" + }, + { + "char": "7", + "x": 577, + "y": 1150, + "w": 35, + "h": 43, + "source": "font" + }, + { + "char": "7", + "x": 614, + "y": 1150, + "w": 36, + "h": 44, + "source": "font" + }, + { + "char": "8", + "x": 652, + "y": 1150, + "w": 37, + "h": 45, + "source": "font" + }, + { + "char": "8", + "x": 691, + "y": 1150, + "w": 38, + "h": 46, + "source": "font" + }, + { + "char": "9", + "x": 731, + "y": 1150, + "w": 37, + "h": 45, + "source": "font" + }, + { + "char": "9", + "x": 770, + "y": 1150, + "w": 38, + "h": 46, + "source": "font" + }, + { + "char": ":", + "x": 810, + "y": 1150, + "w": 15, + "h": 31, + "source": "font" + }, + { + "char": ":", + "x": 827, + "y": 1150, + "w": 14, + "h": 32, + "source": "font" + }, + { + "char": ";", + "x": 843, + "y": 1150, + "w": 15, + "h": 39, + "source": "font" + }, + { + "char": ";", + "x": 860, + "y": 1150, + "w": 14, + "h": 40, + "source": "font" + }, + { + "char": "<", + "x": 876, + "y": 1150, + "w": 29, + "h": 36, + "source": "font" + }, + { + "char": "<", + "x": 907, + "y": 1150, + "w": 29, + "h": 37, + "source": "font" + }, + { + "char": "=", + "x": 938, + "y": 1150, + "w": 34, + "h": 23, + "source": "font" + }, + { + "char": "=", + "x": 974, + "y": 1150, + "w": 35, + "h": 24, + "source": "font" + }, + { + "char": ">", + "x": 1011, + "y": 1150, + "w": 28, + "h": 36, + "source": "font" + }, + { + "char": ">", + "x": 1041, + "y": 1150, + "w": 29, + "h": 37, + "source": "font" + }, + { + "char": "?", + "x": 1072, + "y": 1150, + "w": 34, + "h": 44, + "source": "font" + }, + { + "char": "?", + "x": 1108, + "y": 1150, + "w": 34, + "h": 45, + "source": "font" + }, + { + "char": "@", + "x": 1144, + "y": 1150, + "w": 47, + "h": 45, + "source": "font" + }, + { + "char": "@", + "x": 1193, + "y": 1150, + "w": 49, + "h": 46, + "source": "font" + }, + { + "char": "A", + "x": 1244, + "y": 1150, + "w": 44, + "h": 43, + "source": "font" + }, + { + "char": "A", + "x": 1290, + "y": 1150, + "w": 45, + "h": 44, + "source": "font" + }, + { + "char": "B", + "x": 1337, + "y": 1150, + "w": 37, + "h": 43, + "source": "font" + }, + { + "char": "B", + "x": 1376, + "y": 1150, + "w": 38, + "h": 44, + "source": "font" + }, + { + "char": "C", + "x": 1416, + "y": 1150, + "w": 40, + "h": 45, + "source": "font" + }, + { + "char": "C", + "x": 1458, + "y": 1150, + "w": 42, + "h": 46, + "source": "font" + }, + { + "char": "D", + "x": 1502, + "y": 1150, + "w": 40, + "h": 43, + "source": "font" + }, + { + "char": "D", + "x": 1544, + "y": 1150, + "w": 41, + "h": 44, + "source": "font" + }, + { + "char": "E", + "x": 2, + "y": 1199, + "w": 34, + "h": 43, + "source": "font" + }, + { + "char": "E", + "x": 38, + "y": 1199, + "w": 35, + "h": 44, + "source": "font" + }, + { + "char": "F", + "x": 75, + "y": 1199, + "w": 31, + "h": 43, + "source": "font" + }, + { + "char": "F", + "x": 108, + "y": 1199, + "w": 32, + "h": 44, + "source": "font" + }, + { + "char": "G", + "x": 142, + "y": 1199, + "w": 41, + "h": 45, + "source": "font" + }, + { + "char": "G", + "x": 185, + "y": 1199, + "w": 42, + "h": 46, + "source": "font" + }, + { + "char": "H", + "x": 229, + "y": 1199, + "w": 38, + "h": 43, + "source": "font" + }, + { + "char": "H", + "x": 269, + "y": 1199, + "w": 39, + "h": 45, + "source": "font" + }, + { + "char": "I", + "x": 310, + "y": 1199, + "w": 16, + "h": 43, + "source": "font" + }, + { + "char": "I", + "x": 328, + "y": 1199, + "w": 17, + "h": 44, + "source": "font" + }, + { + "char": "J", + "x": 347, + "y": 1199, + "w": 26, + "h": 44, + "source": "font" + }, + { + "char": "J", + "x": 375, + "y": 1199, + "w": 27, + "h": 45, + "source": "font" + }, + { + "char": "K", + "x": 404, + "y": 1199, + "w": 39, + "h": 43, + "source": "font" + }, + { + "char": "K", + "x": 445, + "y": 1199, + "w": 40, + "h": 44, + "source": "font" + }, + { + "char": "L", + "x": 487, + "y": 1199, + "w": 32, + "h": 43, + "source": "font" + }, + { + "char": "L", + "x": 521, + "y": 1199, + "w": 33, + "h": 44, + "source": "font" + }, + { + "char": "M", + "x": 556, + "y": 1199, + "w": 45, + "h": 43, + "source": "font" + }, + { + "char": "M", + "x": 603, + "y": 1199, + "w": 47, + "h": 44, + "source": "font" + }, + { + "char": "N", + "x": 652, + "y": 1199, + "w": 38, + "h": 43, + "source": "font" + }, + { + "char": "N", + "x": 692, + "y": 1199, + "w": 39, + "h": 44, + "source": "font" + }, + { + "char": "O", + "x": 733, + "y": 1199, + "w": 42, + "h": 45, + "source": "font" + }, + { + "char": "O", + "x": 777, + "y": 1199, + "w": 44, + "h": 46, + "source": "font" + }, + { + "char": "P", + "x": 823, + "y": 1199, + "w": 35, + "h": 43, + "source": "font" + }, + { + "char": "P", + "x": 860, + "y": 1199, + "w": 37, + "h": 44, + "source": "font" + }, + { + "char": "Q", + "x": 899, + "y": 1199, + "w": 44, + "h": 52, + "source": "font" + }, + { + "char": "Q", + "x": 945, + "y": 1199, + "w": 46, + "h": 54, + "source": "font" + }, + { + "char": "R", + "x": 993, + "y": 1199, + "w": 38, + "h": 43, + "source": "font" + }, + { + "char": "R", + "x": 1033, + "y": 1199, + "w": 39, + "h": 44, + "source": "font" + }, + { + "char": "S", + "x": 1074, + "y": 1199, + "w": 36, + "h": 45, + "source": "font" + }, + { + "char": "S", + "x": 1112, + "y": 1199, + "w": 38, + "h": 46, + "source": "font" + }, + { + "char": "T", + "x": 1152, + "y": 1199, + "w": 35, + "h": 43, + "source": "font" + }, + { + "char": "T", + "x": 1189, + "y": 1199, + "w": 36, + "h": 44, + "source": "font" + }, + { + "char": "U", + "x": 1227, + "y": 1199, + "w": 38, + "h": 44, + "source": "font" + }, + { + "char": "U", + "x": 1267, + "y": 1199, + "w": 39, + "h": 45, + "source": "font" + }, + { + "char": "V", + "x": 1308, + "y": 1199, + "w": 42, + "h": 43, + "source": "font" + }, + { + "char": "V", + "x": 1352, + "y": 1199, + "w": 43, + "h": 44, + "source": "font" + }, + { + "char": "W", + "x": 1397, + "y": 1199, + "w": 54, + "h": 43, + "source": "font" + }, + { + "char": "W", + "x": 1453, + "y": 1199, + "w": 56, + "h": 44, + "source": "font" + }, + { + "char": "X", + "x": 1511, + "y": 1199, + "w": 40, + "h": 43, + "source": "font" + }, + { + "char": "X", + "x": 1553, + "y": 1199, + "w": 41, + "h": 44, + "source": "font" + }, + { + "char": "Y", + "x": 2, + "y": 1255, + "w": 40, + "h": 43, + "source": "font" + }, + { + "char": "Y", + "x": 44, + "y": 1255, + "w": 41, + "h": 44, + "source": "font" + }, + { + "char": "Z", + "x": 87, + "y": 1255, + "w": 35, + "h": 43, + "source": "font" + }, + { + "char": "Z", + "x": 124, + "y": 1255, + "w": 36, + "h": 44, + "source": "font" + }, + { + "char": "[", + "x": 162, + "y": 1255, + "w": 18, + "h": 53, + "source": "font" + }, + { + "char": "[", + "x": 182, + "y": 1255, + "w": 18, + "h": 55, + "source": "font" + }, + { + "char": "\\", + "x": 202, + "y": 1255, + "w": 26, + "h": 45, + "source": "font" + }, + { + "char": "\\", + "x": 230, + "y": 1255, + "w": 27, + "h": 47, + "source": "font" + }, + { + "char": "]", + "x": 259, + "y": 1255, + "w": 21, + "h": 53, + "source": "font" + }, + { + "char": "]", + "x": 282, + "y": 1255, + "w": 21, + "h": 55, + "source": "font" + }, + { + "char": "^", + "x": 305, + "y": 1255, + "w": 34, + "h": 27, + "source": "font" + }, + { + "char": "^", + "x": 341, + "y": 1255, + "w": 36, + "h": 28, + "source": "font" + }, + { + "char": "_", + "x": 379, + "y": 1255, + "w": 28, + "h": 7, + "source": "font" + }, + { + "char": "_", + "x": 409, + "y": 1255, + "w": 29, + "h": 8, + "source": "font" + }, + { + "char": "`", + "x": 440, + "y": 1255, + "w": 21, + "h": 15, + "source": "font" + }, + { + "char": "`", + "x": 463, + "y": 1255, + "w": 22, + "h": 16, + "source": "font" + }, + { + "char": "a", + "x": 487, + "y": 1255, + "w": 34, + "h": 33, + "source": "font" + }, + { + "char": "a", + "x": 523, + "y": 1255, + "w": 35, + "h": 34, + "source": "font" + }, + { + "char": "b", + "x": 560, + "y": 1255, + "w": 33, + "h": 44, + "source": "font" + }, + { + "char": "b", + "x": 595, + "y": 1255, + "w": 34, + "h": 46, + "source": "font" + }, + { + "char": "c", + "x": 631, + "y": 1255, + "w": 31, + "h": 33, + "source": "font" + }, + { + "char": "c", + "x": 664, + "y": 1255, + "w": 33, + "h": 34, + "source": "font" + }, + { + "char": "d", + "x": 699, + "y": 1255, + "w": 33, + "h": 44, + "source": "font" + }, + { + "char": "d", + "x": 734, + "y": 1255, + "w": 35, + "h": 46, + "source": "font" + }, + { + "char": "e", + "x": 771, + "y": 1255, + "w": 32, + "h": 33, + "source": "font" + }, + { + "char": "e", + "x": 805, + "y": 1255, + "w": 33, + "h": 34, + "source": "font" + }, + { + "char": "f", + "x": 840, + "y": 1255, + "w": 22, + "h": 44, + "source": "font" + }, + { + "char": "f", + "x": 864, + "y": 1255, + "w": 22, + "h": 45, + "source": "font" + }, + { + "char": "g", + "x": 888, + "y": 1255, + "w": 33, + "h": 43, + "source": "font" + }, + { + "char": "g", + "x": 923, + "y": 1255, + "w": 34, + "h": 44, + "source": "font" + }, + { + "char": "h", + "x": 959, + "y": 1255, + "w": 32, + "h": 43, + "source": "font" + }, + { + "char": "h", + "x": 993, + "y": 1255, + "w": 33, + "h": 45, + "source": "font" + }, + { + "char": "i", + "x": 1028, + "y": 1255, + "w": 14, + "h": 43, + "source": "font" + }, + { + "char": "i", + "x": 1044, + "y": 1255, + "w": 15, + "h": 44, + "source": "font" + }, + { + "char": "j", + "x": 1061, + "y": 1255, + "w": 20, + "h": 54, + "source": "font" + }, + { + "char": "j", + "x": 1083, + "y": 1255, + "w": 21, + "h": 55, + "source": "font" + }, + { + "char": "k", + "x": 1106, + "y": 1255, + "w": 32, + "h": 43, + "source": "font" + }, + { + "char": "k", + "x": 1140, + "y": 1255, + "w": 33, + "h": 44, + "source": "font" + }, + { + "char": "l", + "x": 1175, + "y": 1255, + "w": 14, + "h": 43, + "source": "font" + }, + { + "char": "l", + "x": 1191, + "y": 1255, + "w": 14, + "h": 44, + "source": "font" + }, + { + "char": "m", + "x": 1207, + "y": 1255, + "w": 44, + "h": 32, + "source": "font" + }, + { + "char": "m", + "x": 1253, + "y": 1255, + "w": 45, + "h": 33, + "source": "font" + }, + { + "char": "n", + "x": 1300, + "y": 1255, + "w": 32, + "h": 32, + "source": "font" + }, + { + "char": "n", + "x": 1334, + "y": 1255, + "w": 33, + "h": 33, + "source": "font" + }, + { + "char": "o", + "x": 1369, + "y": 1255, + "w": 34, + "h": 33, + "source": "font" + }, + { + "char": "o", + "x": 1405, + "y": 1255, + "w": 35, + "h": 34, + "source": "font" + }, + { + "char": "p", + "x": 1442, + "y": 1255, + "w": 33, + "h": 43, + "source": "font" + }, + { + "char": "p", + "x": 1477, + "y": 1255, + "w": 34, + "h": 44, + "source": "font" + }, + { + "char": "q", + "x": 1513, + "y": 1255, + "w": 33, + "h": 43, + "source": "font" + }, + { + "char": "q", + "x": 1548, + "y": 1255, + "w": 35, + "h": 44, + "source": "font" + }, + { + "char": "r", + "x": 2, + "y": 1312, + "w": 22, + "h": 32, + "source": "font" + }, + { + "char": "r", + "x": 26, + "y": 1312, + "w": 23, + "h": 33, + "source": "font" + }, + { + "char": "s", + "x": 51, + "y": 1312, + "w": 30, + "h": 33, + "source": "font" + }, + { + "char": "s", + "x": 83, + "y": 1312, + "w": 32, + "h": 34, + "source": "font" + }, + { + "char": "t", + "x": 117, + "y": 1312, + "w": 22, + "h": 41, + "source": "font" + }, + { + "char": "t", + "x": 141, + "y": 1312, + "w": 23, + "h": 43, + "source": "font" + }, + { + "char": "u", + "x": 166, + "y": 1312, + "w": 32, + "h": 32, + "source": "font" + }, + { + "char": "u", + "x": 200, + "y": 1312, + "w": 33, + "h": 33, + "source": "font" + }, + { + "char": "v", + "x": 235, + "y": 1312, + "w": 34, + "h": 31, + "source": "font" + }, + { + "char": "v", + "x": 271, + "y": 1312, + "w": 35, + "h": 32, + "source": "font" + }, + { + "char": "w", + "x": 308, + "y": 1312, + "w": 47, + "h": 31, + "source": "font" + }, + { + "char": "w", + "x": 357, + "y": 1312, + "w": 48, + "h": 32, + "source": "font" + }, + { + "char": "x", + "x": 407, + "y": 1312, + "w": 34, + "h": 31, + "source": "font" + }, + { + "char": "x", + "x": 443, + "y": 1312, + "w": 35, + "h": 32, + "source": "font" + }, + { + "char": "y", + "x": 480, + "y": 1312, + "w": 33, + "h": 42, + "source": "font" + }, + { + "char": "y", + "x": 515, + "y": 1312, + "w": 34, + "h": 43, + "source": "font" + }, + { + "char": "z", + "x": 551, + "y": 1312, + "w": 30, + "h": 31, + "source": "font" + }, + { + "char": "z", + "x": 583, + "y": 1312, + "w": 30, + "h": 32, + "source": "font" + }, + { + "char": "{", + "x": 615, + "y": 1312, + "w": 18, + "h": 54, + "source": "font" + }, + { + "char": "{", + "x": 635, + "y": 1312, + "w": 19, + "h": 57, + "source": "font" + }, + { + "char": "|", + "x": 656, + "y": 1312, + "w": 9, + "h": 45, + "source": "font" + }, + { + "char": "|", + "x": 667, + "y": 1312, + "w": 9, + "h": 47, + "source": "font" + }, + { + "char": "}", + "x": 678, + "y": 1312, + "w": 21, + "h": 55, + "source": "font" + }, + { + "char": "}", + "x": 701, + "y": 1312, + "w": 21, + "h": 57, + "source": "font" + }, + { + "char": "~", + "x": 724, + "y": 1312, + "w": 20, + "h": 15, + "source": "font" + }, + { + "char": "~", + "x": 746, + "y": 1312, + "w": 21, + "h": 14, + "source": "font" + }, + { + "char": "¡", + "x": 769, + "y": 1312, + "w": 19, + "h": 43, + "source": "font" + }, + { + "char": "¡", + "x": 790, + "y": 1312, + "w": 19, + "h": 45, + "source": "font" + }, + { + "char": "¢", + "x": 811, + "y": 1312, + "w": 32, + "h": 42, + "source": "font" + }, + { + "char": "¢", + "x": 845, + "y": 1312, + "w": 33, + "h": 44, + "source": "font" + }, + { + "char": "£", + "x": 880, + "y": 1312, + "w": 36, + "h": 45, + "source": "font" + }, + { + "char": "£", + "x": 918, + "y": 1312, + "w": 37, + "h": 47, + "source": "font" + }, + { + "char": "¤", + "x": 957, + "y": 1312, + "w": 30, + "h": 31, + "source": "font" + }, + { + "char": "¤", + "x": 989, + "y": 1312, + "w": 31, + "h": 33, + "source": "font" + }, + { + "char": "¥", + "x": 1022, + "y": 1312, + "w": 39, + "h": 43, + "source": "font" + }, + { + "char": "¥", + "x": 1063, + "y": 1312, + "w": 41, + "h": 44, + "source": "font" + }, + { + "char": "¦", + "x": 1106, + "y": 1312, + "w": 9, + "h": 45, + "source": "font" + }, + { + "char": "¦", + "x": 1117, + "y": 1312, + "w": 9, + "h": 47, + "source": "font" + }, + { + "char": "§", + "x": 1128, + "y": 1312, + "w": 35, + "h": 50, + "source": "font" + }, + { + "char": "§", + "x": 1165, + "y": 1312, + "w": 37, + "h": 51, + "source": "font" + }, + { + "char": "¨", + "x": 1204, + "y": 1312, + "w": 23, + "h": 12, + "source": "font" + }, + { + "char": "¨", + "x": 1229, + "y": 1312, + "w": 24, + "h": 13, + "source": "font" + }, + { + "char": "©", + "x": 1255, + "y": 1312, + "w": 40, + "h": 39, + "source": "font" + }, + { + "char": "©", + "x": 1297, + "y": 1312, + "w": 42, + "h": 41, + "source": "font" + }, + { + "char": "ª", + "x": 1341, + "y": 1312, + "w": 19, + "h": 19, + "source": "font" + }, + { + "char": "ª", + "x": 1362, + "y": 1312, + "w": 19, + "h": 20, + "source": "font" + }, + { + "char": "«", + "x": 1383, + "y": 1312, + "w": 30, + "h": 34, + "source": "font" + }, + { + "char": "«", + "x": 1415, + "y": 1312, + "w": 31, + "h": 35, + "source": "font" + }, + { + "char": "¬", + "x": 1448, + "y": 1312, + "w": 28, + "h": 19, + "source": "font" + }, + { + "char": "¬", + "x": 1478, + "y": 1312, + "w": 29, + "h": 20, + "source": "font" + }, + { + "char": "®", + "x": 1509, + "y": 1312, + "w": 40, + "h": 39, + "source": "font" + }, + { + "char": "®", + "x": 1551, + "y": 1312, + "w": 42, + "h": 41, + "source": "font" + }, + { + "char": "¯", + "x": 2, + "y": 1371, + "w": 20, + "h": 9, + "source": "font" + }, + { + "char": "¯", + "x": 24, + "y": 1371, + "w": 21, + "h": 9, + "source": "font" + }, + { + "char": "°", + "x": 47, + "y": 1371, + "w": 18, + "h": 15, + "source": "font" + }, + { + "char": "°", + "x": 67, + "y": 1371, + "w": 18, + "h": 17, + "source": "font" + }, + { + "char": "±", + "x": 87, + "y": 1371, + "w": 36, + "h": 41, + "source": "font" + }, + { + "char": "±", + "x": 125, + "y": 1371, + "w": 38, + "h": 42, + "source": "font" + }, + { + "char": "²", + "x": 165, + "y": 1371, + "w": 20, + "h": 25, + "source": "font" + }, + { + "char": "²", + "x": 187, + "y": 1371, + "w": 21, + "h": 27, + "source": "font" + }, + { + "char": "³", + "x": 210, + "y": 1371, + "w": 21, + "h": 26, + "source": "font" + }, + { + "char": "³", + "x": 233, + "y": 1371, + "w": 22, + "h": 27, + "source": "font" + }, + { + "char": "´", + "x": 257, + "y": 1371, + "w": 16, + "h": 14, + "source": "font" + }, + { + "char": "´", + "x": 275, + "y": 1371, + "w": 16, + "h": 15, + "source": "font" + }, + { + "char": "µ", + "x": 293, + "y": 1371, + "w": 31, + "h": 41, + "source": "font" + }, + { + "char": "µ", + "x": 326, + "y": 1371, + "w": 32, + "h": 42, + "source": "font" + }, + { + "char": "¶", + "x": 360, + "y": 1371, + "w": 33, + "h": 48, + "source": "font" + }, + { + "char": "¶", + "x": 395, + "y": 1371, + "w": 34, + "h": 50, + "source": "font" + }, + { + "char": "·", + "x": 431, + "y": 1371, + "w": 13, + "h": 13, + "source": "font" + }, + { + "char": "·", + "x": 446, + "y": 1371, + "w": 13, + "h": 13, + "source": "font" + }, + { + "char": "¸", + "x": 461, + "y": 1371, + "w": 16, + "h": 13, + "source": "font" + }, + { + "char": "¸", + "x": 479, + "y": 1371, + "w": 17, + "h": 13, + "source": "font" + }, + { + "char": "¹", + "x": 498, + "y": 1371, + "w": 18, + "h": 25, + "source": "font" + }, + { + "char": "¹", + "x": 518, + "y": 1371, + "w": 18, + "h": 26, + "source": "font" + }, + { + "char": "º", + "x": 538, + "y": 1371, + "w": 18, + "h": 19, + "source": "font" + }, + { + "char": "º", + "x": 558, + "y": 1371, + "w": 18, + "h": 19, + "source": "font" + }, + { + "char": "»", + "x": 578, + "y": 1371, + "w": 31, + "h": 34, + "source": "font" + }, + { + "char": "»", + "x": 611, + "y": 1371, + "w": 33, + "h": 35, + "source": "font" + }, + { + "char": "¼", + "x": 646, + "y": 1371, + "w": 42, + "h": 45, + "source": "font" + }, + { + "char": "¼", + "x": 690, + "y": 1371, + "w": 43, + "h": 47, + "source": "font" + }, + { + "char": "½", + "x": 735, + "y": 1371, + "w": 41, + "h": 45, + "source": "font" + }, + { + "char": "½", + "x": 778, + "y": 1371, + "w": 43, + "h": 47, + "source": "font" + }, + { + "char": "¾", + "x": 823, + "y": 1371, + "w": 43, + "h": 45, + "source": "font" + }, + { + "char": "¾", + "x": 868, + "y": 1371, + "w": 44, + "h": 48, + "source": "font" + }, + { + "char": "¿", + "x": 914, + "y": 1371, + "w": 34, + "h": 44, + "source": "font" + }, + { + "char": "¿", + "x": 950, + "y": 1371, + "w": 35, + "h": 46, + "source": "font" + }, + { + "char": "À", + "x": 987, + "y": 1371, + "w": 44, + "h": 57, + "source": "font" + }, + { + "char": "À", + "x": 1033, + "y": 1371, + "w": 45, + "h": 59, + "source": "font" + }, + { + "char": "Á", + "x": 1080, + "y": 1371, + "w": 44, + "h": 58, + "source": "font" + }, + { + "char": "Á", + "x": 1126, + "y": 1371, + "w": 45, + "h": 59, + "source": "font" + }, + { + "char": "Â", + "x": 1173, + "y": 1371, + "w": 44, + "h": 58, + "source": "font" + }, + { + "char": "Â", + "x": 1219, + "y": 1371, + "w": 45, + "h": 59, + "source": "font" + }, + { + "char": "Ã", + "x": 1266, + "y": 1371, + "w": 44, + "h": 57, + "source": "font" + }, + { + "char": "Ã", + "x": 1312, + "y": 1371, + "w": 45, + "h": 58, + "source": "font" + }, + { + "char": "Ä", + "x": 1359, + "y": 1371, + "w": 44, + "h": 56, + "source": "font" + }, + { + "char": "Ä", + "x": 1405, + "y": 1371, + "w": 45, + "h": 58, + "source": "font" + }, + { + "char": "Å", + "x": 1452, + "y": 1371, + "w": 44, + "h": 57, + "source": "font" + }, + { + "char": "Å", + "x": 1498, + "y": 1371, + "w": 45, + "h": 59, + "source": "font" + }, + { + "char": "Æ", + "x": 1545, + "y": 1371, + "w": 49, + "h": 43, + "source": "font" + }, + { + "char": "Æ", + "x": 2, + "y": 1432, + "w": 51, + "h": 44, + "source": "font" + }, + { + "char": "Ç", + "x": 55, + "y": 1432, + "w": 40, + "h": 54, + "source": "font" + }, + { + "char": "Ç", + "x": 97, + "y": 1432, + "w": 42, + "h": 55, + "source": "font" + }, + { + "char": "È", + "x": 141, + "y": 1432, + "w": 34, + "h": 58, + "source": "font" + }, + { + "char": "È", + "x": 177, + "y": 1432, + "w": 35, + "h": 59, + "source": "font" + }, + { + "char": "É", + "x": 214, + "y": 1432, + "w": 34, + "h": 57, + "source": "font" + }, + { + "char": "É", + "x": 250, + "y": 1432, + "w": 35, + "h": 59, + "source": "font" + }, + { + "char": "Ê", + "x": 287, + "y": 1432, + "w": 34, + "h": 57, + "source": "font" + }, + { + "char": "Ê", + "x": 323, + "y": 1432, + "w": 35, + "h": 59, + "source": "font" + }, + { + "char": "Ë", + "x": 360, + "y": 1432, + "w": 34, + "h": 56, + "source": "font" + }, + { + "char": "Ë", + "x": 396, + "y": 1432, + "w": 35, + "h": 58, + "source": "font" + }, + { + "char": "Ì", + "x": 433, + "y": 1432, + "w": 16, + "h": 57, + "source": "font" + }, + { + "char": "Ì", + "x": 451, + "y": 1432, + "w": 17, + "h": 59, + "source": "font" + }, + { + "char": "Í", + "x": 470, + "y": 1432, + "w": 16, + "h": 57, + "source": "font" + }, + { + "char": "Í", + "x": 488, + "y": 1432, + "w": 17, + "h": 59, + "source": "font" + }, + { + "char": "Î", + "x": 507, + "y": 1432, + "w": 23, + "h": 57, + "source": "font" + }, + { + "char": "Î", + "x": 532, + "y": 1432, + "w": 24, + "h": 59, + "source": "font" + }, + { + "char": "Ï", + "x": 558, + "y": 1432, + "w": 23, + "h": 55, + "source": "font" + }, + { + "char": "Ï", + "x": 583, + "y": 1432, + "w": 24, + "h": 58, + "source": "font" + }, + { + "char": "Ð", + "x": 609, + "y": 1432, + "w": 42, + "h": 43, + "source": "font" + }, + { + "char": "Ð", + "x": 653, + "y": 1432, + "w": 43, + "h": 44, + "source": "font" + }, + { + "char": "Ñ", + "x": 698, + "y": 1432, + "w": 38, + "h": 56, + "source": "font" + }, + { + "char": "Ñ", + "x": 738, + "y": 1432, + "w": 39, + "h": 58, + "source": "font" + }, + { + "char": "Ò", + "x": 779, + "y": 1432, + "w": 42, + "h": 58, + "source": "font" + }, + { + "char": "Ò", + "x": 823, + "y": 1432, + "w": 44, + "h": 60, + "source": "font" + }, + { + "char": "Ó", + "x": 869, + "y": 1432, + "w": 42, + "h": 58, + "source": "font" + }, + { + "char": "Ó", + "x": 913, + "y": 1432, + "w": 44, + "h": 60, + "source": "font" + }, + { + "char": "Ô", + "x": 959, + "y": 1432, + "w": 42, + "h": 58, + "source": "font" + }, + { + "char": "Ô", + "x": 1003, + "y": 1432, + "w": 44, + "h": 60, + "source": "font" + }, + { + "char": "Õ", + "x": 1049, + "y": 1432, + "w": 42, + "h": 58, + "source": "font" + }, + { + "char": "Õ", + "x": 1093, + "y": 1432, + "w": 44, + "h": 59, + "source": "font" + }, + { + "char": "Ö", + "x": 1139, + "y": 1432, + "w": 42, + "h": 57, + "source": "font" + }, + { + "char": "Ö", + "x": 1183, + "y": 1432, + "w": 44, + "h": 58, + "source": "font" + }, + { + "char": "×", + "x": 1229, + "y": 1432, + "w": 38, + "h": 41, + "source": "font" + }, + { + "char": "×", + "x": 1269, + "y": 1432, + "w": 38, + "h": 43, + "source": "font" + }, + { + "char": "Ø", + "x": 1309, + "y": 1432, + "w": 44, + "h": 46, + "source": "font" + }, + { + "char": "Ø", + "x": 1355, + "y": 1432, + "w": 46, + "h": 47, + "source": "font" + }, + { + "char": "Ù", + "x": 1403, + "y": 1432, + "w": 38, + "h": 58, + "source": "font" + }, + { + "char": "Ù", + "x": 1443, + "y": 1432, + "w": 39, + "h": 60, + "source": "font" + }, + { + "char": "Ú", + "x": 1484, + "y": 1432, + "w": 38, + "h": 58, + "source": "font" + }, + { + "char": "Ú", + "x": 1524, + "y": 1432, + "w": 39, + "h": 60, + "source": "font" + }, + { + "char": "Û", + "x": 2, + "y": 1494, + "w": 38, + "h": 58, + "source": "font" + }, + { + "char": "Û", + "x": 42, + "y": 1494, + "w": 39, + "h": 60, + "source": "font" + }, + { + "char": "Ü", + "x": 83, + "y": 1494, + "w": 38, + "h": 56, + "source": "font" + }, + { + "char": "Ü", + "x": 123, + "y": 1494, + "w": 39, + "h": 59, + "source": "font" + }, + { + "char": "Ý", + "x": 164, + "y": 1494, + "w": 40, + "h": 57, + "source": "font" + }, + { + "char": "Ý", + "x": 206, + "y": 1494, + "w": 41, + "h": 59, + "source": "font" + }, + { + "char": "Þ", + "x": 249, + "y": 1494, + "w": 35, + "h": 43, + "source": "font" + }, + { + "char": "Þ", + "x": 286, + "y": 1494, + "w": 37, + "h": 44, + "source": "font" + }, + { + "char": "ß", + "x": 325, + "y": 1494, + "w": 32, + "h": 44, + "source": "font" + }, + { + "char": "ß", + "x": 359, + "y": 1494, + "w": 33, + "h": 45, + "source": "font" + }, + { + "char": "à", + "x": 394, + "y": 1494, + "w": 34, + "h": 47, + "source": "font" + }, + { + "char": "à", + "x": 430, + "y": 1494, + "w": 35, + "h": 49, + "source": "font" + }, + { + "char": "á", + "x": 467, + "y": 1494, + "w": 34, + "h": 47, + "source": "font" + }, + { + "char": "á", + "x": 503, + "y": 1494, + "w": 35, + "h": 49, + "source": "font" + }, + { + "char": "â", + "x": 540, + "y": 1494, + "w": 34, + "h": 48, + "source": "font" + }, + { + "char": "â", + "x": 576, + "y": 1494, + "w": 35, + "h": 50, + "source": "font" + }, + { + "char": "ã", + "x": 613, + "y": 1494, + "w": 34, + "h": 47, + "source": "font" + }, + { + "char": "ã", + "x": 649, + "y": 1494, + "w": 35, + "h": 49, + "source": "font" + }, + { + "char": "ä", + "x": 686, + "y": 1494, + "w": 34, + "h": 46, + "source": "font" + }, + { + "char": "ä", + "x": 722, + "y": 1494, + "w": 35, + "h": 47, + "source": "font" + }, + { + "char": "å", + "x": 759, + "y": 1494, + "w": 34, + "h": 48, + "source": "font" + }, + { + "char": "å", + "x": 795, + "y": 1494, + "w": 35, + "h": 49, + "source": "font" + }, + { + "char": "æ", + "x": 832, + "y": 1494, + "w": 48, + "h": 33, + "source": "font" + }, + { + "char": "æ", + "x": 882, + "y": 1494, + "w": 49, + "h": 34, + "source": "font" + }, + { + "char": "ç", + "x": 933, + "y": 1494, + "w": 31, + "h": 42, + "source": "font" + }, + { + "char": "ç", + "x": 966, + "y": 1494, + "w": 33, + "h": 44, + "source": "font" + }, + { + "char": "è", + "x": 1001, + "y": 1494, + "w": 32, + "h": 47, + "source": "font" + }, + { + "char": "è", + "x": 1035, + "y": 1494, + "w": 33, + "h": 49, + "source": "font" + }, + { + "char": "é", + "x": 1070, + "y": 1494, + "w": 32, + "h": 47, + "source": "font" + }, + { + "char": "é", + "x": 1104, + "y": 1494, + "w": 33, + "h": 49, + "source": "font" + }, + { + "char": "ê", + "x": 1139, + "y": 1494, + "w": 32, + "h": 48, + "source": "font" + }, + { + "char": "ê", + "x": 1173, + "y": 1494, + "w": 33, + "h": 50, + "source": "font" + }, + { + "char": "ë", + "x": 1208, + "y": 1494, + "w": 32, + "h": 46, + "source": "font" + }, + { + "char": "ë", + "x": 1242, + "y": 1494, + "w": 33, + "h": 47, + "source": "font" + }, + { + "char": "ì", + "x": 1277, + "y": 1494, + "w": 16, + "h": 46, + "source": "font" + }, + { + "char": "ì", + "x": 1295, + "y": 1494, + "w": 17, + "h": 47, + "source": "font" + }, + { + "char": "í", + "x": 1314, + "y": 1494, + "w": 16, + "h": 46, + "source": "font" + }, + { + "char": "í", + "x": 1332, + "y": 1494, + "w": 17, + "h": 47, + "source": "font" + }, + { + "char": "î", + "x": 1351, + "y": 1494, + "w": 24, + "h": 47, + "source": "font" + }, + { + "char": "î", + "x": 1377, + "y": 1494, + "w": 24, + "h": 49, + "source": "font" + }, + { + "char": "ï", + "x": 1403, + "y": 1494, + "w": 23, + "h": 45, + "source": "font" + }, + { + "char": "ï", + "x": 1428, + "y": 1494, + "w": 24, + "h": 46, + "source": "font" + }, + { + "char": "ð", + "x": 1454, + "y": 1494, + "w": 32, + "h": 46, + "source": "font" + }, + { + "char": "ð", + "x": 1488, + "y": 1494, + "w": 33, + "h": 47, + "source": "font" + }, + { + "char": "ñ", + "x": 1523, + "y": 1494, + "w": 32, + "h": 46, + "source": "font" + }, + { + "char": "ñ", + "x": 1557, + "y": 1494, + "w": 33, + "h": 48, + "source": "font" + }, + { + "char": "ò", + "x": 2, + "y": 1556, + "w": 34, + "h": 47, + "source": "font" + }, + { + "char": "ò", + "x": 38, + "y": 1556, + "w": 35, + "h": 49, + "source": "font" + }, + { + "char": "ó", + "x": 75, + "y": 1556, + "w": 34, + "h": 47, + "source": "font" + }, + { + "char": "ó", + "x": 111, + "y": 1556, + "w": 35, + "h": 49, + "source": "font" + }, + { + "char": "ô", + "x": 148, + "y": 1556, + "w": 34, + "h": 48, + "source": "font" + }, + { + "char": "ô", + "x": 184, + "y": 1556, + "w": 35, + "h": 50, + "source": "font" + }, + { + "char": "õ", + "x": 221, + "y": 1556, + "w": 34, + "h": 47, + "source": "font" + }, + { + "char": "õ", + "x": 257, + "y": 1556, + "w": 35, + "h": 49, + "source": "font" + }, + { + "char": "ö", + "x": 294, + "y": 1556, + "w": 34, + "h": 46, + "source": "font" + }, + { + "char": "ö", + "x": 330, + "y": 1556, + "w": 35, + "h": 47, + "source": "font" + }, + { + "char": "÷", + "x": 367, + "y": 1556, + "w": 40, + "h": 40, + "source": "font" + }, + { + "char": "÷", + "x": 409, + "y": 1556, + "w": 40, + "h": 41, + "source": "font" + }, + { + "char": "ø", + "x": 451, + "y": 1556, + "w": 36, + "h": 34, + "source": "font" + }, + { + "char": "ø", + "x": 489, + "y": 1556, + "w": 36, + "h": 35, + "source": "font" + }, + { + "char": "ù", + "x": 527, + "y": 1556, + "w": 32, + "h": 47, + "source": "font" + }, + { + "char": "ù", + "x": 561, + "y": 1556, + "w": 33, + "h": 48, + "source": "font" + }, + { + "char": "ú", + "x": 596, + "y": 1556, + "w": 32, + "h": 47, + "source": "font" + }, + { + "char": "ú", + "x": 630, + "y": 1556, + "w": 33, + "h": 48, + "source": "font" + }, + { + "char": "û", + "x": 665, + "y": 1556, + "w": 32, + "h": 48, + "source": "font" + }, + { + "char": "û", + "x": 699, + "y": 1556, + "w": 33, + "h": 50, + "source": "font" + }, + { + "char": "ü", + "x": 734, + "y": 1556, + "w": 32, + "h": 46, + "source": "font" + }, + { + "char": "ü", + "x": 768, + "y": 1556, + "w": 33, + "h": 47, + "source": "font" + }, + { + "char": "ý", + "x": 803, + "y": 1556, + "w": 33, + "h": 57, + "source": "font" + }, + { + "char": "ý", + "x": 838, + "y": 1556, + "w": 34, + "h": 58, + "source": "font" + }, + { + "char": "þ", + "x": 874, + "y": 1556, + "w": 33, + "h": 54, + "source": "font" + }, + { + "char": "þ", + "x": 909, + "y": 1556, + "w": 34, + "h": 56, + "source": "font" + }, + { + "char": "ÿ", + "x": 945, + "y": 1556, + "w": 33, + "h": 56, + "source": "font" + }, + { + "char": "ÿ", + "x": 980, + "y": 1556, + "w": 34, + "h": 57, + "source": "font" + }, + { + "char": "ぁ", + "x": 1016, + "y": 1556, + "w": 41, + "h": 42, + "source": "font" + }, + { + "char": "ぁ", + "x": 1059, + "y": 1556, + "w": 43, + "h": 44, + "source": "font" + }, + { + "char": "あ", + "x": 1104, + "y": 1556, + "w": 48, + "h": 49, + "source": "font" + }, + { + "char": "あ", + "x": 1154, + "y": 1556, + "w": 49, + "h": 51, + "source": "font" + }, + { + "char": "ぃ", + "x": 1205, + "y": 1556, + "w": 40, + "h": 37, + "source": "font" + }, + { + "char": "ぃ", + "x": 1247, + "y": 1556, + "w": 42, + "h": 39, + "source": "font" + }, + { + "char": "い", + "x": 1291, + "y": 1556, + "w": 46, + "h": 43, + "source": "font" + }, + { + "char": "い", + "x": 1339, + "y": 1556, + "w": 48, + "h": 45, + "source": "font" + }, + { + "char": "ぅ", + "x": 1389, + "y": 1556, + "w": 38, + "h": 43, + "source": "font" + }, + { + "char": "ぅ", + "x": 1429, + "y": 1556, + "w": 38, + "h": 44, + "source": "font" + }, + { + "char": "う", + "x": 1469, + "y": 1556, + "w": 44, + "h": 50, + "source": "font" + }, + { + "char": "う", + "x": 1515, + "y": 1556, + "w": 46, + "h": 52, + "source": "font" + }, + { + "char": "ぇ", + "x": 2, + "y": 1616, + "w": 40, + "h": 41, + "source": "font" + }, + { + "char": "ぇ", + "x": 44, + "y": 1616, + "w": 41, + "h": 43, + "source": "font" + }, + { + "char": "え", + "x": 87, + "y": 1616, + "w": 46, + "h": 47, + "source": "font" + }, + { + "char": "え", + "x": 135, + "y": 1616, + "w": 48, + "h": 50, + "source": "font" + }, + { + "char": "ぉ", + "x": 185, + "y": 1616, + "w": 42, + "h": 41, + "source": "font" + }, + { + "char": "ぉ", + "x": 229, + "y": 1616, + "w": 42, + "h": 43, + "source": "font" + }, + { + "char": "お", + "x": 273, + "y": 1616, + "w": 48, + "h": 48, + "source": "font" + }, + { + "char": "お", + "x": 323, + "y": 1616, + "w": 50, + "h": 50, + "source": "font" + }, + { + "char": "か", + "x": 375, + "y": 1616, + "w": 52, + "h": 48, + "source": "font" + }, + { + "char": "か", + "x": 429, + "y": 1616, + "w": 54, + "h": 49, + "source": "font" + }, + { + "char": "が", + "x": 485, + "y": 1616, + "w": 53, + "h": 51, + "source": "font" + }, + { + "char": "が", + "x": 540, + "y": 1616, + "w": 55, + "h": 53, + "source": "font" + }, + { + "char": "き", + "x": 597, + "y": 1616, + "w": 45, + "h": 50, + "source": "font" + }, + { + "char": "き", + "x": 644, + "y": 1616, + "w": 46, + "h": 52, + "source": "font" + }, + { + "char": "ぎ", + "x": 692, + "y": 1616, + "w": 51, + "h": 52, + "source": "font" + }, + { + "char": "ぎ", + "x": 745, + "y": 1616, + "w": 53, + "h": 54, + "source": "font" + }, + { + "char": "く", + "x": 800, + "y": 1616, + "w": 46, + "h": 51, + "source": "font" + }, + { + "char": "く", + "x": 848, + "y": 1616, + "w": 46, + "h": 53, + "source": "font" + }, + { + "char": "ぐ", + "x": 896, + "y": 1616, + "w": 49, + "h": 51, + "source": "font" + }, + { + "char": "ぐ", + "x": 947, + "y": 1616, + "w": 50, + "h": 53, + "source": "font" + }, + { + "char": "け", + "x": 999, + "y": 1616, + "w": 46, + "h": 49, + "source": "font" + }, + { + "char": "け", + "x": 1047, + "y": 1616, + "w": 48, + "h": 51, + "source": "font" + }, + { + "char": "げ", + "x": 1097, + "y": 1616, + "w": 53, + "h": 53, + "source": "font" + }, + { + "char": "げ", + "x": 1152, + "y": 1616, + "w": 55, + "h": 55, + "source": "font" + }, + { + "char": "こ", + "x": 1209, + "y": 1616, + "w": 47, + "h": 45, + "source": "font" + }, + { + "char": "こ", + "x": 1258, + "y": 1616, + "w": 49, + "h": 46, + "source": "font" + }, + { + "char": "ご", + "x": 1309, + "y": 1616, + "w": 52, + "h": 48, + "source": "font" + }, + { + "char": "ご", + "x": 1363, + "y": 1616, + "w": 54, + "h": 48, + "source": "font" + }, + { + "char": "さ", + "x": 1419, + "y": 1616, + "w": 45, + "h": 50, + "source": "font" + }, + { + "char": "さ", + "x": 1466, + "y": 1616, + "w": 46, + "h": 52, + "source": "font" + }, + { + "char": "ざ", + "x": 1514, + "y": 1616, + "w": 51, + "h": 53, + "source": "font" + }, + { + "char": "ざ", + "x": 2, + "y": 1673, + "w": 53, + "h": 55, + "source": "font" + }, + { + "char": "し", + "x": 57, + "y": 1673, + "w": 42, + "h": 47, + "source": "font" + }, + { + "char": "し", + "x": 101, + "y": 1673, + "w": 45, + "h": 48, + "source": "font" + }, + { + "char": "じ", + "x": 148, + "y": 1673, + "w": 42, + "h": 48, + "source": "font" + }, + { + "char": "じ", + "x": 192, + "y": 1673, + "w": 45, + "h": 50, + "source": "font" + }, + { + "char": "す", + "x": 239, + "y": 1673, + "w": 47, + "h": 50, + "source": "font" + }, + { + "char": "す", + "x": 288, + "y": 1673, + "w": 49, + "h": 52, + "source": "font" + }, + { + "char": "ず", + "x": 339, + "y": 1673, + "w": 53, + "h": 54, + "source": "font" + }, + { + "char": "ず", + "x": 394, + "y": 1673, + "w": 55, + "h": 55, + "source": "font" + }, + { + "char": "せ", + "x": 451, + "y": 1673, + "w": 50, + "h": 47, + "source": "font" + }, + { + "char": "せ", + "x": 503, + "y": 1673, + "w": 52, + "h": 49, + "source": "font" + }, + { + "char": "ぜ", + "x": 557, + "y": 1673, + "w": 56, + "h": 51, + "source": "font" + }, + { + "char": "ぜ", + "x": 615, + "y": 1673, + "w": 58, + "h": 53, + "source": "font" + }, + { + "char": "そ", + "x": 675, + "y": 1673, + "w": 47, + "h": 47, + "source": "font" + }, + { + "char": "そ", + "x": 724, + "y": 1673, + "w": 49, + "h": 49, + "source": "font" + }, + { + "char": "ぞ", + "x": 775, + "y": 1673, + "w": 51, + "h": 48, + "source": "font" + }, + { + "char": "ぞ", + "x": 828, + "y": 1673, + "w": 52, + "h": 50, + "source": "font" + }, + { + "char": "た", + "x": 882, + "y": 1673, + "w": 48, + "h": 50, + "source": "font" + }, + { + "char": "た", + "x": 932, + "y": 1673, + "w": 50, + "h": 51, + "source": "font" + }, + { + "char": "だ", + "x": 984, + "y": 1673, + "w": 48, + "h": 50, + "source": "font" + }, + { + "char": "だ", + "x": 1034, + "y": 1673, + "w": 50, + "h": 51, + "source": "font" + }, + { + "char": "ち", + "x": 1086, + "y": 1673, + "w": 45, + "h": 51, + "source": "font" + }, + { + "char": "ち", + "x": 1133, + "y": 1673, + "w": 47, + "h": 52, + "source": "font" + }, + { + "char": "ぢ", + "x": 1182, + "y": 1673, + "w": 50, + "h": 51, + "source": "font" + }, + { + "char": "ぢ", + "x": 1234, + "y": 1673, + "w": 52, + "h": 53, + "source": "font" + }, + { + "char": "っ", + "x": 1288, + "y": 1673, + "w": 42, + "h": 36, + "source": "font" + }, + { + "char": "っ", + "x": 1332, + "y": 1673, + "w": 43, + "h": 37, + "source": "font" + }, + { + "char": "つ", + "x": 1377, + "y": 1673, + "w": 49, + "h": 43, + "source": "font" + }, + { + "char": "つ", + "x": 1428, + "y": 1673, + "w": 51, + "h": 43, + "source": "font" + }, + { + "char": "づ", + "x": 1481, + "y": 1673, + "w": 53, + "h": 50, + "source": "font" + }, + { + "char": "づ", + "x": 1536, + "y": 1673, + "w": 55, + "h": 52, + "source": "font" + }, + { + "char": "て", + "x": 2, + "y": 1730, + "w": 47, + "h": 47, + "source": "font" + }, + { + "char": "て", + "x": 51, + "y": 1730, + "w": 49, + "h": 49, + "source": "font" + }, + { + "char": "で", + "x": 102, + "y": 1730, + "w": 47, + "h": 47, + "source": "font" + }, + { + "char": "で", + "x": 151, + "y": 1730, + "w": 49, + "h": 49, + "source": "font" + }, + { + "char": "と", + "x": 202, + "y": 1730, + "w": 44, + "h": 48, + "source": "font" + }, + { + "char": "と", + "x": 248, + "y": 1730, + "w": 44, + "h": 50, + "source": "font" + }, + { + "char": "ど", + "x": 294, + "y": 1730, + "w": 47, + "h": 51, + "source": "font" + }, + { + "char": "ど", + "x": 343, + "y": 1730, + "w": 49, + "h": 52, + "source": "font" + }, + { + "char": "な", + "x": 394, + "y": 1730, + "w": 50, + "h": 48, + "source": "font" + }, + { + "char": "な", + "x": 446, + "y": 1730, + "w": 52, + "h": 50, + "source": "font" + }, + { + "char": "に", + "x": 500, + "y": 1730, + "w": 47, + "h": 45, + "source": "font" + }, + { + "char": "に", + "x": 549, + "y": 1730, + "w": 48, + "h": 47, + "source": "font" + }, + { + "char": "ぬ", + "x": 599, + "y": 1730, + "w": 51, + "h": 47, + "source": "font" + }, + { + "char": "ぬ", + "x": 652, + "y": 1730, + "w": 53, + "h": 49, + "source": "font" + }, + { + "char": "ね", + "x": 707, + "y": 1730, + "w": 52, + "h": 50, + "source": "font" + }, + { + "char": "ね", + "x": 761, + "y": 1730, + "w": 54, + "h": 52, + "source": "font" + }, + { + "char": "の", + "x": 817, + "y": 1730, + "w": 50, + "h": 43, + "source": "font" + }, + { + "char": "の", + "x": 869, + "y": 1730, + "w": 52, + "h": 45, + "source": "font" + }, + { + "char": "は", + "x": 923, + "y": 1730, + "w": 49, + "h": 46, + "source": "font" + }, + { + "char": "は", + "x": 974, + "y": 1730, + "w": 51, + "h": 48, + "source": "font" + }, + { + "char": "ば", + "x": 1027, + "y": 1730, + "w": 53, + "h": 51, + "source": "font" + }, + { + "char": "ば", + "x": 1082, + "y": 1730, + "w": 55, + "h": 53, + "source": "font" + }, + { + "char": "ぱ", + "x": 1139, + "y": 1730, + "w": 51, + "h": 51, + "source": "font" + }, + { + "char": "ぱ", + "x": 1192, + "y": 1730, + "w": 53, + "h": 53, + "source": "font" + }, + { + "char": "ひ", + "x": 1247, + "y": 1730, + "w": 51, + "h": 46, + "source": "font" + }, + { + "char": "ひ", + "x": 1300, + "y": 1730, + "w": 53, + "h": 48, + "source": "font" + }, + { + "char": "び", + "x": 1355, + "y": 1730, + "w": 53, + "h": 52, + "source": "font" + }, + { + "char": "び", + "x": 1410, + "y": 1730, + "w": 55, + "h": 54, + "source": "font" + }, + { + "char": "ぴ", + "x": 1467, + "y": 1730, + "w": 52, + "h": 50, + "source": "font" + }, + { + "char": "ぴ", + "x": 1521, + "y": 1730, + "w": 54, + "h": 52, + "source": "font" + }, + { + "char": "ふ", + "x": 2, + "y": 1786, + "w": 53, + "h": 48, + "source": "font" + }, + { + "char": "ふ", + "x": 57, + "y": 1786, + "w": 55, + "h": 49, + "source": "font" + }, + { + "char": "ぶ", + "x": 114, + "y": 1786, + "w": 53, + "h": 47, + "source": "font" + }, + { + "char": "ぶ", + "x": 169, + "y": 1786, + "w": 55, + "h": 49, + "source": "font" + }, + { + "char": "ぷ", + "x": 226, + "y": 1786, + "w": 53, + "h": 47, + "source": "font" + }, + { + "char": "ぷ", + "x": 281, + "y": 1786, + "w": 55, + "h": 49, + "source": "font" + }, + { + "char": "へ", + "x": 338, + "y": 1786, + "w": 52, + "h": 41, + "source": "font" + }, + { + "char": "へ", + "x": 392, + "y": 1786, + "w": 54, + "h": 43, + "source": "font" + }, + { + "char": "べ", + "x": 448, + "y": 1786, + "w": 52, + "h": 46, + "source": "font" + }, + { + "char": "べ", + "x": 502, + "y": 1786, + "w": 54, + "h": 48, + "source": "font" + }, + { + "char": "ぺ", + "x": 558, + "y": 1786, + "w": 52, + "h": 46, + "source": "font" + }, + { + "char": "ぺ", + "x": 612, + "y": 1786, + "w": 54, + "h": 47, + "source": "font" + }, + { + "char": "ほ", + "x": 668, + "y": 1786, + "w": 49, + "h": 45, + "source": "font" + }, + { + "char": "ほ", + "x": 719, + "y": 1786, + "w": 51, + "h": 47, + "source": "font" + }, + { + "char": "ぼ", + "x": 772, + "y": 1786, + "w": 55, + "h": 47, + "source": "font" + }, + { + "char": "ぼ", + "x": 829, + "y": 1786, + "w": 57, + "h": 49, + "source": "font" + }, + { + "char": "ぽ", + "x": 888, + "y": 1786, + "w": 50, + "h": 47, + "source": "font" + }, + { + "char": "ぽ", + "x": 940, + "y": 1786, + "w": 52, + "h": 49, + "source": "font" + }, + { + "char": "ま", + "x": 994, + "y": 1786, + "w": 46, + "h": 50, + "source": "font" + }, + { + "char": "ま", + "x": 1042, + "y": 1786, + "w": 48, + "h": 51, + "source": "font" + }, + { + "char": "み", + "x": 1092, + "y": 1786, + "w": 51, + "h": 48, + "source": "font" + }, + { + "char": "み", + "x": 1145, + "y": 1786, + "w": 53, + "h": 49, + "source": "font" + }, + { + "char": "む", + "x": 1200, + "y": 1786, + "w": 50, + "h": 47, + "source": "font" + }, + { + "char": "む", + "x": 1252, + "y": 1786, + "w": 52, + "h": 50, + "source": "font" + }, + { + "char": "め", + "x": 1306, + "y": 1786, + "w": 50, + "h": 47, + "source": "font" + }, + { + "char": "め", + "x": 1358, + "y": 1786, + "w": 52, + "h": 49, + "source": "font" + }, + { + "char": "も", + "x": 1412, + "y": 1786, + "w": 48, + "h": 49, + "source": "font" + }, + { + "char": "も", + "x": 1462, + "y": 1786, + "w": 50, + "h": 50, + "source": "font" + }, + { + "char": "ゃ", + "x": 1514, + "y": 1786, + "w": 43, + "h": 42, + "source": "font" + }, + { + "char": "ゃ", + "x": 2, + "y": 1839, + "w": 44, + "h": 44, + "source": "font" + }, + { + "char": "や", + "x": 48, + "y": 1839, + "w": 50, + "h": 49, + "source": "font" + }, + { + "char": "や", + "x": 100, + "y": 1839, + "w": 51, + "h": 51, + "source": "font" + }, + { + "char": "ゅ", + "x": 153, + "y": 1839, + "w": 42, + "h": 42, + "source": "font" + }, + { + "char": "ゅ", + "x": 197, + "y": 1839, + "w": 44, + "h": 44, + "source": "font" + }, + { + "char": "ゆ", + "x": 243, + "y": 1839, + "w": 49, + "h": 50, + "source": "font" + }, + { + "char": "ゆ", + "x": 294, + "y": 1839, + "w": 51, + "h": 51, + "source": "font" + }, + { + "char": "ょ", + "x": 347, + "y": 1839, + "w": 41, + "h": 42, + "source": "font" + }, + { + "char": "ょ", + "x": 390, + "y": 1839, + "w": 43, + "h": 44, + "source": "font" + }, + { + "char": "よ", + "x": 435, + "y": 1839, + "w": 49, + "h": 49, + "source": "font" + }, + { + "char": "よ", + "x": 486, + "y": 1839, + "w": 51, + "h": 51, + "source": "font" + }, + { + "char": "ら", + "x": 539, + "y": 1839, + "w": 45, + "h": 50, + "source": "font" + }, + { + "char": "ら", + "x": 586, + "y": 1839, + "w": 46, + "h": 52, + "source": "font" + }, + { + "char": "り", + "x": 634, + "y": 1839, + "w": 41, + "h": 48, + "source": "font" + }, + { + "char": "り", + "x": 677, + "y": 1839, + "w": 42, + "h": 50, + "source": "font" + }, + { + "char": "る", + "x": 721, + "y": 1839, + "w": 49, + "h": 47, + "source": "font" + }, + { + "char": "る", + "x": 772, + "y": 1839, + "w": 51, + "h": 49, + "source": "font" + }, + { + "char": "れ", + "x": 825, + "y": 1839, + "w": 52, + "h": 48, + "source": "font" + }, + { + "char": "れ", + "x": 879, + "y": 1839, + "w": 54, + "h": 50, + "source": "font" + }, + { + "char": "ろ", + "x": 935, + "y": 1839, + "w": 48, + "h": 50, + "source": "font" + }, + { + "char": "ろ", + "x": 985, + "y": 1839, + "w": 50, + "h": 52, + "source": "font" + }, + { + "char": "ゎ", + "x": 1037, + "y": 1839, + "w": 43, + "h": 42, + "source": "font" + }, + { + "char": "ゎ", + "x": 1082, + "y": 1839, + "w": 44, + "h": 44, + "source": "font" + }, + { + "char": "わ", + "x": 1128, + "y": 1839, + "w": 50, + "h": 50, + "source": "font" + }, + { + "char": "わ", + "x": 1180, + "y": 1839, + "w": 51, + "h": 52, + "source": "font" + }, + { + "char": "ゐ", + "x": 1233, + "y": 1839, + "w": 48, + "h": 46, + "source": "font" + }, + { + "char": "ゐ", + "x": 1283, + "y": 1839, + "w": 50, + "h": 47, + "source": "font" + }, + { + "char": "ゑ", + "x": 1335, + "y": 1839, + "w": 51, + "h": 48, + "source": "font" + }, + { + "char": "ゑ", + "x": 1388, + "y": 1839, + "w": 53, + "h": 50, + "source": "font" + }, + { + "char": "を", + "x": 1443, + "y": 1839, + "w": 49, + "h": 49, + "source": "font" + }, + { + "char": "を", + "x": 1494, + "y": 1839, + "w": 51, + "h": 50, + "source": "font" + }, + { + "char": "ん", + "x": 1547, + "y": 1839, + "w": 50, + "h": 49, + "source": "font" + }, + { + "char": "ん", + "x": 2, + "y": 1893, + "w": 52, + "h": 51, + "source": "font" + }, + { + "char": "ゔ", + "x": 56, + "y": 1893, + "w": 50, + "h": 53, + "source": "font" + }, + { + "char": "ゔ", + "x": 108, + "y": 1893, + "w": 52, + "h": 55, + "source": "font" + }, + { + "char": "ゕ", + "x": 162, + "y": 1893, + "w": 44, + "h": 55, + "source": "font" + }, + { + "char": "ゕ", + "x": 208, + "y": 1893, + "w": 46, + "h": 57, + "source": "font" + }, + { + "char": "ゖ", + "x": 256, + "y": 1893, + "w": 44, + "h": 55, + "source": "font" + }, + { + "char": "ゖ", + "x": 302, + "y": 1893, + "w": 46, + "h": 57, + "source": "font" + }, + { + "char": "ァ", + "x": 350, + "y": 1893, + "w": 41, + "h": 40, + "source": "font" + }, + { + "char": "ァ", + "x": 393, + "y": 1893, + "w": 42, + "h": 42, + "source": "font" + }, + { + "char": "ア", + "x": 437, + "y": 1893, + "w": 47, + "h": 47, + "source": "font" + }, + { + "char": "ア", + "x": 486, + "y": 1893, + "w": 49, + "h": 48, + "source": "font" + }, + { + "char": "ィ", + "x": 537, + "y": 1893, + "w": 41, + "h": 42, + "source": "font" + }, + { + "char": "ィ", + "x": 580, + "y": 1893, + "w": 43, + "h": 43, + "source": "font" + }, + { + "char": "イ", + "x": 625, + "y": 1893, + "w": 48, + "h": 48, + "source": "font" + }, + { + "char": "イ", + "x": 675, + "y": 1893, + "w": 50, + "h": 50, + "source": "font" + }, + { + "char": "ゥ", + "x": 727, + "y": 1893, + "w": 39, + "h": 43, + "source": "font" + }, + { + "char": "ゥ", + "x": 768, + "y": 1893, + "w": 39, + "h": 45, + "source": "font" + }, + { + "char": "ウ", + "x": 809, + "y": 1893, + "w": 45, + "h": 50, + "source": "font" + }, + { + "char": "ウ", + "x": 856, + "y": 1893, + "w": 47, + "h": 52, + "source": "font" + }, + { + "char": "ェ", + "x": 905, + "y": 1893, + "w": 42, + "h": 37, + "source": "font" + }, + { + "char": "ェ", + "x": 949, + "y": 1893, + "w": 43, + "h": 38, + "source": "font" + }, + { + "char": "エ", + "x": 994, + "y": 1893, + "w": 48, + "h": 44, + "source": "font" + }, + { + "char": "エ", + "x": 1044, + "y": 1893, + "w": 50, + "h": 45, + "source": "font" + }, + { + "char": "ォ", + "x": 1096, + "y": 1893, + "w": 42, + "h": 41, + "source": "font" + }, + { + "char": "ォ", + "x": 1140, + "y": 1893, + "w": 43, + "h": 42, + "source": "font" + }, + { + "char": "オ", + "x": 1185, + "y": 1893, + "w": 49, + "h": 48, + "source": "font" + }, + { + "char": "オ", + "x": 1236, + "y": 1893, + "w": 50, + "h": 50, + "source": "font" + }, + { + "char": "カ", + "x": 1288, + "y": 1893, + "w": 46, + "h": 47, + "source": "font" + }, + { + "char": "カ", + "x": 1336, + "y": 1893, + "w": 48, + "h": 48, + "source": "font" + }, + { + "char": "ガ", + "x": 1386, + "y": 1893, + "w": 50, + "h": 51, + "source": "font" + }, + { + "char": "ガ", + "x": 1438, + "y": 1893, + "w": 52, + "h": 52, + "source": "font" + }, + { + "char": "キ", + "x": 1492, + "y": 1893, + "w": 47, + "h": 49, + "source": "font" + }, + { + "char": "キ", + "x": 1541, + "y": 1893, + "w": 49, + "h": 50, + "source": "font" + }, + { + "char": "ギ", + "x": 2, + "y": 1952, + "w": 50, + "h": 50, + "source": "font" + }, + { + "char": "ギ", + "x": 54, + "y": 1952, + "w": 52, + "h": 52, + "source": "font" + }, + { + "char": "ク", + "x": 108, + "y": 1952, + "w": 50, + "h": 51, + "source": "font" + }, + { + "char": "ク", + "x": 160, + "y": 1952, + "w": 52, + "h": 53, + "source": "font" + }, + { + "char": "グ", + "x": 214, + "y": 1952, + "w": 55, + "h": 53, + "source": "font" + }, + { + "char": "グ", + "x": 271, + "y": 1952, + "w": 57, + "h": 55, + "source": "font" + }, + { + "char": "ケ", + "x": 330, + "y": 1952, + "w": 49, + "h": 49, + "source": "font" + }, + { + "char": "ケ", + "x": 381, + "y": 1952, + "w": 51, + "h": 51, + "source": "font" + }, + { + "char": "ゲ", + "x": 434, + "y": 1952, + "w": 51, + "h": 52, + "source": "font" + }, + { + "char": "ゲ", + "x": 487, + "y": 1952, + "w": 53, + "h": 53, + "source": "font" + }, + { + "char": "コ", + "x": 542, + "y": 1952, + "w": 41, + "h": 42, + "source": "font" + }, + { + "char": "コ", + "x": 585, + "y": 1952, + "w": 43, + "h": 44, + "source": "font" + }, + { + "char": "ゴ", + "x": 630, + "y": 1952, + "w": 50, + "h": 49, + "source": "font" + }, + { + "char": "ゴ", + "x": 682, + "y": 1952, + "w": 51, + "h": 51, + "source": "font" + }, + { + "char": "サ", + "x": 735, + "y": 1952, + "w": 50, + "h": 48, + "source": "font" + }, + { + "char": "サ", + "x": 787, + "y": 1952, + "w": 52, + "h": 50, + "source": "font" + }, + { + "char": "ザ", + "x": 841, + "y": 1952, + "w": 55, + "h": 51, + "source": "font" + }, + { + "char": "ザ", + "x": 898, + "y": 1952, + "w": 57, + "h": 53, + "source": "font" + }, + { + "char": "シ", + "x": 957, + "y": 1952, + "w": 49, + "h": 46, + "source": "font" + }, + { + "char": "シ", + "x": 1008, + "y": 1952, + "w": 51, + "h": 48, + "source": "font" + }, + { + "char": "ジ", + "x": 1061, + "y": 1952, + "w": 49, + "h": 48, + "source": "font" + }, + { + "char": "ジ", + "x": 1112, + "y": 1952, + "w": 51, + "h": 50, + "source": "font" + }, + { + "char": "ス", + "x": 1165, + "y": 1952, + "w": 50, + "h": 45, + "source": "font" + }, + { + "char": "ス", + "x": 1217, + "y": 1952, + "w": 52, + "h": 46, + "source": "font" + }, + { + "char": "ズ", + "x": 1271, + "y": 1952, + "w": 50, + "h": 49, + "source": "font" + }, + { + "char": "ズ", + "x": 1323, + "y": 1952, + "w": 52, + "h": 51, + "source": "font" + }, + { + "char": "セ", + "x": 1377, + "y": 1952, + "w": 48, + "h": 47, + "source": "font" + }, + { + "char": "セ", + "x": 1427, + "y": 1952, + "w": 50, + "h": 48, + "source": "font" + }, + { + "char": "ゼ", + "x": 1479, + "y": 1952, + "w": 50, + "h": 50, + "source": "font" + }, + { + "char": "ゼ", + "x": 1531, + "y": 1952, + "w": 52, + "h": 52, + "source": "font" + }, + { + "char": "ソ", + "x": 2, + "y": 2009, + "w": 46, + "h": 45, + "source": "font" + }, + { + "char": "ソ", + "x": 50, + "y": 2009, + "w": 48, + "h": 46, + "source": "font" + }, + { + "char": "ゾ", + "x": 100, + "y": 2009, + "w": 48, + "h": 50, + "source": "font" + }, + { + "char": "ゾ", + "x": 150, + "y": 2009, + "w": 50, + "h": 52, + "source": "font" + }, + { + "char": "タ", + "x": 202, + "y": 2009, + "w": 50, + "h": 51, + "source": "font" + }, + { + "char": "タ", + "x": 254, + "y": 2009, + "w": 52, + "h": 53, + "source": "font" + }, + { + "char": "ダ", + "x": 308, + "y": 2009, + "w": 55, + "h": 54, + "source": "font" + }, + { + "char": "ダ", + "x": 365, + "y": 2009, + "w": 56, + "h": 56, + "source": "font" + }, + { + "char": "チ", + "x": 423, + "y": 2009, + "w": 48, + "h": 50, + "source": "font" + }, + { + "char": "チ", + "x": 473, + "y": 2009, + "w": 50, + "h": 52, + "source": "font" + }, + { + "char": "ヂ", + "x": 525, + "y": 2009, + "w": 55, + "h": 52, + "source": "font" + }, + { + "char": "ヂ", + "x": 582, + "y": 2009, + "w": 56, + "h": 54, + "source": "font" + }, + { + "char": "ッ", + "x": 640, + "y": 2009, + "w": 41, + "h": 39, + "source": "font" + }, + { + "char": "ッ", + "x": 683, + "y": 2009, + "w": 43, + "h": 40, + "source": "font" + }, + { + "char": "ツ", + "x": 728, + "y": 2009, + "w": 48, + "h": 46, + "source": "font" + }, + { + "char": "ツ", + "x": 778, + "y": 2009, + "w": 50, + "h": 47, + "source": "font" + }, + { + "char": "ヅ", + "x": 830, + "y": 2009, + "w": 48, + "h": 51, + "source": "font" + }, + { + "char": "ヅ", + "x": 880, + "y": 2009, + "w": 50, + "h": 53, + "source": "font" + }, + { + "char": "テ", + "x": 932, + "y": 2009, + "w": 48, + "h": 49, + "source": "font" + }, + { + "char": "テ", + "x": 982, + "y": 2009, + "w": 50, + "h": 51, + "source": "font" + }, + { + "char": "デ", + "x": 1034, + "y": 2009, + "w": 52, + "h": 50, + "source": "font" + }, + { + "char": "デ", + "x": 1088, + "y": 2009, + "w": 53, + "h": 51, + "source": "font" + }, + { + "char": "ト", + "x": 1143, + "y": 2009, + "w": 41, + "h": 49, + "source": "font" + }, + { + "char": "ト", + "x": 1186, + "y": 2009, + "w": 42, + "h": 50, + "source": "font" + }, + { + "char": "ド", + "x": 1230, + "y": 2009, + "w": 41, + "h": 49, + "source": "font" + }, + { + "char": "ド", + "x": 1273, + "y": 2009, + "w": 42, + "h": 51, + "source": "font" + }, + { + "char": "ナ", + "x": 1317, + "y": 2009, + "w": 48, + "h": 48, + "source": "font" + }, + { + "char": "ナ", + "x": 1367, + "y": 2009, + "w": 50, + "h": 49, + "source": "font" + }, + { + "char": "ニ", + "x": 1419, + "y": 2009, + "w": 48, + "h": 43, + "source": "font" + }, + { + "char": "ニ", + "x": 1469, + "y": 2009, + "w": 50, + "h": 44, + "source": "font" + }, + { + "char": "ヌ", + "x": 1521, + "y": 2009, + "w": 50, + "h": 46, + "source": "font" + }, + { + "char": "ヌ", + "x": 2, + "y": 2067, + "w": 52, + "h": 47, + "source": "font" + }, + { + "char": "ネ", + "x": 56, + "y": 2067, + "w": 51, + "h": 50, + "source": "font" + }, + { + "char": "ネ", + "x": 109, + "y": 2067, + "w": 53, + "h": 51, + "source": "font" + }, + { + "char": "ノ", + "x": 164, + "y": 2067, + "w": 43, + "h": 48, + "source": "font" + }, + { + "char": "ノ", + "x": 209, + "y": 2067, + "w": 45, + "h": 50, + "source": "font" + }, + { + "char": "ハ", + "x": 256, + "y": 2067, + "w": 54, + "h": 42, + "source": "font" + }, + { + "char": "ハ", + "x": 312, + "y": 2067, + "w": 55, + "h": 43, + "source": "font" + }, + { + "char": "バ", + "x": 369, + "y": 2067, + "w": 55, + "h": 47, + "source": "font" + }, + { + "char": "バ", + "x": 426, + "y": 2067, + "w": 57, + "h": 49, + "source": "font" + }, + { + "char": "パ", + "x": 485, + "y": 2067, + "w": 54, + "h": 45, + "source": "font" + }, + { + "char": "パ", + "x": 541, + "y": 2067, + "w": 56, + "h": 46, + "source": "font" + }, + { + "char": "ヒ", + "x": 599, + "y": 2067, + "w": 43, + "h": 46, + "source": "font" + }, + { + "char": "ヒ", + "x": 644, + "y": 2067, + "w": 44, + "h": 47, + "source": "font" + }, + { + "char": "ビ", + "x": 690, + "y": 2067, + "w": 48, + "h": 50, + "source": "font" + }, + { + "char": "ビ", + "x": 740, + "y": 2067, + "w": 49, + "h": 51, + "source": "font" + }, + { + "char": "ピ", + "x": 791, + "y": 2067, + "w": 46, + "h": 49, + "source": "font" + }, + { + "char": "ピ", + "x": 839, + "y": 2067, + "w": 47, + "h": 50, + "source": "font" + }, + { + "char": "フ", + "x": 888, + "y": 2067, + "w": 47, + "h": 47, + "source": "font" + }, + { + "char": "フ", + "x": 937, + "y": 2067, + "w": 47, + "h": 49, + "source": "font" + }, + { + "char": "ブ", + "x": 986, + "y": 2067, + "w": 54, + "h": 53, + "source": "font" + }, + { + "char": "ブ", + "x": 1042, + "y": 2067, + "w": 56, + "h": 55, + "source": "font" + }, + { + "char": "プ", + "x": 1100, + "y": 2067, + "w": 52, + "h": 53, + "source": "font" + }, + { + "char": "プ", + "x": 1154, + "y": 2067, + "w": 54, + "h": 55, + "source": "font" + }, + { + "char": "ヘ", + "x": 1210, + "y": 2067, + "w": 52, + "h": 40, + "source": "font" + }, + { + "char": "ヘ", + "x": 1264, + "y": 2067, + "w": 54, + "h": 41, + "source": "font" + }, + { + "char": "ベ", + "x": 1320, + "y": 2067, + "w": 52, + "h": 46, + "source": "font" + }, + { + "char": "ベ", + "x": 1374, + "y": 2067, + "w": 54, + "h": 48, + "source": "font" + }, + { + "char": "ペ", + "x": 1430, + "y": 2067, + "w": 52, + "h": 45, + "source": "font" + }, + { + "char": "ペ", + "x": 1484, + "y": 2067, + "w": 54, + "h": 46, + "source": "font" + }, + { + "char": "ホ", + "x": 1540, + "y": 2067, + "w": 51, + "h": 48, + "source": "font" + }, + { + "char": "ホ", + "x": 2, + "y": 2124, + "w": 53, + "h": 50, + "source": "font" + }, + { + "char": "ボ", + "x": 57, + "y": 2124, + "w": 51, + "h": 49, + "source": "font" + }, + { + "char": "ボ", + "x": 110, + "y": 2124, + "w": 53, + "h": 51, + "source": "font" + }, + { + "char": "ポ", + "x": 165, + "y": 2124, + "w": 51, + "h": 50, + "source": "font" + }, + { + "char": "ポ", + "x": 218, + "y": 2124, + "w": 53, + "h": 52, + "source": "font" + }, + { + "char": "マ", + "x": 273, + "y": 2124, + "w": 49, + "h": 44, + "source": "font" + }, + { + "char": "マ", + "x": 324, + "y": 2124, + "w": 51, + "h": 47, + "source": "font" + }, + { + "char": "ミ", + "x": 377, + "y": 2124, + "w": 46, + "h": 50, + "source": "font" + }, + { + "char": "ミ", + "x": 425, + "y": 2124, + "w": 47, + "h": 51, + "source": "font" + }, + { + "char": "ム", + "x": 474, + "y": 2124, + "w": 51, + "h": 46, + "source": "font" + }, + { + "char": "ム", + "x": 527, + "y": 2124, + "w": 53, + "h": 47, + "source": "font" + }, + { + "char": "メ", + "x": 582, + "y": 2124, + "w": 48, + "h": 48, + "source": "font" + }, + { + "char": "メ", + "x": 632, + "y": 2124, + "w": 50, + "h": 50, + "source": "font" + }, + { + "char": "モ", + "x": 684, + "y": 2124, + "w": 47, + "h": 46, + "source": "font" + }, + { + "char": "モ", + "x": 733, + "y": 2124, + "w": 49, + "h": 47, + "source": "font" + }, + { + "char": "ャ", + "x": 784, + "y": 2124, + "w": 42, + "h": 42, + "source": "font" + }, + { + "char": "ャ", + "x": 828, + "y": 2124, + "w": 44, + "h": 44, + "source": "font" + }, + { + "char": "ヤ", + "x": 874, + "y": 2124, + "w": 49, + "h": 49, + "source": "font" + }, + { + "char": "ヤ", + "x": 925, + "y": 2124, + "w": 51, + "h": 51, + "source": "font" + }, + { + "char": "ュ", + "x": 978, + "y": 2124, + "w": 42, + "h": 37, + "source": "font" + }, + { + "char": "ュ", + "x": 1022, + "y": 2124, + "w": 44, + "h": 38, + "source": "font" + }, + { + "char": "ユ", + "x": 1068, + "y": 2124, + "w": 50, + "h": 43, + "source": "font" + }, + { + "char": "ユ", + "x": 1120, + "y": 2124, + "w": 52, + "h": 45, + "source": "font" + }, + { + "char": "ョ", + "x": 1174, + "y": 2124, + "w": 37, + "h": 37, + "source": "font" + }, + { + "char": "ョ", + "x": 1213, + "y": 2124, + "w": 38, + "h": 39, + "source": "font" + }, + { + "char": "ヨ", + "x": 1253, + "y": 2124, + "w": 42, + "h": 43, + "source": "font" + }, + { + "char": "ヨ", + "x": 1297, + "y": 2124, + "w": 44, + "h": 45, + "source": "font" + }, + { + "char": "ラ", + "x": 1343, + "y": 2124, + "w": 46, + "h": 49, + "source": "font" + }, + { + "char": "ラ", + "x": 1391, + "y": 2124, + "w": 48, + "h": 51, + "source": "font" + }, + { + "char": "リ", + "x": 1441, + "y": 2124, + "w": 38, + "h": 49, + "source": "font" + }, + { + "char": "リ", + "x": 1481, + "y": 2124, + "w": 40, + "h": 50, + "source": "font" + }, + { + "char": "ル", + "x": 1523, + "y": 2124, + "w": 53, + "h": 45, + "source": "font" + }, + { + "char": "ル", + "x": 2, + "y": 2178, + "w": 55, + "h": 47, + "source": "font" + }, + { + "char": "レ", + "x": 59, + "y": 2178, + "w": 43, + "h": 46, + "source": "font" + }, + { + "char": "レ", + "x": 104, + "y": 2178, + "w": 45, + "h": 48, + "source": "font" + }, + { + "char": "ロ", + "x": 151, + "y": 2178, + "w": 45, + "h": 42, + "source": "font" + }, + { + "char": "ロ", + "x": 198, + "y": 2178, + "w": 46, + "h": 43, + "source": "font" + }, + { + "char": "ヮ", + "x": 246, + "y": 2178, + "w": 39, + "h": 40, + "source": "font" + }, + { + "char": "ヮ", + "x": 287, + "y": 2178, + "w": 41, + "h": 42, + "source": "font" + }, + { + "char": "ワ", + "x": 330, + "y": 2178, + "w": 45, + "h": 47, + "source": "font" + }, + { + "char": "ワ", + "x": 377, + "y": 2178, + "w": 47, + "h": 49, + "source": "font" + }, + { + "char": "ヰ", + "x": 426, + "y": 2178, + "w": 48, + "h": 50, + "source": "font" + }, + { + "char": "ヰ", + "x": 476, + "y": 2178, + "w": 50, + "h": 51, + "source": "font" + }, + { + "char": "ヱ", + "x": 528, + "y": 2178, + "w": 48, + "h": 42, + "source": "font" + }, + { + "char": "ヱ", + "x": 578, + "y": 2178, + "w": 50, + "h": 43, + "source": "font" + }, + { + "char": "ヲ", + "x": 630, + "y": 2178, + "w": 44, + "h": 48, + "source": "font" + }, + { + "char": "ヲ", + "x": 676, + "y": 2178, + "w": 46, + "h": 49, + "source": "font" + }, + { + "char": "ン", + "x": 724, + "y": 2178, + "w": 48, + "h": 46, + "source": "font" + }, + { + "char": "ン", + "x": 774, + "y": 2178, + "w": 50, + "h": 47, + "source": "font" + }, + { + "char": "ヴ", + "x": 826, + "y": 2178, + "w": 51, + "h": 52, + "source": "font" + }, + { + "char": "ヴ", + "x": 879, + "y": 2178, + "w": 53, + "h": 54, + "source": "font" + }, + { + "char": "ヵ", + "x": 934, + "y": 2178, + "w": 40, + "h": 40, + "source": "font" + }, + { + "char": "ヵ", + "x": 976, + "y": 2178, + "w": 42, + "h": 42, + "source": "font" + }, + { + "char": "ヶ", + "x": 1020, + "y": 2178, + "w": 42, + "h": 43, + "source": "font" + }, + { + "char": "ヶ", + "x": 1064, + "y": 2178, + "w": 43, + "h": 43, + "source": "font" + }, + { + "char": "ヷ", + "x": 1109, + "y": 2178, + "w": 50, + "h": 54, + "source": "font" + }, + { + "char": "ヷ", + "x": 1161, + "y": 2178, + "w": 52, + "h": 56, + "source": "font" + }, + { + "char": "ヸ", + "x": 1215, + "y": 2178, + "w": 54, + "h": 51, + "source": "font" + }, + { + "char": "ヸ", + "x": 1271, + "y": 2178, + "w": 56, + "h": 53, + "source": "font" + }, + { + "char": "ヹ", + "x": 1329, + "y": 2178, + "w": 54, + "h": 50, + "source": "font" + }, + { + "char": "ヹ", + "x": 1385, + "y": 2178, + "w": 56, + "h": 51, + "source": "font" + }, + { + "char": "ヺ", + "x": 1443, + "y": 2178, + "w": 49, + "h": 54, + "source": "font" + }, + { + "char": "ヺ", + "x": 1494, + "y": 2178, + "w": 51, + "h": 56, + "source": "font" + }, + { + "char": "・", + "x": 1547, + "y": 2178, + "w": 12, + "h": 13, + "source": "font" + }, + { + "char": "・", + "x": 1561, + "y": 2178, + "w": 14, + "h": 13, + "source": "font" + }, + { + "char": "ー", + "x": 2, + "y": 2236, + "w": 46, + "h": 18, + "source": "font" + }, + { + "char": "ー", + "x": 50, + "y": 2236, + "w": 48, + "h": 18, + "source": "font" + }, + { + "char": "、", + "x": 100, + "y": 2236, + "w": 24, + "h": 17, + "source": "font" + }, + { + "char": "、", + "x": 126, + "y": 2236, + "w": 25, + "h": 18, + "source": "font" + }, + { + "char": "。", + "x": 153, + "y": 2236, + "w": 23, + "h": 21, + "source": "font" + }, + { + "char": "。", + "x": 178, + "y": 2236, + "w": 23, + "h": 22, + "source": "font" + }, + { + "char": "「", + "x": 203, + "y": 2236, + "w": 19, + "h": 49, + "source": "font" + }, + { + "char": "「", + "x": 224, + "y": 2236, + "w": 19, + "h": 50, + "source": "font" + }, + { + "char": "」", + "x": 245, + "y": 2236, + "w": 25, + "h": 49, + "source": "font" + }, + { + "char": "」", + "x": 272, + "y": 2236, + "w": 26, + "h": 51, + "source": "font" + }, + { + "char": "★", + "x": 300, + "y": 2236, + "w": 53, + "h": 53, + "source": "font" + }, + { + "char": "★", + "x": 355, + "y": 2236, + "w": 56, + "h": 55, + "source": "font" + }, + { + "char": "☆", + "x": 413, + "y": 2236, + "w": 53, + "h": 54, + "source": "font" + }, + { + "char": "☆", + "x": 468, + "y": 2236, + "w": 56, + "h": 56, + "source": "font" + }, + { + "char": "•", + "x": 526, + "y": 2236, + "w": 48, + "h": 48, + "source": "font" + }, + { + "char": "•", + "x": 576, + "y": 2236, + "w": 50, + "h": 50, + "source": "font" + }, + { + "char": "♪", + "x": 628, + "y": 2236, + "w": 38, + "h": 49, + "source": "font" + }, + { + "char": "♪", + "x": 668, + "y": 2236, + "w": 39, + "h": 50, + "source": "font" + } + ] +} \ No newline at end of file diff --git a/public/cv/v1/glyphs/death-tag-name.png b/public/cv/v1/glyphs/death-tag-name.png new file mode 100644 index 000000000..34b9a7053 Binary files /dev/null and b/public/cv/v1/glyphs/death-tag-name.png differ diff --git a/public/cv/v1/glyphs/death-weapon-ja.json b/public/cv/v1/glyphs/death-weapon-ja.json new file mode 100644 index 000000000..092a1a78d --- /dev/null +++ b/public/cv/v1/glyphs/death-weapon-ja.json @@ -0,0 +1,4725 @@ +{ + "height": 40, + "glyphs": [ + { + "char": "!", + "x": 2, + "y": 2, + "w": 11, + "h": 38, + "source": "fixture" + }, + { + "char": "α", + "x": 15, + "y": 2, + "w": 27, + "h": 28, + "source": "fixture" + }, + { + "char": "イ", + "x": 44, + "y": 2, + "w": 23, + "h": 37, + "source": "fixture" + }, + { + "char": "ク", + "x": 69, + "y": 2, + "w": 25, + "h": 35, + "source": "fixture" + }, + { + "char": "ク", + "x": 96, + "y": 2, + "w": 25, + "h": 35, + "source": "fixture" + }, + { + "char": "ス", + "x": 123, + "y": 2, + "w": 28, + "h": 36, + "source": "fixture" + }, + { + "char": "た", + "x": 153, + "y": 2, + "w": 26, + "h": 37, + "source": "fixture" + }, + { + "char": "ッ", + "x": 181, + "y": 2, + "w": 25, + "h": 27, + "source": "fixture" + }, + { + "char": "で", + "x": 208, + "y": 2, + "w": 25, + "h": 44, + "source": "fixture" + }, + { + "char": "や", + "x": 235, + "y": 2, + "w": 30, + "h": 37, + "source": "fixture" + }, + { + "char": "ら", + "x": 267, + "y": 2, + "w": 24, + "h": 40, + "source": "fixture" + }, + { + "char": "リ", + "x": 293, + "y": 2, + "w": 24, + "h": 34, + "source": "fixture" + }, + { + "char": "れ", + "x": 319, + "y": 2, + "w": 30, + "h": 37, + "source": "fixture" + }, + { + "char": "ン", + "x": 351, + "y": 2, + "w": 27, + "h": 33, + "source": "fixture" + }, + { + "char": "R", + "x": 380, + "y": 2, + "w": 22, + "h": 39, + "source": "font" + }, + { + "char": "R", + "x": 404, + "y": 2, + "w": 24, + "h": 41, + "source": "font" + }, + { + "char": "ブ", + "x": 430, + "y": 2, + "w": 30, + "h": 44, + "source": "font" + }, + { + "char": "ブ", + "x": 462, + "y": 2, + "w": 31, + "h": 46, + "source": "font" + }, + { + "char": "ラ", + "x": 495, + "y": 2, + "w": 25, + "h": 39, + "source": "font" + }, + { + "char": "ラ", + "x": 522, + "y": 2, + "w": 27, + "h": 41, + "source": "font" + }, + { + "char": "ス", + "x": 551, + "y": 2, + "w": 28, + "h": 37, + "source": "font" + }, + { + "char": "ス", + "x": 581, + "y": 2, + "w": 30, + "h": 39, + "source": "font" + }, + { + "char": "タ", + "x": 613, + "y": 2, + "w": 26, + "h": 44, + "source": "font" + }, + { + "char": "タ", + "x": 641, + "y": 2, + "w": 27, + "h": 46, + "source": "font" + }, + { + "char": "ー", + "x": 670, + "y": 2, + "w": 27, + "h": 10, + "source": "font" + }, + { + "char": "ー", + "x": 699, + "y": 2, + "w": 28, + "h": 10, + "source": "font" + }, + { + "char": "エ", + "x": 729, + "y": 2, + "w": 30, + "h": 34, + "source": "font" + }, + { + "char": "エ", + "x": 761, + "y": 2, + "w": 31, + "h": 35, + "source": "font" + }, + { + "char": "リ", + "x": 794, + "y": 2, + "w": 23, + "h": 42, + "source": "font" + }, + { + "char": "リ", + "x": 819, + "y": 2, + "w": 23, + "h": 44, + "source": "font" + }, + { + "char": "ト", + "x": 844, + "y": 2, + "w": 21, + "h": 42, + "source": "font" + }, + { + "char": "ト", + "x": 867, + "y": 2, + "w": 22, + "h": 44, + "source": "font" + }, + { + "char": "デ", + "x": 891, + "y": 2, + "w": 31, + "h": 42, + "source": "font" + }, + { + "char": "デ", + "x": 924, + "y": 2, + "w": 32, + "h": 44, + "source": "font" + }, + { + "char": "コ", + "x": 958, + "y": 2, + "w": 27, + "h": 34, + "source": "font" + }, + { + "char": "コ", + "x": 987, + "y": 2, + "w": 29, + "h": 35, + "source": "font" + }, + { + "char": "W", + "x": 1018, + "y": 2, + "w": 34, + "h": 37, + "source": "font" + }, + { + "char": "W", + "x": 1054, + "y": 2, + "w": 35, + "h": 40, + "source": "font" + }, + { + "char": "N", + "x": 1091, + "y": 2, + "w": 27, + "h": 38, + "source": "font" + }, + { + "char": "N", + "x": 1120, + "y": 2, + "w": 27, + "h": 39, + "source": "font" + }, + { + "char": "T", + "x": 1149, + "y": 2, + "w": 22, + "h": 38, + "source": "font" + }, + { + "char": "T", + "x": 1173, + "y": 2, + "w": 22, + "h": 40, + "source": "font" + }, + { + "char": "ク", + "x": 1197, + "y": 2, + "w": 28, + "h": 44, + "source": "font" + }, + { + "char": "ク", + "x": 1227, + "y": 2, + "w": 28, + "h": 46, + "source": "font" + }, + { + "char": "ッ", + "x": 1257, + "y": 2, + "w": 25, + "h": 31, + "source": "font" + }, + { + "char": "ッ", + "x": 1284, + "y": 2, + "w": 26, + "h": 32, + "source": "font" + }, + { + "char": "シ", + "x": 1312, + "y": 2, + "w": 31, + "h": 38, + "source": "font" + }, + { + "char": "シ", + "x": 1345, + "y": 2, + "w": 32, + "h": 40, + "source": "font" + }, + { + "char": "ュ", + "x": 1379, + "y": 2, + "w": 25, + "h": 25, + "source": "font" + }, + { + "char": "ュ", + "x": 1406, + "y": 2, + "w": 26, + "h": 26, + "source": "font" + }, + { + "char": "ネ", + "x": 1434, + "y": 2, + "w": 29, + "h": 43, + "source": "font" + }, + { + "char": "ネ", + "x": 1465, + "y": 2, + "w": 30, + "h": 44, + "source": "font" + }, + { + "char": "オ", + "x": 1497, + "y": 2, + "w": 29, + "h": 42, + "source": "font" + }, + { + "char": "オ", + "x": 1528, + "y": 2, + "w": 30, + "h": 44, + "source": "font" + }, + { + "char": "ピ", + "x": 1560, + "y": 2, + "w": 27, + "h": 41, + "source": "font" + }, + { + "char": "ピ", + "x": 2, + "y": 50, + "w": 29, + "h": 43, + "source": "font" + }, + { + "char": "ド", + "x": 33, + "y": 50, + "w": 21, + "h": 42, + "source": "font" + }, + { + "char": "ド", + "x": 56, + "y": 50, + "w": 22, + "h": 44, + "source": "font" + }, + { + "char": "ロ", + "x": 80, + "y": 50, + "w": 27, + "h": 35, + "source": "font" + }, + { + "char": "ロ", + "x": 109, + "y": 50, + "w": 28, + "h": 35, + "source": "font" + }, + { + "char": "ン", + "x": 139, + "y": 50, + "w": 29, + "h": 34, + "source": "font" + }, + { + "char": "ン", + "x": 170, + "y": 50, + "w": 30, + "h": 36, + "source": "font" + }, + { + "char": "グ", + "x": 202, + "y": 50, + "w": 30, + "h": 44, + "source": "font" + }, + { + "char": "グ", + "x": 234, + "y": 50, + "w": 30, + "h": 46, + "source": "font" + }, + { + "char": "カ", + "x": 266, + "y": 50, + "w": 27, + "h": 43, + "source": "font" + }, + { + "char": "カ", + "x": 295, + "y": 50, + "w": 28, + "h": 44, + "source": "font" + }, + { + "char": "ム", + "x": 325, + "y": 50, + "w": 29, + "h": 41, + "source": "font" + }, + { + "char": "ム", + "x": 356, + "y": 50, + "w": 31, + "h": 43, + "source": "font" + }, + { + "char": "ホ", + "x": 389, + "y": 50, + "w": 31, + "h": 43, + "source": "font" + }, + { + "char": "ホ", + "x": 422, + "y": 50, + "w": 33, + "h": 44, + "source": "font" + }, + { + "char": "艶", + "x": 457, + "y": 50, + "w": 33, + "h": 43, + "source": "font" + }, + { + "char": "艶", + "x": 492, + "y": 50, + "w": 34, + "h": 45, + "source": "font" + }, + { + "char": "S", + "x": 528, + "y": 50, + "w": 21, + "h": 38, + "source": "font" + }, + { + "char": "S", + "x": 551, + "y": 50, + "w": 22, + "h": 40, + "source": "font" + }, + { + "char": "-", + "x": 575, + "y": 50, + "w": 16, + "h": 10, + "source": "font" + }, + { + "char": "-", + "x": 593, + "y": 50, + "w": 16, + "h": 10, + "source": "font" + }, + { + "char": "B", + "x": 611, + "y": 50, + "w": 22, + "h": 38, + "source": "font" + }, + { + "char": "B", + "x": 635, + "y": 50, + "w": 23, + "h": 40, + "source": "font" + }, + { + "char": "L", + "x": 660, + "y": 50, + "w": 22, + "h": 38, + "source": "font" + }, + { + "char": "L", + "x": 684, + "y": 50, + "w": 23, + "h": 40, + "source": "font" + }, + { + "char": "A", + "x": 709, + "y": 50, + "w": 32, + "h": 38, + "source": "font" + }, + { + "char": "A", + "x": 743, + "y": 50, + "w": 33, + "h": 40, + "source": "font" + }, + { + "char": "9", + "x": 778, + "y": 50, + "w": 21, + "h": 38, + "source": "font" + }, + { + "char": "9", + "x": 801, + "y": 50, + "w": 22, + "h": 40, + "source": "font" + }, + { + "char": "2", + "x": 825, + "y": 50, + "w": 21, + "h": 38, + "source": "font" + }, + { + "char": "2", + "x": 848, + "y": 50, + "w": 22, + "h": 40, + "source": "font" + }, + { + "char": "1", + "x": 872, + "y": 50, + "w": 13, + "h": 38, + "source": "font" + }, + { + "char": "1", + "x": 887, + "y": 50, + "w": 14, + "h": 39, + "source": "font" + }, + { + "char": "ノ", + "x": 903, + "y": 50, + "w": 21, + "h": 41, + "source": "font" + }, + { + "char": "ノ", + "x": 926, + "y": 50, + "w": 22, + "h": 43, + "source": "font" + }, + { + "char": "ヴ", + "x": 950, + "y": 50, + "w": 31, + "h": 43, + "source": "font" + }, + { + "char": "ヴ", + "x": 983, + "y": 50, + "w": 33, + "h": 45, + "source": "font" + }, + { + "char": "ァ", + "x": 1018, + "y": 50, + "w": 25, + "h": 31, + "source": "font" + }, + { + "char": "ァ", + "x": 1045, + "y": 50, + "w": 25, + "h": 33, + "source": "font" + }, + { + "char": "ダ", + "x": 1072, + "y": 50, + "w": 29, + "h": 44, + "source": "font" + }, + { + "char": "ダ", + "x": 1103, + "y": 50, + "w": 30, + "h": 46, + "source": "font" + }, + { + "char": "レ", + "x": 1135, + "y": 50, + "w": 23, + "h": 40, + "source": "font" + }, + { + "char": "レ", + "x": 1160, + "y": 50, + "w": 25, + "h": 41, + "source": "font" + }, + { + "char": "プ", + "x": 1187, + "y": 50, + "w": 30, + "h": 44, + "source": "font" + }, + { + "char": "プ", + "x": 1219, + "y": 50, + "w": 32, + "h": 46, + "source": "font" + }, + { + "char": "フ", + "x": 1253, + "y": 50, + "w": 26, + "h": 38, + "source": "font" + }, + { + "char": "フ", + "x": 1281, + "y": 50, + "w": 27, + "h": 39, + "source": "font" + }, + { + "char": "ィ", + "x": 1310, + "y": 50, + "w": 22, + "h": 33, + "source": "font" + }, + { + "char": "ィ", + "x": 1334, + "y": 50, + "w": 24, + "h": 35, + "source": "font" + }, + { + "char": "セ", + "x": 1360, + "y": 50, + "w": 29, + "h": 38, + "source": "font" + }, + { + "char": "セ", + "x": 1391, + "y": 50, + "w": 30, + "h": 40, + "source": "font" + }, + { + "char": "・", + "x": 1423, + "y": 50, + "w": 11, + "h": 14, + "source": "font" + }, + { + "char": "・", + "x": 1436, + "y": 50, + "w": 12, + "h": 14, + "source": "font" + }, + { + "char": "ヒ", + "x": 1450, + "y": 50, + "w": 24, + "h": 37, + "source": "font" + }, + { + "char": "ヒ", + "x": 1476, + "y": 50, + "w": 25, + "h": 39, + "source": "font" + }, + { + "char": "Z", + "x": 1503, + "y": 50, + "w": 24, + "h": 38, + "source": "font" + }, + { + "char": "Z", + "x": 1529, + "y": 50, + "w": 25, + "h": 40, + "source": "font" + }, + { + "char": "パ", + "x": 1556, + "y": 50, + "w": 33, + "h": 34, + "source": "font" + }, + { + "char": "パ", + "x": 2, + "y": 98, + "w": 34, + "h": 35, + "source": "font" + }, + { + "char": "サ", + "x": 38, + "y": 98, + "w": 29, + "h": 42, + "source": "font" + }, + { + "char": "サ", + "x": 69, + "y": 98, + "w": 30, + "h": 44, + "source": "font" + }, + { + "char": "イ", + "x": 101, + "y": 98, + "w": 28, + "h": 42, + "source": "font" + }, + { + "char": "イ", + "x": 131, + "y": 98, + "w": 29, + "h": 44, + "source": "font" + }, + { + "char": "彗", + "x": 162, + "y": 98, + "w": 31, + "h": 40, + "source": "font" + }, + { + "char": "彗", + "x": 195, + "y": 98, + "w": 32, + "h": 42, + "source": "font" + }, + { + "char": "ソ", + "x": 229, + "y": 98, + "w": 29, + "h": 40, + "source": "font" + }, + { + "char": "ソ", + "x": 260, + "y": 98, + "w": 29, + "h": 41, + "source": "font" + }, + { + "char": "チ", + "x": 291, + "y": 98, + "w": 29, + "h": 42, + "source": "font" + }, + { + "char": "チ", + "x": 322, + "y": 98, + "w": 31, + "h": 44, + "source": "font" + }, + { + "char": "バ", + "x": 355, + "y": 98, + "w": 33, + "h": 33, + "source": "font" + }, + { + "char": "バ", + "x": 390, + "y": 98, + "w": 34, + "h": 34, + "source": "font" + }, + { + "char": "4", + "x": 426, + "y": 98, + "w": 22, + "h": 39, + "source": "font" + }, + { + "char": "4", + "x": 450, + "y": 98, + "w": 22, + "h": 40, + "source": "font" + }, + { + "char": "式", + "x": 474, + "y": 98, + "w": 30, + "h": 42, + "source": "font" + }, + { + "char": "式", + "x": 506, + "y": 98, + "w": 31, + "h": 44, + "source": "font" + }, + { + "char": "竹", + "x": 539, + "y": 98, + "w": 32, + "h": 42, + "source": "font" + }, + { + "char": "竹", + "x": 573, + "y": 98, + "w": 32, + "h": 44, + "source": "font" + }, + { + "char": "筒", + "x": 607, + "y": 98, + "w": 31, + "h": 43, + "source": "font" + }, + { + "char": "筒", + "x": 640, + "y": 98, + "w": 33, + "h": 45, + "source": "font" + }, + { + "char": "銃", + "x": 675, + "y": 98, + "w": 33, + "h": 42, + "source": "font" + }, + { + "char": "銃", + "x": 710, + "y": 98, + "w": 34, + "h": 45, + "source": "font" + }, + { + "char": "甲", + "x": 746, + "y": 98, + "w": 27, + "h": 42, + "source": "font" + }, + { + "char": "甲", + "x": 775, + "y": 98, + "w": 27, + "h": 43, + "source": "font" + }, + { + "char": "乙", + "x": 804, + "y": 98, + "w": 29, + "h": 38, + "source": "font" + }, + { + "char": "乙", + "x": 835, + "y": 98, + "w": 31, + "h": 40, + "source": "font" + }, + { + "char": "K", + "x": 868, + "y": 98, + "w": 24, + "h": 40, + "source": "font" + }, + { + "char": "K", + "x": 894, + "y": 98, + "w": 25, + "h": 40, + "source": "font" + }, + { + "char": "ボ", + "x": 921, + "y": 98, + "w": 31, + "h": 43, + "source": "font" + }, + { + "char": "ボ", + "x": 954, + "y": 98, + "w": 33, + "h": 44, + "source": "font" + }, + { + "char": "F", + "x": 989, + "y": 98, + "w": 22, + "h": 37, + "source": "font" + }, + { + "char": "F", + "x": 1013, + "y": 98, + "w": 23, + "h": 40, + "source": "font" + }, + { + "char": "ャ", + "x": 1038, + "y": 98, + "w": 24, + "h": 35, + "source": "font" + }, + { + "char": "ャ", + "x": 1064, + "y": 98, + "w": 25, + "h": 36, + "source": "font" + }, + { + "char": "ジ", + "x": 1091, + "y": 98, + "w": 31, + "h": 38, + "source": "font" + }, + { + "char": "ジ", + "x": 1124, + "y": 98, + "w": 32, + "h": 40, + "source": "font" + }, + { + "char": "P", + "x": 1158, + "y": 98, + "w": 23, + "h": 38, + "source": "font" + }, + { + "char": "P", + "x": 1183, + "y": 98, + "w": 24, + "h": 40, + "source": "font" + }, + { + "char": "E", + "x": 1209, + "y": 98, + "w": 22, + "h": 38, + "source": "font" + }, + { + "char": "E", + "x": 1233, + "y": 98, + "w": 23, + "h": 40, + "source": "font" + }, + { + "char": "/", + "x": 1258, + "y": 98, + "w": 18, + "h": 38, + "source": "font" + }, + { + "char": "/", + "x": 1278, + "y": 98, + "w": 19, + "h": 39, + "source": "font" + }, + { + "char": "5", + "x": 1299, + "y": 98, + "w": 20, + "h": 39, + "source": "font" + }, + { + "char": "5", + "x": 1321, + "y": 98, + "w": 21, + "h": 40, + "source": "font" + }, + { + "char": "H", + "x": 1344, + "y": 98, + "w": 27, + "h": 37, + "source": "font" + }, + { + "char": "H", + "x": 1373, + "y": 98, + "w": 28, + "h": 39, + "source": "font" + }, + { + "char": "α", + "x": 1403, + "y": 98, + "w": 23, + "h": 27, + "source": "font" + }, + { + "char": "α", + "x": 1428, + "y": 98, + "w": 25, + "h": 27, + "source": "font" + }, + { + "char": "β", + "x": 1455, + "y": 98, + "w": 24, + "h": 41, + "source": "font" + }, + { + "char": "β", + "x": 1481, + "y": 98, + "w": 24, + "h": 44, + "source": "font" + }, + { + "char": "ア", + "x": 1507, + "y": 98, + "w": 29, + "h": 39, + "source": "font" + }, + { + "char": "ア", + "x": 1538, + "y": 98, + "w": 31, + "h": 41, + "source": "font" + }, + { + "char": "ル", + "x": 2, + "y": 145, + "w": 32, + "h": 37, + "source": "font" + }, + { + "char": "ル", + "x": 36, + "y": 145, + "w": 34, + "h": 39, + "source": "font" + }, + { + "char": "蹄", + "x": 72, + "y": 145, + "w": 33, + "h": 42, + "source": "font" + }, + { + "char": "蹄", + "x": 107, + "y": 145, + "w": 34, + "h": 45, + "source": "font" + }, + { + "char": "ケ", + "x": 143, + "y": 145, + "w": 30, + "h": 43, + "source": "font" + }, + { + "char": "ケ", + "x": 175, + "y": 145, + "w": 31, + "h": 45, + "source": "font" + }, + { + "char": "ビ", + "x": 208, + "y": 145, + "w": 28, + "h": 39, + "source": "font" + }, + { + "char": "ビ", + "x": 238, + "y": 145, + "w": 29, + "h": 41, + "source": "font" + }, + { + "char": "ガ", + "x": 269, + "y": 145, + "w": 29, + "h": 43, + "source": "font" + }, + { + "char": "ガ", + "x": 300, + "y": 145, + "w": 30, + "h": 44, + "source": "font" + }, + { + "char": "マ", + "x": 332, + "y": 145, + "w": 29, + "h": 36, + "source": "font" + }, + { + "char": "マ", + "x": 363, + "y": 145, + "w": 29, + "h": 38, + "source": "font" + }, + { + "char": "ニ", + "x": 394, + "y": 145, + "w": 30, + "h": 30, + "source": "font" + }, + { + "char": "ニ", + "x": 426, + "y": 145, + "w": 31, + "h": 32, + "source": "font" + }, + { + "char": "耀", + "x": 459, + "y": 145, + "w": 33, + "h": 41, + "source": "font" + }, + { + "char": "耀", + "x": 494, + "y": 145, + "w": 34, + "h": 43, + "source": "font" + }, + { + "char": "O", + "x": 530, + "y": 145, + "w": 29, + "h": 38, + "source": "font" + }, + { + "char": "O", + "x": 561, + "y": 145, + "w": 31, + "h": 40, + "source": "font" + }, + { + "char": "ワ", + "x": 594, + "y": 145, + "w": 28, + "h": 38, + "source": "font" + }, + { + "char": "ワ", + "x": 624, + "y": 145, + "w": 29, + "h": 39, + "source": "font" + }, + { + "char": "G", + "x": 655, + "y": 145, + "w": 27, + "h": 38, + "source": "font" + }, + { + "char": "G", + "x": 684, + "y": 145, + "w": 28, + "h": 40, + "source": "font" + }, + { + "char": "ナ", + "x": 714, + "y": 145, + "w": 29, + "h": 43, + "source": "font" + }, + { + "char": "ナ", + "x": 745, + "y": 145, + "w": 30, + "h": 45, + "source": "font" + }, + { + "char": "モ", + "x": 777, + "y": 145, + "w": 29, + "h": 37, + "source": "font" + }, + { + "char": "モ", + "x": 808, + "y": 145, + "w": 31, + "h": 39, + "source": "font" + }, + { + "char": "テ", + "x": 841, + "y": 145, + "w": 29, + "h": 39, + "source": "font" + }, + { + "char": "テ", + "x": 872, + "y": 145, + "w": 31, + "h": 40, + "source": "font" + }, + { + "char": "冥", + "x": 905, + "y": 145, + "w": 29, + "h": 40, + "source": "font" + }, + { + "char": "冥", + "x": 936, + "y": 145, + "w": 31, + "h": 42, + "source": "font" + }, + { + "char": "ォ", + "x": 969, + "y": 145, + "w": 23, + "h": 35, + "source": "font" + }, + { + "char": "ォ", + "x": 994, + "y": 145, + "w": 25, + "h": 36, + "source": "font" + }, + { + "char": "惑", + "x": 1021, + "y": 145, + "w": 31, + "h": 42, + "source": "font" + }, + { + "char": "惑", + "x": 1054, + "y": 145, + "w": 33, + "h": 44, + "source": "font" + }, + { + "char": "ミ", + "x": 1089, + "y": 145, + "w": 24, + "h": 40, + "source": "font" + }, + { + "char": "ミ", + "x": 1115, + "y": 145, + "w": 25, + "h": 42, + "source": "font" + }, + { + "char": "U", + "x": 1142, + "y": 145, + "w": 24, + "h": 38, + "source": "font" + }, + { + "char": "U", + "x": 1168, + "y": 145, + "w": 25, + "h": 40, + "source": "font" + }, + { + "char": "封", + "x": 1195, + "y": 145, + "w": 33, + "h": 42, + "source": "font" + }, + { + "char": "封", + "x": 1230, + "y": 145, + "w": 34, + "h": 44, + "source": "font" + }, + { + "char": "ェ", + "x": 1266, + "y": 145, + "w": 25, + "h": 27, + "source": "font" + }, + { + "char": "ェ", + "x": 1293, + "y": 145, + "w": 26, + "h": 29, + "source": "font" + }, + { + "char": "繚", + "x": 1321, + "y": 145, + "w": 34, + "h": 43, + "source": "font" + }, + { + "char": "繚", + "x": 1357, + "y": 145, + "w": 35, + "h": 45, + "source": "font" + }, + { + "char": "張", + "x": 1394, + "y": 145, + "w": 32, + "h": 41, + "source": "font" + }, + { + "char": "張", + "x": 1428, + "y": 145, + "w": 33, + "h": 43, + "source": "font" + }, + { + "char": "替", + "x": 1463, + "y": 145, + "w": 32, + "h": 43, + "source": "font" + }, + { + "char": "替", + "x": 1497, + "y": 145, + "w": 33, + "h": 44, + "source": "font" + }, + { + "char": "傘", + "x": 1532, + "y": 145, + "w": 33, + "h": 42, + "source": "font" + }, + { + "char": "傘", + "x": 2, + "y": 192, + "w": 35, + "h": 44, + "source": "font" + }, + { + "char": "キ", + "x": 39, + "y": 192, + "w": 27, + "h": 42, + "source": "font" + }, + { + "char": "キ", + "x": 68, + "y": 192, + "w": 29, + "h": 44, + "source": "font" + }, + { + "char": "C", + "x": 99, + "y": 192, + "w": 21, + "h": 38, + "source": "font" + }, + { + "char": "C", + "x": 122, + "y": 192, + "w": 22, + "h": 40, + "source": "font" + }, + { + "char": "M", + "x": 146, + "y": 192, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "M", + "x": 178, + "y": 192, + "w": 31, + "h": 39, + "source": "font" + }, + { + "char": "彩", + "x": 211, + "y": 192, + "w": 32, + "h": 42, + "source": "font" + }, + { + "char": "彩", + "x": 245, + "y": 192, + "w": 34, + "h": 44, + "source": "font" + }, + { + "char": "わ", + "x": 281, + "y": 192, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "わ", + "x": 313, + "y": 192, + "w": 32, + "h": 40, + "source": "font" + }, + { + "char": "か", + "x": 347, + "y": 192, + "w": 32, + "h": 43, + "source": "font" + }, + { + "char": "か", + "x": 381, + "y": 192, + "w": 32, + "h": 45, + "source": "font" + }, + { + "char": "ば", + "x": 415, + "y": 192, + "w": 32, + "h": 39, + "source": "font" + }, + { + "char": "ば", + "x": 449, + "y": 192, + "w": 33, + "h": 41, + "source": "font" + }, + { + "char": "も", + "x": 484, + "y": 192, + "w": 26, + "h": 41, + "source": "font" + }, + { + "char": "も", + "x": 512, + "y": 192, + "w": 27, + "h": 43, + "source": "font" + }, + { + "char": "み", + "x": 541, + "y": 192, + "w": 32, + "h": 38, + "source": "font" + }, + { + "char": "み", + "x": 575, + "y": 192, + "w": 33, + "h": 40, + "source": "font" + }, + { + "char": "じ", + "x": 610, + "y": 192, + "w": 23, + "h": 42, + "source": "font" + }, + { + "char": "じ", + "x": 635, + "y": 192, + "w": 23, + "h": 44, + "source": "font" + }, + { + "char": "ザ", + "x": 660, + "y": 192, + "w": 32, + "h": 44, + "source": "font" + }, + { + "char": "ザ", + "x": 694, + "y": 192, + "w": 33, + "h": 46, + "source": "font" + }, + { + "char": ".", + "x": 729, + "y": 192, + "w": 9, + "h": 11, + "source": "font" + }, + { + "char": ".", + "x": 740, + "y": 192, + "w": 9, + "h": 11, + "source": "font" + }, + { + "char": "6", + "x": 751, + "y": 192, + "w": 21, + "h": 38, + "source": "font" + }, + { + "char": "6", + "x": 774, + "y": 192, + "w": 22, + "h": 40, + "source": "font" + }, + { + "char": "爪", + "x": 798, + "y": 192, + "w": 29, + "h": 41, + "source": "font" + }, + { + "char": "爪", + "x": 829, + "y": 192, + "w": 30, + "h": 43, + "source": "font" + }, + { + "char": "煌", + "x": 861, + "y": 192, + "w": 33, + "h": 44, + "source": "font" + }, + { + "char": "煌", + "x": 896, + "y": 192, + "w": 34, + "h": 46, + "source": "font" + }, + { + "char": "ペ", + "x": 932, + "y": 192, + "w": 33, + "h": 29, + "source": "font" + }, + { + "char": "ペ", + "x": 967, + "y": 192, + "w": 34, + "h": 30, + "source": "font" + }, + { + "char": "8", + "x": 1003, + "y": 192, + "w": 21, + "h": 38, + "source": "font" + }, + { + "char": "8", + "x": 1026, + "y": 192, + "w": 22, + "h": 40, + "source": "font" + }, + { + "char": "3", + "x": 1050, + "y": 192, + "w": 20, + "h": 39, + "source": "font" + }, + { + "char": "3", + "x": 1072, + "y": 192, + "w": 21, + "h": 41, + "source": "font" + }, + { + "char": "D", + "x": 1095, + "y": 192, + "w": 25, + "h": 38, + "source": "font" + }, + { + "char": "D", + "x": 1122, + "y": 192, + "w": 25, + "h": 40, + "source": "font" + }, + { + "char": "箔", + "x": 1149, + "y": 192, + "w": 31, + "h": 42, + "source": "font" + }, + { + "char": "箔", + "x": 1182, + "y": 192, + "w": 33, + "h": 44, + "source": "font" + }, + { + "char": "角", + "x": 1217, + "y": 192, + "w": 30, + "h": 44, + "source": "font" + }, + { + "char": "角", + "x": 1249, + "y": 192, + "w": 31, + "h": 45, + "source": "font" + }, + { + "char": "ゲ", + "x": 1282, + "y": 192, + "w": 31, + "h": 43, + "source": "font" + }, + { + "char": "ゲ", + "x": 1315, + "y": 192, + "w": 33, + "h": 45, + "source": "font" + }, + { + "char": "ハ", + "x": 1350, + "y": 192, + "w": 33, + "h": 33, + "source": "font" + }, + { + "char": "ハ", + "x": 1385, + "y": 192, + "w": 34, + "h": 34, + "source": "font" + }, + { + "char": "圧", + "x": 1421, + "y": 192, + "w": 32, + "h": 41, + "source": "font" + }, + { + "char": "圧", + "x": 1455, + "y": 192, + "w": 34, + "h": 43, + "source": "font" + }, + { + "char": "Y", + "x": 1491, + "y": 192, + "w": 25, + "h": 38, + "source": "font" + }, + { + "char": "Y", + "x": 1518, + "y": 192, + "w": 26, + "h": 39, + "source": "font" + }, + { + "char": "7", + "x": 1546, + "y": 192, + "w": 21, + "h": 37, + "source": "font" + }, + { + "char": "7", + "x": 1569, + "y": 192, + "w": 21, + "h": 40, + "source": "font" + }, + { + "char": "V", + "x": 2, + "y": 240, + "w": 23, + "h": 37, + "source": "font" + }, + { + "char": "V", + "x": 27, + "y": 240, + "w": 24, + "h": 40, + "source": "font" + }, + { + "char": "燈", + "x": 53, + "y": 240, + "w": 33, + "h": 42, + "source": "font" + }, + { + "char": "燈", + "x": 88, + "y": 240, + "w": 35, + "h": 44, + "source": "font" + }, + { + "char": "0", + "x": 125, + "y": 240, + "w": 21, + "h": 38, + "source": "font" + }, + { + "char": "0", + "x": 148, + "y": 240, + "w": 22, + "h": 39, + "source": "font" + }, + { + "char": "I", + "x": 172, + "y": 240, + "w": 9, + "h": 38, + "source": "font" + }, + { + "char": "I", + "x": 183, + "y": 240, + "w": 10, + "h": 39, + "source": "font" + }, + { + "char": "ポ", + "x": 195, + "y": 240, + "w": 31, + "h": 43, + "source": "font" + }, + { + "char": "ポ", + "x": 228, + "y": 240, + "w": 33, + "h": 44, + "source": "font" + }, + { + "char": "ズ", + "x": 263, + "y": 240, + "w": 31, + "h": 42, + "source": "font" + }, + { + "char": "ズ", + "x": 296, + "y": 240, + "w": 33, + "h": 44, + "source": "font" + }, + { + "char": "ウ", + "x": 331, + "y": 240, + "w": 28, + "h": 43, + "source": "font" + }, + { + "char": "ウ", + "x": 361, + "y": 240, + "w": 30, + "h": 45, + "source": "font" + }, + { + "char": "メ", + "x": 393, + "y": 240, + "w": 29, + "h": 42, + "source": "font" + }, + { + "char": "メ", + "x": 424, + "y": 240, + "w": 30, + "h": 43, + "source": "font" + }, + { + "char": "c", + "x": 456, + "y": 240, + "w": 19, + "h": 26, + "source": "font" + }, + { + "char": "c", + "x": 477, + "y": 240, + "w": 20, + "h": 27, + "source": "font" + }, + { + "char": "h", + "x": 499, + "y": 240, + "w": 22, + "h": 38, + "source": "font" + }, + { + "char": "h", + "x": 523, + "y": 240, + "w": 23, + "h": 40, + "source": "font" + }, + { + "char": "ョ", + "x": 548, + "y": 240, + "w": 19, + "h": 27, + "source": "font" + }, + { + "char": "ョ", + "x": 569, + "y": 240, + "w": 19, + "h": 29, + "source": "font" + }, + { + "char": "や", + "x": 590, + "y": 240, + "w": 29, + "h": 42, + "source": "font" + }, + { + "char": "や", + "x": 621, + "y": 240, + "w": 30, + "h": 44, + "source": "font" + }, + { + "char": "ら", + "x": 653, + "y": 240, + "w": 21, + "h": 44, + "source": "font" + }, + { + "char": "ら", + "x": 676, + "y": 240, + "w": 23, + "h": 46, + "source": "font" + }, + { + "char": "れ", + "x": 701, + "y": 240, + "w": 33, + "h": 38, + "source": "font" + }, + { + "char": "れ", + "x": 736, + "y": 240, + "w": 35, + "h": 40, + "source": "font" + }, + { + "char": "た", + "x": 773, + "y": 240, + "w": 29, + "h": 42, + "source": "font" + }, + { + "char": "た", + "x": 804, + "y": 240, + "w": 30, + "h": 43, + "source": "font" + }, + { + "char": "!", + "x": 836, + "y": 240, + "w": 9, + "h": 41, + "source": "font" + }, + { + "char": "!", + "x": 847, + "y": 240, + "w": 9, + "h": 42, + "source": "font" + }, + { + "char": "で", + "x": 858, + "y": 240, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "で", + "x": 890, + "y": 240, + "w": 31, + "h": 38, + "source": "font" + }, + { + "char": "R", + "x": 923, + "y": 240, + "w": 23, + "h": 32, + "source": "font" + }, + { + "char": "R", + "x": 948, + "y": 240, + "w": 24, + "h": 33, + "source": "font" + }, + { + "char": "ブ", + "x": 974, + "y": 240, + "w": 32, + "h": 39, + "source": "font" + }, + { + "char": "ブ", + "x": 1008, + "y": 240, + "w": 34, + "h": 41, + "source": "font" + }, + { + "char": "ラ", + "x": 1044, + "y": 240, + "w": 28, + "h": 36, + "source": "font" + }, + { + "char": "ラ", + "x": 1074, + "y": 240, + "w": 29, + "h": 38, + "source": "font" + }, + { + "char": "ス", + "x": 1105, + "y": 240, + "w": 30, + "h": 33, + "source": "font" + }, + { + "char": "ス", + "x": 1137, + "y": 240, + "w": 32, + "h": 35, + "source": "font" + }, + { + "char": "タ", + "x": 1171, + "y": 240, + "w": 30, + "h": 39, + "source": "font" + }, + { + "char": "タ", + "x": 1203, + "y": 240, + "w": 31, + "h": 39, + "source": "font" + }, + { + "char": "ー", + "x": 1236, + "y": 240, + "w": 28, + "h": 13, + "source": "font" + }, + { + "char": "ー", + "x": 1266, + "y": 240, + "w": 30, + "h": 14, + "source": "font" + }, + { + "char": "エ", + "x": 1298, + "y": 240, + "w": 30, + "h": 33, + "source": "font" + }, + { + "char": "エ", + "x": 1330, + "y": 240, + "w": 31, + "h": 34, + "source": "font" + }, + { + "char": "リ", + "x": 1363, + "y": 240, + "w": 24, + "h": 36, + "source": "font" + }, + { + "char": "リ", + "x": 1389, + "y": 240, + "w": 24, + "h": 38, + "source": "font" + }, + { + "char": "ト", + "x": 1415, + "y": 240, + "w": 25, + "h": 36, + "source": "font" + }, + { + "char": "ト", + "x": 1442, + "y": 240, + "w": 26, + "h": 38, + "source": "font" + }, + { + "char": "デ", + "x": 1470, + "y": 240, + "w": 31, + "h": 38, + "source": "font" + }, + { + "char": "デ", + "x": 1503, + "y": 240, + "w": 33, + "h": 38, + "source": "font" + }, + { + "char": "コ", + "x": 1538, + "y": 240, + "w": 25, + "h": 31, + "source": "font" + }, + { + "char": "コ", + "x": 1565, + "y": 240, + "w": 27, + "h": 33, + "source": "font" + }, + { + "char": "W", + "x": 2, + "y": 288, + "w": 32, + "h": 32, + "source": "font" + }, + { + "char": "W", + "x": 36, + "y": 288, + "w": 34, + "h": 33, + "source": "font" + }, + { + "char": "N", + "x": 72, + "y": 288, + "w": 23, + "h": 32, + "source": "font" + }, + { + "char": "N", + "x": 97, + "y": 288, + "w": 25, + "h": 33, + "source": "font" + }, + { + "char": "T", + "x": 124, + "y": 288, + "w": 22, + "h": 32, + "source": "font" + }, + { + "char": "T", + "x": 148, + "y": 288, + "w": 23, + "h": 33, + "source": "font" + }, + { + "char": "ク", + "x": 173, + "y": 288, + "w": 30, + "h": 39, + "source": "font" + }, + { + "char": "ク", + "x": 205, + "y": 288, + "w": 31, + "h": 40, + "source": "font" + }, + { + "char": "ッ", + "x": 238, + "y": 288, + "w": 24, + "h": 29, + "source": "font" + }, + { + "char": "ッ", + "x": 264, + "y": 288, + "w": 26, + "h": 31, + "source": "font" + }, + { + "char": "シ", + "x": 292, + "y": 288, + "w": 30, + "h": 34, + "source": "font" + }, + { + "char": "シ", + "x": 324, + "y": 288, + "w": 31, + "h": 36, + "source": "font" + }, + { + "char": "ュ", + "x": 357, + "y": 288, + "w": 26, + "h": 28, + "source": "font" + }, + { + "char": "ュ", + "x": 385, + "y": 288, + "w": 28, + "h": 29, + "source": "font" + }, + { + "char": "ネ", + "x": 415, + "y": 288, + "w": 31, + "h": 37, + "source": "font" + }, + { + "char": "ネ", + "x": 448, + "y": 288, + "w": 33, + "h": 39, + "source": "font" + }, + { + "char": "オ", + "x": 483, + "y": 288, + "w": 30, + "h": 36, + "source": "font" + }, + { + "char": "オ", + "x": 515, + "y": 288, + "w": 31, + "h": 38, + "source": "font" + }, + { + "char": "ピ", + "x": 548, + "y": 288, + "w": 27, + "h": 36, + "source": "font" + }, + { + "char": "ピ", + "x": 577, + "y": 288, + "w": 29, + "h": 39, + "source": "font" + }, + { + "char": "ド", + "x": 608, + "y": 288, + "w": 25, + "h": 36, + "source": "font" + }, + { + "char": "ド", + "x": 635, + "y": 288, + "w": 26, + "h": 38, + "source": "font" + }, + { + "char": "ロ", + "x": 663, + "y": 288, + "w": 27, + "h": 31, + "source": "font" + }, + { + "char": "ロ", + "x": 692, + "y": 288, + "w": 28, + "h": 32, + "source": "font" + }, + { + "char": "ン", + "x": 722, + "y": 288, + "w": 30, + "h": 34, + "source": "font" + }, + { + "char": "ン", + "x": 754, + "y": 288, + "w": 31, + "h": 36, + "source": "font" + }, + { + "char": "グ", + "x": 787, + "y": 288, + "w": 33, + "h": 40, + "source": "font" + }, + { + "char": "グ", + "x": 822, + "y": 288, + "w": 35, + "h": 42, + "source": "font" + }, + { + "char": "カ", + "x": 859, + "y": 288, + "w": 29, + "h": 36, + "source": "font" + }, + { + "char": "カ", + "x": 890, + "y": 288, + "w": 29, + "h": 37, + "source": "font" + }, + { + "char": "ム", + "x": 921, + "y": 288, + "w": 31, + "h": 34, + "source": "font" + }, + { + "char": "ム", + "x": 954, + "y": 288, + "w": 32, + "h": 36, + "source": "font" + }, + { + "char": "ホ", + "x": 988, + "y": 288, + "w": 30, + "h": 36, + "source": "font" + }, + { + "char": "ホ", + "x": 1020, + "y": 288, + "w": 32, + "h": 38, + "source": "font" + }, + { + "char": "艶", + "x": 1054, + "y": 288, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "艶", + "x": 1086, + "y": 288, + "w": 32, + "h": 39, + "source": "font" + }, + { + "char": "S", + "x": 1120, + "y": 288, + "w": 22, + "h": 32, + "source": "font" + }, + { + "char": "S", + "x": 1144, + "y": 288, + "w": 24, + "h": 35, + "source": "font" + }, + { + "char": "-", + "x": 1170, + "y": 288, + "w": 15, + "h": 10, + "source": "font" + }, + { + "char": "-", + "x": 1187, + "y": 288, + "w": 15, + "h": 10, + "source": "font" + }, + { + "char": "B", + "x": 1204, + "y": 288, + "w": 23, + "h": 32, + "source": "font" + }, + { + "char": "B", + "x": 1229, + "y": 288, + "w": 24, + "h": 33, + "source": "font" + }, + { + "char": "L", + "x": 1255, + "y": 288, + "w": 20, + "h": 32, + "source": "font" + }, + { + "char": "L", + "x": 1277, + "y": 288, + "w": 21, + "h": 33, + "source": "font" + }, + { + "char": "A", + "x": 1300, + "y": 288, + "w": 26, + "h": 32, + "source": "font" + }, + { + "char": "A", + "x": 1328, + "y": 288, + "w": 28, + "h": 34, + "source": "font" + }, + { + "char": "9", + "x": 1358, + "y": 288, + "w": 22, + "h": 32, + "source": "font" + }, + { + "char": "9", + "x": 1382, + "y": 288, + "w": 23, + "h": 35, + "source": "font" + }, + { + "char": "2", + "x": 1407, + "y": 288, + "w": 21, + "h": 32, + "source": "font" + }, + { + "char": "2", + "x": 1430, + "y": 288, + "w": 22, + "h": 34, + "source": "font" + }, + { + "char": "1", + "x": 1454, + "y": 288, + "w": 16, + "h": 32, + "source": "font" + }, + { + "char": "1", + "x": 1472, + "y": 288, + "w": 17, + "h": 33, + "source": "font" + }, + { + "char": "ノ", + "x": 1491, + "y": 288, + "w": 26, + "h": 36, + "source": "font" + }, + { + "char": "ノ", + "x": 1519, + "y": 288, + "w": 27, + "h": 38, + "source": "font" + }, + { + "char": "ヴ", + "x": 1548, + "y": 288, + "w": 31, + "h": 39, + "source": "font" + }, + { + "char": "ヴ", + "x": 2, + "y": 332, + "w": 33, + "h": 41, + "source": "font" + }, + { + "char": "ァ", + "x": 37, + "y": 332, + "w": 25, + "h": 30, + "source": "font" + }, + { + "char": "ァ", + "x": 64, + "y": 332, + "w": 26, + "h": 32, + "source": "font" + }, + { + "char": "ダ", + "x": 92, + "y": 332, + "w": 33, + "h": 40, + "source": "font" + }, + { + "char": "ダ", + "x": 127, + "y": 332, + "w": 35, + "h": 42, + "source": "font" + }, + { + "char": "レ", + "x": 164, + "y": 332, + "w": 27, + "h": 35, + "source": "font" + }, + { + "char": "レ", + "x": 193, + "y": 332, + "w": 28, + "h": 36, + "source": "font" + }, + { + "char": "プ", + "x": 223, + "y": 332, + "w": 31, + "h": 39, + "source": "font" + }, + { + "char": "プ", + "x": 256, + "y": 332, + "w": 33, + "h": 41, + "source": "font" + }, + { + "char": "フ", + "x": 291, + "y": 332, + "w": 28, + "h": 36, + "source": "font" + }, + { + "char": "フ", + "x": 321, + "y": 332, + "w": 29, + "h": 37, + "source": "font" + }, + { + "char": "ィ", + "x": 352, + "y": 332, + "w": 25, + "h": 31, + "source": "font" + }, + { + "char": "ィ", + "x": 379, + "y": 332, + "w": 26, + "h": 33, + "source": "font" + }, + { + "char": "セ", + "x": 407, + "y": 332, + "w": 29, + "h": 35, + "source": "font" + }, + { + "char": "セ", + "x": 438, + "y": 332, + "w": 30, + "h": 36, + "source": "font" + }, + { + "char": "・", + "x": 470, + "y": 332, + "w": 9, + "h": 10, + "source": "font" + }, + { + "char": "・", + "x": 481, + "y": 332, + "w": 8, + "h": 10, + "source": "font" + }, + { + "char": "ヒ", + "x": 491, + "y": 332, + "w": 26, + "h": 34, + "source": "font" + }, + { + "char": "ヒ", + "x": 519, + "y": 332, + "w": 27, + "h": 36, + "source": "font" + }, + { + "char": "Z", + "x": 548, + "y": 332, + "w": 22, + "h": 32, + "source": "font" + }, + { + "char": "Z", + "x": 572, + "y": 332, + "w": 23, + "h": 33, + "source": "font" + }, + { + "char": "パ", + "x": 597, + "y": 332, + "w": 32, + "h": 33, + "source": "font" + }, + { + "char": "パ", + "x": 631, + "y": 332, + "w": 34, + "h": 36, + "source": "font" + }, + { + "char": "サ", + "x": 667, + "y": 332, + "w": 30, + "h": 36, + "source": "font" + }, + { + "char": "サ", + "x": 699, + "y": 332, + "w": 32, + "h": 38, + "source": "font" + }, + { + "char": "イ", + "x": 733, + "y": 332, + "w": 29, + "h": 36, + "source": "font" + }, + { + "char": "イ", + "x": 764, + "y": 332, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "彗", + "x": 796, + "y": 332, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "彗", + "x": 828, + "y": 332, + "w": 31, + "h": 40, + "source": "font" + }, + { + "char": "ソ", + "x": 861, + "y": 332, + "w": 28, + "h": 33, + "source": "font" + }, + { + "char": "ソ", + "x": 891, + "y": 332, + "w": 29, + "h": 35, + "source": "font" + }, + { + "char": "チ", + "x": 922, + "y": 332, + "w": 29, + "h": 38, + "source": "font" + }, + { + "char": "チ", + "x": 953, + "y": 332, + "w": 30, + "h": 39, + "source": "font" + }, + { + "char": "バ", + "x": 985, + "y": 332, + "w": 33, + "h": 35, + "source": "font" + }, + { + "char": "バ", + "x": 1020, + "y": 332, + "w": 34, + "h": 37, + "source": "font" + }, + { + "char": "4", + "x": 1056, + "y": 332, + "w": 22, + "h": 32, + "source": "font" + }, + { + "char": "4", + "x": 1080, + "y": 332, + "w": 23, + "h": 34, + "source": "font" + }, + { + "char": "式", + "x": 1105, + "y": 332, + "w": 29, + "h": 38, + "source": "font" + }, + { + "char": "式", + "x": 1136, + "y": 332, + "w": 31, + "h": 39, + "source": "font" + }, + { + "char": "竹", + "x": 1169, + "y": 332, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "竹", + "x": 1201, + "y": 332, + "w": 32, + "h": 39, + "source": "font" + }, + { + "char": "筒", + "x": 1235, + "y": 332, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "筒", + "x": 1267, + "y": 332, + "w": 31, + "h": 39, + "source": "font" + }, + { + "char": "銃", + "x": 1300, + "y": 332, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "銃", + "x": 1332, + "y": 332, + "w": 32, + "h": 39, + "source": "font" + }, + { + "char": "甲", + "x": 1366, + "y": 332, + "w": 28, + "h": 37, + "source": "font" + }, + { + "char": "甲", + "x": 1396, + "y": 332, + "w": 28, + "h": 39, + "source": "font" + }, + { + "char": "乙", + "x": 1426, + "y": 332, + "w": 29, + "h": 37, + "source": "font" + }, + { + "char": "乙", + "x": 1457, + "y": 332, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "K", + "x": 1489, + "y": 332, + "w": 24, + "h": 32, + "source": "font" + }, + { + "char": "K", + "x": 1515, + "y": 332, + "w": 25, + "h": 33, + "source": "font" + }, + { + "char": "ボ", + "x": 1542, + "y": 332, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "ボ", + "x": 2, + "y": 376, + "w": 32, + "h": 39, + "source": "font" + }, + { + "char": "F", + "x": 36, + "y": 376, + "w": 19, + "h": 32, + "source": "font" + }, + { + "char": "F", + "x": 57, + "y": 376, + "w": 20, + "h": 34, + "source": "font" + }, + { + "char": "ャ", + "x": 79, + "y": 376, + "w": 26, + "h": 31, + "source": "font" + }, + { + "char": "ャ", + "x": 107, + "y": 376, + "w": 27, + "h": 33, + "source": "font" + }, + { + "char": "ジ", + "x": 136, + "y": 376, + "w": 30, + "h": 36, + "source": "font" + }, + { + "char": "ジ", + "x": 168, + "y": 376, + "w": 31, + "h": 38, + "source": "font" + }, + { + "char": "P", + "x": 201, + "y": 376, + "w": 22, + "h": 32, + "source": "font" + }, + { + "char": "P", + "x": 225, + "y": 376, + "w": 23, + "h": 34, + "source": "font" + }, + { + "char": "E", + "x": 250, + "y": 376, + "w": 21, + "h": 32, + "source": "font" + }, + { + "char": "E", + "x": 273, + "y": 376, + "w": 22, + "h": 33, + "source": "font" + }, + { + "char": "/", + "x": 297, + "y": 376, + "w": 15, + "h": 34, + "source": "font" + }, + { + "char": "/", + "x": 314, + "y": 376, + "w": 16, + "h": 35, + "source": "font" + }, + { + "char": "5", + "x": 332, + "y": 376, + "w": 21, + "h": 32, + "source": "font" + }, + { + "char": "5", + "x": 355, + "y": 376, + "w": 23, + "h": 34, + "source": "font" + }, + { + "char": "H", + "x": 380, + "y": 376, + "w": 23, + "h": 32, + "source": "font" + }, + { + "char": "H", + "x": 405, + "y": 376, + "w": 25, + "h": 33, + "source": "font" + }, + { + "char": "α", + "x": 432, + "y": 376, + "w": 25, + "h": 25, + "source": "font" + }, + { + "char": "α", + "x": 459, + "y": 376, + "w": 26, + "h": 26, + "source": "font" + }, + { + "char": "β", + "x": 487, + "y": 376, + "w": 23, + "h": 40, + "source": "font" + }, + { + "char": "β", + "x": 512, + "y": 376, + "w": 25, + "h": 41, + "source": "font" + }, + { + "char": "ア", + "x": 539, + "y": 376, + "w": 29, + "h": 35, + "source": "font" + }, + { + "char": "ア", + "x": 570, + "y": 376, + "w": 31, + "h": 37, + "source": "font" + }, + { + "char": "ル", + "x": 603, + "y": 376, + "w": 32, + "h": 34, + "source": "font" + }, + { + "char": "ル", + "x": 637, + "y": 376, + "w": 34, + "h": 35, + "source": "font" + }, + { + "char": "蹄", + "x": 673, + "y": 376, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "蹄", + "x": 705, + "y": 376, + "w": 32, + "h": 39, + "source": "font" + }, + { + "char": "ケ", + "x": 739, + "y": 376, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "ケ", + "x": 771, + "y": 376, + "w": 31, + "h": 39, + "source": "font" + }, + { + "char": "ビ", + "x": 804, + "y": 376, + "w": 28, + "h": 36, + "source": "font" + }, + { + "char": "ビ", + "x": 834, + "y": 376, + "w": 30, + "h": 39, + "source": "font" + }, + { + "char": "ガ", + "x": 866, + "y": 376, + "w": 31, + "h": 38, + "source": "font" + }, + { + "char": "ガ", + "x": 899, + "y": 376, + "w": 32, + "h": 40, + "source": "font" + }, + { + "char": "マ", + "x": 933, + "y": 376, + "w": 30, + "h": 34, + "source": "font" + }, + { + "char": "マ", + "x": 965, + "y": 376, + "w": 32, + "h": 35, + "source": "font" + }, + { + "char": "ニ", + "x": 999, + "y": 376, + "w": 30, + "h": 32, + "source": "font" + }, + { + "char": "ニ", + "x": 1031, + "y": 376, + "w": 31, + "h": 33, + "source": "font" + }, + { + "char": "耀", + "x": 1064, + "y": 376, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "耀", + "x": 1096, + "y": 376, + "w": 32, + "h": 39, + "source": "font" + }, + { + "char": "O", + "x": 1130, + "y": 376, + "w": 26, + "h": 32, + "source": "font" + }, + { + "char": "O", + "x": 1158, + "y": 376, + "w": 27, + "h": 35, + "source": "font" + }, + { + "char": "ワ", + "x": 1187, + "y": 376, + "w": 27, + "h": 35, + "source": "font" + }, + { + "char": "ワ", + "x": 1216, + "y": 376, + "w": 29, + "h": 36, + "source": "font" + }, + { + "char": "G", + "x": 1247, + "y": 376, + "w": 25, + "h": 32, + "source": "font" + }, + { + "char": "G", + "x": 1274, + "y": 376, + "w": 26, + "h": 35, + "source": "font" + }, + { + "char": "ナ", + "x": 1302, + "y": 376, + "w": 29, + "h": 35, + "source": "font" + }, + { + "char": "ナ", + "x": 1333, + "y": 376, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "モ", + "x": 1365, + "y": 376, + "w": 28, + "h": 34, + "source": "font" + }, + { + "char": "モ", + "x": 1395, + "y": 376, + "w": 30, + "h": 36, + "source": "font" + }, + { + "char": "テ", + "x": 1427, + "y": 376, + "w": 29, + "h": 37, + "source": "font" + }, + { + "char": "テ", + "x": 1458, + "y": 376, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "冥", + "x": 1490, + "y": 376, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "冥", + "x": 1522, + "y": 376, + "w": 30, + "h": 39, + "source": "font" + }, + { + "char": "ォ", + "x": 1554, + "y": 376, + "w": 25, + "h": 31, + "source": "font" + }, + { + "char": "ォ", + "x": 2, + "y": 419, + "w": 26, + "h": 32, + "source": "font" + }, + { + "char": "惑", + "x": 30, + "y": 419, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "惑", + "x": 62, + "y": 419, + "w": 31, + "h": 39, + "source": "font" + }, + { + "char": "ミ", + "x": 95, + "y": 419, + "w": 28, + "h": 37, + "source": "font" + }, + { + "char": "ミ", + "x": 125, + "y": 419, + "w": 29, + "h": 39, + "source": "font" + }, + { + "char": "U", + "x": 156, + "y": 419, + "w": 23, + "h": 33, + "source": "font" + }, + { + "char": "U", + "x": 181, + "y": 419, + "w": 25, + "h": 34, + "source": "font" + }, + { + "char": "封", + "x": 208, + "y": 419, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "封", + "x": 240, + "y": 419, + "w": 32, + "h": 40, + "source": "font" + }, + { + "char": "ェ", + "x": 274, + "y": 419, + "w": 25, + "h": 28, + "source": "font" + }, + { + "char": "ェ", + "x": 301, + "y": 419, + "w": 26, + "h": 29, + "source": "font" + }, + { + "char": "繚", + "x": 329, + "y": 419, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "繚", + "x": 361, + "y": 419, + "w": 32, + "h": 39, + "source": "font" + }, + { + "char": "張", + "x": 395, + "y": 419, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "張", + "x": 427, + "y": 419, + "w": 32, + "h": 39, + "source": "font" + }, + { + "char": "替", + "x": 461, + "y": 419, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "替", + "x": 493, + "y": 419, + "w": 32, + "h": 39, + "source": "font" + }, + { + "char": "傘", + "x": 527, + "y": 419, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "傘", + "x": 559, + "y": 419, + "w": 31, + "h": 39, + "source": "font" + }, + { + "char": "キ", + "x": 592, + "y": 419, + "w": 28, + "h": 36, + "source": "font" + }, + { + "char": "キ", + "x": 622, + "y": 419, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "C", + "x": 654, + "y": 419, + "w": 25, + "h": 32, + "source": "font" + }, + { + "char": "C", + "x": 681, + "y": 419, + "w": 26, + "h": 35, + "source": "font" + }, + { + "char": "M", + "x": 709, + "y": 419, + "w": 28, + "h": 32, + "source": "font" + }, + { + "char": "M", + "x": 739, + "y": 419, + "w": 29, + "h": 33, + "source": "font" + }, + { + "char": "彩", + "x": 770, + "y": 419, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "彩", + "x": 802, + "y": 419, + "w": 32, + "h": 39, + "source": "font" + }, + { + "char": "わ", + "x": 836, + "y": 419, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "わ", + "x": 868, + "y": 419, + "w": 32, + "h": 38, + "source": "font" + }, + { + "char": "か", + "x": 902, + "y": 419, + "w": 32, + "h": 35, + "source": "font" + }, + { + "char": "か", + "x": 936, + "y": 419, + "w": 33, + "h": 37, + "source": "font" + }, + { + "char": "ば", + "x": 971, + "y": 419, + "w": 32, + "h": 38, + "source": "font" + }, + { + "char": "ば", + "x": 1005, + "y": 419, + "w": 33, + "h": 40, + "source": "font" + }, + { + "char": "も", + "x": 1040, + "y": 419, + "w": 29, + "h": 36, + "source": "font" + }, + { + "char": "も", + "x": 1071, + "y": 419, + "w": 31, + "h": 38, + "source": "font" + }, + { + "char": "み", + "x": 1104, + "y": 419, + "w": 31, + "h": 35, + "source": "font" + }, + { + "char": "み", + "x": 1137, + "y": 419, + "w": 32, + "h": 37, + "source": "font" + }, + { + "char": "じ", + "x": 1171, + "y": 419, + "w": 26, + "h": 36, + "source": "font" + }, + { + "char": "じ", + "x": 1199, + "y": 419, + "w": 27, + "h": 38, + "source": "font" + }, + { + "char": "ザ", + "x": 1228, + "y": 419, + "w": 33, + "h": 39, + "source": "font" + }, + { + "char": "ザ", + "x": 1263, + "y": 419, + "w": 35, + "h": 39, + "source": "font" + }, + { + "char": ".", + "x": 1300, + "y": 419, + "w": 9, + "h": 9, + "source": "font" + }, + { + "char": ".", + "x": 1311, + "y": 419, + "w": 10, + "h": 10, + "source": "font" + }, + { + "char": "6", + "x": 1323, + "y": 419, + "w": 22, + "h": 32, + "source": "font" + }, + { + "char": "6", + "x": 1347, + "y": 419, + "w": 24, + "h": 35, + "source": "font" + }, + { + "char": "爪", + "x": 1373, + "y": 419, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "爪", + "x": 1405, + "y": 419, + "w": 32, + "h": 40, + "source": "font" + }, + { + "char": "煌", + "x": 1439, + "y": 419, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "煌", + "x": 1471, + "y": 419, + "w": 32, + "h": 39, + "source": "font" + }, + { + "char": "ペ", + "x": 1505, + "y": 419, + "w": 31, + "h": 33, + "source": "font" + }, + { + "char": "ペ", + "x": 1538, + "y": 419, + "w": 32, + "h": 35, + "source": "font" + }, + { + "char": "8", + "x": 1572, + "y": 419, + "w": 23, + "h": 32, + "source": "font" + }, + { + "char": "8", + "x": 2, + "y": 461, + "w": 24, + "h": 35, + "source": "font" + }, + { + "char": "3", + "x": 28, + "y": 461, + "w": 22, + "h": 32, + "source": "font" + }, + { + "char": "3", + "x": 52, + "y": 461, + "w": 23, + "h": 35, + "source": "font" + }, + { + "char": "D", + "x": 77, + "y": 461, + "w": 24, + "h": 32, + "source": "font" + }, + { + "char": "D", + "x": 103, + "y": 461, + "w": 26, + "h": 33, + "source": "font" + }, + { + "char": "箔", + "x": 131, + "y": 461, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "箔", + "x": 163, + "y": 461, + "w": 31, + "h": 39, + "source": "font" + }, + { + "char": "角", + "x": 196, + "y": 461, + "w": 29, + "h": 37, + "source": "font" + }, + { + "char": "角", + "x": 227, + "y": 461, + "w": 30, + "h": 39, + "source": "font" + }, + { + "char": "ゲ", + "x": 259, + "y": 461, + "w": 31, + "h": 39, + "source": "font" + }, + { + "char": "ゲ", + "x": 292, + "y": 461, + "w": 32, + "h": 41, + "source": "font" + }, + { + "char": "ハ", + "x": 326, + "y": 461, + "w": 32, + "h": 31, + "source": "font" + }, + { + "char": "ハ", + "x": 360, + "y": 461, + "w": 34, + "h": 32, + "source": "font" + }, + { + "char": "圧", + "x": 396, + "y": 461, + "w": 30, + "h": 36, + "source": "font" + }, + { + "char": "圧", + "x": 428, + "y": 461, + "w": 32, + "h": 38, + "source": "font" + }, + { + "char": "Y", + "x": 462, + "y": 461, + "w": 24, + "h": 32, + "source": "font" + }, + { + "char": "Y", + "x": 488, + "y": 461, + "w": 25, + "h": 33, + "source": "font" + }, + { + "char": "7", + "x": 515, + "y": 461, + "w": 21, + "h": 32, + "source": "font" + }, + { + "char": "7", + "x": 538, + "y": 461, + "w": 22, + "h": 33, + "source": "font" + }, + { + "char": "V", + "x": 562, + "y": 461, + "w": 25, + "h": 32, + "source": "font" + }, + { + "char": "V", + "x": 589, + "y": 461, + "w": 26, + "h": 33, + "source": "font" + }, + { + "char": "燈", + "x": 617, + "y": 461, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "燈", + "x": 649, + "y": 461, + "w": 32, + "h": 39, + "source": "font" + }, + { + "char": "0", + "x": 683, + "y": 461, + "w": 22, + "h": 32, + "source": "font" + }, + { + "char": "0", + "x": 707, + "y": 461, + "w": 24, + "h": 35, + "source": "font" + }, + { + "char": "I", + "x": 733, + "y": 461, + "w": 11, + "h": 32, + "source": "font" + }, + { + "char": "I", + "x": 746, + "y": 461, + "w": 11, + "h": 33, + "source": "font" + }, + { + "char": "ポ", + "x": 759, + "y": 461, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "ポ", + "x": 791, + "y": 461, + "w": 32, + "h": 40, + "source": "font" + }, + { + "char": "ズ", + "x": 825, + "y": 461, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "ズ", + "x": 857, + "y": 461, + "w": 32, + "h": 39, + "source": "font" + }, + { + "char": "ウ", + "x": 891, + "y": 461, + "w": 27, + "h": 38, + "source": "font" + }, + { + "char": "ウ", + "x": 920, + "y": 461, + "w": 29, + "h": 40, + "source": "font" + }, + { + "char": "メ", + "x": 951, + "y": 461, + "w": 29, + "h": 36, + "source": "font" + }, + { + "char": "メ", + "x": 982, + "y": 461, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "c", + "x": 1014, + "y": 461, + "w": 19, + "h": 23, + "source": "font" + }, + { + "char": "c", + "x": 1035, + "y": 461, + "w": 20, + "h": 26, + "source": "font" + }, + { + "char": "h", + "x": 1057, + "y": 461, + "w": 20, + "h": 32, + "source": "font" + }, + { + "char": "h", + "x": 1079, + "y": 461, + "w": 20, + "h": 34, + "source": "font" + }, + { + "char": "ョ", + "x": 1101, + "y": 461, + "w": 23, + "h": 29, + "source": "font" + }, + { + "char": "ョ", + "x": 1126, + "y": 461, + "w": 23, + "h": 29, + "source": "font" + }, + { + "char": "や", + "x": 1151, + "y": 461, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "や", + "x": 1183, + "y": 461, + "w": 32, + "h": 38, + "source": "font" + }, + { + "char": "ら", + "x": 1217, + "y": 461, + "w": 27, + "h": 37, + "source": "font" + }, + { + "char": "ら", + "x": 1246, + "y": 461, + "w": 28, + "h": 39, + "source": "font" + }, + { + "char": "れ", + "x": 1276, + "y": 461, + "w": 32, + "h": 36, + "source": "font" + }, + { + "char": "れ", + "x": 1310, + "y": 461, + "w": 33, + "h": 38, + "source": "font" + }, + { + "char": "た", + "x": 1345, + "y": 461, + "w": 29, + "h": 37, + "source": "font" + }, + { + "char": "た", + "x": 1376, + "y": 461, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "!", + "x": 1408, + "y": 461, + "w": 11, + "h": 33, + "source": "font" + }, + { + "char": "!", + "x": 1421, + "y": 461, + "w": 13, + "h": 35, + "source": "font" + }, + { + "char": "で", + "x": 1436, + "y": 461, + "w": 28, + "h": 35, + "source": "font" + }, + { + "char": "で", + "x": 1466, + "y": 461, + "w": 30, + "h": 36, + "source": "font" + } + ] +} \ No newline at end of file diff --git a/public/cv/v1/glyphs/death-weapon-ja.png b/public/cv/v1/glyphs/death-weapon-ja.png new file mode 100644 index 000000000..3119a5f63 Binary files /dev/null and b/public/cv/v1/glyphs/death-weapon-ja.png differ diff --git a/public/cv/v1/glyphs/death-weapon.json b/public/cv/v1/glyphs/death-weapon.json new file mode 100644 index 000000000..1c63cf7f4 --- /dev/null +++ b/public/cv/v1/glyphs/death-weapon.json @@ -0,0 +1,2949 @@ +{ + "height": 34, + "glyphs": [ + { + "char": "S", + "x": 2, + "y": 2, + "w": 22, + "h": 36, + "source": "font" + }, + { + "char": "S", + "x": 26, + "y": 2, + "w": 22, + "h": 37, + "source": "font" + }, + { + "char": "p", + "x": 50, + "y": 2, + "w": 19, + "h": 35, + "source": "font" + }, + { + "char": "p", + "x": 71, + "y": 2, + "w": 19, + "h": 36, + "source": "font" + }, + { + "char": "l", + "x": 92, + "y": 2, + "w": 9, + "h": 35, + "source": "font" + }, + { + "char": "l", + "x": 103, + "y": 2, + "w": 8, + "h": 36, + "source": "font" + }, + { + "char": "o", + "x": 113, + "y": 2, + "w": 19, + "h": 27, + "source": "font" + }, + { + "char": "o", + "x": 134, + "y": 2, + "w": 19, + "h": 28, + "source": "font" + }, + { + "char": "s", + "x": 155, + "y": 2, + "w": 20, + "h": 27, + "source": "font" + }, + { + "char": "s", + "x": 177, + "y": 2, + "w": 20, + "h": 28, + "source": "font" + }, + { + "char": "h", + "x": 199, + "y": 2, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": "h", + "x": 221, + "y": 2, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": "-", + "x": 243, + "y": 2, + "w": 18, + "h": 10, + "source": "font" + }, + { + "char": "-", + "x": 263, + "y": 2, + "w": 19, + "h": 11, + "source": "font" + }, + { + "char": "m", + "x": 284, + "y": 2, + "w": 27, + "h": 27, + "source": "font" + }, + { + "char": "m", + "x": 313, + "y": 2, + "w": 28, + "h": 27, + "source": "font" + }, + { + "char": "a", + "x": 343, + "y": 2, + "w": 21, + "h": 28, + "source": "font" + }, + { + "char": "a", + "x": 366, + "y": 2, + "w": 21, + "h": 29, + "source": "font" + }, + { + "char": "t", + "x": 389, + "y": 2, + "w": 17, + "h": 32, + "source": "font" + }, + { + "char": "t", + "x": 408, + "y": 2, + "w": 18, + "h": 32, + "source": "font" + }, + { + "char": "i", + "x": 428, + "y": 2, + "w": 9, + "h": 36, + "source": "font" + }, + { + "char": "i", + "x": 439, + "y": 2, + "w": 10, + "h": 37, + "source": "font" + }, + { + "char": "c", + "x": 451, + "y": 2, + "w": 19, + "h": 27, + "source": "font" + }, + { + "char": "c", + "x": 472, + "y": 2, + "w": 20, + "h": 28, + "source": "font" + }, + { + "char": "N", + "x": 494, + "y": 2, + "w": 23, + "h": 36, + "source": "font" + }, + { + "char": "N", + "x": 519, + "y": 2, + "w": 23, + "h": 36, + "source": "font" + }, + { + "char": "e", + "x": 544, + "y": 2, + "w": 20, + "h": 27, + "source": "font" + }, + { + "char": "e", + "x": 566, + "y": 2, + "w": 20, + "h": 27, + "source": "font" + }, + { + "char": "r", + "x": 588, + "y": 2, + "w": 16, + "h": 27, + "source": "font" + }, + { + "char": "r", + "x": 606, + "y": 2, + "w": 16, + "h": 27, + "source": "font" + }, + { + "char": "J", + "x": 624, + "y": 2, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": "J", + "x": 646, + "y": 2, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": ".", + "x": 668, + "y": 2, + "w": 10, + "h": 11, + "source": "font" + }, + { + "char": ".", + "x": 680, + "y": 2, + "w": 11, + "h": 11, + "source": "font" + }, + { + "char": "C", + "x": 693, + "y": 2, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": "C", + "x": 715, + "y": 2, + "w": 21, + "h": 37, + "source": "font" + }, + { + "char": "u", + "x": 738, + "y": 2, + "w": 22, + "h": 27, + "source": "font" + }, + { + "char": "u", + "x": 762, + "y": 2, + "w": 22, + "h": 27, + "source": "font" + }, + { + "char": "G", + "x": 786, + "y": 2, + "w": 22, + "h": 36, + "source": "font" + }, + { + "char": "G", + "x": 810, + "y": 2, + "w": 22, + "h": 36, + "source": "font" + }, + { + "char": "K", + "x": 834, + "y": 2, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": "K", + "x": 856, + "y": 2, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": "O", + "x": 878, + "y": 2, + "w": 21, + "h": 36, + "source": "font" + }, + { + "char": "O", + "x": 901, + "y": 2, + "w": 21, + "h": 36, + "source": "font" + }, + { + "char": "A", + "x": 924, + "y": 2, + "w": 21, + "h": 36, + "source": "font" + }, + { + "char": "A", + "x": 947, + "y": 2, + "w": 21, + "h": 37, + "source": "font" + }, + { + "char": "y", + "x": 970, + "y": 2, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": "y", + "x": 992, + "y": 2, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": "M", + "x": 1014, + "y": 2, + "w": 26, + "h": 36, + "source": "font" + }, + { + "char": "M", + "x": 1042, + "y": 2, + "w": 26, + "h": 36, + "source": "font" + }, + { + "char": "R", + "x": 1070, + "y": 2, + "w": 21, + "h": 36, + "source": "font" + }, + { + "char": "R", + "x": 1093, + "y": 2, + "w": 21, + "h": 37, + "source": "font" + }, + { + "char": "z", + "x": 1116, + "y": 2, + "w": 20, + "h": 27, + "source": "font" + }, + { + "char": "z", + "x": 1138, + "y": 2, + "w": 20, + "h": 27, + "source": "font" + }, + { + "char": "T", + "x": 1160, + "y": 2, + "w": 21, + "h": 36, + "source": "font" + }, + { + "char": "T", + "x": 1183, + "y": 2, + "w": 21, + "h": 36, + "source": "font" + }, + { + "char": "n", + "x": 1206, + "y": 2, + "w": 19, + "h": 27, + "source": "font" + }, + { + "char": "n", + "x": 1227, + "y": 2, + "w": 19, + "h": 27, + "source": "font" + }, + { + "char": "k", + "x": 1248, + "y": 2, + "w": 19, + "h": 36, + "source": "font" + }, + { + "char": "k", + "x": 1269, + "y": 2, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": "H", + "x": 1291, + "y": 2, + "w": 21, + "h": 35, + "source": "font" + }, + { + "char": "H", + "x": 1314, + "y": 2, + "w": 22, + "h": 36, + "source": "font" + }, + { + "char": "d", + "x": 1338, + "y": 2, + "w": 19, + "h": 36, + "source": "font" + }, + { + "char": "d", + "x": 1359, + "y": 2, + "w": 20, + "h": 37, + "source": "font" + }, + { + "char": "5", + "x": 1381, + "y": 2, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": "5", + "x": 1403, + "y": 2, + "w": 21, + "h": 37, + "source": "font" + }, + { + "char": "2", + "x": 1426, + "y": 2, + "w": 22, + "h": 36, + "source": "font" + }, + { + "char": "2", + "x": 1450, + "y": 2, + "w": 22, + "h": 37, + "source": "font" + }, + { + "char": "D", + "x": 1474, + "y": 2, + "w": 21, + "h": 36, + "source": "font" + }, + { + "char": "D", + "x": 1497, + "y": 2, + "w": 22, + "h": 37, + "source": "font" + }, + { + "char": "Z", + "x": 1521, + "y": 2, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": "Z", + "x": 1543, + "y": 2, + "w": 21, + "h": 36, + "source": "font" + }, + { + "char": "P", + "x": 1566, + "y": 2, + "w": 21, + "h": 36, + "source": "font" + }, + { + "char": "P", + "x": 2, + "y": 41, + "w": 22, + "h": 37, + "source": "font" + }, + { + "char": "'", + "x": 26, + "y": 41, + "w": 11, + "h": 15, + "source": "font" + }, + { + "char": "'", + "x": 39, + "y": 41, + "w": 11, + "h": 16, + "source": "font" + }, + { + "char": "8", + "x": 52, + "y": 41, + "w": 21, + "h": 36, + "source": "font" + }, + { + "char": "8", + "x": 75, + "y": 41, + "w": 22, + "h": 37, + "source": "font" + }, + { + "char": "9", + "x": 99, + "y": 41, + "w": 21, + "h": 36, + "source": "font" + }, + { + "char": "9", + "x": 122, + "y": 41, + "w": 22, + "h": 37, + "source": "font" + }, + { + "char": "F", + "x": 146, + "y": 41, + "w": 19, + "h": 35, + "source": "font" + }, + { + "char": "F", + "x": 167, + "y": 41, + "w": 19, + "h": 36, + "source": "font" + }, + { + "char": "g", + "x": 188, + "y": 41, + "w": 19, + "h": 36, + "source": "font" + }, + { + "char": "g", + "x": 209, + "y": 41, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": "6", + "x": 231, + "y": 41, + "w": 21, + "h": 36, + "source": "font" + }, + { + "char": "6", + "x": 254, + "y": 41, + "w": 22, + "h": 37, + "source": "font" + }, + { + "char": "w", + "x": 278, + "y": 41, + "w": 24, + "h": 27, + "source": "font" + }, + { + "char": "w", + "x": 304, + "y": 41, + "w": 25, + "h": 27, + "source": "font" + }, + { + "char": "q", + "x": 331, + "y": 41, + "w": 18, + "h": 35, + "source": "font" + }, + { + "char": "q", + "x": 351, + "y": 41, + "w": 19, + "h": 37, + "source": "font" + }, + { + "char": "B", + "x": 372, + "y": 41, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": "B", + "x": 394, + "y": 41, + "w": 21, + "h": 36, + "source": "font" + }, + { + "char": "v", + "x": 417, + "y": 41, + "w": 19, + "h": 27, + "source": "font" + }, + { + "char": "v", + "x": 438, + "y": 41, + "w": 21, + "h": 27, + "source": "font" + }, + { + "char": "L", + "x": 461, + "y": 41, + "w": 15, + "h": 35, + "source": "font" + }, + { + "char": "L", + "x": 478, + "y": 41, + "w": 16, + "h": 36, + "source": "font" + }, + { + "char": "W", + "x": 496, + "y": 41, + "w": 29, + "h": 36, + "source": "font" + }, + { + "char": "W", + "x": 527, + "y": 41, + "w": 29, + "h": 36, + "source": "font" + }, + { + "char": "1", + "x": 558, + "y": 41, + "w": 13, + "h": 35, + "source": "font" + }, + { + "char": "1", + "x": 573, + "y": 41, + "w": 13, + "h": 36, + "source": "font" + }, + { + "char": "3", + "x": 588, + "y": 41, + "w": 22, + "h": 36, + "source": "font" + }, + { + "char": "3", + "x": 612, + "y": 41, + "w": 23, + "h": 36, + "source": "font" + }, + { + "char": "V", + "x": 637, + "y": 41, + "w": 22, + "h": 35, + "source": "font" + }, + { + "char": "V", + "x": 661, + "y": 41, + "w": 23, + "h": 36, + "source": "font" + }, + { + "char": "I", + "x": 686, + "y": 41, + "w": 10, + "h": 36, + "source": "font" + }, + { + "char": "I", + "x": 698, + "y": 41, + "w": 10, + "h": 36, + "source": "font" + }, + { + "char": "b", + "x": 710, + "y": 41, + "w": 20, + "h": 35, + "source": "font" + }, + { + "char": "b", + "x": 732, + "y": 41, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": "E", + "x": 754, + "y": 41, + "w": 19, + "h": 35, + "source": "font" + }, + { + "char": "E", + "x": 775, + "y": 41, + "w": 19, + "h": 36, + "source": "font" + }, + { + "char": "x", + "x": 796, + "y": 41, + "w": 18, + "h": 27, + "source": "font" + }, + { + "char": "x", + "x": 816, + "y": 41, + "w": 18, + "h": 28, + "source": "font" + }, + { + "char": "f", + "x": 836, + "y": 41, + "w": 18, + "h": 36, + "source": "font" + }, + { + "char": "f", + "x": 856, + "y": 41, + "w": 18, + "h": 36, + "source": "font" + }, + { + "char": "+", + "x": 876, + "y": 41, + "w": 23, + "h": 23, + "source": "font" + }, + { + "char": "+", + "x": 901, + "y": 41, + "w": 23, + "h": 24, + "source": "font" + }, + { + "char": "4", + "x": 926, + "y": 41, + "w": 23, + "h": 36, + "source": "font" + }, + { + "char": "4", + "x": 951, + "y": 41, + "w": 23, + "h": 37, + "source": "font" + }, + { + "char": "7", + "x": 976, + "y": 41, + "w": 20, + "h": 35, + "source": "font" + }, + { + "char": "7", + "x": 998, + "y": 41, + "w": 21, + "h": 36, + "source": "font" + }, + { + "char": "U", + "x": 1021, + "y": 41, + "w": 21, + "h": 36, + "source": "font" + }, + { + "char": "U", + "x": 1044, + "y": 41, + "w": 22, + "h": 36, + "source": "font" + }, + { + "char": "X", + "x": 1068, + "y": 41, + "w": 19, + "h": 36, + "source": "font" + }, + { + "char": "X", + "x": 1089, + "y": 41, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": "0", + "x": 1111, + "y": 41, + "w": 22, + "h": 36, + "source": "font" + }, + { + "char": "0", + "x": 1135, + "y": 41, + "w": 23, + "h": 36, + "source": "font" + }, + { + "char": "j", + "x": 1160, + "y": 41, + "w": 13, + "h": 44, + "source": "font" + }, + { + "char": "j", + "x": 1175, + "y": 41, + "w": 13, + "h": 45, + "source": "font" + }, + { + "char": "·", + "x": 1190, + "y": 41, + "w": 11, + "h": 10, + "source": "font" + }, + { + "char": "·", + "x": 1203, + "y": 41, + "w": 11, + "h": 10, + "source": "font" + }, + { + "char": "/", + "x": 1216, + "y": 41, + "w": 22, + "h": 39, + "source": "font" + }, + { + "char": "/", + "x": 1240, + "y": 41, + "w": 23, + "h": 40, + "source": "font" + }, + { + "char": "Y", + "x": 1265, + "y": 41, + "w": 20, + "h": 35, + "source": "font" + }, + { + "char": "Y", + "x": 1287, + "y": 41, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": "ä", + "x": 1309, + "y": 41, + "w": 21, + "h": 36, + "source": "font" + }, + { + "char": "ä", + "x": 1332, + "y": 41, + "w": 21, + "h": 37, + "source": "font" + }, + { + "char": "Q", + "x": 1355, + "y": 41, + "w": 22, + "h": 44, + "source": "font" + }, + { + "char": "Q", + "x": 1379, + "y": 41, + "w": 23, + "h": 44, + "source": "font" + }, + { + "char": "ö", + "x": 1404, + "y": 41, + "w": 19, + "h": 35, + "source": "font" + }, + { + "char": "ö", + "x": 1425, + "y": 41, + "w": 19, + "h": 36, + "source": "font" + }, + { + "char": "Ü", + "x": 1446, + "y": 41, + "w": 21, + "h": 44, + "source": "font" + }, + { + "char": "Ü", + "x": 1469, + "y": 41, + "w": 22, + "h": 45, + "source": "font" + }, + { + "char": "ü", + "x": 1493, + "y": 41, + "w": 22, + "h": 35, + "source": "font" + }, + { + "char": "ü", + "x": 1517, + "y": 41, + "w": 22, + "h": 36, + "source": "font" + }, + { + "char": "é", + "x": 1541, + "y": 41, + "w": 20, + "h": 38, + "source": "font" + }, + { + "char": "é", + "x": 1563, + "y": 41, + "w": 20, + "h": 38, + "source": "font" + }, + { + "char": "(", + "x": 2, + "y": 88, + "w": 17, + "h": 42, + "source": "font" + }, + { + "char": "(", + "x": 21, + "y": 88, + "w": 17, + "h": 43, + "source": "font" + }, + { + "char": ")", + "x": 40, + "y": 88, + "w": 17, + "h": 42, + "source": "font" + }, + { + "char": ")", + "x": 59, + "y": 88, + "w": 17, + "h": 43, + "source": "font" + }, + { + "char": "ú", + "x": 78, + "y": 88, + "w": 22, + "h": 37, + "source": "font" + }, + { + "char": "ú", + "x": 102, + "y": 88, + "w": 22, + "h": 38, + "source": "font" + }, + { + "char": "ó", + "x": 126, + "y": 88, + "w": 19, + "h": 38, + "source": "font" + }, + { + "char": "ó", + "x": 147, + "y": 88, + "w": 19, + "h": 38, + "source": "font" + }, + { + "char": "á", + "x": 168, + "y": 88, + "w": 21, + "h": 39, + "source": "font" + }, + { + "char": "á", + "x": 191, + "y": 88, + "w": 21, + "h": 39, + "source": "font" + }, + { + "char": "í", + "x": 214, + "y": 88, + "w": 12, + "h": 37, + "source": "font" + }, + { + "char": "í", + "x": 228, + "y": 88, + "w": 13, + "h": 38, + "source": "font" + }, + { + "char": "ñ", + "x": 243, + "y": 88, + "w": 20, + "h": 37, + "source": "font" + }, + { + "char": "ñ", + "x": 265, + "y": 88, + "w": 22, + "h": 37, + "source": "font" + }, + { + "char": "É", + "x": 289, + "y": 88, + "w": 19, + "h": 46, + "source": "font" + }, + { + "char": "É", + "x": 310, + "y": 88, + "w": 19, + "h": 47, + "source": "font" + }, + { + "char": "ï", + "x": 331, + "y": 88, + "w": 16, + "h": 35, + "source": "font" + }, + { + "char": "ï", + "x": 349, + "y": 88, + "w": 16, + "h": 36, + "source": "font" + }, + { + "char": "ê", + "x": 367, + "y": 88, + "w": 20, + "h": 38, + "source": "font" + }, + { + "char": "ê", + "x": 389, + "y": 88, + "w": 20, + "h": 39, + "source": "font" + }, + { + "char": "è", + "x": 411, + "y": 88, + "w": 20, + "h": 38, + "source": "font" + }, + { + "char": "è", + "x": 433, + "y": 88, + "w": 20, + "h": 38, + "source": "font" + }, + { + "char": "ÿ", + "x": 455, + "y": 88, + "w": 20, + "h": 44, + "source": "font" + }, + { + "char": "ÿ", + "x": 477, + "y": 88, + "w": 20, + "h": 45, + "source": "font" + }, + { + "char": "ë", + "x": 499, + "y": 88, + "w": 20, + "h": 35, + "source": "font" + }, + { + "char": "ë", + "x": 521, + "y": 88, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": "«", + "x": 543, + "y": 88, + "w": 26, + "h": 23, + "source": "font" + }, + { + "char": "«", + "x": 571, + "y": 88, + "w": 26, + "h": 23, + "source": "font" + }, + { + "char": "»", + "x": 599, + "y": 88, + "w": 26, + "h": 23, + "source": "font" + }, + { + "char": "»", + "x": 627, + "y": 88, + "w": 26, + "h": 23, + "source": "font" + }, + { + "char": "ç", + "x": 655, + "y": 88, + "w": 19, + "h": 34, + "source": "font" + }, + { + "char": "ç", + "x": 676, + "y": 88, + "w": 20, + "h": 35, + "source": "font" + }, + { + "char": "!", + "x": 698, + "y": 88, + "w": 12, + "h": 35, + "source": "font" + }, + { + "char": "!", + "x": 712, + "y": 88, + "w": 11, + "h": 36, + "source": "font" + }, + { + "char": ":", + "x": 725, + "y": 88, + "w": 11, + "h": 27, + "source": "font" + }, + { + "char": ":", + "x": 738, + "y": 88, + "w": 12, + "h": 27, + "source": "font" + }, + { + "char": "\"", + "x": 752, + "y": 88, + "w": 20, + "h": 14, + "source": "font" + }, + { + "char": "\"", + "x": 774, + "y": 88, + "w": 20, + "h": 14, + "source": "font" + }, + { + "char": "S", + "x": 796, + "y": 88, + "w": 27, + "h": 35, + "source": "font" + }, + { + "char": "S", + "x": 825, + "y": 88, + "w": 28, + "h": 36, + "source": "font" + }, + { + "char": "p", + "x": 855, + "y": 88, + "w": 29, + "h": 35, + "source": "font" + }, + { + "char": "p", + "x": 886, + "y": 88, + "w": 29, + "h": 36, + "source": "font" + }, + { + "char": "l", + "x": 917, + "y": 88, + "w": 15, + "h": 36, + "source": "font" + }, + { + "char": "l", + "x": 934, + "y": 88, + "w": 15, + "h": 36, + "source": "font" + }, + { + "char": "o", + "x": 951, + "y": 88, + "w": 28, + "h": 29, + "source": "font" + }, + { + "char": "o", + "x": 981, + "y": 88, + "w": 28, + "h": 29, + "source": "font" + }, + { + "char": "s", + "x": 1011, + "y": 88, + "w": 24, + "h": 28, + "source": "font" + }, + { + "char": "s", + "x": 1037, + "y": 88, + "w": 24, + "h": 29, + "source": "font" + }, + { + "char": "h", + "x": 1063, + "y": 88, + "w": 30, + "h": 35, + "source": "font" + }, + { + "char": "h", + "x": 1095, + "y": 88, + "w": 30, + "h": 36, + "source": "font" + }, + { + "char": "-", + "x": 1127, + "y": 88, + "w": 18, + "h": 10, + "source": "font" + }, + { + "char": "-", + "x": 1147, + "y": 88, + "w": 18, + "h": 11, + "source": "font" + }, + { + "char": "m", + "x": 1167, + "y": 88, + "w": 40, + "h": 28, + "source": "font" + }, + { + "char": "m", + "x": 1209, + "y": 88, + "w": 41, + "h": 29, + "source": "font" + }, + { + "char": "a", + "x": 1252, + "y": 88, + "w": 28, + "h": 28, + "source": "font" + }, + { + "char": "a", + "x": 1282, + "y": 88, + "w": 29, + "h": 28, + "source": "font" + }, + { + "char": "t", + "x": 1313, + "y": 88, + "w": 25, + "h": 32, + "source": "font" + }, + { + "char": "t", + "x": 1340, + "y": 88, + "w": 25, + "h": 32, + "source": "font" + }, + { + "char": "i", + "x": 1367, + "y": 88, + "w": 15, + "h": 35, + "source": "font" + }, + { + "char": "i", + "x": 1384, + "y": 88, + "w": 15, + "h": 36, + "source": "font" + }, + { + "char": "c", + "x": 1401, + "y": 88, + "w": 26, + "h": 28, + "source": "font" + }, + { + "char": "c", + "x": 1429, + "y": 88, + "w": 27, + "h": 29, + "source": "font" + }, + { + "char": "N", + "x": 1458, + "y": 88, + "w": 32, + "h": 35, + "source": "font" + }, + { + "char": "N", + "x": 1492, + "y": 88, + "w": 33, + "h": 36, + "source": "font" + }, + { + "char": "e", + "x": 1527, + "y": 88, + "w": 29, + "h": 29, + "source": "font" + }, + { + "char": "e", + "x": 1558, + "y": 88, + "w": 29, + "h": 29, + "source": "font" + }, + { + "char": "r", + "x": 2, + "y": 137, + "w": 22, + "h": 28, + "source": "font" + }, + { + "char": "r", + "x": 26, + "y": 137, + "w": 22, + "h": 29, + "source": "font" + }, + { + "char": "J", + "x": 50, + "y": 137, + "w": 29, + "h": 35, + "source": "font" + }, + { + "char": "J", + "x": 81, + "y": 137, + "w": 29, + "h": 36, + "source": "font" + }, + { + "char": ".", + "x": 112, + "y": 137, + "w": 11, + "h": 11, + "source": "font" + }, + { + "char": ".", + "x": 125, + "y": 137, + "w": 11, + "h": 11, + "source": "font" + }, + { + "char": "C", + "x": 138, + "y": 137, + "w": 31, + "h": 36, + "source": "font" + }, + { + "char": "C", + "x": 171, + "y": 137, + "w": 32, + "h": 36, + "source": "font" + }, + { + "char": "u", + "x": 205, + "y": 137, + "w": 30, + "h": 28, + "source": "font" + }, + { + "char": "u", + "x": 237, + "y": 137, + "w": 30, + "h": 29, + "source": "font" + }, + { + "char": "G", + "x": 269, + "y": 137, + "w": 33, + "h": 35, + "source": "font" + }, + { + "char": "G", + "x": 304, + "y": 137, + "w": 34, + "h": 36, + "source": "font" + }, + { + "char": "K", + "x": 340, + "y": 137, + "w": 32, + "h": 35, + "source": "font" + }, + { + "char": "K", + "x": 374, + "y": 137, + "w": 33, + "h": 36, + "source": "font" + }, + { + "char": "O", + "x": 409, + "y": 137, + "w": 30, + "h": 35, + "source": "font" + }, + { + "char": "O", + "x": 441, + "y": 137, + "w": 31, + "h": 36, + "source": "font" + }, + { + "char": "A", + "x": 474, + "y": 137, + "w": 32, + "h": 35, + "source": "font" + }, + { + "char": "A", + "x": 508, + "y": 137, + "w": 33, + "h": 36, + "source": "font" + }, + { + "char": "y", + "x": 543, + "y": 137, + "w": 31, + "h": 35, + "source": "font" + }, + { + "char": "y", + "x": 576, + "y": 137, + "w": 32, + "h": 36, + "source": "font" + }, + { + "char": "M", + "x": 610, + "y": 137, + "w": 41, + "h": 35, + "source": "font" + }, + { + "char": "M", + "x": 653, + "y": 137, + "w": 41, + "h": 36, + "source": "font" + }, + { + "char": "R", + "x": 696, + "y": 137, + "w": 30, + "h": 35, + "source": "font" + }, + { + "char": "R", + "x": 728, + "y": 137, + "w": 31, + "h": 36, + "source": "font" + }, + { + "char": "z", + "x": 761, + "y": 137, + "w": 23, + "h": 28, + "source": "font" + }, + { + "char": "z", + "x": 786, + "y": 137, + "w": 23, + "h": 29, + "source": "font" + }, + { + "char": "T", + "x": 811, + "y": 137, + "w": 31, + "h": 35, + "source": "font" + }, + { + "char": "T", + "x": 844, + "y": 137, + "w": 32, + "h": 36, + "source": "font" + }, + { + "char": "n", + "x": 878, + "y": 137, + "w": 30, + "h": 29, + "source": "font" + }, + { + "char": "n", + "x": 910, + "y": 137, + "w": 31, + "h": 29, + "source": "font" + }, + { + "char": "k", + "x": 943, + "y": 137, + "w": 29, + "h": 35, + "source": "font" + }, + { + "char": "k", + "x": 974, + "y": 137, + "w": 29, + "h": 36, + "source": "font" + }, + { + "char": "H", + "x": 1005, + "y": 137, + "w": 30, + "h": 35, + "source": "font" + }, + { + "char": "H", + "x": 1037, + "y": 137, + "w": 31, + "h": 36, + "source": "font" + }, + { + "char": "d", + "x": 1070, + "y": 137, + "w": 28, + "h": 35, + "source": "font" + }, + { + "char": "d", + "x": 1100, + "y": 137, + "w": 28, + "h": 35, + "source": "font" + }, + { + "char": "5", + "x": 1130, + "y": 137, + "w": 29, + "h": 35, + "source": "font" + }, + { + "char": "5", + "x": 1161, + "y": 137, + "w": 30, + "h": 36, + "source": "font" + }, + { + "char": "2", + "x": 1193, + "y": 137, + "w": 29, + "h": 35, + "source": "font" + }, + { + "char": "2", + "x": 1224, + "y": 137, + "w": 30, + "h": 36, + "source": "font" + }, + { + "char": "D", + "x": 1256, + "y": 137, + "w": 30, + "h": 35, + "source": "font" + }, + { + "char": "D", + "x": 1288, + "y": 137, + "w": 31, + "h": 36, + "source": "font" + }, + { + "char": "Z", + "x": 1321, + "y": 137, + "w": 29, + "h": 35, + "source": "font" + }, + { + "char": "Z", + "x": 1352, + "y": 137, + "w": 30, + "h": 36, + "source": "font" + }, + { + "char": "P", + "x": 1384, + "y": 137, + "w": 30, + "h": 35, + "source": "font" + }, + { + "char": "P", + "x": 1416, + "y": 137, + "w": 31, + "h": 36, + "source": "font" + }, + { + "char": "'", + "x": 1449, + "y": 137, + "w": 10, + "h": 15, + "source": "font" + }, + { + "char": "'", + "x": 1461, + "y": 137, + "w": 10, + "h": 15, + "source": "font" + }, + { + "char": "8", + "x": 1473, + "y": 137, + "w": 29, + "h": 35, + "source": "font" + }, + { + "char": "8", + "x": 1504, + "y": 137, + "w": 29, + "h": 36, + "source": "font" + }, + { + "char": "9", + "x": 1535, + "y": 137, + "w": 32, + "h": 36, + "source": "font" + }, + { + "char": "9", + "x": 2, + "y": 175, + "w": 32, + "h": 37, + "source": "font" + }, + { + "char": "F", + "x": 36, + "y": 175, + "w": 24, + "h": 35, + "source": "font" + }, + { + "char": "F", + "x": 62, + "y": 175, + "w": 25, + "h": 36, + "source": "font" + }, + { + "char": "g", + "x": 89, + "y": 175, + "w": 30, + "h": 35, + "source": "font" + }, + { + "char": "g", + "x": 121, + "y": 175, + "w": 31, + "h": 36, + "source": "font" + }, + { + "char": "6", + "x": 154, + "y": 175, + "w": 31, + "h": 36, + "source": "font" + }, + { + "char": "6", + "x": 187, + "y": 175, + "w": 32, + "h": 37, + "source": "font" + }, + { + "char": "w", + "x": 221, + "y": 175, + "w": 35, + "h": 28, + "source": "font" + }, + { + "char": "w", + "x": 258, + "y": 175, + "w": 36, + "h": 29, + "source": "font" + }, + { + "char": "q", + "x": 296, + "y": 175, + "w": 28, + "h": 35, + "source": "font" + }, + { + "char": "q", + "x": 326, + "y": 175, + "w": 29, + "h": 36, + "source": "font" + }, + { + "char": "B", + "x": 357, + "y": 175, + "w": 28, + "h": 35, + "source": "font" + }, + { + "char": "B", + "x": 387, + "y": 175, + "w": 28, + "h": 36, + "source": "font" + }, + { + "char": "v", + "x": 417, + "y": 175, + "w": 28, + "h": 28, + "source": "font" + }, + { + "char": "v", + "x": 447, + "y": 175, + "w": 28, + "h": 29, + "source": "font" + }, + { + "char": "L", + "x": 477, + "y": 175, + "w": 22, + "h": 35, + "source": "font" + }, + { + "char": "L", + "x": 501, + "y": 175, + "w": 22, + "h": 36, + "source": "font" + }, + { + "char": "W", + "x": 525, + "y": 175, + "w": 46, + "h": 35, + "source": "font" + }, + { + "char": "W", + "x": 573, + "y": 175, + "w": 46, + "h": 36, + "source": "font" + }, + { + "char": "1", + "x": 621, + "y": 175, + "w": 19, + "h": 35, + "source": "font" + }, + { + "char": "1", + "x": 642, + "y": 175, + "w": 20, + "h": 36, + "source": "font" + }, + { + "char": "3", + "x": 664, + "y": 175, + "w": 28, + "h": 35, + "source": "font" + }, + { + "char": "3", + "x": 694, + "y": 175, + "w": 29, + "h": 36, + "source": "font" + }, + { + "char": "V", + "x": 725, + "y": 175, + "w": 33, + "h": 35, + "source": "font" + }, + { + "char": "V", + "x": 760, + "y": 175, + "w": 33, + "h": 36, + "source": "font" + }, + { + "char": "I", + "x": 795, + "y": 175, + "w": 14, + "h": 35, + "source": "font" + }, + { + "char": "I", + "x": 811, + "y": 175, + "w": 14, + "h": 36, + "source": "font" + }, + { + "char": "b", + "x": 827, + "y": 175, + "w": 28, + "h": 35, + "source": "font" + }, + { + "char": "b", + "x": 857, + "y": 175, + "w": 29, + "h": 35, + "source": "font" + }, + { + "char": "E", + "x": 888, + "y": 175, + "w": 24, + "h": 35, + "source": "font" + }, + { + "char": "E", + "x": 914, + "y": 175, + "w": 24, + "h": 36, + "source": "font" + }, + { + "char": "x", + "x": 940, + "y": 175, + "w": 28, + "h": 28, + "source": "font" + }, + { + "char": "x", + "x": 970, + "y": 175, + "w": 29, + "h": 29, + "source": "font" + }, + { + "char": "f", + "x": 1001, + "y": 175, + "w": 21, + "h": 35, + "source": "font" + }, + { + "char": "f", + "x": 1024, + "y": 175, + "w": 21, + "h": 36, + "source": "font" + }, + { + "char": "+", + "x": 1047, + "y": 175, + "w": 29, + "h": 29, + "source": "font" + }, + { + "char": "+", + "x": 1078, + "y": 175, + "w": 29, + "h": 29, + "source": "font" + }, + { + "char": "4", + "x": 1109, + "y": 175, + "w": 30, + "h": 35, + "source": "font" + }, + { + "char": "4", + "x": 1141, + "y": 175, + "w": 31, + "h": 36, + "source": "font" + }, + { + "char": "7", + "x": 1174, + "y": 175, + "w": 29, + "h": 35, + "source": "font" + }, + { + "char": "7", + "x": 1205, + "y": 175, + "w": 29, + "h": 36, + "source": "font" + }, + { + "char": "U", + "x": 1236, + "y": 175, + "w": 31, + "h": 35, + "source": "font" + }, + { + "char": "U", + "x": 1269, + "y": 175, + "w": 32, + "h": 36, + "source": "font" + }, + { + "char": "X", + "x": 1303, + "y": 175, + "w": 33, + "h": 35, + "source": "font" + }, + { + "char": "X", + "x": 1338, + "y": 175, + "w": 34, + "h": 36, + "source": "font" + }, + { + "char": "0", + "x": 1374, + "y": 175, + "w": 30, + "h": 35, + "source": "font" + }, + { + "char": "0", + "x": 1406, + "y": 175, + "w": 31, + "h": 36, + "source": "font" + }, + { + "char": "j", + "x": 1439, + "y": 175, + "w": 20, + "h": 42, + "source": "font" + }, + { + "char": "j", + "x": 1461, + "y": 175, + "w": 20, + "h": 43, + "source": "font" + }, + { + "char": "·", + "x": 1483, + "y": 175, + "w": 13, + "h": 13, + "source": "font" + }, + { + "char": "·", + "x": 1498, + "y": 175, + "w": 13, + "h": 13, + "source": "font" + }, + { + "char": "/", + "x": 1513, + "y": 175, + "w": 20, + "h": 34, + "source": "font" + }, + { + "char": "/", + "x": 1535, + "y": 175, + "w": 21, + "h": 35, + "source": "font" + }, + { + "char": "Y", + "x": 1558, + "y": 175, + "w": 31, + "h": 35, + "source": "font" + }, + { + "char": "Y", + "x": 2, + "y": 220, + "w": 31, + "h": 36, + "source": "font" + }, + { + "char": "ä", + "x": 35, + "y": 220, + "w": 27, + "h": 37, + "source": "font" + }, + { + "char": "ä", + "x": 64, + "y": 220, + "w": 28, + "h": 38, + "source": "font" + }, + { + "char": "Q", + "x": 94, + "y": 220, + "w": 30, + "h": 37, + "source": "font" + }, + { + "char": "Q", + "x": 126, + "y": 220, + "w": 31, + "h": 38, + "source": "font" + }, + { + "char": "ö", + "x": 159, + "y": 220, + "w": 27, + "h": 37, + "source": "font" + }, + { + "char": "ö", + "x": 188, + "y": 220, + "w": 28, + "h": 38, + "source": "font" + }, + { + "char": "Ü", + "x": 218, + "y": 220, + "w": 31, + "h": 45, + "source": "font" + }, + { + "char": "Ü", + "x": 251, + "y": 220, + "w": 32, + "h": 46, + "source": "font" + }, + { + "char": "ü", + "x": 285, + "y": 220, + "w": 29, + "h": 37, + "source": "font" + }, + { + "char": "ü", + "x": 316, + "y": 220, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "é", + "x": 348, + "y": 220, + "w": 29, + "h": 39, + "source": "font" + }, + { + "char": "é", + "x": 379, + "y": 220, + "w": 30, + "h": 40, + "source": "font" + }, + { + "char": "(", + "x": 411, + "y": 220, + "w": 21, + "h": 41, + "source": "font" + }, + { + "char": "(", + "x": 434, + "y": 220, + "w": 21, + "h": 42, + "source": "font" + }, + { + "char": ")", + "x": 457, + "y": 220, + "w": 21, + "h": 41, + "source": "font" + }, + { + "char": ")", + "x": 480, + "y": 220, + "w": 22, + "h": 42, + "source": "font" + }, + { + "char": "ú", + "x": 504, + "y": 220, + "w": 29, + "h": 39, + "source": "font" + }, + { + "char": "ú", + "x": 535, + "y": 220, + "w": 30, + "h": 40, + "source": "font" + }, + { + "char": "ó", + "x": 567, + "y": 220, + "w": 28, + "h": 39, + "source": "font" + }, + { + "char": "ó", + "x": 597, + "y": 220, + "w": 28, + "h": 40, + "source": "font" + }, + { + "char": "á", + "x": 627, + "y": 220, + "w": 28, + "h": 39, + "source": "font" + }, + { + "char": "á", + "x": 657, + "y": 220, + "w": 28, + "h": 40, + "source": "font" + }, + { + "char": "í", + "x": 687, + "y": 220, + "w": 14, + "h": 39, + "source": "font" + }, + { + "char": "í", + "x": 703, + "y": 220, + "w": 14, + "h": 40, + "source": "font" + }, + { + "char": "ñ", + "x": 719, + "y": 220, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "ñ", + "x": 751, + "y": 220, + "w": 30, + "h": 39, + "source": "font" + }, + { + "char": "É", + "x": 783, + "y": 220, + "w": 23, + "h": 47, + "source": "font" + }, + { + "char": "É", + "x": 808, + "y": 220, + "w": 24, + "h": 48, + "source": "font" + }, + { + "char": "ï", + "x": 834, + "y": 220, + "w": 20, + "h": 37, + "source": "font" + }, + { + "char": "ï", + "x": 856, + "y": 220, + "w": 20, + "h": 38, + "source": "font" + }, + { + "char": "ê", + "x": 878, + "y": 220, + "w": 29, + "h": 40, + "source": "font" + }, + { + "char": "ê", + "x": 909, + "y": 220, + "w": 29, + "h": 41, + "source": "font" + }, + { + "char": "è", + "x": 940, + "y": 220, + "w": 29, + "h": 39, + "source": "font" + }, + { + "char": "è", + "x": 971, + "y": 220, + "w": 30, + "h": 40, + "source": "font" + }, + { + "char": "ÿ", + "x": 1003, + "y": 220, + "w": 31, + "h": 43, + "source": "font" + }, + { + "char": "ÿ", + "x": 1036, + "y": 220, + "w": 31, + "h": 44, + "source": "font" + }, + { + "char": "ë", + "x": 1069, + "y": 220, + "w": 29, + "h": 37, + "source": "font" + }, + { + "char": "ë", + "x": 1100, + "y": 220, + "w": 30, + "h": 38, + "source": "font" + }, + { + "char": "«", + "x": 1132, + "y": 220, + "w": 31, + "h": 28, + "source": "font" + }, + { + "char": "«", + "x": 1165, + "y": 220, + "w": 32, + "h": 28, + "source": "font" + }, + { + "char": "»", + "x": 1199, + "y": 220, + "w": 31, + "h": 28, + "source": "font" + }, + { + "char": "»", + "x": 1232, + "y": 220, + "w": 32, + "h": 28, + "source": "font" + }, + { + "char": "ç", + "x": 1266, + "y": 220, + "w": 27, + "h": 38, + "source": "font" + }, + { + "char": "ç", + "x": 1295, + "y": 220, + "w": 27, + "h": 39, + "source": "font" + }, + { + "char": "!", + "x": 1324, + "y": 220, + "w": 18, + "h": 35, + "source": "font" + }, + { + "char": "!", + "x": 1344, + "y": 220, + "w": 19, + "h": 36, + "source": "font" + }, + { + "char": ":", + "x": 1365, + "y": 220, + "w": 11, + "h": 27, + "source": "font" + }, + { + "char": ":", + "x": 1378, + "y": 220, + "w": 11, + "h": 28, + "source": "font" + }, + { + "char": "\"", + "x": 1391, + "y": 220, + "w": 17, + "h": 15, + "source": "font" + }, + { + "char": "\"", + "x": 1410, + "y": 220, + "w": 17, + "h": 15, + "source": "font" + } + ] +} \ No newline at end of file diff --git a/public/cv/v1/glyphs/death-weapon.png b/public/cv/v1/glyphs/death-weapon.png new file mode 100644 index 000000000..924388af5 Binary files /dev/null and b/public/cv/v1/glyphs/death-weapon.png differ diff --git a/public/cv/v1/glyphs/map-start-mode.json b/public/cv/v1/glyphs/map-start-mode.json new file mode 100644 index 000000000..55664c041 --- /dev/null +++ b/public/cv/v1/glyphs/map-start-mode.json @@ -0,0 +1,1085 @@ +{ + "height": 76, + "glyphs": [ + { + "char": "R", + "x": 2, + "y": 2, + "w": 64, + "h": 78, + "source": "font" + }, + { + "char": "R", + "x": 68, + "y": 2, + "w": 65, + "h": 78, + "source": "font" + }, + { + "char": "R", + "x": 135, + "y": 2, + "w": 66, + "h": 79, + "source": "font" + }, + { + "char": "e", + "x": 203, + "y": 2, + "w": 64, + "h": 62, + "source": "font" + }, + { + "char": "e", + "x": 269, + "y": 2, + "w": 64, + "h": 63, + "source": "font" + }, + { + "char": "e", + "x": 335, + "y": 2, + "w": 65, + "h": 64, + "source": "font" + }, + { + "char": "v", + "x": 402, + "y": 2, + "w": 62, + "h": 60, + "source": "font" + }, + { + "char": "v", + "x": 466, + "y": 2, + "w": 62, + "h": 61, + "source": "font" + }, + { + "char": "v", + "x": 530, + "y": 2, + "w": 63, + "h": 61, + "source": "font" + }, + { + "char": "i", + "x": 595, + "y": 2, + "w": 30, + "h": 77, + "source": "font" + }, + { + "char": "i", + "x": 627, + "y": 2, + "w": 30, + "h": 78, + "source": "font" + }, + { + "char": "i", + "x": 659, + "y": 2, + "w": 30, + "h": 78, + "source": "font" + }, + { + "char": "r", + "x": 691, + "y": 2, + "w": 46, + "h": 60, + "source": "font" + }, + { + "char": "r", + "x": 739, + "y": 2, + "w": 47, + "h": 61, + "source": "font" + }, + { + "char": "r", + "x": 788, + "y": 2, + "w": 47, + "h": 61, + "source": "font" + }, + { + "char": "k", + "x": 837, + "y": 2, + "w": 63, + "h": 77, + "source": "font" + }, + { + "char": "k", + "x": 902, + "y": 2, + "w": 64, + "h": 78, + "source": "font" + }, + { + "char": "k", + "x": 968, + "y": 2, + "w": 64, + "h": 79, + "source": "font" + }, + { + "char": "a", + "x": 1034, + "y": 2, + "w": 61, + "h": 61, + "source": "font" + }, + { + "char": "a", + "x": 1097, + "y": 2, + "w": 61, + "h": 61, + "source": "font" + }, + { + "char": "a", + "x": 1160, + "y": 2, + "w": 62, + "h": 62, + "source": "font" + }, + { + "char": "m", + "x": 1224, + "y": 2, + "w": 91, + "h": 61, + "source": "font" + }, + { + "char": "m", + "x": 1317, + "y": 2, + "w": 92, + "h": 62, + "source": "font" + }, + { + "char": "m", + "x": 1411, + "y": 2, + "w": 92, + "h": 62, + "source": "font" + }, + { + "char": "p", + "x": 1505, + "y": 2, + "w": 62, + "h": 76, + "source": "font" + }, + { + "char": "p", + "x": 2, + "y": 83, + "w": 62, + "h": 77, + "source": "font" + }, + { + "char": "p", + "x": 66, + "y": 83, + "w": 63, + "h": 78, + "source": "font" + }, + { + "char": "f", + "x": 131, + "y": 83, + "w": 43, + "h": 77, + "source": "font" + }, + { + "char": "f", + "x": 176, + "y": 83, + "w": 44, + "h": 78, + "source": "font" + }, + { + "char": "f", + "x": 222, + "y": 83, + "w": 44, + "h": 78, + "source": "font" + }, + { + "char": "H", + "x": 268, + "y": 83, + "w": 66, + "h": 77, + "source": "font" + }, + { + "char": "H", + "x": 336, + "y": 83, + "w": 67, + "h": 78, + "source": "font" + }, + { + "char": "H", + "x": 405, + "y": 83, + "w": 68, + "h": 78, + "source": "font" + }, + { + "char": "s", + "x": 475, + "y": 83, + "w": 52, + "h": 62, + "source": "font" + }, + { + "char": "s", + "x": 529, + "y": 83, + "w": 52, + "h": 63, + "source": "font" + }, + { + "char": "s", + "x": 583, + "y": 83, + "w": 53, + "h": 63, + "source": "font" + }, + { + "char": "c", + "x": 638, + "y": 83, + "w": 57, + "h": 62, + "source": "font" + }, + { + "char": "c", + "x": 697, + "y": 83, + "w": 58, + "h": 63, + "source": "font" + }, + { + "char": "c", + "x": 757, + "y": 83, + "w": 58, + "h": 63, + "source": "font" + }, + { + "char": "h", + "x": 817, + "y": 83, + "w": 65, + "h": 77, + "source": "font" + }, + { + "char": "h", + "x": 884, + "y": 83, + "w": 66, + "h": 78, + "source": "font" + }, + { + "char": "h", + "x": 952, + "y": 83, + "w": 66, + "h": 79, + "source": "font" + }, + { + "char": "t", + "x": 1020, + "y": 83, + "w": 52, + "h": 69, + "source": "font" + }, + { + "char": "t", + "x": 1074, + "y": 83, + "w": 53, + "h": 70, + "source": "font" + }, + { + "char": "t", + "x": 1129, + "y": 83, + "w": 53, + "h": 70, + "source": "font" + }, + { + "char": "T", + "x": 1184, + "y": 83, + "w": 67, + "h": 77, + "source": "font" + }, + { + "char": "T", + "x": 1253, + "y": 83, + "w": 68, + "h": 78, + "source": "font" + }, + { + "char": "T", + "x": 1323, + "y": 83, + "w": 68, + "h": 79, + "source": "font" + }, + { + "char": "u", + "x": 1393, + "y": 83, + "w": 65, + "h": 61, + "source": "font" + }, + { + "char": "u", + "x": 1460, + "y": 83, + "w": 65, + "h": 61, + "source": "font" + }, + { + "char": "u", + "x": 1527, + "y": 83, + "w": 66, + "h": 62, + "source": "font" + }, + { + "char": "-", + "x": 2, + "y": 164, + "w": 39, + "h": 20, + "source": "font" + }, + { + "char": "-", + "x": 43, + "y": 164, + "w": 39, + "h": 21, + "source": "font" + }, + { + "char": "-", + "x": 84, + "y": 164, + "w": 39, + "h": 21, + "source": "font" + }, + { + "char": "K", + "x": 125, + "y": 164, + "w": 72, + "h": 78, + "source": "font" + }, + { + "char": "K", + "x": 199, + "y": 164, + "w": 72, + "h": 78, + "source": "font" + }, + { + "char": "K", + "x": 273, + "y": 164, + "w": 73, + "h": 79, + "source": "font" + }, + { + "char": "o", + "x": 348, + "y": 164, + "w": 61, + "h": 63, + "source": "font" + }, + { + "char": "o", + "x": 411, + "y": 164, + "w": 62, + "h": 63, + "source": "font" + }, + { + "char": "o", + "x": 475, + "y": 164, + "w": 62, + "h": 64, + "source": "font" + }, + { + "char": "n", + "x": 539, + "y": 164, + "w": 65, + "h": 62, + "source": "font" + }, + { + "char": "n", + "x": 606, + "y": 164, + "w": 66, + "h": 63, + "source": "font" + }, + { + "char": "n", + "x": 674, + "y": 164, + "w": 66, + "h": 63, + "source": "font" + }, + { + "char": "d", + "x": 742, + "y": 164, + "w": 61, + "h": 78, + "source": "font" + }, + { + "char": "d", + "x": 805, + "y": 164, + "w": 62, + "h": 78, + "source": "font" + }, + { + "char": "d", + "x": 869, + "y": 164, + "w": 63, + "h": 79, + "source": "font" + }, + { + "char": "O", + "x": 934, + "y": 164, + "w": 66, + "h": 78, + "source": "font" + }, + { + "char": "O", + "x": 1002, + "y": 164, + "w": 67, + "h": 79, + "source": "font" + }, + { + "char": "O", + "x": 1071, + "y": 164, + "w": 68, + "h": 81, + "source": "font" + }, + { + "char": "G", + "x": 1141, + "y": 164, + "w": 72, + "h": 78, + "source": "font" + }, + { + "char": "G", + "x": 1215, + "y": 164, + "w": 73, + "h": 78, + "source": "font" + }, + { + "char": "G", + "x": 1290, + "y": 164, + "w": 74, + "h": 79, + "source": "font" + }, + { + "char": "l", + "x": 1366, + "y": 164, + "w": 30, + "h": 78, + "source": "font" + }, + { + "char": "l", + "x": 1398, + "y": 164, + "w": 31, + "h": 79, + "source": "font" + }, + { + "char": "l", + "x": 1431, + "y": 164, + "w": 31, + "h": 79, + "source": "font" + }, + { + "char": "M", + "x": 1464, + "y": 164, + "w": 91, + "h": 78, + "source": "font" + }, + { + "char": "M", + "x": 2, + "y": 247, + "w": 92, + "h": 78, + "source": "font" + }, + { + "char": "M", + "x": 96, + "y": 247, + "w": 93, + "h": 79, + "source": "font" + }, + { + "char": "W", + "x": 191, + "y": 247, + "w": 101, + "h": 78, + "source": "font" + }, + { + "char": "W", + "x": 294, + "y": 247, + "w": 102, + "h": 78, + "source": "font" + }, + { + "char": "W", + "x": 398, + "y": 247, + "w": 103, + "h": 79, + "source": "font" + }, + { + "char": "S", + "x": 503, + "y": 247, + "w": 59, + "h": 77, + "source": "font" + }, + { + "char": "S", + "x": 564, + "y": 247, + "w": 59, + "h": 78, + "source": "font" + }, + { + "char": "S", + "x": 625, + "y": 247, + "w": 60, + "h": 79, + "source": "font" + }, + { + "char": "Z", + "x": 687, + "y": 247, + "w": 63, + "h": 78, + "source": "font" + }, + { + "char": "Z", + "x": 752, + "y": 247, + "w": 64, + "h": 78, + "source": "font" + }, + { + "char": "Z", + "x": 818, + "y": 247, + "w": 65, + "h": 79, + "source": "font" + }, + { + "char": "w", + "x": 885, + "y": 247, + "w": 79, + "h": 60, + "source": "font" + }, + { + "char": "w", + "x": 966, + "y": 247, + "w": 80, + "h": 61, + "source": "font" + }, + { + "char": "w", + "x": 1048, + "y": 247, + "w": 81, + "h": 61, + "source": "font" + }, + { + "char": "C", + "x": 1131, + "y": 247, + "w": 68, + "h": 79, + "source": "font" + }, + { + "char": "C", + "x": 1201, + "y": 247, + "w": 69, + "h": 79, + "source": "font" + }, + { + "char": "C", + "x": 1272, + "y": 247, + "w": 70, + "h": 80, + "source": "font" + }, + { + "char": "B", + "x": 1344, + "y": 247, + "w": 61, + "h": 77, + "source": "font" + }, + { + "char": "B", + "x": 1407, + "y": 247, + "w": 62, + "h": 78, + "source": "font" + }, + { + "char": "B", + "x": 1471, + "y": 247, + "w": 63, + "h": 79, + "source": "font" + }, + { + "char": "z", + "x": 1536, + "y": 247, + "w": 49, + "h": 60, + "source": "font" + }, + { + "char": "z", + "x": 2, + "y": 329, + "w": 50, + "h": 61, + "source": "font" + }, + { + "char": "z", + "x": 54, + "y": 329, + "w": 50, + "h": 61, + "source": "font" + }, + { + "char": "P", + "x": 106, + "y": 329, + "w": 64, + "h": 78, + "source": "font" + }, + { + "char": "P", + "x": 172, + "y": 329, + "w": 65, + "h": 79, + "source": "font" + }, + { + "char": "P", + "x": 239, + "y": 329, + "w": 66, + "h": 79, + "source": "font" + }, + { + "char": "A", + "x": 307, + "y": 329, + "w": 72, + "h": 77, + "source": "font" + }, + { + "char": "A", + "x": 381, + "y": 329, + "w": 72, + "h": 78, + "source": "font" + }, + { + "char": "A", + "x": 455, + "y": 329, + "w": 73, + "h": 78, + "source": "font" + }, + { + "char": "j", + "x": 530, + "y": 329, + "w": 43, + "h": 94, + "source": "font" + }, + { + "char": "j", + "x": 575, + "y": 329, + "w": 44, + "h": 96, + "source": "font" + }, + { + "char": "j", + "x": 621, + "y": 329, + "w": 44, + "h": 96, + "source": "font" + }, + { + "char": "D", + "x": 667, + "y": 329, + "w": 66, + "h": 78, + "source": "font" + }, + { + "char": "D", + "x": 735, + "y": 329, + "w": 67, + "h": 79, + "source": "font" + }, + { + "char": "D", + "x": 804, + "y": 329, + "w": 68, + "h": 79, + "source": "font" + }, + { + "char": "é", + "x": 874, + "y": 329, + "w": 63, + "h": 86, + "source": "font" + }, + { + "char": "é", + "x": 939, + "y": 329, + "w": 64, + "h": 87, + "source": "font" + }, + { + "char": "é", + "x": 1005, + "y": 329, + "w": 65, + "h": 88, + "source": "font" + }, + { + "char": "E", + "x": 1072, + "y": 329, + "w": 50, + "h": 77, + "source": "font" + }, + { + "char": "E", + "x": 1124, + "y": 329, + "w": 51, + "h": 78, + "source": "font" + }, + { + "char": "E", + "x": 1177, + "y": 329, + "w": 51, + "h": 79, + "source": "font" + }, + { + "char": "x", + "x": 1230, + "y": 329, + "w": 63, + "h": 60, + "source": "font" + }, + { + "char": "x", + "x": 1295, + "y": 329, + "w": 63, + "h": 61, + "source": "font" + }, + { + "char": "x", + "x": 1360, + "y": 329, + "w": 64, + "h": 62, + "source": "font" + }, + { + "char": "q", + "x": 1426, + "y": 329, + "w": 61, + "h": 77, + "source": "font" + }, + { + "char": "q", + "x": 1489, + "y": 329, + "w": 62, + "h": 78, + "source": "font" + }, + { + "char": "q", + "x": 2, + "y": 427, + "w": 63, + "h": 79, + "source": "font" + }, + { + "char": "b", + "x": 67, + "y": 427, + "w": 62, + "h": 78, + "source": "font" + }, + { + "char": "b", + "x": 131, + "y": 427, + "w": 62, + "h": 78, + "source": "font" + }, + { + "char": "b", + "x": 195, + "y": 427, + "w": 63, + "h": 79, + "source": "font" + }, + { + "char": "V", + "x": 260, + "y": 427, + "w": 73, + "h": 78, + "source": "font" + }, + { + "char": "V", + "x": 335, + "y": 427, + "w": 74, + "h": 78, + "source": "font" + }, + { + "char": "V", + "x": 411, + "y": 427, + "w": 74, + "h": 79, + "source": "font" + }, + { + "char": "g", + "x": 487, + "y": 427, + "w": 66, + "h": 77, + "source": "font" + }, + { + "char": "g", + "x": 555, + "y": 427, + "w": 65, + "h": 78, + "source": "font" + }, + { + "char": "g", + "x": 622, + "y": 427, + "w": 66, + "h": 79, + "source": "font" + }, + { + "char": "ó", + "x": 690, + "y": 427, + "w": 60, + "h": 86, + "source": "font" + }, + { + "char": "ó", + "x": 752, + "y": 427, + "w": 61, + "h": 87, + "source": "font" + }, + { + "char": "ó", + "x": 815, + "y": 427, + "w": 62, + "h": 88, + "source": "font" + } + ] +} \ No newline at end of file diff --git a/public/cv/v1/glyphs/map-start-mode.png b/public/cv/v1/glyphs/map-start-mode.png new file mode 100644 index 000000000..8d35a01cb Binary files /dev/null and b/public/cv/v1/glyphs/map-start-mode.png differ diff --git a/public/cv/v1/glyphs/map-start-stage.json b/public/cv/v1/glyphs/map-start-stage.json new file mode 100644 index 000000000..bac245ebd --- /dev/null +++ b/public/cv/v1/glyphs/map-start-stage.json @@ -0,0 +1,1685 @@ +{ + "height": 40, + "glyphs": [ + { + "char": "S", + "x": 2, + "y": 2, + "w": 25, + "h": 41, + "source": "font" + }, + { + "char": "S", + "x": 29, + "y": 2, + "w": 25, + "h": 41, + "source": "font" + }, + { + "char": "S", + "x": 56, + "y": 2, + "w": 26, + "h": 42, + "source": "font" + }, + { + "char": "P", + "x": 84, + "y": 2, + "w": 24, + "h": 40, + "source": "font" + }, + { + "char": "P", + "x": 110, + "y": 2, + "w": 25, + "h": 41, + "source": "font" + }, + { + "char": "P", + "x": 137, + "y": 2, + "w": 25, + "h": 42, + "source": "font" + }, + { + "char": "A", + "x": 164, + "y": 2, + "w": 24, + "h": 40, + "source": "font" + }, + { + "char": "A", + "x": 190, + "y": 2, + "w": 24, + "h": 41, + "source": "font" + }, + { + "char": "A", + "x": 216, + "y": 2, + "w": 25, + "h": 42, + "source": "font" + }, + { + "char": "B", + "x": 243, + "y": 2, + "w": 23, + "h": 40, + "source": "font" + }, + { + "char": "B", + "x": 268, + "y": 2, + "w": 24, + "h": 41, + "source": "font" + }, + { + "char": "B", + "x": 294, + "y": 2, + "w": 24, + "h": 42, + "source": "font" + }, + { + "char": "a", + "x": 320, + "y": 2, + "w": 24, + "h": 31, + "source": "font" + }, + { + "char": "a", + "x": 346, + "y": 2, + "w": 24, + "h": 32, + "source": "font" + }, + { + "char": "a", + "x": 372, + "y": 2, + "w": 25, + "h": 33, + "source": "font" + }, + { + "char": "h", + "x": 399, + "y": 2, + "w": 22, + "h": 40, + "source": "font" + }, + { + "char": "h", + "x": 423, + "y": 2, + "w": 22, + "h": 41, + "source": "font" + }, + { + "char": "h", + "x": 447, + "y": 2, + "w": 23, + "h": 42, + "source": "font" + }, + { + "char": "n", + "x": 472, + "y": 2, + "w": 22, + "h": 30, + "source": "font" + }, + { + "char": "n", + "x": 496, + "y": 2, + "w": 22, + "h": 31, + "source": "font" + }, + { + "char": "n", + "x": 520, + "y": 2, + "w": 22, + "h": 31, + "source": "font" + }, + { + "char": "o", + "x": 544, + "y": 2, + "w": 22, + "h": 30, + "source": "font" + }, + { + "char": "o", + "x": 568, + "y": 2, + "w": 22, + "h": 31, + "source": "font" + }, + { + "char": "o", + "x": 592, + "y": 2, + "w": 22, + "h": 32, + "source": "font" + }, + { + "char": "f", + "x": 616, + "y": 2, + "w": 20, + "h": 40, + "source": "font" + }, + { + "char": "f", + "x": 638, + "y": 2, + "w": 21, + "h": 41, + "source": "font" + }, + { + "char": "f", + "x": 661, + "y": 2, + "w": 21, + "h": 42, + "source": "font" + }, + { + "char": "L", + "x": 684, + "y": 2, + "w": 18, + "h": 40, + "source": "font" + }, + { + "char": "L", + "x": 704, + "y": 2, + "w": 18, + "h": 41, + "source": "font" + }, + { + "char": "L", + "x": 724, + "y": 2, + "w": 18, + "h": 42, + "source": "font" + }, + { + "char": "e", + "x": 744, + "y": 2, + "w": 23, + "h": 31, + "source": "font" + }, + { + "char": "e", + "x": 769, + "y": 2, + "w": 23, + "h": 32, + "source": "font" + }, + { + "char": "e", + "x": 794, + "y": 2, + "w": 24, + "h": 32, + "source": "font" + }, + { + "char": "m", + "x": 820, + "y": 2, + "w": 31, + "h": 30, + "source": "font" + }, + { + "char": "m", + "x": 853, + "y": 2, + "w": 32, + "h": 31, + "source": "font" + }, + { + "char": "m", + "x": 887, + "y": 2, + "w": 32, + "h": 31, + "source": "font" + }, + { + "char": "u", + "x": 921, + "y": 2, + "w": 24, + "h": 30, + "source": "font" + }, + { + "char": "u", + "x": 947, + "y": 2, + "w": 24, + "h": 31, + "source": "font" + }, + { + "char": "u", + "x": 973, + "y": 2, + "w": 25, + "h": 31, + "source": "font" + }, + { + "char": "r", + "x": 1000, + "y": 2, + "w": 17, + "h": 30, + "source": "font" + }, + { + "char": "r", + "x": 1019, + "y": 2, + "w": 18, + "h": 30, + "source": "font" + }, + { + "char": "r", + "x": 1039, + "y": 2, + "w": 18, + "h": 31, + "source": "font" + }, + { + "char": "i", + "x": 1059, + "y": 2, + "w": 11, + "h": 41, + "source": "font" + }, + { + "char": "i", + "x": 1072, + "y": 2, + "w": 11, + "h": 41, + "source": "font" + }, + { + "char": "i", + "x": 1085, + "y": 2, + "w": 10, + "h": 42, + "source": "font" + }, + { + "char": "K", + "x": 1097, + "y": 2, + "w": 23, + "h": 40, + "source": "font" + }, + { + "char": "K", + "x": 1122, + "y": 2, + "w": 22, + "h": 41, + "source": "font" + }, + { + "char": "K", + "x": 1146, + "y": 2, + "w": 22, + "h": 42, + "source": "font" + }, + { + "char": "s", + "x": 1170, + "y": 2, + "w": 21, + "h": 30, + "source": "font" + }, + { + "char": "s", + "x": 1193, + "y": 2, + "w": 22, + "h": 31, + "source": "font" + }, + { + "char": "s", + "x": 1217, + "y": 2, + "w": 22, + "h": 32, + "source": "font" + }, + { + "char": "y", + "x": 1241, + "y": 2, + "w": 22, + "h": 40, + "source": "font" + }, + { + "char": "y", + "x": 1265, + "y": 2, + "w": 23, + "h": 41, + "source": "font" + }, + { + "char": "y", + "x": 1290, + "y": 2, + "w": 23, + "h": 42, + "source": "font" + }, + { + "char": "-", + "x": 1315, + "y": 2, + "w": 21, + "h": 11, + "source": "font" + }, + { + "char": "-", + "x": 1338, + "y": 2, + "w": 22, + "h": 12, + "source": "font" + }, + { + "char": "-", + "x": 1362, + "y": 2, + "w": 22, + "h": 12, + "source": "font" + }, + { + "char": "Q", + "x": 1386, + "y": 2, + "w": 24, + "h": 49, + "source": "font" + }, + { + "char": "Q", + "x": 1412, + "y": 2, + "w": 25, + "h": 50, + "source": "font" + }, + { + "char": "Q", + "x": 1439, + "y": 2, + "w": 25, + "h": 52, + "source": "font" + }, + { + "char": "l", + "x": 1466, + "y": 2, + "w": 9, + "h": 40, + "source": "font" + }, + { + "char": "l", + "x": 1477, + "y": 2, + "w": 9, + "h": 41, + "source": "font" + }, + { + "char": "l", + "x": 1488, + "y": 2, + "w": 10, + "h": 42, + "source": "font" + }, + { + "char": "F", + "x": 1500, + "y": 2, + "w": 21, + "h": 40, + "source": "font" + }, + { + "char": "F", + "x": 1523, + "y": 2, + "w": 22, + "h": 41, + "source": "font" + }, + { + "char": "F", + "x": 1547, + "y": 2, + "w": 22, + "h": 42, + "source": "font" + }, + { + "char": "d", + "x": 1571, + "y": 2, + "w": 22, + "h": 41, + "source": "font" + }, + { + "char": "d", + "x": 2, + "y": 56, + "w": 23, + "h": 42, + "source": "font" + }, + { + "char": "d", + "x": 27, + "y": 56, + "w": 23, + "h": 43, + "source": "font" + }, + { + "char": "p", + "x": 52, + "y": 56, + "w": 22, + "h": 41, + "source": "font" + }, + { + "char": "p", + "x": 76, + "y": 56, + "w": 22, + "h": 41, + "source": "font" + }, + { + "char": "p", + "x": 100, + "y": 56, + "w": 22, + "h": 42, + "source": "font" + }, + { + "char": "k", + "x": 124, + "y": 56, + "w": 22, + "h": 40, + "source": "font" + }, + { + "char": "k", + "x": 148, + "y": 56, + "w": 22, + "h": 41, + "source": "font" + }, + { + "char": "k", + "x": 172, + "y": 56, + "w": 22, + "h": 42, + "source": "font" + }, + { + "char": "D", + "x": 196, + "y": 56, + "w": 24, + "h": 41, + "source": "font" + }, + { + "char": "D", + "x": 222, + "y": 56, + "w": 24, + "h": 41, + "source": "font" + }, + { + "char": "D", + "x": 248, + "y": 56, + "w": 25, + "h": 42, + "source": "font" + }, + { + "char": "b", + "x": 275, + "y": 56, + "w": 23, + "h": 41, + "source": "font" + }, + { + "char": "b", + "x": 300, + "y": 56, + "w": 23, + "h": 42, + "source": "font" + }, + { + "char": "b", + "x": 325, + "y": 56, + "w": 23, + "h": 43, + "source": "font" + }, + { + "char": "t", + "x": 350, + "y": 56, + "w": 19, + "h": 36, + "source": "font" + }, + { + "char": "t", + "x": 371, + "y": 56, + "w": 19, + "h": 37, + "source": "font" + }, + { + "char": "t", + "x": 392, + "y": 56, + "w": 19, + "h": 37, + "source": "font" + }, + { + "char": "R", + "x": 413, + "y": 56, + "w": 23, + "h": 41, + "source": "font" + }, + { + "char": "R", + "x": 438, + "y": 56, + "w": 24, + "h": 41, + "source": "font" + }, + { + "char": "R", + "x": 464, + "y": 56, + "w": 24, + "h": 42, + "source": "font" + }, + { + "char": "O", + "x": 490, + "y": 56, + "w": 24, + "h": 40, + "source": "font" + }, + { + "char": "O", + "x": 516, + "y": 56, + "w": 24, + "h": 41, + "source": "font" + }, + { + "char": "O", + "x": 542, + "y": 56, + "w": 24, + "h": 42, + "source": "font" + }, + { + "char": "M", + "x": 568, + "y": 56, + "w": 28, + "h": 40, + "source": "font" + }, + { + "char": "M", + "x": 598, + "y": 56, + "w": 29, + "h": 41, + "source": "font" + }, + { + "char": "M", + "x": 629, + "y": 56, + "w": 30, + "h": 42, + "source": "font" + }, + { + "char": "&", + "x": 661, + "y": 56, + "w": 34, + "h": 44, + "source": "font" + }, + { + "char": "&", + "x": 697, + "y": 56, + "w": 35, + "h": 45, + "source": "font" + }, + { + "char": "&", + "x": 734, + "y": 56, + "w": 36, + "h": 46, + "source": "font" + }, + { + "char": "ß", + "x": 772, + "y": 56, + "w": 23, + "h": 40, + "source": "font" + }, + { + "char": "ß", + "x": 797, + "y": 56, + "w": 23, + "h": 41, + "source": "font" + }, + { + "char": "ß", + "x": 822, + "y": 56, + "w": 24, + "h": 42, + "source": "font" + }, + { + "char": "U", + "x": 848, + "y": 56, + "w": 24, + "h": 40, + "source": "font" + }, + { + "char": "U", + "x": 874, + "y": 56, + "w": 25, + "h": 41, + "source": "font" + }, + { + "char": "U", + "x": 901, + "y": 56, + "w": 25, + "h": 42, + "source": "font" + }, + { + "char": "'", + "x": 928, + "y": 56, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "'", + "x": 942, + "y": 56, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "'", + "x": 956, + "y": 56, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "c", + "x": 971, + "y": 56, + "w": 22, + "h": 31, + "source": "font" + }, + { + "char": "c", + "x": 995, + "y": 56, + "w": 23, + "h": 32, + "source": "font" + }, + { + "char": "c", + "x": 1020, + "y": 56, + "w": 23, + "h": 33, + "source": "font" + }, + { + "char": "g", + "x": 1045, + "y": 56, + "w": 22, + "h": 40, + "source": "font" + }, + { + "char": "g", + "x": 1069, + "y": 56, + "w": 22, + "h": 41, + "source": "font" + }, + { + "char": "g", + "x": 1093, + "y": 56, + "w": 23, + "h": 42, + "source": "font" + }, + { + "char": "ü", + "x": 1118, + "y": 56, + "w": 24, + "h": 39, + "source": "font" + }, + { + "char": "ü", + "x": 1144, + "y": 56, + "w": 24, + "h": 40, + "source": "font" + }, + { + "char": "ü", + "x": 1170, + "y": 56, + "w": 25, + "h": 41, + "source": "font" + }, + { + "char": "C", + "x": 1197, + "y": 56, + "w": 23, + "h": 40, + "source": "font" + }, + { + "char": "C", + "x": 1222, + "y": 56, + "w": 24, + "h": 41, + "source": "font" + }, + { + "char": "C", + "x": 1248, + "y": 56, + "w": 24, + "h": 42, + "source": "font" + }, + { + "char": "ö", + "x": 1274, + "y": 56, + "w": 22, + "h": 39, + "source": "font" + }, + { + "char": "ö", + "x": 1298, + "y": 56, + "w": 22, + "h": 40, + "source": "font" + }, + { + "char": "ö", + "x": 1322, + "y": 56, + "w": 22, + "h": 41, + "source": "font" + }, + { + "char": "w", + "x": 1346, + "y": 56, + "w": 28, + "h": 30, + "source": "font" + }, + { + "char": "w", + "x": 1376, + "y": 56, + "w": 28, + "h": 30, + "source": "font" + }, + { + "char": "w", + "x": 1406, + "y": 56, + "w": 29, + "h": 31, + "source": "font" + }, + { + "char": "T", + "x": 1437, + "y": 56, + "w": 24, + "h": 40, + "source": "font" + }, + { + "char": "T", + "x": 1463, + "y": 56, + "w": 24, + "h": 41, + "source": "font" + }, + { + "char": "T", + "x": 1489, + "y": 56, + "w": 25, + "h": 42, + "source": "font" + }, + { + "char": "v", + "x": 1516, + "y": 56, + "w": 22, + "h": 30, + "source": "font" + }, + { + "char": "v", + "x": 1540, + "y": 56, + "w": 23, + "h": 31, + "source": "font" + }, + { + "char": "v", + "x": 1565, + "y": 56, + "w": 23, + "h": 31, + "source": "font" + }, + { + "char": "H", + "x": 2, + "y": 104, + "w": 24, + "h": 40, + "source": "font" + }, + { + "char": "H", + "x": 28, + "y": 104, + "w": 25, + "h": 41, + "source": "font" + }, + { + "char": "H", + "x": 55, + "y": 104, + "w": 25, + "h": 42, + "source": "font" + }, + { + "char": "W", + "x": 82, + "y": 104, + "w": 33, + "h": 40, + "source": "font" + }, + { + "char": "W", + "x": 117, + "y": 104, + "w": 34, + "h": 41, + "source": "font" + }, + { + "char": "W", + "x": 153, + "y": 104, + "w": 34, + "h": 42, + "source": "font" + }, + { + "char": "E", + "x": 189, + "y": 104, + "w": 22, + "h": 40, + "source": "font" + }, + { + "char": "E", + "x": 213, + "y": 104, + "w": 22, + "h": 41, + "source": "font" + }, + { + "char": "E", + "x": 237, + "y": 104, + "w": 22, + "h": 42, + "source": "font" + }, + { + "char": ".", + "x": 261, + "y": 104, + "w": 12, + "h": 11, + "source": "font" + }, + { + "char": ".", + "x": 275, + "y": 104, + "w": 12, + "h": 12, + "source": "font" + }, + { + "char": ".", + "x": 289, + "y": 104, + "w": 12, + "h": 12, + "source": "font" + }, + { + "char": "I", + "x": 303, + "y": 104, + "w": 11, + "h": 40, + "source": "font" + }, + { + "char": "I", + "x": 316, + "y": 104, + "w": 11, + "h": 41, + "source": "font" + }, + { + "char": "I", + "x": 329, + "y": 104, + "w": 11, + "h": 42, + "source": "font" + }, + { + "char": "G", + "x": 342, + "y": 104, + "w": 25, + "h": 40, + "source": "font" + }, + { + "char": "G", + "x": 369, + "y": 104, + "w": 25, + "h": 41, + "source": "font" + }, + { + "char": "G", + "x": 396, + "y": 104, + "w": 25, + "h": 42, + "source": "font" + }, + { + "char": "ó", + "x": 423, + "y": 104, + "w": 22, + "h": 43, + "source": "font" + }, + { + "char": "ó", + "x": 447, + "y": 104, + "w": 22, + "h": 43, + "source": "font" + }, + { + "char": "ó", + "x": 471, + "y": 104, + "w": 22, + "h": 44, + "source": "font" + }, + { + "char": "ñ", + "x": 495, + "y": 104, + "w": 23, + "h": 41, + "source": "font" + }, + { + "char": "ñ", + "x": 520, + "y": 104, + "w": 24, + "h": 42, + "source": "font" + }, + { + "char": "ñ", + "x": 546, + "y": 104, + "w": 24, + "h": 43, + "source": "font" + }, + { + "char": "q", + "x": 572, + "y": 104, + "w": 21, + "h": 40, + "source": "font" + }, + { + "char": "q", + "x": 595, + "y": 104, + "w": 21, + "h": 41, + "source": "font" + }, + { + "char": "q", + "x": 618, + "y": 104, + "w": 22, + "h": 42, + "source": "font" + }, + { + "char": "V", + "x": 642, + "y": 104, + "w": 25, + "h": 40, + "source": "font" + }, + { + "char": "V", + "x": 669, + "y": 104, + "w": 26, + "h": 41, + "source": "font" + }, + { + "char": "V", + "x": 697, + "y": 104, + "w": 26, + "h": 42, + "source": "font" + }, + { + "char": "í", + "x": 725, + "y": 104, + "w": 14, + "h": 43, + "source": "font" + }, + { + "char": "í", + "x": 741, + "y": 104, + "w": 15, + "h": 43, + "source": "font" + }, + { + "char": "í", + "x": 758, + "y": 104, + "w": 15, + "h": 44, + "source": "font" + }, + { + "char": "j", + "x": 775, + "y": 104, + "w": 14, + "h": 50, + "source": "font" + }, + { + "char": "j", + "x": 791, + "y": 104, + "w": 14, + "h": 50, + "source": "font" + }, + { + "char": "j", + "x": 807, + "y": 104, + "w": 15, + "h": 52, + "source": "font" + }, + { + "char": "á", + "x": 824, + "y": 104, + "w": 24, + "h": 44, + "source": "font" + }, + { + "char": "á", + "x": 850, + "y": 104, + "w": 24, + "h": 44, + "source": "font" + }, + { + "char": "á", + "x": 876, + "y": 104, + "w": 25, + "h": 45, + "source": "font" + }, + { + "char": "N", + "x": 903, + "y": 104, + "w": 25, + "h": 40, + "source": "font" + }, + { + "char": "N", + "x": 930, + "y": 104, + "w": 25, + "h": 41, + "source": "font" + }, + { + "char": "N", + "x": 957, + "y": 104, + "w": 26, + "h": 42, + "source": "font" + }, + { + "char": "è", + "x": 985, + "y": 104, + "w": 23, + "h": 44, + "source": "font" + }, + { + "char": "è", + "x": 1010, + "y": 104, + "w": 23, + "h": 44, + "source": "font" + }, + { + "char": "è", + "x": 1035, + "y": 104, + "w": 24, + "h": 45, + "source": "font" + }, + { + "char": "é", + "x": 1061, + "y": 104, + "w": 23, + "h": 44, + "source": "font" + }, + { + "char": "é", + "x": 1086, + "y": 104, + "w": 23, + "h": 44, + "source": "font" + }, + { + "char": "é", + "x": 1111, + "y": 104, + "w": 24, + "h": 45, + "source": "font" + }, + { + "char": "$", + "x": 1137, + "y": 104, + "w": 27, + "h": 50, + "source": "font" + }, + { + "char": "$", + "x": 1166, + "y": 104, + "w": 28, + "h": 51, + "source": "font" + }, + { + "char": "$", + "x": 1196, + "y": 104, + "w": 28, + "h": 52, + "source": "font" + }, + { + "char": "x", + "x": 1226, + "y": 104, + "w": 21, + "h": 30, + "source": "font" + }, + { + "char": "x", + "x": 1249, + "y": 104, + "w": 21, + "h": 31, + "source": "font" + }, + { + "char": "x", + "x": 1272, + "y": 104, + "w": 21, + "h": 32, + "source": "font" + }, + { + "char": "z", + "x": 1295, + "y": 104, + "w": 23, + "h": 30, + "source": "font" + }, + { + "char": "z", + "x": 1320, + "y": 104, + "w": 23, + "h": 31, + "source": "font" + }, + { + "char": "z", + "x": 1345, + "y": 104, + "w": 23, + "h": 31, + "source": "font" + }, + { + "char": "ò", + "x": 1370, + "y": 104, + "w": 22, + "h": 43, + "source": "font" + }, + { + "char": "ò", + "x": 1394, + "y": 104, + "w": 22, + "h": 43, + "source": "font" + }, + { + "char": "ò", + "x": 1418, + "y": 104, + "w": 22, + "h": 44, + "source": "font" + }, + { + "char": "ë", + "x": 1442, + "y": 104, + "w": 23, + "h": 40, + "source": "font" + }, + { + "char": "ë", + "x": 1467, + "y": 104, + "w": 23, + "h": 41, + "source": "font" + }, + { + "char": "ë", + "x": 1492, + "y": 104, + "w": 24, + "h": 42, + "source": "font" + }, + { + "char": "ï", + "x": 1518, + "y": 104, + "w": 18, + "h": 39, + "source": "font" + }, + { + "char": "ï", + "x": 1538, + "y": 104, + "w": 19, + "h": 40, + "source": "font" + }, + { + "char": "ï", + "x": 1559, + "y": 104, + "w": 19, + "h": 41, + "source": "font" + }, + { + "char": "Z", + "x": 2, + "y": 158, + "w": 23, + "h": 40, + "source": "font" + }, + { + "char": "Z", + "x": 27, + "y": 158, + "w": 24, + "h": 41, + "source": "font" + }, + { + "char": "Z", + "x": 53, + "y": 158, + "w": 24, + "h": 42, + "source": "font" + }, + { + "char": "«", + "x": 79, + "y": 158, + "w": 29, + "h": 26, + "source": "font" + }, + { + "char": "«", + "x": 110, + "y": 158, + "w": 30, + "h": 26, + "source": "font" + }, + { + "char": "«", + "x": 142, + "y": 158, + "w": 31, + "h": 27, + "source": "font" + }, + { + "char": "»", + "x": 175, + "y": 158, + "w": 29, + "h": 26, + "source": "font" + }, + { + "char": "»", + "x": 206, + "y": 158, + "w": 30, + "h": 26, + "source": "font" + }, + { + "char": "»", + "x": 238, + "y": 158, + "w": 31, + "h": 27, + "source": "font" + }, + { + "char": "9", + "x": 271, + "y": 158, + "w": 24, + "h": 41, + "source": "font" + }, + { + "char": "9", + "x": 297, + "y": 158, + "w": 25, + "h": 41, + "source": "font" + }, + { + "char": "9", + "x": 324, + "y": 158, + "w": 25, + "h": 42, + "source": "font" + }, + { + "char": "à", + "x": 351, + "y": 158, + "w": 24, + "h": 44, + "source": "font" + }, + { + "char": "à", + "x": 377, + "y": 158, + "w": 24, + "h": 44, + "source": "font" + }, + { + "char": "à", + "x": 403, + "y": 158, + "w": 25, + "h": 45, + "source": "font" + } + ] +} \ No newline at end of file diff --git a/public/cv/v1/glyphs/map-start-stage.png b/public/cv/v1/glyphs/map-start-stage.png new file mode 100644 index 000000000..f72eeee7f Binary files /dev/null and b/public/cv/v1/glyphs/map-start-stage.png differ diff --git a/public/cv/v1/glyphs/scoreboard-header-line.json b/public/cv/v1/glyphs/scoreboard-header-line.json new file mode 100644 index 000000000..40ba45d7a --- /dev/null +++ b/public/cv/v1/glyphs/scoreboard-header-line.json @@ -0,0 +1,2037 @@ +{ + "height": 24, + "glyphs": [ + { + "char": "a", + "x": 2, + "y": 2, + "w": 21, + "h": 21, + "source": "fixture" + }, + { + "char": "c", + "x": 25, + "y": 2, + "w": 13, + "h": 18, + "source": "fixture" + }, + { + "char": "c", + "x": 40, + "y": 2, + "w": 14, + "h": 18, + "source": "fixture" + }, + { + "char": "e", + "x": 56, + "y": 2, + "w": 22, + "h": 22, + "source": "fixture" + }, + { + "char": "e", + "x": 80, + "y": 2, + "w": 13, + "h": 18, + "source": "fixture" + }, + { + "char": "e", + "x": 95, + "y": 2, + "w": 13, + "h": 18, + "source": "fixture" + }, + { + "char": "g", + "x": 110, + "y": 2, + "w": 13, + "h": 25, + "source": "fixture" + }, + { + "char": "g", + "x": 125, + "y": 2, + "w": 13, + "h": 24, + "source": "fixture" + }, + { + "char": "G", + "x": 140, + "y": 2, + "w": 14, + "h": 23, + "source": "fixture" + }, + { + "char": "G", + "x": 156, + "y": 2, + "w": 15, + "h": 23, + "source": "fixture" + }, + { + "char": "h", + "x": 173, + "y": 2, + "w": 13, + "h": 23, + "source": "fixture" + }, + { + "char": "h", + "x": 188, + "y": 2, + "w": 14, + "h": 23, + "source": "fixture" + }, + { + "char": "l", + "x": 204, + "y": 2, + "w": 12, + "h": 27, + "source": "fixture" + }, + { + "char": "n", + "x": 218, + "y": 2, + "w": 23, + "h": 22, + "source": "fixture" + }, + { + "char": "o", + "x": 243, + "y": 2, + "w": 22, + "h": 22, + "source": "fixture" + }, + { + "char": "o", + "x": 267, + "y": 2, + "w": 13, + "h": 18, + "source": "fixture" + }, + { + "char": "o", + "x": 282, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "p", + "x": 296, + "y": 2, + "w": 22, + "h": 28, + "source": "fixture" + }, + { + "char": "r", + "x": 320, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "r", + "x": 333, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "s", + "x": 346, + "y": 2, + "w": 18, + "h": 22, + "source": "fixture" + }, + { + "char": "S", + "x": 366, + "y": 2, + "w": 20, + "h": 27, + "source": "fixture" + }, + { + "char": "S", + "x": 388, + "y": 2, + "w": 15, + "h": 23, + "source": "fixture" + }, + { + "char": "S", + "x": 405, + "y": 2, + "w": 14, + "h": 23, + "source": "fixture" + }, + { + "char": "t", + "x": 421, + "y": 2, + "w": 19, + "h": 24, + "source": "fixture" + }, + { + "char": "Z", + "x": 442, + "y": 2, + "w": 23, + "h": 27, + "source": "fixture" + }, + { + "char": "R", + "x": 467, + "y": 2, + "w": 24, + "h": 28, + "source": "font" + }, + { + "char": "R", + "x": 493, + "y": 2, + "w": 25, + "h": 29, + "source": "font" + }, + { + "char": "e", + "x": 520, + "y": 2, + "w": 23, + "h": 23, + "source": "font" + }, + { + "char": "e", + "x": 545, + "y": 2, + "w": 24, + "h": 24, + "source": "font" + }, + { + "char": "v", + "x": 571, + "y": 2, + "w": 23, + "h": 23, + "source": "font" + }, + { + "char": "v", + "x": 596, + "y": 2, + "w": 24, + "h": 23, + "source": "font" + }, + { + "char": "i", + "x": 622, + "y": 2, + "w": 12, + "h": 29, + "source": "font" + }, + { + "char": "i", + "x": 636, + "y": 2, + "w": 12, + "h": 29, + "source": "font" + }, + { + "char": "r", + "x": 650, + "y": 2, + "w": 17, + "h": 23, + "source": "font" + }, + { + "char": "r", + "x": 669, + "y": 2, + "w": 18, + "h": 23, + "source": "font" + }, + { + "char": "k", + "x": 689, + "y": 2, + "w": 23, + "h": 29, + "source": "font" + }, + { + "char": "k", + "x": 714, + "y": 2, + "w": 24, + "h": 29, + "source": "font" + }, + { + "char": "a", + "x": 740, + "y": 2, + "w": 22, + "h": 23, + "source": "font" + }, + { + "char": "a", + "x": 764, + "y": 2, + "w": 23, + "h": 23, + "source": "font" + }, + { + "char": "m", + "x": 789, + "y": 2, + "w": 33, + "h": 23, + "source": "font" + }, + { + "char": "m", + "x": 824, + "y": 2, + "w": 34, + "h": 24, + "source": "font" + }, + { + "char": "p", + "x": 860, + "y": 2, + "w": 23, + "h": 28, + "source": "font" + }, + { + "char": "p", + "x": 885, + "y": 2, + "w": 24, + "h": 28, + "source": "font" + }, + { + "char": "f", + "x": 911, + "y": 2, + "w": 17, + "h": 29, + "source": "font" + }, + { + "char": "f", + "x": 930, + "y": 2, + "w": 17, + "h": 29, + "source": "font" + }, + { + "char": "H", + "x": 949, + "y": 2, + "w": 24, + "h": 28, + "source": "font" + }, + { + "char": "H", + "x": 975, + "y": 2, + "w": 25, + "h": 29, + "source": "font" + }, + { + "char": "s", + "x": 1002, + "y": 2, + "w": 20, + "h": 23, + "source": "font" + }, + { + "char": "s", + "x": 1024, + "y": 2, + "w": 20, + "h": 24, + "source": "font" + }, + { + "char": "c", + "x": 1046, + "y": 2, + "w": 21, + "h": 23, + "source": "font" + }, + { + "char": "c", + "x": 1069, + "y": 2, + "w": 22, + "h": 23, + "source": "font" + }, + { + "char": "h", + "x": 1093, + "y": 2, + "w": 24, + "h": 29, + "source": "font" + }, + { + "char": "h", + "x": 1119, + "y": 2, + "w": 25, + "h": 29, + "source": "font" + }, + { + "char": "t", + "x": 1146, + "y": 2, + "w": 20, + "h": 26, + "source": "font" + }, + { + "char": "t", + "x": 1168, + "y": 2, + "w": 20, + "h": 26, + "source": "font" + }, + { + "char": "T", + "x": 1190, + "y": 2, + "w": 25, + "h": 28, + "source": "font" + }, + { + "char": "T", + "x": 1217, + "y": 2, + "w": 26, + "h": 29, + "source": "font" + }, + { + "char": "u", + "x": 1245, + "y": 2, + "w": 24, + "h": 23, + "source": "font" + }, + { + "char": "u", + "x": 1271, + "y": 2, + "w": 24, + "h": 24, + "source": "font" + }, + { + "char": "-", + "x": 1297, + "y": 2, + "w": 14, + "h": 8, + "source": "font" + }, + { + "char": "-", + "x": 1313, + "y": 2, + "w": 15, + "h": 9, + "source": "font" + }, + { + "char": "K", + "x": 1330, + "y": 2, + "w": 26, + "h": 28, + "source": "font" + }, + { + "char": "K", + "x": 1358, + "y": 2, + "w": 27, + "h": 29, + "source": "font" + }, + { + "char": "o", + "x": 1387, + "y": 2, + "w": 22, + "h": 23, + "source": "font" + }, + { + "char": "o", + "x": 1411, + "y": 2, + "w": 23, + "h": 24, + "source": "font" + }, + { + "char": "n", + "x": 1436, + "y": 2, + "w": 24, + "h": 23, + "source": "font" + }, + { + "char": "n", + "x": 1462, + "y": 2, + "w": 25, + "h": 24, + "source": "font" + }, + { + "char": "d", + "x": 1489, + "y": 2, + "w": 23, + "h": 28, + "source": "font" + }, + { + "char": "d", + "x": 1514, + "y": 2, + "w": 24, + "h": 29, + "source": "font" + }, + { + "char": "O", + "x": 1540, + "y": 2, + "w": 24, + "h": 29, + "source": "font" + }, + { + "char": "O", + "x": 1566, + "y": 2, + "w": 25, + "h": 29, + "source": "font" + }, + { + "char": "G", + "x": 2, + "y": 33, + "w": 26, + "h": 28, + "source": "font" + }, + { + "char": "G", + "x": 30, + "y": 33, + "w": 27, + "h": 29, + "source": "font" + }, + { + "char": "l", + "x": 59, + "y": 33, + "w": 12, + "h": 29, + "source": "font" + }, + { + "char": "l", + "x": 73, + "y": 33, + "w": 12, + "h": 30, + "source": "font" + }, + { + "char": "M", + "x": 87, + "y": 33, + "w": 33, + "h": 28, + "source": "font" + }, + { + "char": "M", + "x": 122, + "y": 33, + "w": 34, + "h": 29, + "source": "font" + }, + { + "char": "W", + "x": 158, + "y": 33, + "w": 37, + "h": 28, + "source": "font" + }, + { + "char": "W", + "x": 197, + "y": 33, + "w": 38, + "h": 29, + "source": "font" + }, + { + "char": "S", + "x": 237, + "y": 33, + "w": 22, + "h": 28, + "source": "font" + }, + { + "char": "S", + "x": 261, + "y": 33, + "w": 22, + "h": 29, + "source": "font" + }, + { + "char": "Z", + "x": 285, + "y": 33, + "w": 23, + "h": 28, + "source": "font" + }, + { + "char": "Z", + "x": 310, + "y": 33, + "w": 24, + "h": 29, + "source": "font" + }, + { + "char": "w", + "x": 336, + "y": 33, + "w": 29, + "h": 23, + "source": "font" + }, + { + "char": "w", + "x": 367, + "y": 33, + "w": 30, + "h": 23, + "source": "font" + }, + { + "char": "C", + "x": 399, + "y": 33, + "w": 25, + "h": 29, + "source": "font" + }, + { + "char": "C", + "x": 426, + "y": 33, + "w": 26, + "h": 30, + "source": "font" + }, + { + "char": "B", + "x": 454, + "y": 33, + "w": 23, + "h": 29, + "source": "font" + }, + { + "char": "B", + "x": 479, + "y": 33, + "w": 24, + "h": 30, + "source": "font" + }, + { + "char": "z", + "x": 505, + "y": 33, + "w": 18, + "h": 23, + "source": "font" + }, + { + "char": "z", + "x": 525, + "y": 33, + "w": 19, + "h": 23, + "source": "font" + }, + { + "char": "P", + "x": 546, + "y": 33, + "w": 24, + "h": 29, + "source": "font" + }, + { + "char": "P", + "x": 572, + "y": 33, + "w": 25, + "h": 29, + "source": "font" + }, + { + "char": "A", + "x": 599, + "y": 33, + "w": 26, + "h": 29, + "source": "font" + }, + { + "char": "A", + "x": 627, + "y": 33, + "w": 27, + "h": 29, + "source": "font" + }, + { + "char": "j", + "x": 656, + "y": 33, + "w": 17, + "h": 34, + "source": "font" + }, + { + "char": "j", + "x": 675, + "y": 33, + "w": 17, + "h": 35, + "source": "font" + }, + { + "char": "D", + "x": 694, + "y": 33, + "w": 24, + "h": 29, + "source": "font" + }, + { + "char": "D", + "x": 720, + "y": 33, + "w": 25, + "h": 29, + "source": "font" + }, + { + "char": "é", + "x": 747, + "y": 33, + "w": 23, + "h": 32, + "source": "font" + }, + { + "char": "é", + "x": 772, + "y": 33, + "w": 24, + "h": 32, + "source": "font" + }, + { + "char": "E", + "x": 798, + "y": 33, + "w": 19, + "h": 28, + "source": "font" + }, + { + "char": "E", + "x": 819, + "y": 33, + "w": 20, + "h": 29, + "source": "font" + }, + { + "char": "x", + "x": 841, + "y": 33, + "w": 22, + "h": 23, + "source": "font" + }, + { + "char": "x", + "x": 865, + "y": 33, + "w": 23, + "h": 23, + "source": "font" + }, + { + "char": "q", + "x": 890, + "y": 33, + "w": 23, + "h": 28, + "source": "font" + }, + { + "char": "q", + "x": 915, + "y": 33, + "w": 23, + "h": 29, + "source": "font" + }, + { + "char": "b", + "x": 940, + "y": 33, + "w": 23, + "h": 28, + "source": "font" + }, + { + "char": "b", + "x": 965, + "y": 33, + "w": 23, + "h": 29, + "source": "font" + }, + { + "char": "V", + "x": 990, + "y": 33, + "w": 27, + "h": 28, + "source": "font" + }, + { + "char": "V", + "x": 1019, + "y": 33, + "w": 28, + "h": 29, + "source": "font" + }, + { + "char": "g", + "x": 1049, + "y": 33, + "w": 24, + "h": 28, + "source": "font" + }, + { + "char": "g", + "x": 1075, + "y": 33, + "w": 25, + "h": 29, + "source": "font" + }, + { + "char": "ó", + "x": 1102, + "y": 33, + "w": 22, + "h": 31, + "source": "font" + }, + { + "char": "ó", + "x": 1126, + "y": 33, + "w": 23, + "h": 32, + "source": "font" + }, + { + "char": "S", + "x": 1151, + "y": 33, + "w": 14, + "h": 21, + "source": "font" + }, + { + "char": "S", + "x": 1167, + "y": 33, + "w": 14, + "h": 21, + "source": "font" + }, + { + "char": "P", + "x": 1183, + "y": 33, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "P", + "x": 1197, + "y": 33, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "A", + "x": 1212, + "y": 33, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "A", + "x": 1227, + "y": 33, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "B", + "x": 1242, + "y": 33, + "w": 13, + "h": 20, + "source": "font" + }, + { + "char": "B", + "x": 1257, + "y": 33, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "a", + "x": 1271, + "y": 33, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "a", + "x": 1285, + "y": 33, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "h", + "x": 1299, + "y": 33, + "w": 11, + "h": 20, + "source": "font" + }, + { + "char": "h", + "x": 1312, + "y": 33, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "n", + "x": 1326, + "y": 33, + "w": 11, + "h": 16, + "source": "font" + }, + { + "char": "n", + "x": 1339, + "y": 33, + "w": 11, + "h": 16, + "source": "font" + }, + { + "char": "o", + "x": 1352, + "y": 33, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "o", + "x": 1366, + "y": 33, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "f", + "x": 1380, + "y": 33, + "w": 11, + "h": 21, + "source": "font" + }, + { + "char": "f", + "x": 1393, + "y": 33, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "L", + "x": 1407, + "y": 33, + "w": 10, + "h": 20, + "source": "font" + }, + { + "char": "L", + "x": 1419, + "y": 33, + "w": 9, + "h": 21, + "source": "font" + }, + { + "char": "e", + "x": 1430, + "y": 33, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "e", + "x": 1444, + "y": 33, + "w": 13, + "h": 16, + "source": "font" + }, + { + "char": "m", + "x": 1459, + "y": 33, + "w": 16, + "h": 16, + "source": "font" + }, + { + "char": "m", + "x": 1477, + "y": 33, + "w": 16, + "h": 16, + "source": "font" + }, + { + "char": "u", + "x": 1495, + "y": 33, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "u", + "x": 1509, + "y": 33, + "w": 13, + "h": 16, + "source": "font" + }, + { + "char": "r", + "x": 1524, + "y": 33, + "w": 9, + "h": 16, + "source": "font" + }, + { + "char": "r", + "x": 1535, + "y": 33, + "w": 10, + "h": 16, + "source": "font" + }, + { + "char": "i", + "x": 1547, + "y": 33, + "w": 6, + "h": 21, + "source": "font" + }, + { + "char": "i", + "x": 1555, + "y": 33, + "w": 6, + "h": 21, + "source": "font" + }, + { + "char": "K", + "x": 1563, + "y": 33, + "w": 11, + "h": 20, + "source": "font" + }, + { + "char": "K", + "x": 1576, + "y": 33, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "s", + "x": 2, + "y": 70, + "w": 11, + "h": 16, + "source": "font" + }, + { + "char": "s", + "x": 15, + "y": 70, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "y", + "x": 29, + "y": 70, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "y", + "x": 43, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "-", + "x": 58, + "y": 70, + "w": 11, + "h": 7, + "source": "font" + }, + { + "char": "-", + "x": 71, + "y": 70, + "w": 12, + "h": 7, + "source": "font" + }, + { + "char": "Q", + "x": 85, + "y": 70, + "w": 13, + "h": 24, + "source": "font" + }, + { + "char": "Q", + "x": 100, + "y": 70, + "w": 13, + "h": 26, + "source": "font" + }, + { + "char": "l", + "x": 115, + "y": 70, + "w": 6, + "h": 20, + "source": "font" + }, + { + "char": "l", + "x": 123, + "y": 70, + "w": 6, + "h": 21, + "source": "font" + }, + { + "char": "F", + "x": 131, + "y": 70, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "F", + "x": 145, + "y": 70, + "w": 11, + "h": 21, + "source": "font" + }, + { + "char": "d", + "x": 158, + "y": 70, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "d", + "x": 172, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "p", + "x": 187, + "y": 70, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "p", + "x": 201, + "y": 70, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "k", + "x": 215, + "y": 70, + "w": 11, + "h": 21, + "source": "font" + }, + { + "char": "k", + "x": 228, + "y": 70, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "D", + "x": 242, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "D", + "x": 257, + "y": 70, + "w": 14, + "h": 21, + "source": "font" + }, + { + "char": "b", + "x": 273, + "y": 70, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "b", + "x": 287, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "t", + "x": 302, + "y": 70, + "w": 10, + "h": 18, + "source": "font" + }, + { + "char": "t", + "x": 314, + "y": 70, + "w": 10, + "h": 19, + "source": "font" + }, + { + "char": "R", + "x": 326, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "R", + "x": 341, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "O", + "x": 356, + "y": 70, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "O", + "x": 370, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "M", + "x": 385, + "y": 70, + "w": 15, + "h": 20, + "source": "font" + }, + { + "char": "M", + "x": 402, + "y": 70, + "w": 15, + "h": 21, + "source": "font" + }, + { + "char": "&", + "x": 419, + "y": 70, + "w": 17, + "h": 23, + "source": "font" + }, + { + "char": "&", + "x": 438, + "y": 70, + "w": 18, + "h": 23, + "source": "font" + }, + { + "char": "ß", + "x": 458, + "y": 70, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "ß", + "x": 472, + "y": 70, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "U", + "x": 486, + "y": 70, + "w": 13, + "h": 20, + "source": "font" + }, + { + "char": "U", + "x": 501, + "y": 70, + "w": 14, + "h": 21, + "source": "font" + }, + { + "char": "'", + "x": 517, + "y": 70, + "w": 7, + "h": 9, + "source": "font" + }, + { + "char": "'", + "x": 526, + "y": 70, + "w": 7, + "h": 10, + "source": "font" + }, + { + "char": "c", + "x": 535, + "y": 70, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "c", + "x": 549, + "y": 70, + "w": 13, + "h": 16, + "source": "font" + }, + { + "char": "g", + "x": 564, + "y": 70, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "g", + "x": 578, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "ü", + "x": 593, + "y": 70, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "ü", + "x": 607, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "C", + "x": 622, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "C", + "x": 637, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "ö", + "x": 652, + "y": 70, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "ö", + "x": 666, + "y": 70, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "w", + "x": 680, + "y": 70, + "w": 15, + "h": 16, + "source": "font" + }, + { + "char": "w", + "x": 697, + "y": 70, + "w": 15, + "h": 16, + "source": "font" + }, + { + "char": "T", + "x": 714, + "y": 70, + "w": 13, + "h": 20, + "source": "font" + }, + { + "char": "T", + "x": 729, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "v", + "x": 744, + "y": 70, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "v", + "x": 758, + "y": 70, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "H", + "x": 772, + "y": 70, + "w": 13, + "h": 20, + "source": "font" + }, + { + "char": "H", + "x": 787, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "W", + "x": 802, + "y": 70, + "w": 16, + "h": 20, + "source": "font" + }, + { + "char": "W", + "x": 820, + "y": 70, + "w": 17, + "h": 21, + "source": "font" + }, + { + "char": "E", + "x": 839, + "y": 70, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "E", + "x": 853, + "y": 70, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": ".", + "x": 867, + "y": 70, + "w": 7, + "h": 7, + "source": "font" + }, + { + "char": ".", + "x": 876, + "y": 70, + "w": 7, + "h": 7, + "source": "font" + }, + { + "char": "I", + "x": 885, + "y": 70, + "w": 7, + "h": 20, + "source": "font" + }, + { + "char": "I", + "x": 894, + "y": 70, + "w": 7, + "h": 21, + "source": "font" + }, + { + "char": "G", + "x": 903, + "y": 70, + "w": 13, + "h": 20, + "source": "font" + }, + { + "char": "G", + "x": 918, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "ó", + "x": 933, + "y": 70, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "ó", + "x": 947, + "y": 70, + "w": 12, + "h": 22, + "source": "font" + }, + { + "char": "ñ", + "x": 961, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "ñ", + "x": 976, + "y": 70, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "q", + "x": 991, + "y": 70, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "q", + "x": 1005, + "y": 70, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "V", + "x": 1019, + "y": 70, + "w": 14, + "h": 20, + "source": "font" + }, + { + "char": "V", + "x": 1035, + "y": 70, + "w": 14, + "h": 21, + "source": "font" + }, + { + "char": "í", + "x": 1051, + "y": 70, + "w": 8, + "h": 21, + "source": "font" + }, + { + "char": "í", + "x": 1061, + "y": 70, + "w": 8, + "h": 22, + "source": "font" + }, + { + "char": "j", + "x": 1071, + "y": 70, + "w": 8, + "h": 25, + "source": "font" + }, + { + "char": "j", + "x": 1081, + "y": 70, + "w": 8, + "h": 26, + "source": "font" + }, + { + "char": "á", + "x": 1091, + "y": 70, + "w": 12, + "h": 22, + "source": "font" + }, + { + "char": "á", + "x": 1105, + "y": 70, + "w": 12, + "h": 23, + "source": "font" + }, + { + "char": "N", + "x": 1119, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "N", + "x": 1134, + "y": 70, + "w": 14, + "h": 21, + "source": "font" + }, + { + "char": "è", + "x": 1150, + "y": 70, + "w": 12, + "h": 22, + "source": "font" + }, + { + "char": "è", + "x": 1164, + "y": 70, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "é", + "x": 1179, + "y": 70, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "é", + "x": 1193, + "y": 70, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "$", + "x": 1208, + "y": 70, + "w": 15, + "h": 25, + "source": "font" + }, + { + "char": "$", + "x": 1225, + "y": 70, + "w": 15, + "h": 26, + "source": "font" + }, + { + "char": "x", + "x": 1242, + "y": 70, + "w": 11, + "h": 16, + "source": "font" + }, + { + "char": "x", + "x": 1255, + "y": 70, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "z", + "x": 1269, + "y": 70, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "z", + "x": 1283, + "y": 70, + "w": 13, + "h": 16, + "source": "font" + }, + { + "char": "ò", + "x": 1298, + "y": 70, + "w": 12, + "h": 22, + "source": "font" + }, + { + "char": "ò", + "x": 1312, + "y": 70, + "w": 12, + "h": 22, + "source": "font" + }, + { + "char": "ë", + "x": 1326, + "y": 70, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "ë", + "x": 1340, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "ï", + "x": 1355, + "y": 70, + "w": 10, + "h": 20, + "source": "font" + }, + { + "char": "ï", + "x": 1367, + "y": 70, + "w": 11, + "h": 21, + "source": "font" + }, + { + "char": "Z", + "x": 1380, + "y": 70, + "w": 13, + "h": 20, + "source": "font" + }, + { + "char": "Z", + "x": 1395, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "«", + "x": 1410, + "y": 70, + "w": 15, + "h": 13, + "source": "font" + }, + { + "char": "«", + "x": 1427, + "y": 70, + "w": 15, + "h": 14, + "source": "font" + }, + { + "char": "»", + "x": 1444, + "y": 70, + "w": 15, + "h": 13, + "source": "font" + }, + { + "char": "»", + "x": 1461, + "y": 70, + "w": 16, + "h": 14, + "source": "font" + }, + { + "char": "9", + "x": 1479, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "9", + "x": 1494, + "y": 70, + "w": 13, + "h": 21, + "source": "font" + } + ] +} \ No newline at end of file diff --git a/public/cv/v1/glyphs/scoreboard-header-line.png b/public/cv/v1/glyphs/scoreboard-header-line.png new file mode 100644 index 000000000..c88cc0d22 Binary files /dev/null and b/public/cv/v1/glyphs/scoreboard-header-line.png differ diff --git a/public/cv/v1/glyphs/scoreboard-header-lobby.json b/public/cv/v1/glyphs/scoreboard-header-lobby.json new file mode 100644 index 000000000..a9b39d62c --- /dev/null +++ b/public/cv/v1/glyphs/scoreboard-header-lobby.json @@ -0,0 +1,597 @@ +{ + "height": 19, + "glyphs": [ + { + "char": "a", + "x": 2, + "y": 2, + "w": 12, + "h": 17, + "source": "fixture" + }, + { + "char": "B", + "x": 16, + "y": 2, + "w": 12, + "h": 20, + "source": "fixture" + }, + { + "char": "e", + "x": 30, + "y": 2, + "w": 12, + "h": 16, + "source": "fixture" + }, + { + "char": "l", + "x": 44, + "y": 2, + "w": 6, + "h": 20, + "source": "fixture" + }, + { + "char": "t", + "x": 52, + "y": 2, + "w": 10, + "h": 18, + "source": "fixture" + }, + { + "char": "X", + "x": 64, + "y": 2, + "w": 11, + "h": 20, + "source": "fixture" + }, + { + "char": "X", + "x": 77, + "y": 2, + "w": 11, + "h": 21, + "source": "font" + }, + { + "char": "X", + "x": 90, + "y": 2, + "w": 12, + "h": 22, + "source": "font" + }, + { + "char": "-", + "x": 104, + "y": 2, + "w": 12, + "h": 7, + "source": "font" + }, + { + "char": "-", + "x": 118, + "y": 2, + "w": 12, + "h": 8, + "source": "font" + }, + { + "char": "K", + "x": 132, + "y": 2, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "K", + "x": 146, + "y": 2, + "w": 12, + "h": 22, + "source": "font" + }, + { + "char": "a", + "x": 160, + "y": 2, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "a", + "x": 174, + "y": 2, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "m", + "x": 189, + "y": 2, + "w": 16, + "h": 16, + "source": "font" + }, + { + "char": "m", + "x": 207, + "y": 2, + "w": 17, + "h": 17, + "source": "font" + }, + { + "char": "p", + "x": 226, + "y": 2, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "p", + "x": 240, + "y": 2, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "f", + "x": 255, + "y": 2, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "f", + "x": 269, + "y": 2, + "w": 11, + "h": 22, + "source": "font" + }, + { + "char": "A", + "x": 282, + "y": 2, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "A", + "x": 297, + "y": 2, + "w": 14, + "h": 22, + "source": "font" + }, + { + "char": "n", + "x": 313, + "y": 2, + "w": 11, + "h": 16, + "source": "font" + }, + { + "char": "n", + "x": 326, + "y": 2, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "r", + "x": 340, + "y": 2, + "w": 10, + "h": 16, + "source": "font" + }, + { + "char": "r", + "x": 352, + "y": 2, + "w": 10, + "h": 17, + "source": "font" + }, + { + "char": "c", + "x": 364, + "y": 2, + "w": 13, + "h": 16, + "source": "font" + }, + { + "char": "c", + "x": 379, + "y": 2, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "h", + "x": 393, + "y": 2, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "h", + "x": 407, + "y": 2, + "w": 12, + "h": 22, + "source": "font" + }, + { + "char": "i", + "x": 421, + "y": 2, + "w": 6, + "h": 21, + "source": "font" + }, + { + "char": "i", + "x": 429, + "y": 2, + "w": 6, + "h": 22, + "source": "font" + }, + { + "char": "e", + "x": 437, + "y": 2, + "w": 13, + "h": 16, + "source": "font" + }, + { + "char": "e", + "x": 452, + "y": 2, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "(", + "x": 467, + "y": 2, + "w": 10, + "h": 25, + "source": "font" + }, + { + "char": "(", + "x": 479, + "y": 2, + "w": 11, + "h": 26, + "source": "font" + }, + { + "char": "S", + "x": 492, + "y": 2, + "w": 14, + "h": 21, + "source": "font" + }, + { + "char": "S", + "x": 508, + "y": 2, + "w": 14, + "h": 22, + "source": "font" + }, + { + "char": ")", + "x": 524, + "y": 2, + "w": 11, + "h": 25, + "source": "font" + }, + { + "char": ")", + "x": 537, + "y": 2, + "w": 11, + "h": 25, + "source": "font" + }, + { + "char": "O", + "x": 550, + "y": 2, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "O", + "x": 565, + "y": 2, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "P", + "x": 580, + "y": 2, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "P", + "x": 595, + "y": 2, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "v", + "x": 610, + "y": 2, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "v", + "x": 624, + "y": 2, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "t", + "x": 639, + "y": 2, + "w": 10, + "h": 19, + "source": "font" + }, + { + "char": "t", + "x": 651, + "y": 2, + "w": 11, + "h": 20, + "source": "font" + }, + { + "char": "B", + "x": 664, + "y": 2, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "B", + "x": 678, + "y": 2, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "l", + "x": 693, + "y": 2, + "w": 6, + "h": 21, + "source": "font" + }, + { + "char": "l", + "x": 701, + "y": 2, + "w": 6, + "h": 22, + "source": "font" + }, + { + "char": "y", + "x": 709, + "y": 2, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "y", + "x": 724, + "y": 2, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "s", + "x": 739, + "y": 2, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "s", + "x": 753, + "y": 2, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "C", + "x": 767, + "y": 2, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "C", + "x": 782, + "y": 2, + "w": 14, + "h": 22, + "source": "font" + }, + { + "char": "o", + "x": 798, + "y": 2, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "o", + "x": 812, + "y": 2, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "b", + "x": 827, + "y": 2, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "b", + "x": 842, + "y": 2, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "ó", + "x": 857, + "y": 2, + "w": 12, + "h": 22, + "source": "font" + }, + { + "char": "ó", + "x": 871, + "y": 2, + "w": 13, + "h": 23, + "source": "font" + }, + { + "char": "d", + "x": 886, + "y": 2, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "d", + "x": 901, + "y": 2, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "M", + "x": 916, + "y": 2, + "w": 15, + "h": 21, + "source": "font" + }, + { + "char": "M", + "x": 933, + "y": 2, + "w": 16, + "h": 22, + "source": "font" + }, + { + "char": "é", + "x": 951, + "y": 2, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "é", + "x": 966, + "y": 2, + "w": 13, + "h": 23, + "source": "font" + }, + { + "char": "u", + "x": 981, + "y": 2, + "w": 13, + "h": 16, + "source": "font" + }, + { + "char": "u", + "x": 996, + "y": 2, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "g", + "x": 1011, + "y": 2, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "g", + "x": 1026, + "y": 2, + "w": 12, + "h": 22, + "source": "font" + } + ] +} \ No newline at end of file diff --git a/public/cv/v1/glyphs/scoreboard-header-lobby.png b/public/cv/v1/glyphs/scoreboard-header-lobby.png new file mode 100644 index 000000000..65ffcede7 Binary files /dev/null and b/public/cv/v1/glyphs/scoreboard-header-lobby.png differ diff --git a/public/cv/v1/glyphs/scoreboard-names.json b/public/cv/v1/glyphs/scoreboard-names.json new file mode 100644 index 000000000..8553cd7c2 --- /dev/null +++ b/public/cv/v1/glyphs/scoreboard-names.json @@ -0,0 +1,8685 @@ +{ + "height": 17, + "glyphs": [ + { + "char": "_", + "x": 2, + "y": 2, + "w": 10, + "h": 5, + "source": "fixture" + }, + { + "char": "・", + "x": 14, + "y": 2, + "w": 7, + "h": 6, + "source": "fixture" + }, + { + "char": ".", + "x": 23, + "y": 2, + "w": 6, + "h": 6, + "source": "fixture" + }, + { + "char": ".", + "x": 31, + "y": 2, + "w": 6, + "h": 6, + "source": "fixture" + }, + { + "char": ".", + "x": 39, + "y": 2, + "w": 6, + "h": 6, + "source": "fixture" + }, + { + "char": ".", + "x": 47, + "y": 2, + "w": 6, + "h": 6, + "source": "fixture" + }, + { + "char": ".", + "x": 55, + "y": 2, + "w": 6, + "h": 6, + "source": "fixture" + }, + { + "char": ".", + "x": 63, + "y": 2, + "w": 6, + "h": 6, + "source": "fixture" + }, + { + "char": "×", + "x": 71, + "y": 2, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "0", + "x": 84, + "y": 2, + "w": 13, + "h": 18, + "source": "fixture" + }, + { + "char": "1", + "x": 99, + "y": 2, + "w": 7, + "h": 18, + "source": "fixture" + }, + { + "char": "4", + "x": 108, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "a", + "x": 122, + "y": 2, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "a", + "x": 136, + "y": 2, + "w": 12, + "h": 15, + "source": "fixture" + }, + { + "char": "a", + "x": 150, + "y": 2, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "a", + "x": 164, + "y": 2, + "w": 12, + "h": 15, + "source": "fixture" + }, + { + "char": "a", + "x": 178, + "y": 2, + "w": 12, + "h": 15, + "source": "fixture" + }, + { + "char": "a", + "x": 192, + "y": 2, + "w": 12, + "h": 15, + "source": "fixture" + }, + { + "char": "a", + "x": 206, + "y": 2, + "w": 11, + "h": 15, + "source": "fixture" + }, + { + "char": "a", + "x": 219, + "y": 2, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "a", + "x": 232, + "y": 2, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "b", + "x": 245, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "B", + "x": 258, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "B", + "x": 271, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "c", + "x": 284, + "y": 2, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "c", + "x": 297, + "y": 2, + "w": 12, + "h": 15, + "source": "fixture" + }, + { + "char": "c", + "x": 311, + "y": 2, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "c", + "x": 325, + "y": 2, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "c", + "x": 339, + "y": 2, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "c", + "x": 352, + "y": 2, + "w": 11, + "h": 13, + "source": "fixture" + }, + { + "char": "c", + "x": 365, + "y": 2, + "w": 11, + "h": 13, + "source": "fixture" + }, + { + "char": "c", + "x": 378, + "y": 2, + "w": 11, + "h": 13, + "source": "fixture" + }, + { + "char": "C", + "x": 391, + "y": 2, + "w": 12, + "h": 17, + "source": "fixture" + }, + { + "char": "C", + "x": 405, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "C", + "x": 419, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "C", + "x": 433, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "C", + "x": 447, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "d", + "x": 461, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "d", + "x": 475, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "d", + "x": 488, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "d", + "x": 501, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "d", + "x": 514, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "d", + "x": 527, + "y": 2, + "w": 11, + "h": 19, + "source": "fixture" + }, + { + "char": "d", + "x": 540, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "d", + "x": 554, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "d", + "x": 567, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "d", + "x": 581, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "D", + "x": 594, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "e", + "x": 608, + "y": 2, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 621, + "y": 2, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 635, + "y": 2, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 648, + "y": 2, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 662, + "y": 2, + "w": 10, + "h": 15, + "source": "fixture" + }, + { + "char": "e", + "x": 674, + "y": 2, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 687, + "y": 2, + "w": 10, + "h": 15, + "source": "fixture" + }, + { + "char": "e", + "x": 699, + "y": 2, + "w": 11, + "h": 15, + "source": "fixture" + }, + { + "char": "e", + "x": 712, + "y": 2, + "w": 10, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 724, + "y": 2, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 737, + "y": 2, + "w": 12, + "h": 15, + "source": "fixture" + }, + { + "char": "e", + "x": 751, + "y": 2, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 765, + "y": 2, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 778, + "y": 2, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 792, + "y": 2, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 806, + "y": 2, + "w": 11, + "h": 13, + "source": "fixture" + }, + { + "char": "e", + "x": 819, + "y": 2, + "w": 12, + "h": 13, + "source": "fixture" + }, + { + "char": "e", + "x": 833, + "y": 2, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 846, + "y": 2, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 859, + "y": 2, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 872, + "y": 2, + "w": 10, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 884, + "y": 2, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 898, + "y": 2, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 911, + "y": 2, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 925, + "y": 2, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 938, + "y": 2, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 951, + "y": 2, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 965, + "y": 2, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 979, + "y": 2, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 993, + "y": 2, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 1007, + "y": 2, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 1021, + "y": 2, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 1035, + "y": 2, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "e", + "x": 1048, + "y": 2, + "w": 12, + "h": 13, + "source": "fixture" + }, + { + "char": "e", + "x": 1062, + "y": 2, + "w": 11, + "h": 13, + "source": "fixture" + }, + { + "char": "E", + "x": 1075, + "y": 2, + "w": 11, + "h": 17, + "source": "fixture" + }, + { + "char": "f", + "x": 1088, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "f", + "x": 1101, + "y": 2, + "w": 10, + "h": 18, + "source": "fixture" + }, + { + "char": "f", + "x": 1113, + "y": 2, + "w": 10, + "h": 18, + "source": "fixture" + }, + { + "char": "F", + "x": 1125, + "y": 2, + "w": 11, + "h": 17, + "source": "fixture" + }, + { + "char": "F", + "x": 1138, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "F", + "x": 1151, + "y": 2, + "w": 10, + "h": 17, + "source": "fixture" + }, + { + "char": "g", + "x": 1163, + "y": 2, + "w": 11, + "h": 19, + "source": "fixture" + }, + { + "char": "g", + "x": 1176, + "y": 2, + "w": 11, + "h": 19, + "source": "fixture" + }, + { + "char": "g", + "x": 1189, + "y": 2, + "w": 11, + "h": 19, + "source": "fixture" + }, + { + "char": "G", + "x": 1202, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "h", + "x": 1216, + "y": 2, + "w": 11, + "h": 19, + "source": "fixture" + }, + { + "char": "h", + "x": 1229, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "h", + "x": 1242, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "h", + "x": 1256, + "y": 2, + "w": 12, + "h": 17, + "source": "fixture" + }, + { + "char": "h", + "x": 1270, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "h", + "x": 1283, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "h", + "x": 1297, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "h", + "x": 1311, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "h", + "x": 1325, + "y": 2, + "w": 11, + "h": 17, + "source": "fixture" + }, + { + "char": "h", + "x": 1338, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "h", + "x": 1351, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "H", + "x": 1365, + "y": 2, + "w": 13, + "h": 18, + "source": "fixture" + }, + { + "char": "H", + "x": 1380, + "y": 2, + "w": 12, + "h": 19, + "source": "fixture" + }, + { + "char": "H", + "x": 1394, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "i", + "x": 1408, + "y": 2, + "w": 6, + "h": 18, + "source": "fixture" + }, + { + "char": "i", + "x": 1416, + "y": 2, + "w": 6, + "h": 18, + "source": "fixture" + }, + { + "char": "i", + "x": 1424, + "y": 2, + "w": 6, + "h": 19, + "source": "fixture" + }, + { + "char": "i", + "x": 1432, + "y": 2, + "w": 5, + "h": 19, + "source": "fixture" + }, + { + "char": "i", + "x": 1439, + "y": 2, + "w": 6, + "h": 18, + "source": "fixture" + }, + { + "char": "i", + "x": 1447, + "y": 2, + "w": 6, + "h": 18, + "source": "fixture" + }, + { + "char": "i", + "x": 1455, + "y": 2, + "w": 6, + "h": 18, + "source": "fixture" + }, + { + "char": "i", + "x": 1463, + "y": 2, + "w": 6, + "h": 18, + "source": "fixture" + }, + { + "char": "i", + "x": 1471, + "y": 2, + "w": 5, + "h": 18, + "source": "fixture" + }, + { + "char": "i", + "x": 1478, + "y": 2, + "w": 5, + "h": 18, + "source": "fixture" + }, + { + "char": "i", + "x": 1485, + "y": 2, + "w": 6, + "h": 18, + "source": "fixture" + }, + { + "char": "i", + "x": 1493, + "y": 2, + "w": 5, + "h": 18, + "source": "fixture" + }, + { + "char": "I", + "x": 1500, + "y": 2, + "w": 5, + "h": 18, + "source": "fixture" + }, + { + "char": "J", + "x": 1507, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "k", + "x": 1521, + "y": 2, + "w": 11, + "h": 17, + "source": "fixture" + }, + { + "char": "l", + "x": 1534, + "y": 2, + "w": 6, + "h": 18, + "source": "fixture" + }, + { + "char": "l", + "x": 1542, + "y": 2, + "w": 5, + "h": 18, + "source": "fixture" + }, + { + "char": "l", + "x": 1549, + "y": 2, + "w": 6, + "h": 18, + "source": "fixture" + }, + { + "char": "l", + "x": 1557, + "y": 2, + "w": 5, + "h": 18, + "source": "fixture" + }, + { + "char": "l", + "x": 1564, + "y": 2, + "w": 6, + "h": 18, + "source": "fixture" + }, + { + "char": "l", + "x": 1572, + "y": 2, + "w": 5, + "h": 18, + "source": "fixture" + }, + { + "char": "l", + "x": 1579, + "y": 2, + "w": 6, + "h": 18, + "source": "fixture" + }, + { + "char": "l", + "x": 1587, + "y": 2, + "w": 6, + "h": 18, + "source": "fixture" + }, + { + "char": "l", + "x": 2, + "y": 23, + "w": 5, + "h": 18, + "source": "fixture" + }, + { + "char": "l", + "x": 9, + "y": 23, + "w": 5, + "h": 17, + "source": "fixture" + }, + { + "char": "l", + "x": 16, + "y": 23, + "w": 5, + "h": 17, + "source": "fixture" + }, + { + "char": "L", + "x": 23, + "y": 23, + "w": 9, + "h": 18, + "source": "fixture" + }, + { + "char": "m", + "x": 34, + "y": 23, + "w": 15, + "h": 15, + "source": "fixture" + }, + { + "char": "m", + "x": 51, + "y": 23, + "w": 15, + "h": 14, + "source": "fixture" + }, + { + "char": "m", + "x": 68, + "y": 23, + "w": 15, + "h": 14, + "source": "fixture" + }, + { + "char": "m", + "x": 85, + "y": 23, + "w": 16, + "h": 14, + "source": "fixture" + }, + { + "char": "m", + "x": 103, + "y": 23, + "w": 15, + "h": 14, + "source": "fixture" + }, + { + "char": "M", + "x": 120, + "y": 23, + "w": 14, + "h": 17, + "source": "fixture" + }, + { + "char": "n", + "x": 136, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "n", + "x": 149, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "n", + "x": 162, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "n", + "x": 175, + "y": 23, + "w": 10, + "h": 14, + "source": "fixture" + }, + { + "char": "n", + "x": 187, + "y": 23, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "n", + "x": 201, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "n", + "x": 214, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "n", + "x": 227, + "y": 23, + "w": 10, + "h": 14, + "source": "fixture" + }, + { + "char": "n", + "x": 239, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "n", + "x": 252, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "n", + "x": 265, + "y": 23, + "w": 11, + "h": 13, + "source": "fixture" + }, + { + "char": "N", + "x": 278, + "y": 23, + "w": 12, + "h": 17, + "source": "fixture" + }, + { + "char": "N", + "x": 292, + "y": 23, + "w": 12, + "h": 17, + "source": "fixture" + }, + { + "char": "N", + "x": 306, + "y": 23, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "N", + "x": 320, + "y": 23, + "w": 13, + "h": 18, + "source": "fixture" + }, + { + "char": "o", + "x": 335, + "y": 23, + "w": 11, + "h": 15, + "source": "fixture" + }, + { + "char": "o", + "x": 348, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "o", + "x": 361, + "y": 23, + "w": 10, + "h": 15, + "source": "fixture" + }, + { + "char": "o", + "x": 373, + "y": 23, + "w": 10, + "h": 15, + "source": "fixture" + }, + { + "char": "o", + "x": 385, + "y": 23, + "w": 10, + "h": 14, + "source": "fixture" + }, + { + "char": "o", + "x": 397, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "o", + "x": 410, + "y": 23, + "w": 10, + "h": 14, + "source": "fixture" + }, + { + "char": "o", + "x": 422, + "y": 23, + "w": 10, + "h": 14, + "source": "fixture" + }, + { + "char": "o", + "x": 434, + "y": 23, + "w": 12, + "h": 13, + "source": "fixture" + }, + { + "char": "o", + "x": 448, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "o", + "x": 461, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "o", + "x": 474, + "y": 23, + "w": 11, + "h": 13, + "source": "fixture" + }, + { + "char": "o", + "x": 487, + "y": 23, + "w": 11, + "h": 13, + "source": "fixture" + }, + { + "char": "o", + "x": 500, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "O", + "x": 513, + "y": 23, + "w": 12, + "h": 17, + "source": "fixture" + }, + { + "char": "O", + "x": 527, + "y": 23, + "w": 12, + "h": 17, + "source": "fixture" + }, + { + "char": "O", + "x": 541, + "y": 23, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "p", + "x": 554, + "y": 23, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "p", + "x": 567, + "y": 23, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "P", + "x": 581, + "y": 23, + "w": 12, + "h": 17, + "source": "fixture" + }, + { + "char": "P", + "x": 595, + "y": 23, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "P", + "x": 609, + "y": 23, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "r", + "x": 623, + "y": 23, + "w": 8, + "h": 14, + "source": "fixture" + }, + { + "char": "r", + "x": 633, + "y": 23, + "w": 8, + "h": 14, + "source": "fixture" + }, + { + "char": "r", + "x": 643, + "y": 23, + "w": 9, + "h": 15, + "source": "fixture" + }, + { + "char": "r", + "x": 654, + "y": 23, + "w": 10, + "h": 14, + "source": "fixture" + }, + { + "char": "r", + "x": 666, + "y": 23, + "w": 9, + "h": 14, + "source": "fixture" + }, + { + "char": "r", + "x": 677, + "y": 23, + "w": 9, + "h": 14, + "source": "fixture" + }, + { + "char": "r", + "x": 688, + "y": 23, + "w": 9, + "h": 14, + "source": "fixture" + }, + { + "char": "r", + "x": 699, + "y": 23, + "w": 9, + "h": 14, + "source": "fixture" + }, + { + "char": "r", + "x": 710, + "y": 23, + "w": 9, + "h": 14, + "source": "fixture" + }, + { + "char": "r", + "x": 721, + "y": 23, + "w": 9, + "h": 14, + "source": "fixture" + }, + { + "char": "r", + "x": 732, + "y": 23, + "w": 9, + "h": 14, + "source": "fixture" + }, + { + "char": "r", + "x": 743, + "y": 23, + "w": 9, + "h": 14, + "source": "fixture" + }, + { + "char": "r", + "x": 754, + "y": 23, + "w": 10, + "h": 13, + "source": "fixture" + }, + { + "char": "r", + "x": 766, + "y": 23, + "w": 9, + "h": 14, + "source": "fixture" + }, + { + "char": "R", + "x": 777, + "y": 23, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "R", + "x": 790, + "y": 23, + "w": 11, + "h": 17, + "source": "fixture" + }, + { + "char": "R", + "x": 803, + "y": 23, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "s", + "x": 816, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "s", + "x": 829, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "s", + "x": 842, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "s", + "x": 855, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "s", + "x": 868, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "s", + "x": 881, + "y": 23, + "w": 10, + "h": 14, + "source": "fixture" + }, + { + "char": "s", + "x": 893, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "s", + "x": 906, + "y": 23, + "w": 11, + "h": 13, + "source": "fixture" + }, + { + "char": "s", + "x": 919, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "s", + "x": 932, + "y": 23, + "w": 10, + "h": 13, + "source": "fixture" + }, + { + "char": "s", + "x": 944, + "y": 23, + "w": 10, + "h": 13, + "source": "fixture" + }, + { + "char": "S", + "x": 956, + "y": 23, + "w": 13, + "h": 18, + "source": "fixture" + }, + { + "char": "S", + "x": 971, + "y": 23, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "S", + "x": 985, + "y": 23, + "w": 13, + "h": 18, + "source": "fixture" + }, + { + "char": "S", + "x": 1000, + "y": 23, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "S", + "x": 1013, + "y": 23, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "t", + "x": 1027, + "y": 23, + "w": 10, + "h": 16, + "source": "fixture" + }, + { + "char": "t", + "x": 1039, + "y": 23, + "w": 10, + "h": 16, + "source": "fixture" + }, + { + "char": "t", + "x": 1051, + "y": 23, + "w": 10, + "h": 16, + "source": "fixture" + }, + { + "char": "t", + "x": 1063, + "y": 23, + "w": 9, + "h": 16, + "source": "fixture" + }, + { + "char": "T", + "x": 1074, + "y": 23, + "w": 14, + "h": 18, + "source": "fixture" + }, + { + "char": "T", + "x": 1090, + "y": 23, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "T", + "x": 1104, + "y": 23, + "w": 11, + "h": 17, + "source": "fixture" + }, + { + "char": "u", + "x": 1117, + "y": 23, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "u", + "x": 1131, + "y": 23, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "u", + "x": 1145, + "y": 23, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "u", + "x": 1159, + "y": 23, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "u", + "x": 1173, + "y": 23, + "w": 12, + "h": 14, + "source": "fixture" + }, + { + "char": "v", + "x": 1187, + "y": 23, + "w": 10, + "h": 14, + "source": "fixture" + }, + { + "char": "v", + "x": 1199, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "v", + "x": 1212, + "y": 23, + "w": 10, + "h": 14, + "source": "fixture" + }, + { + "char": "v", + "x": 1224, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "v", + "x": 1237, + "y": 23, + "w": 10, + "h": 14, + "source": "fixture" + }, + { + "char": "w", + "x": 1249, + "y": 23, + "w": 12, + "h": 15, + "source": "fixture" + }, + { + "char": "w", + "x": 1263, + "y": 23, + "w": 13, + "h": 14, + "source": "fixture" + }, + { + "char": "y", + "x": 1278, + "y": 23, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "y", + "x": 1291, + "y": 23, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "y", + "x": 1305, + "y": 23, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "y", + "x": 1319, + "y": 23, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "z", + "x": 1333, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "z", + "x": 1346, + "y": 23, + "w": 11, + "h": 14, + "source": "fixture" + }, + { + "char": "α", + "x": 1359, + "y": 23, + "w": 15, + "h": 14, + "source": "fixture" + }, + { + "char": "ι", + "x": 1376, + "y": 23, + "w": 8, + "h": 14, + "source": "fixture" + }, + { + "char": "ι", + "x": 1386, + "y": 23, + "w": 8, + "h": 14, + "source": "fixture" + }, + { + "char": "!", + "x": 1396, + "y": 23, + "w": 7, + "h": 18, + "source": "font" + }, + { + "char": "!", + "x": 1405, + "y": 23, + "w": 6, + "h": 19, + "source": "font" + }, + { + "char": "\"", + "x": 1413, + "y": 23, + "w": 10, + "h": 8, + "source": "font" + }, + { + "char": "\"", + "x": 1425, + "y": 23, + "w": 11, + "h": 9, + "source": "font" + }, + { + "char": "#", + "x": 1438, + "y": 23, + "w": 14, + "h": 19, + "source": "font" + }, + { + "char": "#", + "x": 1454, + "y": 23, + "w": 15, + "h": 21, + "source": "font" + }, + { + "char": "$", + "x": 1471, + "y": 23, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "$", + "x": 1486, + "y": 23, + "w": 14, + "h": 23, + "source": "font" + }, + { + "char": "%", + "x": 1502, + "y": 23, + "w": 16, + "h": 20, + "source": "font" + }, + { + "char": "%", + "x": 1520, + "y": 23, + "w": 16, + "h": 21, + "source": "font" + }, + { + "char": "&", + "x": 1538, + "y": 23, + "w": 15, + "h": 19, + "source": "font" + }, + { + "char": "&", + "x": 1555, + "y": 23, + "w": 16, + "h": 21, + "source": "font" + }, + { + "char": "'", + "x": 1573, + "y": 23, + "w": 7, + "h": 9, + "source": "font" + }, + { + "char": "'", + "x": 1582, + "y": 23, + "w": 7, + "h": 9, + "source": "font" + }, + { + "char": "(", + "x": 2, + "y": 48, + "w": 9, + "h": 21, + "source": "font" + }, + { + "char": "(", + "x": 13, + "y": 48, + "w": 9, + "h": 22, + "source": "font" + }, + { + "char": ")", + "x": 24, + "y": 48, + "w": 9, + "h": 21, + "source": "font" + }, + { + "char": ")", + "x": 35, + "y": 48, + "w": 9, + "h": 22, + "source": "font" + }, + { + "char": "*", + "x": 46, + "y": 48, + "w": 8, + "h": 8, + "source": "font" + }, + { + "char": "*", + "x": 56, + "y": 48, + "w": 8, + "h": 8, + "source": "font" + }, + { + "char": "+", + "x": 66, + "y": 48, + "w": 12, + "h": 12, + "source": "font" + }, + { + "char": "+", + "x": 80, + "y": 48, + "w": 13, + "h": 13, + "source": "font" + }, + { + "char": ",", + "x": 95, + "y": 48, + "w": 7, + "h": 9, + "source": "font" + }, + { + "char": ",", + "x": 104, + "y": 48, + "w": 7, + "h": 9, + "source": "font" + }, + { + "char": "-", + "x": 113, + "y": 48, + "w": 10, + "h": 6, + "source": "font" + }, + { + "char": "-", + "x": 125, + "y": 48, + "w": 10, + "h": 6, + "source": "font" + }, + { + "char": ".", + "x": 137, + "y": 48, + "w": 6, + "h": 6, + "source": "font" + }, + { + "char": ".", + "x": 145, + "y": 48, + "w": 6, + "h": 6, + "source": "font" + }, + { + "char": "/", + "x": 153, + "y": 48, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "/", + "x": 166, + "y": 48, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "0", + "x": 180, + "y": 48, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "0", + "x": 194, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "1", + "x": 208, + "y": 48, + "w": 7, + "h": 18, + "source": "font" + }, + { + "char": "1", + "x": 217, + "y": 48, + "w": 7, + "h": 19, + "source": "font" + }, + { + "char": "2", + "x": 226, + "y": 48, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "2", + "x": 239, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "3", + "x": 253, + "y": 48, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "3", + "x": 267, + "y": 48, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "4", + "x": 282, + "y": 48, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "4", + "x": 295, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "5", + "x": 309, + "y": 48, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "5", + "x": 322, + "y": 48, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "6", + "x": 335, + "y": 48, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "6", + "x": 348, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "7", + "x": 362, + "y": 48, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "7", + "x": 375, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "8", + "x": 389, + "y": 48, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "8", + "x": 402, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "9", + "x": 416, + "y": 48, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "9", + "x": 429, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": ":", + "x": 443, + "y": 48, + "w": 7, + "h": 14, + "source": "font" + }, + { + "char": ":", + "x": 452, + "y": 48, + "w": 7, + "h": 15, + "source": "font" + }, + { + "char": ";", + "x": 461, + "y": 48, + "w": 7, + "h": 17, + "source": "font" + }, + { + "char": ";", + "x": 470, + "y": 48, + "w": 7, + "h": 17, + "source": "font" + }, + { + "char": "<", + "x": 479, + "y": 48, + "w": 10, + "h": 14, + "source": "font" + }, + { + "char": "<", + "x": 491, + "y": 48, + "w": 10, + "h": 14, + "source": "font" + }, + { + "char": "=", + "x": 503, + "y": 48, + "w": 11, + "h": 11, + "source": "font" + }, + { + "char": "=", + "x": 516, + "y": 48, + "w": 12, + "h": 12, + "source": "font" + }, + { + "char": ">", + "x": 530, + "y": 48, + "w": 10, + "h": 14, + "source": "font" + }, + { + "char": ">", + "x": 542, + "y": 48, + "w": 10, + "h": 14, + "source": "font" + }, + { + "char": "?", + "x": 554, + "y": 48, + "w": 15, + "h": 19, + "source": "font" + }, + { + "char": "?", + "x": 571, + "y": 48, + "w": 15, + "h": 19, + "source": "font" + }, + { + "char": "@", + "x": 588, + "y": 48, + "w": 18, + "h": 20, + "source": "font" + }, + { + "char": "@", + "x": 608, + "y": 48, + "w": 18, + "h": 20, + "source": "font" + }, + { + "char": "A", + "x": 628, + "y": 48, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "A", + "x": 642, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "B", + "x": 656, + "y": 48, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "B", + "x": 669, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "C", + "x": 683, + "y": 48, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "C", + "x": 696, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "D", + "x": 710, + "y": 48, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "D", + "x": 724, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "E", + "x": 738, + "y": 48, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "E", + "x": 751, + "y": 48, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "F", + "x": 764, + "y": 48, + "w": 10, + "h": 18, + "source": "font" + }, + { + "char": "F", + "x": 776, + "y": 48, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "G", + "x": 789, + "y": 48, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "G", + "x": 803, + "y": 48, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "H", + "x": 816, + "y": 48, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "H", + "x": 830, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "I", + "x": 844, + "y": 48, + "w": 6, + "h": 18, + "source": "font" + }, + { + "char": "I", + "x": 852, + "y": 48, + "w": 6, + "h": 19, + "source": "font" + }, + { + "char": "J", + "x": 860, + "y": 48, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "J", + "x": 873, + "y": 48, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "K", + "x": 886, + "y": 48, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "K", + "x": 899, + "y": 48, + "w": 10, + "h": 19, + "source": "font" + }, + { + "char": "L", + "x": 911, + "y": 48, + "w": 9, + "h": 18, + "source": "font" + }, + { + "char": "L", + "x": 922, + "y": 48, + "w": 9, + "h": 19, + "source": "font" + }, + { + "char": "M", + "x": 933, + "y": 48, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "M", + "x": 949, + "y": 48, + "w": 14, + "h": 19, + "source": "font" + }, + { + "char": "N", + "x": 965, + "y": 48, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "N", + "x": 979, + "y": 48, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "O", + "x": 994, + "y": 48, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "O", + "x": 1008, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "P", + "x": 1022, + "y": 48, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "P", + "x": 1036, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "Q", + "x": 1050, + "y": 48, + "w": 12, + "h": 22, + "source": "font" + }, + { + "char": "Q", + "x": 1064, + "y": 48, + "w": 12, + "h": 23, + "source": "font" + }, + { + "char": "R", + "x": 1078, + "y": 48, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "R", + "x": 1091, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "S", + "x": 1105, + "y": 48, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "S", + "x": 1119, + "y": 48, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "T", + "x": 1134, + "y": 48, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "T", + "x": 1148, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "U", + "x": 1162, + "y": 48, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "U", + "x": 1176, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "V", + "x": 1190, + "y": 48, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "V", + "x": 1204, + "y": 48, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "W", + "x": 1219, + "y": 48, + "w": 15, + "h": 18, + "source": "font" + }, + { + "char": "W", + "x": 1236, + "y": 48, + "w": 16, + "h": 19, + "source": "font" + }, + { + "char": "X", + "x": 1254, + "y": 48, + "w": 10, + "h": 18, + "source": "font" + }, + { + "char": "X", + "x": 1266, + "y": 48, + "w": 10, + "h": 19, + "source": "font" + }, + { + "char": "Y", + "x": 1278, + "y": 48, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "Y", + "x": 1291, + "y": 48, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "Z", + "x": 1304, + "y": 48, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "Z", + "x": 1317, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "[", + "x": 1331, + "y": 48, + "w": 9, + "h": 21, + "source": "font" + }, + { + "char": "[", + "x": 1342, + "y": 48, + "w": 10, + "h": 22, + "source": "font" + }, + { + "char": "\\", + "x": 1354, + "y": 48, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "\\", + "x": 1368, + "y": 48, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "]", + "x": 1383, + "y": 48, + "w": 9, + "h": 21, + "source": "font" + }, + { + "char": "]", + "x": 1394, + "y": 48, + "w": 10, + "h": 22, + "source": "font" + }, + { + "char": "^", + "x": 1406, + "y": 48, + "w": 13, + "h": 9, + "source": "font" + }, + { + "char": "^", + "x": 1421, + "y": 48, + "w": 13, + "h": 10, + "source": "font" + }, + { + "char": "_", + "x": 1436, + "y": 48, + "w": 10, + "h": 6, + "source": "font" + }, + { + "char": "_", + "x": 1448, + "y": 48, + "w": 10, + "h": 6, + "source": "font" + }, + { + "char": "`", + "x": 1460, + "y": 48, + "w": 7, + "h": 9, + "source": "font" + }, + { + "char": "`", + "x": 1469, + "y": 48, + "w": 7, + "h": 9, + "source": "font" + }, + { + "char": "a", + "x": 1478, + "y": 48, + "w": 11, + "h": 14, + "source": "font" + }, + { + "char": "a", + "x": 1491, + "y": 48, + "w": 12, + "h": 15, + "source": "font" + }, + { + "char": "b", + "x": 1505, + "y": 48, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "b", + "x": 1518, + "y": 48, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "c", + "x": 1532, + "y": 48, + "w": 11, + "h": 14, + "source": "font" + }, + { + "char": "c", + "x": 1545, + "y": 48, + "w": 11, + "h": 15, + "source": "font" + }, + { + "char": "d", + "x": 1558, + "y": 48, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "d", + "x": 1571, + "y": 48, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "e", + "x": 1584, + "y": 48, + "w": 11, + "h": 14, + "source": "font" + }, + { + "char": "e", + "x": 2, + "y": 73, + "w": 12, + "h": 15, + "source": "font" + }, + { + "char": "f", + "x": 16, + "y": 73, + "w": 10, + "h": 18, + "source": "font" + }, + { + "char": "f", + "x": 28, + "y": 73, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "g", + "x": 41, + "y": 73, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "g", + "x": 54, + "y": 73, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "h", + "x": 67, + "y": 73, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "h", + "x": 80, + "y": 73, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "i", + "x": 93, + "y": 73, + "w": 6, + "h": 18, + "source": "font" + }, + { + "char": "i", + "x": 101, + "y": 73, + "w": 6, + "h": 19, + "source": "font" + }, + { + "char": "j", + "x": 109, + "y": 73, + "w": 7, + "h": 22, + "source": "font" + }, + { + "char": "j", + "x": 118, + "y": 73, + "w": 7, + "h": 23, + "source": "font" + }, + { + "char": "k", + "x": 127, + "y": 73, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "k", + "x": 140, + "y": 73, + "w": 10, + "h": 19, + "source": "font" + }, + { + "char": "l", + "x": 152, + "y": 73, + "w": 5, + "h": 18, + "source": "font" + }, + { + "char": "l", + "x": 159, + "y": 73, + "w": 5, + "h": 19, + "source": "font" + }, + { + "char": "m", + "x": 166, + "y": 73, + "w": 15, + "h": 14, + "source": "font" + }, + { + "char": "m", + "x": 183, + "y": 73, + "w": 15, + "h": 15, + "source": "font" + }, + { + "char": "n", + "x": 200, + "y": 73, + "w": 11, + "h": 14, + "source": "font" + }, + { + "char": "n", + "x": 213, + "y": 73, + "w": 11, + "h": 14, + "source": "font" + }, + { + "char": "o", + "x": 226, + "y": 73, + "w": 11, + "h": 14, + "source": "font" + }, + { + "char": "o", + "x": 239, + "y": 73, + "w": 11, + "h": 15, + "source": "font" + }, + { + "char": "p", + "x": 252, + "y": 73, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "p", + "x": 265, + "y": 73, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "q", + "x": 278, + "y": 73, + "w": 10, + "h": 18, + "source": "font" + }, + { + "char": "q", + "x": 290, + "y": 73, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "r", + "x": 303, + "y": 73, + "w": 9, + "h": 14, + "source": "font" + }, + { + "char": "r", + "x": 314, + "y": 73, + "w": 9, + "h": 14, + "source": "font" + }, + { + "char": "s", + "x": 325, + "y": 73, + "w": 10, + "h": 14, + "source": "font" + }, + { + "char": "s", + "x": 337, + "y": 73, + "w": 10, + "h": 15, + "source": "font" + }, + { + "char": "t", + "x": 349, + "y": 73, + "w": 9, + "h": 16, + "source": "font" + }, + { + "char": "t", + "x": 360, + "y": 73, + "w": 9, + "h": 17, + "source": "font" + }, + { + "char": "u", + "x": 371, + "y": 73, + "w": 11, + "h": 14, + "source": "font" + }, + { + "char": "u", + "x": 384, + "y": 73, + "w": 11, + "h": 14, + "source": "font" + }, + { + "char": "v", + "x": 397, + "y": 73, + "w": 10, + "h": 14, + "source": "font" + }, + { + "char": "v", + "x": 409, + "y": 73, + "w": 11, + "h": 14, + "source": "font" + }, + { + "char": "w", + "x": 422, + "y": 73, + "w": 13, + "h": 14, + "source": "font" + }, + { + "char": "w", + "x": 437, + "y": 73, + "w": 14, + "h": 14, + "source": "font" + }, + { + "char": "x", + "x": 453, + "y": 73, + "w": 10, + "h": 14, + "source": "font" + }, + { + "char": "x", + "x": 465, + "y": 73, + "w": 11, + "h": 15, + "source": "font" + }, + { + "char": "y", + "x": 478, + "y": 73, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "y", + "x": 491, + "y": 73, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "z", + "x": 504, + "y": 73, + "w": 11, + "h": 14, + "source": "font" + }, + { + "char": "z", + "x": 517, + "y": 73, + "w": 11, + "h": 14, + "source": "font" + }, + { + "char": "{", + "x": 530, + "y": 73, + "w": 8, + "h": 21, + "source": "font" + }, + { + "char": "{", + "x": 540, + "y": 73, + "w": 8, + "h": 22, + "source": "font" + }, + { + "char": "|", + "x": 550, + "y": 73, + "w": 6, + "h": 19, + "source": "font" + }, + { + "char": "|", + "x": 558, + "y": 73, + "w": 6, + "h": 20, + "source": "font" + }, + { + "char": "}", + "x": 566, + "y": 73, + "w": 8, + "h": 21, + "source": "font" + }, + { + "char": "}", + "x": 576, + "y": 73, + "w": 8, + "h": 22, + "source": "font" + }, + { + "char": "~", + "x": 586, + "y": 73, + "w": 11, + "h": 7, + "source": "font" + }, + { + "char": "~", + "x": 599, + "y": 73, + "w": 12, + "h": 7, + "source": "font" + }, + { + "char": "¡", + "x": 613, + "y": 73, + "w": 7, + "h": 18, + "source": "font" + }, + { + "char": "¡", + "x": 622, + "y": 73, + "w": 7, + "h": 19, + "source": "font" + }, + { + "char": "¢", + "x": 631, + "y": 73, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "¢", + "x": 645, + "y": 73, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "£", + "x": 659, + "y": 73, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "£", + "x": 672, + "y": 73, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "¤", + "x": 686, + "y": 73, + "w": 12, + "h": 13, + "source": "font" + }, + { + "char": "¤", + "x": 700, + "y": 73, + "w": 13, + "h": 13, + "source": "font" + }, + { + "char": "¥", + "x": 715, + "y": 73, + "w": 10, + "h": 18, + "source": "font" + }, + { + "char": "¥", + "x": 727, + "y": 73, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "¦", + "x": 740, + "y": 73, + "w": 6, + "h": 18, + "source": "font" + }, + { + "char": "¦", + "x": 748, + "y": 73, + "w": 6, + "h": 19, + "source": "font" + }, + { + "char": "§", + "x": 756, + "y": 73, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "§", + "x": 771, + "y": 73, + "w": 14, + "h": 20, + "source": "font" + }, + { + "char": "¨", + "x": 787, + "y": 73, + "w": 9, + "h": 6, + "source": "font" + }, + { + "char": "¨", + "x": 798, + "y": 73, + "w": 10, + "h": 6, + "source": "font" + }, + { + "char": "©", + "x": 810, + "y": 73, + "w": 17, + "h": 19, + "source": "font" + }, + { + "char": "©", + "x": 829, + "y": 73, + "w": 17, + "h": 20, + "source": "font" + }, + { + "char": "ª", + "x": 848, + "y": 73, + "w": 7, + "h": 9, + "source": "font" + }, + { + "char": "ª", + "x": 857, + "y": 73, + "w": 7, + "h": 9, + "source": "font" + }, + { + "char": "«", + "x": 866, + "y": 73, + "w": 14, + "h": 12, + "source": "font" + }, + { + "char": "«", + "x": 882, + "y": 73, + "w": 14, + "h": 12, + "source": "font" + }, + { + "char": "¬", + "x": 898, + "y": 73, + "w": 12, + "h": 8, + "source": "font" + }, + { + "char": "¬", + "x": 912, + "y": 73, + "w": 12, + "h": 8, + "source": "font" + }, + { + "char": "®", + "x": 926, + "y": 73, + "w": 17, + "h": 19, + "source": "font" + }, + { + "char": "®", + "x": 945, + "y": 73, + "w": 17, + "h": 20, + "source": "font" + }, + { + "char": "¯", + "x": 964, + "y": 73, + "w": 10, + "h": 6, + "source": "font" + }, + { + "char": "¯", + "x": 976, + "y": 73, + "w": 10, + "h": 6, + "source": "font" + }, + { + "char": "°", + "x": 988, + "y": 73, + "w": 8, + "h": 7, + "source": "font" + }, + { + "char": "°", + "x": 998, + "y": 73, + "w": 8, + "h": 8, + "source": "font" + }, + { + "char": "±", + "x": 1008, + "y": 73, + "w": 14, + "h": 14, + "source": "font" + }, + { + "char": "±", + "x": 1024, + "y": 73, + "w": 15, + "h": 14, + "source": "font" + }, + { + "char": "²", + "x": 1041, + "y": 73, + "w": 7, + "h": 8, + "source": "font" + }, + { + "char": "²", + "x": 1050, + "y": 73, + "w": 7, + "h": 9, + "source": "font" + }, + { + "char": "³", + "x": 1059, + "y": 73, + "w": 6, + "h": 8, + "source": "font" + }, + { + "char": "³", + "x": 1067, + "y": 73, + "w": 7, + "h": 9, + "source": "font" + }, + { + "char": "´", + "x": 1076, + "y": 73, + "w": 6, + "h": 7, + "source": "font" + }, + { + "char": "´", + "x": 1084, + "y": 73, + "w": 7, + "h": 7, + "source": "font" + }, + { + "char": "µ", + "x": 1093, + "y": 73, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "µ", + "x": 1106, + "y": 73, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "¶", + "x": 1120, + "y": 73, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "¶", + "x": 1134, + "y": 73, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "·", + "x": 1149, + "y": 73, + "w": 7, + "h": 6, + "source": "font" + }, + { + "char": "·", + "x": 1158, + "y": 73, + "w": 6, + "h": 6, + "source": "font" + }, + { + "char": "¸", + "x": 1166, + "y": 73, + "w": 6, + "h": 6, + "source": "font" + }, + { + "char": "¸", + "x": 1174, + "y": 73, + "w": 7, + "h": 6, + "source": "font" + }, + { + "char": "¹", + "x": 1183, + "y": 73, + "w": 4, + "h": 8, + "source": "font" + }, + { + "char": "¹", + "x": 1189, + "y": 73, + "w": 4, + "h": 9, + "source": "font" + }, + { + "char": "º", + "x": 1195, + "y": 73, + "w": 6, + "h": 9, + "source": "font" + }, + { + "char": "º", + "x": 1203, + "y": 73, + "w": 6, + "h": 9, + "source": "font" + }, + { + "char": "»", + "x": 1211, + "y": 73, + "w": 13, + "h": 12, + "source": "font" + }, + { + "char": "»", + "x": 1226, + "y": 73, + "w": 14, + "h": 12, + "source": "font" + }, + { + "char": "¼", + "x": 1242, + "y": 73, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "¼", + "x": 1257, + "y": 73, + "w": 14, + "h": 20, + "source": "font" + }, + { + "char": "½", + "x": 1273, + "y": 73, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "½", + "x": 1288, + "y": 73, + "w": 14, + "h": 20, + "source": "font" + }, + { + "char": "¾", + "x": 1304, + "y": 73, + "w": 15, + "h": 19, + "source": "font" + }, + { + "char": "¾", + "x": 1321, + "y": 73, + "w": 16, + "h": 20, + "source": "font" + }, + { + "char": "¿", + "x": 1339, + "y": 73, + "w": 14, + "h": 19, + "source": "font" + }, + { + "char": "¿", + "x": 1355, + "y": 73, + "w": 15, + "h": 19, + "source": "font" + }, + { + "char": "À", + "x": 1372, + "y": 73, + "w": 12, + "h": 23, + "source": "font" + }, + { + "char": "À", + "x": 1386, + "y": 73, + "w": 12, + "h": 24, + "source": "font" + }, + { + "char": "Á", + "x": 1400, + "y": 73, + "w": 12, + "h": 23, + "source": "font" + }, + { + "char": "Á", + "x": 1414, + "y": 73, + "w": 12, + "h": 24, + "source": "font" + }, + { + "char": "Â", + "x": 1428, + "y": 73, + "w": 12, + "h": 24, + "source": "font" + }, + { + "char": "Â", + "x": 1442, + "y": 73, + "w": 12, + "h": 25, + "source": "font" + }, + { + "char": "Ã", + "x": 1456, + "y": 73, + "w": 12, + "h": 23, + "source": "font" + }, + { + "char": "Ã", + "x": 1470, + "y": 73, + "w": 12, + "h": 24, + "source": "font" + }, + { + "char": "Ä", + "x": 1484, + "y": 73, + "w": 12, + "h": 22, + "source": "font" + }, + { + "char": "Ä", + "x": 1498, + "y": 73, + "w": 12, + "h": 23, + "source": "font" + }, + { + "char": "Å", + "x": 1512, + "y": 73, + "w": 12, + "h": 24, + "source": "font" + }, + { + "char": "Å", + "x": 1526, + "y": 73, + "w": 12, + "h": 25, + "source": "font" + }, + { + "char": "Æ", + "x": 1540, + "y": 73, + "w": 16, + "h": 18, + "source": "font" + }, + { + "char": "Æ", + "x": 1558, + "y": 73, + "w": 16, + "h": 19, + "source": "font" + }, + { + "char": "Ç", + "x": 1576, + "y": 73, + "w": 11, + "h": 21, + "source": "font" + }, + { + "char": "Ç", + "x": 2, + "y": 100, + "w": 12, + "h": 23, + "source": "font" + }, + { + "char": "È", + "x": 16, + "y": 100, + "w": 11, + "h": 23, + "source": "font" + }, + { + "char": "È", + "x": 29, + "y": 100, + "w": 11, + "h": 24, + "source": "font" + }, + { + "char": "É", + "x": 42, + "y": 100, + "w": 11, + "h": 23, + "source": "font" + }, + { + "char": "É", + "x": 55, + "y": 100, + "w": 11, + "h": 24, + "source": "font" + }, + { + "char": "Ê", + "x": 68, + "y": 100, + "w": 11, + "h": 24, + "source": "font" + }, + { + "char": "Ê", + "x": 81, + "y": 100, + "w": 11, + "h": 25, + "source": "font" + }, + { + "char": "Ë", + "x": 94, + "y": 100, + "w": 11, + "h": 22, + "source": "font" + }, + { + "char": "Ë", + "x": 107, + "y": 100, + "w": 11, + "h": 23, + "source": "font" + }, + { + "char": "Ì", + "x": 120, + "y": 100, + "w": 7, + "h": 23, + "source": "font" + }, + { + "char": "Ì", + "x": 129, + "y": 100, + "w": 7, + "h": 24, + "source": "font" + }, + { + "char": "Í", + "x": 138, + "y": 100, + "w": 7, + "h": 23, + "source": "font" + }, + { + "char": "Í", + "x": 147, + "y": 100, + "w": 7, + "h": 24, + "source": "font" + }, + { + "char": "Î", + "x": 156, + "y": 100, + "w": 10, + "h": 24, + "source": "font" + }, + { + "char": "Î", + "x": 168, + "y": 100, + "w": 9, + "h": 25, + "source": "font" + }, + { + "char": "Ï", + "x": 179, + "y": 100, + "w": 9, + "h": 22, + "source": "font" + }, + { + "char": "Ï", + "x": 190, + "y": 100, + "w": 10, + "h": 23, + "source": "font" + }, + { + "char": "Ð", + "x": 202, + "y": 100, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "Ð", + "x": 216, + "y": 100, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "Ñ", + "x": 231, + "y": 100, + "w": 12, + "h": 23, + "source": "font" + }, + { + "char": "Ñ", + "x": 245, + "y": 100, + "w": 13, + "h": 24, + "source": "font" + }, + { + "char": "Ò", + "x": 260, + "y": 100, + "w": 12, + "h": 23, + "source": "font" + }, + { + "char": "Ò", + "x": 274, + "y": 100, + "w": 12, + "h": 24, + "source": "font" + }, + { + "char": "Ó", + "x": 288, + "y": 100, + "w": 12, + "h": 23, + "source": "font" + }, + { + "char": "Ó", + "x": 302, + "y": 100, + "w": 12, + "h": 24, + "source": "font" + }, + { + "char": "Ô", + "x": 316, + "y": 100, + "w": 12, + "h": 24, + "source": "font" + }, + { + "char": "Ô", + "x": 330, + "y": 100, + "w": 12, + "h": 25, + "source": "font" + }, + { + "char": "Õ", + "x": 344, + "y": 100, + "w": 12, + "h": 23, + "source": "font" + }, + { + "char": "Õ", + "x": 358, + "y": 100, + "w": 12, + "h": 24, + "source": "font" + }, + { + "char": "Ö", + "x": 372, + "y": 100, + "w": 12, + "h": 22, + "source": "font" + }, + { + "char": "Ö", + "x": 386, + "y": 100, + "w": 12, + "h": 23, + "source": "font" + }, + { + "char": "×", + "x": 400, + "y": 100, + "w": 11, + "h": 10, + "source": "font" + }, + { + "char": "×", + "x": 413, + "y": 100, + "w": 11, + "h": 11, + "source": "font" + }, + { + "char": "Ø", + "x": 426, + "y": 100, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "Ø", + "x": 440, + "y": 100, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "Ù", + "x": 455, + "y": 100, + "w": 12, + "h": 23, + "source": "font" + }, + { + "char": "Ù", + "x": 469, + "y": 100, + "w": 12, + "h": 24, + "source": "font" + }, + { + "char": "Ú", + "x": 483, + "y": 100, + "w": 12, + "h": 23, + "source": "font" + }, + { + "char": "Ú", + "x": 497, + "y": 100, + "w": 12, + "h": 24, + "source": "font" + }, + { + "char": "Û", + "x": 511, + "y": 100, + "w": 12, + "h": 24, + "source": "font" + }, + { + "char": "Û", + "x": 525, + "y": 100, + "w": 12, + "h": 25, + "source": "font" + }, + { + "char": "Ü", + "x": 539, + "y": 100, + "w": 12, + "h": 22, + "source": "font" + }, + { + "char": "Ü", + "x": 553, + "y": 100, + "w": 12, + "h": 23, + "source": "font" + }, + { + "char": "Ý", + "x": 567, + "y": 100, + "w": 11, + "h": 23, + "source": "font" + }, + { + "char": "Ý", + "x": 580, + "y": 100, + "w": 11, + "h": 24, + "source": "font" + }, + { + "char": "Þ", + "x": 593, + "y": 100, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "Þ", + "x": 606, + "y": 100, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "ß", + "x": 619, + "y": 100, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "ß", + "x": 632, + "y": 100, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "à", + "x": 646, + "y": 100, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "à", + "x": 659, + "y": 100, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "á", + "x": 673, + "y": 100, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "á", + "x": 686, + "y": 100, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "â", + "x": 700, + "y": 100, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "â", + "x": 713, + "y": 100, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "ã", + "x": 727, + "y": 100, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "ã", + "x": 740, + "y": 100, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "ä", + "x": 754, + "y": 100, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "ä", + "x": 767, + "y": 100, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "å", + "x": 781, + "y": 100, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "å", + "x": 794, + "y": 100, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "æ", + "x": 808, + "y": 100, + "w": 17, + "h": 14, + "source": "font" + }, + { + "char": "æ", + "x": 827, + "y": 100, + "w": 18, + "h": 15, + "source": "font" + }, + { + "char": "ç", + "x": 847, + "y": 100, + "w": 11, + "h": 17, + "source": "font" + }, + { + "char": "ç", + "x": 860, + "y": 100, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "è", + "x": 873, + "y": 100, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "è", + "x": 886, + "y": 100, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "é", + "x": 900, + "y": 100, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "é", + "x": 913, + "y": 100, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "ê", + "x": 927, + "y": 100, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "ê", + "x": 940, + "y": 100, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "ë", + "x": 954, + "y": 100, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "ë", + "x": 967, + "y": 100, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "ì", + "x": 981, + "y": 100, + "w": 7, + "h": 19, + "source": "font" + }, + { + "char": "ì", + "x": 990, + "y": 100, + "w": 7, + "h": 20, + "source": "font" + }, + { + "char": "í", + "x": 999, + "y": 100, + "w": 7, + "h": 19, + "source": "font" + }, + { + "char": "í", + "x": 1008, + "y": 100, + "w": 7, + "h": 20, + "source": "font" + }, + { + "char": "î", + "x": 1017, + "y": 100, + "w": 10, + "h": 19, + "source": "font" + }, + { + "char": "î", + "x": 1029, + "y": 100, + "w": 10, + "h": 20, + "source": "font" + }, + { + "char": "ï", + "x": 1041, + "y": 100, + "w": 9, + "h": 18, + "source": "font" + }, + { + "char": "ï", + "x": 1052, + "y": 100, + "w": 10, + "h": 19, + "source": "font" + }, + { + "char": "ð", + "x": 1064, + "y": 100, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "ð", + "x": 1078, + "y": 100, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "ñ", + "x": 1093, + "y": 100, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "ñ", + "x": 1106, + "y": 100, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "ò", + "x": 1120, + "y": 100, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "ò", + "x": 1133, + "y": 100, + "w": 11, + "h": 20, + "source": "font" + }, + { + "char": "ó", + "x": 1146, + "y": 100, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "ó", + "x": 1159, + "y": 100, + "w": 11, + "h": 20, + "source": "font" + }, + { + "char": "ô", + "x": 1172, + "y": 100, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "ô", + "x": 1185, + "y": 100, + "w": 11, + "h": 20, + "source": "font" + }, + { + "char": "õ", + "x": 1198, + "y": 100, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "õ", + "x": 1211, + "y": 100, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "ö", + "x": 1224, + "y": 100, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "ö", + "x": 1237, + "y": 100, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "÷", + "x": 1250, + "y": 100, + "w": 12, + "h": 11, + "source": "font" + }, + { + "char": "÷", + "x": 1264, + "y": 100, + "w": 12, + "h": 12, + "source": "font" + }, + { + "char": "ø", + "x": 1278, + "y": 100, + "w": 10, + "h": 15, + "source": "font" + }, + { + "char": "ø", + "x": 1290, + "y": 100, + "w": 11, + "h": 16, + "source": "font" + }, + { + "char": "ù", + "x": 1303, + "y": 100, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "ù", + "x": 1316, + "y": 100, + "w": 11, + "h": 20, + "source": "font" + }, + { + "char": "ú", + "x": 1329, + "y": 100, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "ú", + "x": 1342, + "y": 100, + "w": 11, + "h": 20, + "source": "font" + }, + { + "char": "û", + "x": 1355, + "y": 100, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "û", + "x": 1368, + "y": 100, + "w": 11, + "h": 20, + "source": "font" + }, + { + "char": "ü", + "x": 1381, + "y": 100, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "ü", + "x": 1394, + "y": 100, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "ý", + "x": 1407, + "y": 100, + "w": 11, + "h": 23, + "source": "font" + }, + { + "char": "ý", + "x": 1420, + "y": 100, + "w": 11, + "h": 24, + "source": "font" + }, + { + "char": "þ", + "x": 1433, + "y": 100, + "w": 11, + "h": 21, + "source": "font" + }, + { + "char": "þ", + "x": 1446, + "y": 100, + "w": 11, + "h": 21, + "source": "font" + }, + { + "char": "ÿ", + "x": 1459, + "y": 100, + "w": 11, + "h": 22, + "source": "font" + }, + { + "char": "ÿ", + "x": 1472, + "y": 100, + "w": 11, + "h": 23, + "source": "font" + }, + { + "char": "ぁ", + "x": 1485, + "y": 100, + "w": 11, + "h": 15, + "source": "font" + }, + { + "char": "ぁ", + "x": 1498, + "y": 100, + "w": 12, + "h": 15, + "source": "font" + }, + { + "char": "あ", + "x": 1512, + "y": 100, + "w": 15, + "h": 18, + "source": "font" + }, + { + "char": "あ", + "x": 1529, + "y": 100, + "w": 16, + "h": 19, + "source": "font" + }, + { + "char": "ぃ", + "x": 1547, + "y": 100, + "w": 12, + "h": 14, + "source": "font" + }, + { + "char": "ぃ", + "x": 1561, + "y": 100, + "w": 12, + "h": 14, + "source": "font" + }, + { + "char": "い", + "x": 1575, + "y": 100, + "w": 14, + "h": 16, + "source": "font" + }, + { + "char": "い", + "x": 2, + "y": 127, + "w": 15, + "h": 17, + "source": "font" + }, + { + "char": "ぅ", + "x": 19, + "y": 127, + "w": 10, + "h": 15, + "source": "font" + }, + { + "char": "ぅ", + "x": 31, + "y": 127, + "w": 11, + "h": 16, + "source": "font" + }, + { + "char": "う", + "x": 44, + "y": 127, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "う", + "x": 59, + "y": 127, + "w": 13, + "h": 20, + "source": "font" + }, + { + "char": "ぇ", + "x": 74, + "y": 127, + "w": 12, + "h": 15, + "source": "font" + }, + { + "char": "ぇ", + "x": 88, + "y": 127, + "w": 13, + "h": 15, + "source": "font" + }, + { + "char": "え", + "x": 103, + "y": 127, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "え", + "x": 119, + "y": 127, + "w": 14, + "h": 19, + "source": "font" + }, + { + "char": "ぉ", + "x": 135, + "y": 127, + "w": 13, + "h": 15, + "source": "font" + }, + { + "char": "ぉ", + "x": 150, + "y": 127, + "w": 13, + "h": 16, + "source": "font" + }, + { + "char": "お", + "x": 165, + "y": 127, + "w": 15, + "h": 18, + "source": "font" + }, + { + "char": "お", + "x": 182, + "y": 127, + "w": 16, + "h": 19, + "source": "font" + }, + { + "char": "か", + "x": 200, + "y": 127, + "w": 14, + "h": 19, + "source": "font" + }, + { + "char": "か", + "x": 216, + "y": 127, + "w": 15, + "h": 19, + "source": "font" + }, + { + "char": "が", + "x": 233, + "y": 127, + "w": 14, + "h": 23, + "source": "font" + }, + { + "char": "が", + "x": 249, + "y": 127, + "w": 15, + "h": 24, + "source": "font" + }, + { + "char": "き", + "x": 266, + "y": 127, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "き", + "x": 281, + "y": 127, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "ぎ", + "x": 296, + "y": 127, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "ぎ", + "x": 311, + "y": 127, + "w": 14, + "h": 23, + "source": "font" + }, + { + "char": "く", + "x": 327, + "y": 127, + "w": 11, + "h": 16, + "source": "font" + }, + { + "char": "く", + "x": 340, + "y": 127, + "w": 11, + "h": 17, + "source": "font" + }, + { + "char": "ぐ", + "x": 353, + "y": 127, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "ぐ", + "x": 368, + "y": 127, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "け", + "x": 383, + "y": 127, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "け", + "x": 399, + "y": 127, + "w": 15, + "h": 19, + "source": "font" + }, + { + "char": "げ", + "x": 416, + "y": 127, + "w": 14, + "h": 23, + "source": "font" + }, + { + "char": "げ", + "x": 432, + "y": 127, + "w": 15, + "h": 24, + "source": "font" + }, + { + "char": "こ", + "x": 449, + "y": 127, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "こ", + "x": 463, + "y": 127, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "ご", + "x": 478, + "y": 127, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "ご", + "x": 493, + "y": 127, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "さ", + "x": 508, + "y": 127, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "さ", + "x": 523, + "y": 127, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "ざ", + "x": 538, + "y": 127, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "ざ", + "x": 553, + "y": 127, + "w": 14, + "h": 23, + "source": "font" + }, + { + "char": "し", + "x": 569, + "y": 127, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "し", + "x": 583, + "y": 127, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "じ", + "x": 598, + "y": 127, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "じ", + "x": 612, + "y": 127, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "す", + "x": 627, + "y": 127, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "す", + "x": 642, + "y": 127, + "w": 14, + "h": 19, + "source": "font" + }, + { + "char": "ず", + "x": 658, + "y": 127, + "w": 14, + "h": 22, + "source": "font" + }, + { + "char": "ず", + "x": 674, + "y": 127, + "w": 14, + "h": 23, + "source": "font" + }, + { + "char": "せ", + "x": 690, + "y": 127, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "せ", + "x": 706, + "y": 127, + "w": 15, + "h": 19, + "source": "font" + }, + { + "char": "ぜ", + "x": 723, + "y": 127, + "w": 14, + "h": 22, + "source": "font" + }, + { + "char": "ぜ", + "x": 739, + "y": 127, + "w": 15, + "h": 23, + "source": "font" + }, + { + "char": "そ", + "x": 756, + "y": 127, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "そ", + "x": 770, + "y": 127, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "ぞ", + "x": 784, + "y": 127, + "w": 13, + "h": 23, + "source": "font" + }, + { + "char": "ぞ", + "x": 799, + "y": 127, + "w": 14, + "h": 24, + "source": "font" + }, + { + "char": "た", + "x": 815, + "y": 127, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "た", + "x": 830, + "y": 127, + "w": 14, + "h": 19, + "source": "font" + }, + { + "char": "だ", + "x": 846, + "y": 127, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "だ", + "x": 861, + "y": 127, + "w": 14, + "h": 21, + "source": "font" + }, + { + "char": "ち", + "x": 877, + "y": 127, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "ち", + "x": 892, + "y": 127, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "ぢ", + "x": 907, + "y": 127, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "ぢ", + "x": 922, + "y": 127, + "w": 13, + "h": 23, + "source": "font" + }, + { + "char": "っ", + "x": 937, + "y": 127, + "w": 11, + "h": 13, + "source": "font" + }, + { + "char": "っ", + "x": 950, + "y": 127, + "w": 12, + "h": 14, + "source": "font" + }, + { + "char": "つ", + "x": 964, + "y": 127, + "w": 13, + "h": 15, + "source": "font" + }, + { + "char": "つ", + "x": 979, + "y": 127, + "w": 14, + "h": 16, + "source": "font" + }, + { + "char": "づ", + "x": 995, + "y": 127, + "w": 13, + "h": 20, + "source": "font" + }, + { + "char": "づ", + "x": 1010, + "y": 127, + "w": 14, + "h": 21, + "source": "font" + }, + { + "char": "て", + "x": 1026, + "y": 127, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "て", + "x": 1040, + "y": 127, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "で", + "x": 1055, + "y": 127, + "w": 12, + "h": 21, + "source": "font" + }, + { + "char": "で", + "x": 1069, + "y": 127, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "と", + "x": 1084, + "y": 127, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "と", + "x": 1098, + "y": 127, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "ど", + "x": 1112, + "y": 127, + "w": 13, + "h": 20, + "source": "font" + }, + { + "char": "ど", + "x": 1127, + "y": 127, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "な", + "x": 1142, + "y": 127, + "w": 16, + "h": 18, + "source": "font" + }, + { + "char": "な", + "x": 1160, + "y": 127, + "w": 16, + "h": 19, + "source": "font" + }, + { + "char": "に", + "x": 1178, + "y": 127, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "に", + "x": 1193, + "y": 127, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "ぬ", + "x": 1209, + "y": 127, + "w": 17, + "h": 17, + "source": "font" + }, + { + "char": "ぬ", + "x": 1228, + "y": 127, + "w": 17, + "h": 18, + "source": "font" + }, + { + "char": "ね", + "x": 1247, + "y": 127, + "w": 16, + "h": 18, + "source": "font" + }, + { + "char": "ね", + "x": 1265, + "y": 127, + "w": 16, + "h": 19, + "source": "font" + }, + { + "char": "の", + "x": 1283, + "y": 127, + "w": 14, + "h": 17, + "source": "font" + }, + { + "char": "の", + "x": 1299, + "y": 127, + "w": 15, + "h": 18, + "source": "font" + }, + { + "char": "は", + "x": 1316, + "y": 127, + "w": 16, + "h": 17, + "source": "font" + }, + { + "char": "は", + "x": 1334, + "y": 127, + "w": 17, + "h": 18, + "source": "font" + }, + { + "char": "ば", + "x": 1353, + "y": 127, + "w": 16, + "h": 22, + "source": "font" + }, + { + "char": "ば", + "x": 1371, + "y": 127, + "w": 17, + "h": 23, + "source": "font" + }, + { + "char": "ぱ", + "x": 1390, + "y": 127, + "w": 16, + "h": 23, + "source": "font" + }, + { + "char": "ぱ", + "x": 1408, + "y": 127, + "w": 17, + "h": 24, + "source": "font" + }, + { + "char": "ひ", + "x": 1427, + "y": 127, + "w": 14, + "h": 17, + "source": "font" + }, + { + "char": "ひ", + "x": 1443, + "y": 127, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "び", + "x": 1459, + "y": 127, + "w": 14, + "h": 20, + "source": "font" + }, + { + "char": "び", + "x": 1475, + "y": 127, + "w": 15, + "h": 21, + "source": "font" + }, + { + "char": "ぴ", + "x": 1492, + "y": 127, + "w": 14, + "h": 20, + "source": "font" + }, + { + "char": "ぴ", + "x": 1508, + "y": 127, + "w": 15, + "h": 20, + "source": "font" + }, + { + "char": "ふ", + "x": 1525, + "y": 127, + "w": 15, + "h": 18, + "source": "font" + }, + { + "char": "ふ", + "x": 1542, + "y": 127, + "w": 16, + "h": 19, + "source": "font" + }, + { + "char": "ぶ", + "x": 1560, + "y": 127, + "w": 15, + "h": 21, + "source": "font" + }, + { + "char": "ぶ", + "x": 1577, + "y": 127, + "w": 16, + "h": 22, + "source": "font" + }, + { + "char": "ぷ", + "x": 2, + "y": 153, + "w": 15, + "h": 20, + "source": "font" + }, + { + "char": "ぷ", + "x": 19, + "y": 153, + "w": 16, + "h": 21, + "source": "font" + }, + { + "char": "へ", + "x": 37, + "y": 153, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "へ", + "x": 51, + "y": 153, + "w": 13, + "h": 16, + "source": "font" + }, + { + "char": "べ", + "x": 66, + "y": 153, + "w": 13, + "h": 20, + "source": "font" + }, + { + "char": "べ", + "x": 81, + "y": 153, + "w": 14, + "h": 21, + "source": "font" + }, + { + "char": "ぺ", + "x": 97, + "y": 153, + "w": 13, + "h": 20, + "source": "font" + }, + { + "char": "ぺ", + "x": 112, + "y": 153, + "w": 14, + "h": 20, + "source": "font" + }, + { + "char": "ほ", + "x": 128, + "y": 153, + "w": 15, + "h": 18, + "source": "font" + }, + { + "char": "ほ", + "x": 145, + "y": 153, + "w": 16, + "h": 19, + "source": "font" + }, + { + "char": "ぼ", + "x": 163, + "y": 153, + "w": 15, + "h": 22, + "source": "font" + }, + { + "char": "ぼ", + "x": 180, + "y": 153, + "w": 16, + "h": 24, + "source": "font" + }, + { + "char": "ぽ", + "x": 198, + "y": 153, + "w": 15, + "h": 23, + "source": "font" + }, + { + "char": "ぽ", + "x": 215, + "y": 153, + "w": 16, + "h": 25, + "source": "font" + }, + { + "char": "ま", + "x": 233, + "y": 153, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "ま", + "x": 247, + "y": 153, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "み", + "x": 262, + "y": 153, + "w": 15, + "h": 17, + "source": "font" + }, + { + "char": "み", + "x": 279, + "y": 153, + "w": 15, + "h": 18, + "source": "font" + }, + { + "char": "む", + "x": 296, + "y": 153, + "w": 17, + "h": 18, + "source": "font" + }, + { + "char": "む", + "x": 315, + "y": 153, + "w": 17, + "h": 19, + "source": "font" + }, + { + "char": "め", + "x": 334, + "y": 153, + "w": 17, + "h": 17, + "source": "font" + }, + { + "char": "め", + "x": 353, + "y": 153, + "w": 18, + "h": 18, + "source": "font" + }, + { + "char": "も", + "x": 373, + "y": 153, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "も", + "x": 387, + "y": 153, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "ゃ", + "x": 402, + "y": 153, + "w": 13, + "h": 15, + "source": "font" + }, + { + "char": "ゃ", + "x": 417, + "y": 153, + "w": 13, + "h": 15, + "source": "font" + }, + { + "char": "や", + "x": 432, + "y": 153, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "や", + "x": 448, + "y": 153, + "w": 15, + "h": 18, + "source": "font" + }, + { + "char": "ゅ", + "x": 465, + "y": 153, + "w": 13, + "h": 15, + "source": "font" + }, + { + "char": "ゅ", + "x": 480, + "y": 153, + "w": 13, + "h": 16, + "source": "font" + }, + { + "char": "ゆ", + "x": 495, + "y": 153, + "w": 15, + "h": 18, + "source": "font" + }, + { + "char": "ゆ", + "x": 512, + "y": 153, + "w": 16, + "h": 19, + "source": "font" + }, + { + "char": "ょ", + "x": 530, + "y": 153, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "ょ", + "x": 544, + "y": 153, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "よ", + "x": 558, + "y": 153, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "よ", + "x": 574, + "y": 153, + "w": 14, + "h": 19, + "source": "font" + }, + { + "char": "ら", + "x": 590, + "y": 153, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "ら", + "x": 604, + "y": 153, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "り", + "x": 619, + "y": 153, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "り", + "x": 633, + "y": 153, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "る", + "x": 647, + "y": 153, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "る", + "x": 662, + "y": 153, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "れ", + "x": 677, + "y": 153, + "w": 15, + "h": 18, + "source": "font" + }, + { + "char": "れ", + "x": 694, + "y": 153, + "w": 16, + "h": 19, + "source": "font" + }, + { + "char": "ろ", + "x": 712, + "y": 153, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "ろ", + "x": 726, + "y": 153, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "ゎ", + "x": 741, + "y": 153, + "w": 13, + "h": 15, + "source": "font" + }, + { + "char": "ゎ", + "x": 756, + "y": 153, + "w": 13, + "h": 15, + "source": "font" + }, + { + "char": "わ", + "x": 771, + "y": 153, + "w": 15, + "h": 18, + "source": "font" + }, + { + "char": "わ", + "x": 788, + "y": 153, + "w": 16, + "h": 18, + "source": "font" + }, + { + "char": "を", + "x": 806, + "y": 153, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "を", + "x": 820, + "y": 153, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "ん", + "x": 835, + "y": 153, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "ん", + "x": 850, + "y": 153, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "ゔ", + "x": 866, + "y": 153, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "ゔ", + "x": 881, + "y": 153, + "w": 14, + "h": 24, + "source": "font" + }, + { + "char": "ゕ", + "x": 897, + "y": 153, + "w": 12, + "h": 15, + "source": "font" + }, + { + "char": "ゕ", + "x": 911, + "y": 153, + "w": 13, + "h": 15, + "source": "font" + }, + { + "char": "ゖ", + "x": 926, + "y": 153, + "w": 12, + "h": 15, + "source": "font" + }, + { + "char": "ゖ", + "x": 940, + "y": 153, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "ァ", + "x": 954, + "y": 153, + "w": 12, + "h": 14, + "source": "font" + }, + { + "char": "ァ", + "x": 968, + "y": 153, + "w": 12, + "h": 15, + "source": "font" + }, + { + "char": "ア", + "x": 982, + "y": 153, + "w": 15, + "h": 17, + "source": "font" + }, + { + "char": "ア", + "x": 999, + "y": 153, + "w": 15, + "h": 18, + "source": "font" + }, + { + "char": "ィ", + "x": 1016, + "y": 153, + "w": 10, + "h": 14, + "source": "font" + }, + { + "char": "ィ", + "x": 1028, + "y": 153, + "w": 11, + "h": 15, + "source": "font" + }, + { + "char": "イ", + "x": 1041, + "y": 153, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "イ", + "x": 1055, + "y": 153, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "ゥ", + "x": 1069, + "y": 153, + "w": 11, + "h": 14, + "source": "font" + }, + { + "char": "ゥ", + "x": 1082, + "y": 153, + "w": 12, + "h": 15, + "source": "font" + }, + { + "char": "ウ", + "x": 1096, + "y": 153, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "ウ", + "x": 1111, + "y": 153, + "w": 14, + "h": 19, + "source": "font" + }, + { + "char": "ェ", + "x": 1127, + "y": 153, + "w": 10, + "h": 13, + "source": "font" + }, + { + "char": "ェ", + "x": 1139, + "y": 153, + "w": 10, + "h": 14, + "source": "font" + }, + { + "char": "エ", + "x": 1151, + "y": 153, + "w": 11, + "h": 16, + "source": "font" + }, + { + "char": "エ", + "x": 1164, + "y": 153, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "ォ", + "x": 1178, + "y": 153, + "w": 11, + "h": 15, + "source": "font" + }, + { + "char": "ォ", + "x": 1191, + "y": 153, + "w": 12, + "h": 15, + "source": "font" + }, + { + "char": "オ", + "x": 1205, + "y": 153, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "オ", + "x": 1220, + "y": 153, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "カ", + "x": 1236, + "y": 153, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "カ", + "x": 1251, + "y": 153, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "ガ", + "x": 1266, + "y": 153, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "ガ", + "x": 1281, + "y": 153, + "w": 14, + "h": 19, + "source": "font" + }, + { + "char": "キ", + "x": 1297, + "y": 153, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "キ", + "x": 1311, + "y": 153, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "ギ", + "x": 1326, + "y": 153, + "w": 14, + "h": 20, + "source": "font" + }, + { + "char": "ギ", + "x": 1342, + "y": 153, + "w": 14, + "h": 21, + "source": "font" + }, + { + "char": "ク", + "x": 1358, + "y": 153, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "ク", + "x": 1372, + "y": 153, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "グ", + "x": 1387, + "y": 153, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "グ", + "x": 1402, + "y": 153, + "w": 14, + "h": 22, + "source": "font" + }, + { + "char": "ケ", + "x": 1418, + "y": 153, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "ケ", + "x": 1433, + "y": 153, + "w": 14, + "h": 19, + "source": "font" + }, + { + "char": "ゲ", + "x": 1449, + "y": 153, + "w": 13, + "h": 20, + "source": "font" + }, + { + "char": "ゲ", + "x": 1464, + "y": 153, + "w": 14, + "h": 21, + "source": "font" + }, + { + "char": "コ", + "x": 1480, + "y": 153, + "w": 12, + "h": 15, + "source": "font" + }, + { + "char": "コ", + "x": 1494, + "y": 153, + "w": 13, + "h": 16, + "source": "font" + }, + { + "char": "ゴ", + "x": 1509, + "y": 153, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "ゴ", + "x": 1523, + "y": 153, + "w": 13, + "h": 20, + "source": "font" + }, + { + "char": "サ", + "x": 1538, + "y": 153, + "w": 15, + "h": 18, + "source": "font" + }, + { + "char": "サ", + "x": 1555, + "y": 153, + "w": 15, + "h": 19, + "source": "font" + }, + { + "char": "ザ", + "x": 1572, + "y": 153, + "w": 16, + "h": 22, + "source": "font" + }, + { + "char": "ザ", + "x": 2, + "y": 180, + "w": 16, + "h": 23, + "source": "font" + }, + { + "char": "シ", + "x": 20, + "y": 180, + "w": 14, + "h": 17, + "source": "font" + }, + { + "char": "シ", + "x": 36, + "y": 180, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "ジ", + "x": 52, + "y": 180, + "w": 14, + "h": 21, + "source": "font" + }, + { + "char": "ジ", + "x": 68, + "y": 180, + "w": 14, + "h": 22, + "source": "font" + }, + { + "char": "ス", + "x": 84, + "y": 180, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "ス", + "x": 99, + "y": 180, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "ズ", + "x": 115, + "y": 180, + "w": 14, + "h": 21, + "source": "font" + }, + { + "char": "ズ", + "x": 131, + "y": 180, + "w": 15, + "h": 22, + "source": "font" + }, + { + "char": "セ", + "x": 148, + "y": 180, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "セ", + "x": 164, + "y": 180, + "w": 15, + "h": 18, + "source": "font" + }, + { + "char": "ゼ", + "x": 181, + "y": 180, + "w": 14, + "h": 19, + "source": "font" + }, + { + "char": "ゼ", + "x": 197, + "y": 180, + "w": 15, + "h": 20, + "source": "font" + }, + { + "char": "ソ", + "x": 214, + "y": 180, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "ソ", + "x": 229, + "y": 180, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "ゾ", + "x": 245, + "y": 180, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "ゾ", + "x": 260, + "y": 180, + "w": 14, + "h": 22, + "source": "font" + }, + { + "char": "タ", + "x": 276, + "y": 180, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "タ", + "x": 291, + "y": 180, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "ダ", + "x": 307, + "y": 180, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "ダ", + "x": 322, + "y": 180, + "w": 14, + "h": 23, + "source": "font" + }, + { + "char": "チ", + "x": 338, + "y": 180, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "チ", + "x": 352, + "y": 180, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "ヂ", + "x": 367, + "y": 180, + "w": 12, + "h": 22, + "source": "font" + }, + { + "char": "ヂ", + "x": 381, + "y": 180, + "w": 13, + "h": 23, + "source": "font" + }, + { + "char": "ッ", + "x": 396, + "y": 180, + "w": 12, + "h": 13, + "source": "font" + }, + { + "char": "ッ", + "x": 410, + "y": 180, + "w": 13, + "h": 14, + "source": "font" + }, + { + "char": "ツ", + "x": 425, + "y": 180, + "w": 14, + "h": 16, + "source": "font" + }, + { + "char": "ツ", + "x": 441, + "y": 180, + "w": 15, + "h": 17, + "source": "font" + }, + { + "char": "ヅ", + "x": 458, + "y": 180, + "w": 14, + "h": 20, + "source": "font" + }, + { + "char": "ヅ", + "x": 474, + "y": 180, + "w": 15, + "h": 21, + "source": "font" + }, + { + "char": "テ", + "x": 491, + "y": 180, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "テ", + "x": 506, + "y": 180, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "デ", + "x": 522, + "y": 180, + "w": 14, + "h": 21, + "source": "font" + }, + { + "char": "デ", + "x": 538, + "y": 180, + "w": 14, + "h": 22, + "source": "font" + }, + { + "char": "ト", + "x": 554, + "y": 180, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "ト", + "x": 568, + "y": 180, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "ド", + "x": 582, + "y": 180, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "ド", + "x": 596, + "y": 180, + "w": 13, + "h": 20, + "source": "font" + }, + { + "char": "ナ", + "x": 611, + "y": 180, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "ナ", + "x": 626, + "y": 180, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "ニ", + "x": 641, + "y": 180, + "w": 12, + "h": 15, + "source": "font" + }, + { + "char": "ニ", + "x": 655, + "y": 180, + "w": 12, + "h": 15, + "source": "font" + }, + { + "char": "ヌ", + "x": 669, + "y": 180, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "ヌ", + "x": 684, + "y": 180, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "ネ", + "x": 699, + "y": 180, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "ネ", + "x": 713, + "y": 180, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "ノ", + "x": 728, + "y": 180, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "ノ", + "x": 742, + "y": 180, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "ハ", + "x": 756, + "y": 180, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "ハ", + "x": 771, + "y": 180, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "バ", + "x": 787, + "y": 180, + "w": 13, + "h": 20, + "source": "font" + }, + { + "char": "バ", + "x": 802, + "y": 180, + "w": 14, + "h": 21, + "source": "font" + }, + { + "char": "パ", + "x": 818, + "y": 180, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "パ", + "x": 833, + "y": 180, + "w": 14, + "h": 22, + "source": "font" + }, + { + "char": "ヒ", + "x": 849, + "y": 180, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "ヒ", + "x": 863, + "y": 180, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "ビ", + "x": 878, + "y": 180, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "ビ", + "x": 892, + "y": 180, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "ピ", + "x": 907, + "y": 180, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "ピ", + "x": 921, + "y": 180, + "w": 13, + "h": 20, + "source": "font" + }, + { + "char": "フ", + "x": 936, + "y": 180, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "フ", + "x": 951, + "y": 180, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "ブ", + "x": 966, + "y": 180, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "ブ", + "x": 981, + "y": 180, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "プ", + "x": 996, + "y": 180, + "w": 13, + "h": 22, + "source": "font" + }, + { + "char": "プ", + "x": 1011, + "y": 180, + "w": 14, + "h": 23, + "source": "font" + }, + { + "char": "ヘ", + "x": 1027, + "y": 180, + "w": 12, + "h": 15, + "source": "font" + }, + { + "char": "ヘ", + "x": 1041, + "y": 180, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "ベ", + "x": 1056, + "y": 180, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "ベ", + "x": 1071, + "y": 180, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "ペ", + "x": 1086, + "y": 180, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "ペ", + "x": 1101, + "y": 180, + "w": 13, + "h": 21, + "source": "font" + }, + { + "char": "ホ", + "x": 1116, + "y": 180, + "w": 15, + "h": 18, + "source": "font" + }, + { + "char": "ホ", + "x": 1133, + "y": 180, + "w": 16, + "h": 19, + "source": "font" + }, + { + "char": "ボ", + "x": 1151, + "y": 180, + "w": 15, + "h": 22, + "source": "font" + }, + { + "char": "ボ", + "x": 1168, + "y": 180, + "w": 16, + "h": 23, + "source": "font" + }, + { + "char": "ポ", + "x": 1186, + "y": 180, + "w": 15, + "h": 22, + "source": "font" + }, + { + "char": "ポ", + "x": 1203, + "y": 180, + "w": 16, + "h": 23, + "source": "font" + }, + { + "char": "マ", + "x": 1221, + "y": 180, + "w": 13, + "h": 16, + "source": "font" + }, + { + "char": "マ", + "x": 1236, + "y": 180, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "ミ", + "x": 1251, + "y": 180, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "ミ", + "x": 1265, + "y": 180, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "ム", + "x": 1280, + "y": 180, + "w": 14, + "h": 17, + "source": "font" + }, + { + "char": "ム", + "x": 1296, + "y": 180, + "w": 15, + "h": 17, + "source": "font" + }, + { + "char": "メ", + "x": 1313, + "y": 180, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "メ", + "x": 1327, + "y": 180, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "モ", + "x": 1342, + "y": 180, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "モ", + "x": 1356, + "y": 180, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "ャ", + "x": 1371, + "y": 180, + "w": 12, + "h": 15, + "source": "font" + }, + { + "char": "ャ", + "x": 1385, + "y": 180, + "w": 13, + "h": 15, + "source": "font" + }, + { + "char": "ヤ", + "x": 1400, + "y": 180, + "w": 14, + "h": 18, + "source": "font" + }, + { + "char": "ヤ", + "x": 1416, + "y": 180, + "w": 15, + "h": 19, + "source": "font" + }, + { + "char": "ュ", + "x": 1433, + "y": 180, + "w": 11, + "h": 12, + "source": "font" + }, + { + "char": "ュ", + "x": 1446, + "y": 180, + "w": 12, + "h": 13, + "source": "font" + }, + { + "char": "ユ", + "x": 1460, + "y": 180, + "w": 13, + "h": 15, + "source": "font" + }, + { + "char": "ユ", + "x": 1475, + "y": 180, + "w": 14, + "h": 16, + "source": "font" + }, + { + "char": "ョ", + "x": 1491, + "y": 180, + "w": 11, + "h": 14, + "source": "font" + }, + { + "char": "ョ", + "x": 1504, + "y": 180, + "w": 11, + "h": 14, + "source": "font" + }, + { + "char": "ヨ", + "x": 1517, + "y": 180, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "ヨ", + "x": 1532, + "y": 180, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "ラ", + "x": 1547, + "y": 180, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "ラ", + "x": 1562, + "y": 180, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "リ", + "x": 1577, + "y": 180, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "リ", + "x": 2, + "y": 205, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "ル", + "x": 17, + "y": 205, + "w": 15, + "h": 17, + "source": "font" + }, + { + "char": "ル", + "x": 34, + "y": 205, + "w": 16, + "h": 18, + "source": "font" + }, + { + "char": "レ", + "x": 52, + "y": 205, + "w": 12, + "h": 17, + "source": "font" + }, + { + "char": "レ", + "x": 66, + "y": 205, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "ロ", + "x": 81, + "y": 205, + "w": 13, + "h": 16, + "source": "font" + }, + { + "char": "ロ", + "x": 96, + "y": 205, + "w": 14, + "h": 16, + "source": "font" + }, + { + "char": "ヮ", + "x": 112, + "y": 205, + "w": 12, + "h": 15, + "source": "font" + }, + { + "char": "ヮ", + "x": 126, + "y": 205, + "w": 13, + "h": 15, + "source": "font" + }, + { + "char": "ワ", + "x": 141, + "y": 205, + "w": 14, + "h": 17, + "source": "font" + }, + { + "char": "ワ", + "x": 157, + "y": 205, + "w": 15, + "h": 18, + "source": "font" + }, + { + "char": "ヲ", + "x": 174, + "y": 205, + "w": 13, + "h": 17, + "source": "font" + }, + { + "char": "ヲ", + "x": 189, + "y": 205, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "ン", + "x": 204, + "y": 205, + "w": 13, + "h": 16, + "source": "font" + }, + { + "char": "ン", + "x": 219, + "y": 205, + "w": 14, + "h": 16, + "source": "font" + }, + { + "char": "ヴ", + "x": 235, + "y": 205, + "w": 14, + "h": 22, + "source": "font" + }, + { + "char": "ヴ", + "x": 251, + "y": 205, + "w": 14, + "h": 23, + "source": "font" + }, + { + "char": "ヵ", + "x": 267, + "y": 205, + "w": 12, + "h": 15, + "source": "font" + }, + { + "char": "ヵ", + "x": 281, + "y": 205, + "w": 12, + "h": 15, + "source": "font" + }, + { + "char": "ヶ", + "x": 295, + "y": 205, + "w": 11, + "h": 15, + "source": "font" + }, + { + "char": "ヶ", + "x": 308, + "y": 205, + "w": 11, + "h": 16, + "source": "font" + }, + { + "char": "・", + "x": 321, + "y": 205, + "w": 6, + "h": 6, + "source": "font" + }, + { + "char": "・", + "x": 329, + "y": 205, + "w": 6, + "h": 6, + "source": "font" + }, + { + "char": "ー", + "x": 337, + "y": 205, + "w": 11, + "h": 6, + "source": "font" + }, + { + "char": "ー", + "x": 350, + "y": 205, + "w": 10, + "h": 6, + "source": "font" + }, + { + "char": "、", + "x": 362, + "y": 205, + "w": 7, + "h": 6, + "source": "font" + }, + { + "char": "、", + "x": 371, + "y": 205, + "w": 7, + "h": 7, + "source": "font" + }, + { + "char": "。", + "x": 380, + "y": 205, + "w": 8, + "h": 7, + "source": "font" + }, + { + "char": "。", + "x": 390, + "y": 205, + "w": 8, + "h": 8, + "source": "font" + }, + { + "char": "「", + "x": 400, + "y": 205, + "w": 9, + "h": 21, + "source": "font" + }, + { + "char": "「", + "x": 411, + "y": 205, + "w": 10, + "h": 22, + "source": "font" + }, + { + "char": "」", + "x": 423, + "y": 205, + "w": 9, + "h": 21, + "source": "font" + }, + { + "char": "」", + "x": 434, + "y": 205, + "w": 9, + "h": 22, + "source": "font" + }, + { + "char": "★", + "x": 445, + "y": 205, + "w": 18, + "h": 19, + "source": "font" + }, + { + "char": "★", + "x": 465, + "y": 205, + "w": 19, + "h": 20, + "source": "font" + }, + { + "char": "☆", + "x": 486, + "y": 205, + "w": 18, + "h": 19, + "source": "font" + }, + { + "char": "☆", + "x": 506, + "y": 205, + "w": 19, + "h": 20, + "source": "font" + }, + { + "char": "•", + "x": 527, + "y": 205, + "w": 16, + "h": 16, + "source": "font" + }, + { + "char": "•", + "x": 545, + "y": 205, + "w": 17, + "h": 17, + "source": "font" + }, + { + "char": "♪", + "x": 564, + "y": 205, + "w": 14, + "h": 19, + "source": "font" + }, + { + "char": "♪", + "x": 580, + "y": 205, + "w": 15, + "h": 20, + "source": "font" + }, + { + "char": "ι", + "x": 597, + "y": 205, + "w": 8, + "h": 14, + "source": "font" + }, + { + "char": "ι", + "x": 607, + "y": 205, + "w": 8, + "h": 15, + "source": "font" + }, + { + "char": "α", + "x": 617, + "y": 205, + "w": 14, + "h": 14, + "source": "font" + }, + { + "char": "α", + "x": 633, + "y": 205, + "w": 14, + "h": 15, + "source": "font" + }, + { + "char": "′", + "x": 649, + "y": 205, + "w": 7, + "h": 8, + "source": "font" + }, + { + "char": "′", + "x": 658, + "y": 205, + "w": 7, + "h": 8, + "source": "font" + }, + { + "char": "‘", + "x": 667, + "y": 205, + "w": 6, + "h": 9, + "source": "font" + }, + { + "char": "‘", + "x": 675, + "y": 205, + "w": 6, + "h": 9, + "source": "font" + }, + { + "char": "’", + "x": 683, + "y": 205, + "w": 7, + "h": 9, + "source": "font" + }, + { + "char": "’", + "x": 692, + "y": 205, + "w": 7, + "h": 9, + "source": "font" + }, + { + "char": "‚", + "x": 701, + "y": 205, + "w": 7, + "h": 9, + "source": "font" + }, + { + "char": "‚", + "x": 710, + "y": 205, + "w": 7, + "h": 9, + "source": "font" + }, + { + "char": "‛", + "x": 719, + "y": 205, + "w": 7, + "h": 9, + "source": "font" + }, + { + "char": "‛", + "x": 728, + "y": 205, + "w": 7, + "h": 9, + "source": "font" + }, + { + "char": "…", + "x": 737, + "y": 205, + "w": 16, + "h": 6, + "source": "font" + }, + { + "char": "…", + "x": 755, + "y": 205, + "w": 17, + "h": 6, + "source": "font" + }, + { + "char": "″", + "x": 774, + "y": 205, + "w": 11, + "h": 8, + "source": "font" + }, + { + "char": "″", + "x": 787, + "y": 205, + "w": 11, + "h": 8, + "source": "font" + }, + { + "char": "“", + "x": 800, + "y": 205, + "w": 10, + "h": 9, + "source": "font" + }, + { + "char": "“", + "x": 812, + "y": 205, + "w": 11, + "h": 9, + "source": "font" + }, + { + "char": "”", + "x": 825, + "y": 205, + "w": 11, + "h": 9, + "source": "font" + }, + { + "char": "”", + "x": 838, + "y": 205, + "w": 12, + "h": 9, + "source": "font" + }, + { + "char": "„", + "x": 852, + "y": 205, + "w": 11, + "h": 9, + "source": "font" + }, + { + "char": "„", + "x": 865, + "y": 205, + "w": 11, + "h": 9, + "source": "font" + }, + { + "char": "←", + "x": 878, + "y": 205, + "w": 17, + "h": 11, + "source": "font" + }, + { + "char": "←", + "x": 897, + "y": 205, + "w": 16, + "h": 12, + "source": "font" + }, + { + "char": "→", + "x": 915, + "y": 205, + "w": 16, + "h": 12, + "source": "font" + }, + { + "char": "→", + "x": 933, + "y": 205, + "w": 16, + "h": 12, + "source": "font" + }, + { + "char": "↑", + "x": 951, + "y": 205, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "↑", + "x": 965, + "y": 205, + "w": 13, + "h": 16, + "source": "font" + }, + { + "char": "↓", + "x": 980, + "y": 205, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "↓", + "x": 994, + "y": 205, + "w": 13, + "h": 16, + "source": "font" + }, + { + "char": "⇒", + "x": 1009, + "y": 205, + "w": 16, + "h": 12, + "source": "font" + }, + { + "char": "⇒", + "x": 1027, + "y": 205, + "w": 16, + "h": 12, + "source": "font" + }, + { + "char": "⇔", + "x": 1045, + "y": 205, + "w": 18, + "h": 12, + "source": "font" + }, + { + "char": "⇔", + "x": 1065, + "y": 205, + "w": 19, + "h": 12, + "source": "font" + }, + { + "char": "˜", + "x": 1086, + "y": 205, + "w": 11, + "h": 6, + "source": "font" + }, + { + "char": "˜", + "x": 1099, + "y": 205, + "w": 12, + "h": 7, + "source": "font" + }, + { + "char": "€", + "x": 1113, + "y": 205, + "w": 12, + "h": 18, + "source": "font" + }, + { + "char": "€", + "x": 1127, + "y": 205, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "∞", + "x": 1142, + "y": 205, + "w": 16, + "h": 10, + "source": "font" + }, + { + "char": "∞", + "x": 1160, + "y": 205, + "w": 17, + "h": 11, + "source": "font" + }, + { + "char": "√", + "x": 1179, + "y": 205, + "w": 19, + "h": 20, + "source": "font" + }, + { + "char": "√", + "x": 1200, + "y": 205, + "w": 19, + "h": 21, + "source": "font" + }, + { + "char": "∀", + "x": 1221, + "y": 205, + "w": 13, + "h": 18, + "source": "font" + }, + { + "char": "∀", + "x": 1236, + "y": 205, + "w": 14, + "h": 19, + "source": "font" + }, + { + "char": "⊂", + "x": 1252, + "y": 205, + "w": 14, + "h": 16, + "source": "font" + }, + { + "char": "⊂", + "x": 1268, + "y": 205, + "w": 15, + "h": 16, + "source": "font" + }, + { + "char": "⊃", + "x": 1285, + "y": 205, + "w": 14, + "h": 16, + "source": "font" + }, + { + "char": "⊃", + "x": 1301, + "y": 205, + "w": 14, + "h": 17, + "source": "font" + }, + { + "char": "∴", + "x": 1317, + "y": 205, + "w": 13, + "h": 11, + "source": "font" + }, + { + "char": "∴", + "x": 1332, + "y": 205, + "w": 13, + "h": 12, + "source": "font" + }, + { + "char": "∵", + "x": 1347, + "y": 205, + "w": 13, + "h": 12, + "source": "font" + }, + { + "char": "∵", + "x": 1362, + "y": 205, + "w": 13, + "h": 12, + "source": "font" + }, + { + "char": "∂", + "x": 1377, + "y": 205, + "w": 11, + "h": 18, + "source": "font" + }, + { + "char": "∂", + "x": 1390, + "y": 205, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "№", + "x": 1404, + "y": 205, + "w": 18, + "h": 18, + "source": "font" + }, + { + "char": "№", + "x": 1424, + "y": 205, + "w": 19, + "h": 19, + "source": "font" + }, + { + "char": "♭", + "x": 1445, + "y": 205, + "w": 10, + "h": 19, + "source": "font" + }, + { + "char": "♭", + "x": 1457, + "y": 205, + "w": 11, + "h": 20, + "source": "font" + }, + { + "char": "♀", + "x": 1470, + "y": 205, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "♀", + "x": 1484, + "y": 205, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "♂", + "x": 1498, + "y": 205, + "w": 15, + "h": 18, + "source": "font" + }, + { + "char": "♂", + "x": 1515, + "y": 205, + "w": 15, + "h": 19, + "source": "font" + }, + { + "char": "◎", + "x": 1532, + "y": 205, + "w": 18, + "h": 18, + "source": "font" + }, + { + "char": "◎", + "x": 1552, + "y": 205, + "w": 19, + "h": 19, + "source": "font" + }, + { + "char": "◇", + "x": 1573, + "y": 205, + "w": 15, + "h": 20, + "source": "font" + }, + { + "char": "◇", + "x": 2, + "y": 230, + "w": 16, + "h": 20, + "source": "font" + }, + { + "char": "◆", + "x": 20, + "y": 230, + "w": 15, + "h": 18, + "source": "font" + }, + { + "char": "◆", + "x": 37, + "y": 230, + "w": 16, + "h": 19, + "source": "font" + }, + { + "char": "△", + "x": 55, + "y": 230, + "w": 16, + "h": 17, + "source": "font" + }, + { + "char": "△", + "x": 73, + "y": 230, + "w": 17, + "h": 18, + "source": "font" + }, + { + "char": "▲", + "x": 92, + "y": 230, + "w": 16, + "h": 15, + "source": "font" + }, + { + "char": "▲", + "x": 110, + "y": 230, + "w": 15, + "h": 16, + "source": "font" + }, + { + "char": "▽", + "x": 127, + "y": 230, + "w": 16, + "h": 17, + "source": "font" + }, + { + "char": "▽", + "x": 145, + "y": 230, + "w": 17, + "h": 18, + "source": "font" + }, + { + "char": "▼", + "x": 164, + "y": 230, + "w": 15, + "h": 16, + "source": "font" + }, + { + "char": "▼", + "x": 181, + "y": 230, + "w": 16, + "h": 16, + "source": "font" + }, + { + "char": "†", + "x": 199, + "y": 230, + "w": 10, + "h": 20, + "source": "font" + }, + { + "char": "†", + "x": 211, + "y": 230, + "w": 10, + "h": 21, + "source": "font" + }, + { + "char": "※", + "x": 223, + "y": 230, + "w": 17, + "h": 18, + "source": "font" + }, + { + "char": "※", + "x": 242, + "y": 230, + "w": 18, + "h": 18, + "source": "font" + }, + { + "char": "™", + "x": 262, + "y": 230, + "w": 14, + "h": 9, + "source": "font" + }, + { + "char": "™", + "x": 278, + "y": 230, + "w": 15, + "h": 10, + "source": "font" + }, + { + "char": "『", + "x": 295, + "y": 230, + "w": 11, + "h": 22, + "source": "font" + }, + { + "char": "『", + "x": 308, + "y": 230, + "w": 11, + "h": 23, + "source": "font" + }, + { + "char": "』", + "x": 321, + "y": 230, + "w": 11, + "h": 22, + "source": "font" + }, + { + "char": "』", + "x": 334, + "y": 230, + "w": 11, + "h": 23, + "source": "font" + }, + { + "char": "【", + "x": 347, + "y": 230, + "w": 9, + "h": 21, + "source": "font" + }, + { + "char": "【", + "x": 358, + "y": 230, + "w": 10, + "h": 22, + "source": "font" + }, + { + "char": "】", + "x": 370, + "y": 230, + "w": 9, + "h": 21, + "source": "font" + }, + { + "char": "】", + "x": 381, + "y": 230, + "w": 10, + "h": 22, + "source": "font" + }, + { + "char": "〈", + "x": 393, + "y": 230, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "〈", + "x": 407, + "y": 230, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "〉", + "x": 421, + "y": 230, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "〉", + "x": 434, + "y": 230, + "w": 12, + "h": 20, + "source": "font" + }, + { + "char": "《", + "x": 448, + "y": 230, + "w": 16, + "h": 19, + "source": "font" + }, + { + "char": "《", + "x": 466, + "y": 230, + "w": 17, + "h": 20, + "source": "font" + }, + { + "char": "》", + "x": 485, + "y": 230, + "w": 16, + "h": 19, + "source": "font" + }, + { + "char": "》", + "x": 503, + "y": 230, + "w": 17, + "h": 20, + "source": "font" + }, + { + "char": "〔", + "x": 522, + "y": 230, + "w": 8, + "h": 21, + "source": "font" + }, + { + "char": "〔", + "x": 532, + "y": 230, + "w": 9, + "h": 22, + "source": "font" + }, + { + "char": "〕", + "x": 543, + "y": 230, + "w": 9, + "h": 21, + "source": "font" + }, + { + "char": "〕", + "x": 554, + "y": 230, + "w": 8, + "h": 22, + "source": "font" + }, + { + "char": "々", + "x": 564, + "y": 230, + "w": 12, + "h": 16, + "source": "font" + }, + { + "char": "々", + "x": 578, + "y": 230, + "w": 14, + "h": 16, + "source": "font" + }, + { + "char": "〆", + "x": 594, + "y": 230, + "w": 15, + "h": 17, + "source": "font" + }, + { + "char": "〆", + "x": 611, + "y": 230, + "w": 16, + "h": 18, + "source": "font" + }, + { + "char": "〇", + "x": 629, + "y": 230, + "w": 16, + "h": 18, + "source": "font" + }, + { + "char": "〇", + "x": 647, + "y": 230, + "w": 16, + "h": 19, + "source": "font" + }, + { + "char": "〃", + "x": 665, + "y": 230, + "w": 13, + "h": 10, + "source": "font" + }, + { + "char": "〃", + "x": 680, + "y": 230, + "w": 14, + "h": 10, + "source": "font" + }, + { + "char": "~", + "x": 696, + "y": 230, + "w": 16, + "h": 9, + "source": "font" + }, + { + "char": "~", + "x": 714, + "y": 230, + "w": 17, + "h": 9, + "source": "font" + } + ] +} \ No newline at end of file diff --git a/public/cv/v1/glyphs/scoreboard-names.png b/public/cv/v1/glyphs/scoreboard-names.png new file mode 100644 index 000000000..718fea35f Binary files /dev/null and b/public/cv/v1/glyphs/scoreboard-names.png differ diff --git a/public/cv/v1/glyphs/scoreboard-paint-digits.json b/public/cv/v1/glyphs/scoreboard-paint-digits.json new file mode 100644 index 000000000..190e0eb5d --- /dev/null +++ b/public/cv/v1/glyphs/scoreboard-paint-digits.json @@ -0,0 +1,381 @@ +{ + "height": 29, + "glyphs": [ + { + "char": "0", + "x": 2, + "y": 2, + "w": 19, + "h": 31, + "source": "fixture" + }, + { + "char": "0", + "x": 23, + "y": 2, + "w": 19, + "h": 30, + "source": "fixture" + }, + { + "char": "0", + "x": 44, + "y": 2, + "w": 20, + "h": 30, + "source": "fixture" + }, + { + "char": "0", + "x": 66, + "y": 2, + "w": 18, + "h": 30, + "source": "fixture" + }, + { + "char": "1", + "x": 86, + "y": 2, + "w": 10, + "h": 30, + "source": "fixture" + }, + { + "char": "1", + "x": 98, + "y": 2, + "w": 10, + "h": 30, + "source": "fixture" + }, + { + "char": "1", + "x": 110, + "y": 2, + "w": 10, + "h": 30, + "source": "fixture" + }, + { + "char": "1", + "x": 122, + "y": 2, + "w": 10, + "h": 30, + "source": "fixture" + }, + { + "char": "2", + "x": 134, + "y": 2, + "w": 18, + "h": 31, + "source": "fixture" + }, + { + "char": "2", + "x": 154, + "y": 2, + "w": 18, + "h": 31, + "source": "fixture" + }, + { + "char": "2", + "x": 174, + "y": 2, + "w": 18, + "h": 30, + "source": "fixture" + }, + { + "char": "2", + "x": 194, + "y": 2, + "w": 18, + "h": 30, + "source": "fixture" + }, + { + "char": "3", + "x": 214, + "y": 2, + "w": 19, + "h": 30, + "source": "fixture" + }, + { + "char": "3", + "x": 235, + "y": 2, + "w": 19, + "h": 30, + "source": "fixture" + }, + { + "char": "3", + "x": 256, + "y": 2, + "w": 19, + "h": 30, + "source": "fixture" + }, + { + "char": "3", + "x": 277, + "y": 2, + "w": 18, + "h": 30, + "source": "fixture" + }, + { + "char": "4", + "x": 297, + "y": 2, + "w": 19, + "h": 30, + "source": "fixture" + }, + { + "char": "4", + "x": 318, + "y": 2, + "w": 19, + "h": 31, + "source": "fixture" + }, + { + "char": "4", + "x": 339, + "y": 2, + "w": 19, + "h": 30, + "source": "fixture" + }, + { + "char": "4", + "x": 360, + "y": 2, + "w": 18, + "h": 30, + "source": "fixture" + }, + { + "char": "5", + "x": 380, + "y": 2, + "w": 18, + "h": 31, + "source": "fixture" + }, + { + "char": "5", + "x": 400, + "y": 2, + "w": 17, + "h": 31, + "source": "fixture" + }, + { + "char": "5", + "x": 419, + "y": 2, + "w": 18, + "h": 30, + "source": "fixture" + }, + { + "char": "5", + "x": 439, + "y": 2, + "w": 18, + "h": 30, + "source": "fixture" + }, + { + "char": "6", + "x": 459, + "y": 2, + "w": 18, + "h": 30, + "source": "fixture" + }, + { + "char": "6", + "x": 479, + "y": 2, + "w": 18, + "h": 30, + "source": "fixture" + }, + { + "char": "6", + "x": 499, + "y": 2, + "w": 18, + "h": 30, + "source": "fixture" + }, + { + "char": "6", + "x": 519, + "y": 2, + "w": 18, + "h": 30, + "source": "fixture" + }, + { + "char": "7", + "x": 539, + "y": 2, + "w": 18, + "h": 30, + "source": "fixture" + }, + { + "char": "7", + "x": 559, + "y": 2, + "w": 17, + "h": 30, + "source": "fixture" + }, + { + "char": "7", + "x": 578, + "y": 2, + "w": 18, + "h": 30, + "source": "fixture" + }, + { + "char": "7", + "x": 598, + "y": 2, + "w": 17, + "h": 29, + "source": "fixture" + }, + { + "char": "8", + "x": 617, + "y": 2, + "w": 18, + "h": 31, + "source": "fixture" + }, + { + "char": "8", + "x": 637, + "y": 2, + "w": 19, + "h": 31, + "source": "fixture" + }, + { + "char": "9", + "x": 658, + "y": 2, + "w": 18, + "h": 31, + "source": "fixture" + }, + { + "char": "9", + "x": 678, + "y": 2, + "w": 18, + "h": 31, + "source": "fixture" + }, + { + "char": "9", + "x": 698, + "y": 2, + "w": 18, + "h": 30, + "source": "fixture" + }, + { + "char": "0", + "x": 718, + "y": 2, + "w": 20, + "h": 31, + "source": "font" + }, + { + "char": "1", + "x": 740, + "y": 2, + "w": 11, + "h": 31, + "source": "font" + }, + { + "char": "2", + "x": 753, + "y": 2, + "w": 18, + "h": 31, + "source": "font" + }, + { + "char": "3", + "x": 773, + "y": 2, + "w": 19, + "h": 31, + "source": "font" + }, + { + "char": "4", + "x": 794, + "y": 2, + "w": 19, + "h": 31, + "source": "font" + }, + { + "char": "5", + "x": 815, + "y": 2, + "w": 17, + "h": 31, + "source": "font" + }, + { + "char": "6", + "x": 834, + "y": 2, + "w": 19, + "h": 31, + "source": "font" + }, + { + "char": "7", + "x": 855, + "y": 2, + "w": 17, + "h": 31, + "source": "font" + }, + { + "char": "8", + "x": 874, + "y": 2, + "w": 19, + "h": 31, + "source": "font" + }, + { + "char": "9", + "x": 895, + "y": 2, + "w": 19, + "h": 31, + "source": "font" + } + ] +} \ No newline at end of file diff --git a/public/cv/v1/glyphs/scoreboard-paint-digits.png b/public/cv/v1/glyphs/scoreboard-paint-digits.png new file mode 100644 index 000000000..d195751ce Binary files /dev/null and b/public/cv/v1/glyphs/scoreboard-paint-digits.png differ diff --git a/public/cv/v1/glyphs/scoreboard-replay-code.json b/public/cv/v1/glyphs/scoreboard-replay-code.json new file mode 100644 index 000000000..b367071f1 --- /dev/null +++ b/public/cv/v1/glyphs/scoreboard-replay-code.json @@ -0,0 +1,1805 @@ +{ + "height": 25, + "glyphs": [ + { + "char": "-", + "x": 2, + "y": 2, + "w": 14, + "h": 8, + "source": "fixture" + }, + { + "char": "-", + "x": 18, + "y": 2, + "w": 15, + "h": 8, + "source": "fixture" + }, + { + "char": "-", + "x": 35, + "y": 2, + "w": 15, + "h": 8, + "source": "fixture" + }, + { + "char": "-", + "x": 52, + "y": 2, + "w": 15, + "h": 8, + "source": "fixture" + }, + { + "char": "-", + "x": 69, + "y": 2, + "w": 15, + "h": 8, + "source": "fixture" + }, + { + "char": "-", + "x": 86, + "y": 2, + "w": 15, + "h": 8, + "source": "fixture" + }, + { + "char": "-", + "x": 103, + "y": 2, + "w": 15, + "h": 8, + "source": "fixture" + }, + { + "char": "-", + "x": 120, + "y": 2, + "w": 15, + "h": 8, + "source": "fixture" + }, + { + "char": "-", + "x": 137, + "y": 2, + "w": 15, + "h": 8, + "source": "fixture" + }, + { + "char": "-", + "x": 154, + "y": 2, + "w": 15, + "h": 8, + "source": "fixture" + }, + { + "char": "-", + "x": 171, + "y": 2, + "w": 15, + "h": 8, + "source": "fixture" + }, + { + "char": "-", + "x": 188, + "y": 2, + "w": 15, + "h": 8, + "source": "fixture" + }, + { + "char": "-", + "x": 205, + "y": 2, + "w": 15, + "h": 8, + "source": "fixture" + }, + { + "char": "-", + "x": 222, + "y": 2, + "w": 15, + "h": 8, + "source": "fixture" + }, + { + "char": "-", + "x": 239, + "y": 2, + "w": 15, + "h": 8, + "source": "fixture" + }, + { + "char": "-", + "x": 256, + "y": 2, + "w": 15, + "h": 8, + "source": "fixture" + }, + { + "char": "-", + "x": 273, + "y": 2, + "w": 15, + "h": 8, + "source": "fixture" + }, + { + "char": "-", + "x": 290, + "y": 2, + "w": 15, + "h": 8, + "source": "fixture" + }, + { + "char": "0", + "x": 307, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "0", + "x": 326, + "y": 2, + "w": 18, + "h": 27, + "source": "fixture" + }, + { + "char": "0", + "x": 346, + "y": 2, + "w": 18, + "h": 27, + "source": "fixture" + }, + { + "char": "0", + "x": 366, + "y": 2, + "w": 18, + "h": 27, + "source": "fixture" + }, + { + "char": "1", + "x": 386, + "y": 2, + "w": 10, + "h": 27, + "source": "fixture" + }, + { + "char": "1", + "x": 398, + "y": 2, + "w": 10, + "h": 27, + "source": "fixture" + }, + { + "char": "1", + "x": 410, + "y": 2, + "w": 10, + "h": 27, + "source": "fixture" + }, + { + "char": "2", + "x": 422, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "3", + "x": 441, + "y": 2, + "w": 18, + "h": 27, + "source": "fixture" + }, + { + "char": "3", + "x": 461, + "y": 2, + "w": 18, + "h": 27, + "source": "fixture" + }, + { + "char": "3", + "x": 481, + "y": 2, + "w": 19, + "h": 27, + "source": "fixture" + }, + { + "char": "3", + "x": 502, + "y": 2, + "w": 18, + "h": 27, + "source": "fixture" + }, + { + "char": "3", + "x": 522, + "y": 2, + "w": 19, + "h": 27, + "source": "fixture" + }, + { + "char": "4", + "x": 543, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "4", + "x": 562, + "y": 2, + "w": 18, + "h": 27, + "source": "fixture" + }, + { + "char": "4", + "x": 582, + "y": 2, + "w": 18, + "h": 27, + "source": "fixture" + }, + { + "char": "4", + "x": 602, + "y": 2, + "w": 18, + "h": 27, + "source": "fixture" + }, + { + "char": "5", + "x": 622, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "5", + "x": 641, + "y": 2, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "5", + "x": 659, + "y": 2, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "6", + "x": 677, + "y": 2, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "6", + "x": 695, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "7", + "x": 714, + "y": 2, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "8", + "x": 732, + "y": 2, + "w": 18, + "h": 28, + "source": "fixture" + }, + { + "char": "9", + "x": 752, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "A", + "x": 771, + "y": 2, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "A", + "x": 789, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "A", + "x": 808, + "y": 2, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "B", + "x": 826, + "y": 2, + "w": 16, + "h": 28, + "source": "fixture" + }, + { + "char": "C", + "x": 844, + "y": 2, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "C", + "x": 862, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "C", + "x": 881, + "y": 2, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "C", + "x": 899, + "y": 2, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "D", + "x": 917, + "y": 2, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "D", + "x": 935, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "D", + "x": 954, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "D", + "x": 973, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "D", + "x": 992, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "E", + "x": 1011, + "y": 2, + "w": 15, + "h": 27, + "source": "fixture" + }, + { + "char": "E", + "x": 1028, + "y": 2, + "w": 15, + "h": 27, + "source": "fixture" + }, + { + "char": "E", + "x": 1045, + "y": 2, + "w": 15, + "h": 27, + "source": "fixture" + }, + { + "char": "E", + "x": 1062, + "y": 2, + "w": 15, + "h": 27, + "source": "fixture" + }, + { + "char": "F", + "x": 1079, + "y": 2, + "w": 15, + "h": 27, + "source": "fixture" + }, + { + "char": "F", + "x": 1096, + "y": 2, + "w": 15, + "h": 27, + "source": "fixture" + }, + { + "char": "F", + "x": 1113, + "y": 2, + "w": 15, + "h": 27, + "source": "fixture" + }, + { + "char": "F", + "x": 1130, + "y": 2, + "w": 14, + "h": 27, + "source": "fixture" + }, + { + "char": "G", + "x": 1146, + "y": 2, + "w": 17, + "h": 28, + "source": "fixture" + }, + { + "char": "G", + "x": 1165, + "y": 2, + "w": 18, + "h": 27, + "source": "fixture" + }, + { + "char": "G", + "x": 1185, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "G", + "x": 1204, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "H", + "x": 1223, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "H", + "x": 1242, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "H", + "x": 1261, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "H", + "x": 1280, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "J", + "x": 1299, + "y": 2, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "J", + "x": 1317, + "y": 2, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "K", + "x": 1335, + "y": 2, + "w": 15, + "h": 27, + "source": "fixture" + }, + { + "char": "K", + "x": 1352, + "y": 2, + "w": 14, + "h": 27, + "source": "fixture" + }, + { + "char": "L", + "x": 1368, + "y": 2, + "w": 11, + "h": 27, + "source": "fixture" + }, + { + "char": "L", + "x": 1381, + "y": 2, + "w": 12, + "h": 27, + "source": "fixture" + }, + { + "char": "L", + "x": 1395, + "y": 2, + "w": 12, + "h": 27, + "source": "fixture" + }, + { + "char": "L", + "x": 1409, + "y": 2, + "w": 12, + "h": 28, + "source": "fixture" + }, + { + "char": "M", + "x": 1423, + "y": 2, + "w": 20, + "h": 27, + "source": "fixture" + }, + { + "char": "M", + "x": 1445, + "y": 2, + "w": 21, + "h": 27, + "source": "fixture" + }, + { + "char": "N", + "x": 1468, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "N", + "x": 1487, + "y": 2, + "w": 18, + "h": 27, + "source": "fixture" + }, + { + "char": "P", + "x": 1507, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "P", + "x": 1526, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "P", + "x": 1545, + "y": 2, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "Q", + "x": 1564, + "y": 2, + "w": 18, + "h": 33, + "source": "fixture" + }, + { + "char": "Q", + "x": 2, + "y": 37, + "w": 18, + "h": 33, + "source": "fixture" + }, + { + "char": "R", + "x": 22, + "y": 37, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "R", + "x": 40, + "y": 37, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "R", + "x": 58, + "y": 37, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "R", + "x": 76, + "y": 37, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "R", + "x": 94, + "y": 37, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "R", + "x": 112, + "y": 37, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "S", + "x": 130, + "y": 37, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "T", + "x": 149, + "y": 37, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "U", + "x": 168, + "y": 37, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "U", + "x": 187, + "y": 37, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "U", + "x": 206, + "y": 37, + "w": 18, + "h": 27, + "source": "fixture" + }, + { + "char": "V", + "x": 226, + "y": 37, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "V", + "x": 244, + "y": 37, + "w": 18, + "h": 27, + "source": "fixture" + }, + { + "char": "V", + "x": 264, + "y": 37, + "w": 17, + "h": 27, + "source": "fixture" + }, + { + "char": "W", + "x": 283, + "y": 37, + "w": 23, + "h": 27, + "source": "fixture" + }, + { + "char": "W", + "x": 308, + "y": 37, + "w": 23, + "h": 27, + "source": "fixture" + }, + { + "char": "W", + "x": 333, + "y": 37, + "w": 23, + "h": 27, + "source": "fixture" + }, + { + "char": "W", + "x": 358, + "y": 37, + "w": 23, + "h": 27, + "source": "fixture" + }, + { + "char": "X", + "x": 383, + "y": 37, + "w": 14, + "h": 27, + "source": "fixture" + }, + { + "char": "X", + "x": 399, + "y": 37, + "w": 14, + "h": 27, + "source": "fixture" + }, + { + "char": "X", + "x": 415, + "y": 37, + "w": 14, + "h": 27, + "source": "fixture" + }, + { + "char": "X", + "x": 431, + "y": 37, + "w": 14, + "h": 27, + "source": "fixture" + }, + { + "char": "X", + "x": 447, + "y": 37, + "w": 15, + "h": 27, + "source": "fixture" + }, + { + "char": "Y", + "x": 464, + "y": 37, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "Y", + "x": 482, + "y": 37, + "w": 16, + "h": 27, + "source": "fixture" + }, + { + "char": "0", + "x": 500, + "y": 37, + "w": 23, + "h": 26, + "source": "font" + }, + { + "char": "0", + "x": 525, + "y": 37, + "w": 24, + "h": 27, + "source": "font" + }, + { + "char": "0", + "x": 551, + "y": 37, + "w": 24, + "h": 28, + "source": "font" + }, + { + "char": "1", + "x": 577, + "y": 37, + "w": 16, + "h": 26, + "source": "font" + }, + { + "char": "1", + "x": 595, + "y": 37, + "w": 17, + "h": 27, + "source": "font" + }, + { + "char": "1", + "x": 614, + "y": 37, + "w": 17, + "h": 28, + "source": "font" + }, + { + "char": "2", + "x": 633, + "y": 37, + "w": 21, + "h": 26, + "source": "font" + }, + { + "char": "2", + "x": 656, + "y": 37, + "w": 22, + "h": 27, + "source": "font" + }, + { + "char": "2", + "x": 680, + "y": 37, + "w": 22, + "h": 28, + "source": "font" + }, + { + "char": "3", + "x": 704, + "y": 37, + "w": 22, + "h": 26, + "source": "font" + }, + { + "char": "3", + "x": 728, + "y": 37, + "w": 23, + "h": 27, + "source": "font" + }, + { + "char": "3", + "x": 753, + "y": 37, + "w": 24, + "h": 28, + "source": "font" + }, + { + "char": "4", + "x": 779, + "y": 37, + "w": 23, + "h": 27, + "source": "font" + }, + { + "char": "4", + "x": 804, + "y": 37, + "w": 23, + "h": 27, + "source": "font" + }, + { + "char": "4", + "x": 829, + "y": 37, + "w": 24, + "h": 28, + "source": "font" + }, + { + "char": "5", + "x": 855, + "y": 37, + "w": 22, + "h": 26, + "source": "font" + }, + { + "char": "5", + "x": 879, + "y": 37, + "w": 23, + "h": 27, + "source": "font" + }, + { + "char": "5", + "x": 904, + "y": 37, + "w": 23, + "h": 28, + "source": "font" + }, + { + "char": "6", + "x": 929, + "y": 37, + "w": 23, + "h": 26, + "source": "font" + }, + { + "char": "6", + "x": 954, + "y": 37, + "w": 24, + "h": 27, + "source": "font" + }, + { + "char": "6", + "x": 980, + "y": 37, + "w": 24, + "h": 28, + "source": "font" + }, + { + "char": "7", + "x": 1006, + "y": 37, + "w": 21, + "h": 26, + "source": "font" + }, + { + "char": "7", + "x": 1029, + "y": 37, + "w": 22, + "h": 27, + "source": "font" + }, + { + "char": "7", + "x": 1053, + "y": 37, + "w": 23, + "h": 28, + "source": "font" + }, + { + "char": "8", + "x": 1078, + "y": 37, + "w": 23, + "h": 26, + "source": "font" + }, + { + "char": "8", + "x": 1103, + "y": 37, + "w": 24, + "h": 27, + "source": "font" + }, + { + "char": "8", + "x": 1129, + "y": 37, + "w": 24, + "h": 28, + "source": "font" + }, + { + "char": "9", + "x": 1155, + "y": 37, + "w": 23, + "h": 26, + "source": "font" + }, + { + "char": "9", + "x": 1180, + "y": 37, + "w": 23, + "h": 27, + "source": "font" + }, + { + "char": "9", + "x": 1205, + "y": 37, + "w": 24, + "h": 28, + "source": "font" + }, + { + "char": "A", + "x": 1231, + "y": 37, + "w": 27, + "h": 27, + "source": "font" + }, + { + "char": "A", + "x": 1260, + "y": 37, + "w": 28, + "h": 27, + "source": "font" + }, + { + "char": "A", + "x": 1290, + "y": 37, + "w": 29, + "h": 28, + "source": "font" + }, + { + "char": "B", + "x": 1321, + "y": 37, + "w": 23, + "h": 26, + "source": "font" + }, + { + "char": "B", + "x": 1346, + "y": 37, + "w": 24, + "h": 27, + "source": "font" + }, + { + "char": "B", + "x": 1372, + "y": 37, + "w": 25, + "h": 28, + "source": "font" + }, + { + "char": "C", + "x": 1399, + "y": 37, + "w": 25, + "h": 26, + "source": "font" + }, + { + "char": "C", + "x": 1426, + "y": 37, + "w": 26, + "h": 27, + "source": "font" + }, + { + "char": "C", + "x": 1454, + "y": 37, + "w": 27, + "h": 28, + "source": "font" + }, + { + "char": "D", + "x": 1483, + "y": 37, + "w": 25, + "h": 26, + "source": "font" + }, + { + "char": "D", + "x": 1510, + "y": 37, + "w": 26, + "h": 27, + "source": "font" + }, + { + "char": "D", + "x": 1538, + "y": 37, + "w": 27, + "h": 28, + "source": "font" + }, + { + "char": "E", + "x": 1567, + "y": 37, + "w": 22, + "h": 26, + "source": "font" + }, + { + "char": "E", + "x": 2, + "y": 72, + "w": 22, + "h": 27, + "source": "font" + }, + { + "char": "E", + "x": 26, + "y": 72, + "w": 23, + "h": 28, + "source": "font" + }, + { + "char": "F", + "x": 51, + "y": 72, + "w": 20, + "h": 26, + "source": "font" + }, + { + "char": "F", + "x": 73, + "y": 72, + "w": 20, + "h": 28, + "source": "font" + }, + { + "char": "F", + "x": 95, + "y": 72, + "w": 21, + "h": 28, + "source": "font" + }, + { + "char": "G", + "x": 118, + "y": 72, + "w": 25, + "h": 26, + "source": "font" + }, + { + "char": "G", + "x": 145, + "y": 72, + "w": 26, + "h": 27, + "source": "font" + }, + { + "char": "G", + "x": 173, + "y": 72, + "w": 27, + "h": 28, + "source": "font" + }, + { + "char": "H", + "x": 202, + "y": 72, + "w": 24, + "h": 26, + "source": "font" + }, + { + "char": "H", + "x": 228, + "y": 72, + "w": 25, + "h": 28, + "source": "font" + }, + { + "char": "H", + "x": 255, + "y": 72, + "w": 25, + "h": 28, + "source": "font" + }, + { + "char": "I", + "x": 282, + "y": 72, + "w": 11, + "h": 26, + "source": "font" + }, + { + "char": "I", + "x": 295, + "y": 72, + "w": 11, + "h": 27, + "source": "font" + }, + { + "char": "I", + "x": 308, + "y": 72, + "w": 12, + "h": 28, + "source": "font" + }, + { + "char": "J", + "x": 322, + "y": 72, + "w": 16, + "h": 27, + "source": "font" + }, + { + "char": "J", + "x": 340, + "y": 72, + "w": 16, + "h": 28, + "source": "font" + }, + { + "char": "J", + "x": 358, + "y": 72, + "w": 17, + "h": 29, + "source": "font" + }, + { + "char": "K", + "x": 377, + "y": 72, + "w": 24, + "h": 26, + "source": "font" + }, + { + "char": "K", + "x": 403, + "y": 72, + "w": 25, + "h": 27, + "source": "font" + }, + { + "char": "K", + "x": 430, + "y": 72, + "w": 26, + "h": 28, + "source": "font" + }, + { + "char": "L", + "x": 458, + "y": 72, + "w": 20, + "h": 26, + "source": "font" + }, + { + "char": "L", + "x": 480, + "y": 72, + "w": 21, + "h": 27, + "source": "font" + }, + { + "char": "L", + "x": 503, + "y": 72, + "w": 22, + "h": 28, + "source": "font" + }, + { + "char": "M", + "x": 527, + "y": 72, + "w": 28, + "h": 26, + "source": "font" + }, + { + "char": "M", + "x": 557, + "y": 72, + "w": 29, + "h": 27, + "source": "font" + }, + { + "char": "M", + "x": 588, + "y": 72, + "w": 30, + "h": 28, + "source": "font" + }, + { + "char": "N", + "x": 620, + "y": 72, + "w": 24, + "h": 26, + "source": "font" + }, + { + "char": "N", + "x": 646, + "y": 72, + "w": 25, + "h": 27, + "source": "font" + }, + { + "char": "N", + "x": 673, + "y": 72, + "w": 25, + "h": 28, + "source": "font" + }, + { + "char": "O", + "x": 700, + "y": 72, + "w": 26, + "h": 26, + "source": "font" + }, + { + "char": "O", + "x": 728, + "y": 72, + "w": 27, + "h": 27, + "source": "font" + }, + { + "char": "O", + "x": 757, + "y": 72, + "w": 28, + "h": 28, + "source": "font" + }, + { + "char": "P", + "x": 787, + "y": 72, + "w": 22, + "h": 27, + "source": "font" + }, + { + "char": "P", + "x": 811, + "y": 72, + "w": 23, + "h": 27, + "source": "font" + }, + { + "char": "P", + "x": 836, + "y": 72, + "w": 24, + "h": 28, + "source": "font" + }, + { + "char": "Q", + "x": 862, + "y": 72, + "w": 27, + "h": 32, + "source": "font" + }, + { + "char": "Q", + "x": 891, + "y": 72, + "w": 28, + "h": 33, + "source": "font" + }, + { + "char": "Q", + "x": 921, + "y": 72, + "w": 29, + "h": 34, + "source": "font" + }, + { + "char": "R", + "x": 952, + "y": 72, + "w": 23, + "h": 27, + "source": "font" + }, + { + "char": "R", + "x": 977, + "y": 72, + "w": 24, + "h": 27, + "source": "font" + }, + { + "char": "R", + "x": 1003, + "y": 72, + "w": 25, + "h": 28, + "source": "font" + }, + { + "char": "S", + "x": 1030, + "y": 72, + "w": 23, + "h": 26, + "source": "font" + }, + { + "char": "S", + "x": 1055, + "y": 72, + "w": 24, + "h": 27, + "source": "font" + }, + { + "char": "S", + "x": 1081, + "y": 72, + "w": 24, + "h": 28, + "source": "font" + }, + { + "char": "T", + "x": 1107, + "y": 72, + "w": 22, + "h": 26, + "source": "font" + }, + { + "char": "T", + "x": 1131, + "y": 72, + "w": 23, + "h": 27, + "source": "font" + }, + { + "char": "T", + "x": 1156, + "y": 72, + "w": 24, + "h": 28, + "source": "font" + }, + { + "char": "U", + "x": 1182, + "y": 72, + "w": 24, + "h": 27, + "source": "font" + }, + { + "char": "U", + "x": 1208, + "y": 72, + "w": 25, + "h": 28, + "source": "font" + }, + { + "char": "U", + "x": 1235, + "y": 72, + "w": 25, + "h": 29, + "source": "font" + }, + { + "char": "V", + "x": 1262, + "y": 72, + "w": 26, + "h": 26, + "source": "font" + }, + { + "char": "V", + "x": 1290, + "y": 72, + "w": 26, + "h": 27, + "source": "font" + }, + { + "char": "V", + "x": 1318, + "y": 72, + "w": 27, + "h": 28, + "source": "font" + }, + { + "char": "W", + "x": 1347, + "y": 72, + "w": 33, + "h": 26, + "source": "font" + }, + { + "char": "W", + "x": 1382, + "y": 72, + "w": 34, + "h": 27, + "source": "font" + }, + { + "char": "W", + "x": 1418, + "y": 72, + "w": 35, + "h": 28, + "source": "font" + }, + { + "char": "X", + "x": 1455, + "y": 72, + "w": 25, + "h": 26, + "source": "font" + }, + { + "char": "X", + "x": 1482, + "y": 72, + "w": 25, + "h": 27, + "source": "font" + }, + { + "char": "X", + "x": 1509, + "y": 72, + "w": 26, + "h": 28, + "source": "font" + }, + { + "char": "Y", + "x": 1537, + "y": 72, + "w": 24, + "h": 26, + "source": "font" + }, + { + "char": "Y", + "x": 1563, + "y": 72, + "w": 26, + "h": 27, + "source": "font" + }, + { + "char": "Y", + "x": 2, + "y": 108, + "w": 27, + "h": 28, + "source": "font" + }, + { + "char": "Z", + "x": 31, + "y": 108, + "w": 22, + "h": 26, + "source": "font" + }, + { + "char": "Z", + "x": 55, + "y": 108, + "w": 23, + "h": 27, + "source": "font" + }, + { + "char": "Z", + "x": 80, + "y": 108, + "w": 23, + "h": 28, + "source": "font" + }, + { + "char": "-", + "x": 105, + "y": 108, + "w": 15, + "h": 8, + "source": "font" + }, + { + "char": "-", + "x": 122, + "y": 108, + "w": 15, + "h": 9, + "source": "font" + }, + { + "char": "-", + "x": 139, + "y": 108, + "w": 16, + "h": 9, + "source": "font" + } + ] +} \ No newline at end of file diff --git a/public/cv/v1/glyphs/scoreboard-replay-code.png b/public/cv/v1/glyphs/scoreboard-replay-code.png new file mode 100644 index 000000000..9cf145926 Binary files /dev/null and b/public/cv/v1/glyphs/scoreboard-replay-code.png differ diff --git a/public/cv/v1/glyphs/scoreboard-replay-result.json b/public/cv/v1/glyphs/scoreboard-replay-result.json new file mode 100644 index 000000000..5062bec50 --- /dev/null +++ b/public/cv/v1/glyphs/scoreboard-replay-result.json @@ -0,0 +1,517 @@ +{ + "height": 30, + "glyphs": [ + { + "char": "W", + "x": 2, + "y": 2, + "w": 39, + "h": 31, + "source": "font" + }, + { + "char": "W", + "x": 43, + "y": 2, + "w": 40, + "h": 32, + "source": "font" + }, + { + "char": "I", + "x": 85, + "y": 2, + "w": 12, + "h": 31, + "source": "font" + }, + { + "char": "I", + "x": 99, + "y": 2, + "w": 13, + "h": 32, + "source": "font" + }, + { + "char": "N", + "x": 114, + "y": 2, + "w": 27, + "h": 31, + "source": "font" + }, + { + "char": "N", + "x": 143, + "y": 2, + "w": 28, + "h": 32, + "source": "font" + }, + { + "char": "L", + "x": 173, + "y": 2, + "w": 23, + "h": 31, + "source": "font" + }, + { + "char": "L", + "x": 198, + "y": 2, + "w": 24, + "h": 32, + "source": "font" + }, + { + "char": "O", + "x": 224, + "y": 2, + "w": 31, + "h": 31, + "source": "font" + }, + { + "char": "O", + "x": 257, + "y": 2, + "w": 32, + "h": 32, + "source": "font" + }, + { + "char": "S", + "x": 291, + "y": 2, + "w": 27, + "h": 31, + "source": "font" + }, + { + "char": "S", + "x": 320, + "y": 2, + "w": 28, + "h": 32, + "source": "font" + }, + { + "char": "E", + "x": 350, + "y": 2, + "w": 25, + "h": 31, + "source": "font" + }, + { + "char": "E", + "x": 377, + "y": 2, + "w": 25, + "h": 32, + "source": "font" + }, + { + "char": ".", + "x": 404, + "y": 2, + "w": 11, + "h": 9, + "source": "font" + }, + { + "char": ".", + "x": 417, + "y": 2, + "w": 12, + "h": 9, + "source": "font" + }, + { + "char": "i", + "x": 431, + "y": 2, + "w": 11, + "h": 31, + "source": "font" + }, + { + "char": "i", + "x": 444, + "y": 2, + "w": 11, + "h": 32, + "source": "font" + }, + { + "char": "e", + "x": 457, + "y": 2, + "w": 24, + "h": 23, + "source": "font" + }, + { + "char": "e", + "x": 483, + "y": 2, + "w": 25, + "h": 23, + "source": "font" + }, + { + "char": "g", + "x": 510, + "y": 2, + "w": 24, + "h": 31, + "source": "font" + }, + { + "char": "g", + "x": 536, + "y": 2, + "w": 25, + "h": 31, + "source": "font" + }, + { + "char": "!", + "x": 563, + "y": 2, + "w": 14, + "h": 31, + "source": "font" + }, + { + "char": "!", + "x": 579, + "y": 2, + "w": 15, + "h": 32, + "source": "font" + }, + { + "char": "V", + "x": 596, + "y": 2, + "w": 30, + "h": 31, + "source": "font" + }, + { + "char": "V", + "x": 628, + "y": 2, + "w": 31, + "h": 32, + "source": "font" + }, + { + "char": "r", + "x": 661, + "y": 2, + "w": 17, + "h": 23, + "source": "font" + }, + { + "char": "r", + "x": 680, + "y": 2, + "w": 17, + "h": 24, + "source": "font" + }, + { + "char": "l", + "x": 699, + "y": 2, + "w": 11, + "h": 31, + "source": "font" + }, + { + "char": "l", + "x": 712, + "y": 2, + "w": 11, + "h": 32, + "source": "font" + }, + { + "char": "o", + "x": 725, + "y": 2, + "w": 25, + "h": 23, + "source": "font" + }, + { + "char": "o", + "x": 752, + "y": 2, + "w": 26, + "h": 23, + "source": "font" + }, + { + "char": "n", + "x": 780, + "y": 2, + "w": 23, + "h": 23, + "source": "font" + }, + { + "char": "n", + "x": 805, + "y": 2, + "w": 24, + "h": 24, + "source": "font" + }, + { + "char": "C", + "x": 831, + "y": 2, + "w": 30, + "h": 31, + "source": "font" + }, + { + "char": "C", + "x": 863, + "y": 2, + "w": 30, + "h": 32, + "source": "font" + }, + { + "char": "T", + "x": 895, + "y": 2, + "w": 26, + "h": 31, + "source": "font" + }, + { + "char": "T", + "x": 923, + "y": 2, + "w": 27, + "h": 32, + "source": "font" + }, + { + "char": "R", + "x": 952, + "y": 2, + "w": 27, + "h": 31, + "source": "font" + }, + { + "char": "R", + "x": 981, + "y": 2, + "w": 28, + "h": 32, + "source": "font" + }, + { + "char": "Y", + "x": 1011, + "y": 2, + "w": 29, + "h": 31, + "source": "font" + }, + { + "char": "Y", + "x": 1042, + "y": 2, + "w": 30, + "h": 32, + "source": "font" + }, + { + "char": "D", + "x": 1074, + "y": 2, + "w": 29, + "h": 31, + "source": "font" + }, + { + "char": "D", + "x": 1105, + "y": 2, + "w": 30, + "h": 32, + "source": "font" + }, + { + "char": "F", + "x": 1137, + "y": 2, + "w": 23, + "h": 31, + "source": "font" + }, + { + "char": "F", + "x": 1162, + "y": 2, + "w": 23, + "h": 32, + "source": "font" + }, + { + "char": "A", + "x": 1187, + "y": 2, + "w": 32, + "h": 31, + "source": "font" + }, + { + "char": "A", + "x": 1221, + "y": 2, + "w": 33, + "h": 32, + "source": "font" + }, + { + "char": "¡", + "x": 1256, + "y": 2, + "w": 14, + "h": 32, + "source": "font" + }, + { + "char": "¡", + "x": 1272, + "y": 2, + "w": 15, + "h": 32, + "source": "font" + }, + { + "char": "c", + "x": 1289, + "y": 2, + "w": 23, + "h": 23, + "source": "font" + }, + { + "char": "c", + "x": 1314, + "y": 2, + "w": 24, + "h": 23, + "source": "font" + }, + { + "char": "t", + "x": 1340, + "y": 2, + "w": 16, + "h": 30, + "source": "font" + }, + { + "char": "t", + "x": 1358, + "y": 2, + "w": 17, + "h": 30, + "source": "font" + }, + { + "char": "a", + "x": 1377, + "y": 2, + "w": 24, + "h": 23, + "source": "font" + }, + { + "char": "a", + "x": 1403, + "y": 2, + "w": 25, + "h": 23, + "source": "font" + }, + { + "char": "é", + "x": 1430, + "y": 2, + "w": 24, + "h": 33, + "source": "font" + }, + { + "char": "é", + "x": 1456, + "y": 2, + "w": 25, + "h": 33, + "source": "font" + }, + { + "char": "f", + "x": 1483, + "y": 2, + "w": 17, + "h": 31, + "source": "font" + }, + { + "char": "f", + "x": 1502, + "y": 2, + "w": 17, + "h": 32, + "source": "font" + }, + { + "char": "G", + "x": 1521, + "y": 2, + "w": 30, + "h": 31, + "source": "font" + }, + { + "char": "G", + "x": 1553, + "y": 2, + "w": 31, + "h": 32, + "source": "font" + }, + { + "char": "w", + "x": 2, + "y": 37, + "w": 34, + "h": 23, + "source": "font" + }, + { + "char": "w", + "x": 38, + "y": 37, + "w": 35, + "h": 23, + "source": "font" + } + ] +} \ No newline at end of file diff --git a/public/cv/v1/glyphs/scoreboard-replay-result.png b/public/cv/v1/glyphs/scoreboard-replay-result.png new file mode 100644 index 000000000..975a60abb Binary files /dev/null and b/public/cv/v1/glyphs/scoreboard-replay-result.png differ diff --git a/public/cv/v1/glyphs/scoreboard-stat-digits.json b/public/cv/v1/glyphs/scoreboard-stat-digits.json new file mode 100644 index 000000000..a92893ccd --- /dev/null +++ b/public/cv/v1/glyphs/scoreboard-stat-digits.json @@ -0,0 +1,373 @@ +{ + "height": 17, + "glyphs": [ + { + "char": "0", + "x": 2, + "y": 2, + "w": 12, + "h": 19, + "source": "fixture" + }, + { + "char": "0", + "x": 16, + "y": 2, + "w": 12, + "h": 19, + "source": "fixture" + }, + { + "char": "0", + "x": 30, + "y": 2, + "w": 12, + "h": 19, + "source": "fixture" + }, + { + "char": "0", + "x": 44, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "1", + "x": 58, + "y": 2, + "w": 7, + "h": 19, + "source": "fixture" + }, + { + "char": "1", + "x": 67, + "y": 2, + "w": 8, + "h": 19, + "source": "fixture" + }, + { + "char": "1", + "x": 77, + "y": 2, + "w": 7, + "h": 19, + "source": "fixture" + }, + { + "char": "1", + "x": 86, + "y": 2, + "w": 7, + "h": 18, + "source": "fixture" + }, + { + "char": "2", + "x": 95, + "y": 2, + "w": 12, + "h": 19, + "source": "fixture" + }, + { + "char": "2", + "x": 109, + "y": 2, + "w": 11, + "h": 19, + "source": "fixture" + }, + { + "char": "2", + "x": 122, + "y": 2, + "w": 12, + "h": 19, + "source": "fixture" + }, + { + "char": "2", + "x": 136, + "y": 2, + "w": 12, + "h": 19, + "source": "fixture" + }, + { + "char": "3", + "x": 150, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "3", + "x": 164, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "3", + "x": 177, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "3", + "x": 191, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "4", + "x": 205, + "y": 2, + "w": 12, + "h": 19, + "source": "fixture" + }, + { + "char": "4", + "x": 219, + "y": 2, + "w": 11, + "h": 19, + "source": "fixture" + }, + { + "char": "4", + "x": 232, + "y": 2, + "w": 12, + "h": 19, + "source": "fixture" + }, + { + "char": "4", + "x": 246, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "5", + "x": 259, + "y": 2, + "w": 11, + "h": 19, + "source": "fixture" + }, + { + "char": "5", + "x": 272, + "y": 2, + "w": 10, + "h": 19, + "source": "fixture" + }, + { + "char": "5", + "x": 284, + "y": 2, + "w": 11, + "h": 19, + "source": "fixture" + }, + { + "char": "5", + "x": 297, + "y": 2, + "w": 11, + "h": 18, + "source": "fixture" + }, + { + "char": "6", + "x": 310, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "6", + "x": 324, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "6", + "x": 338, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "6", + "x": 352, + "y": 2, + "w": 11, + "h": 17, + "source": "fixture" + }, + { + "char": "7", + "x": 365, + "y": 2, + "w": 11, + "h": 19, + "source": "fixture" + }, + { + "char": "7", + "x": 378, + "y": 2, + "w": 10, + "h": 19, + "source": "fixture" + }, + { + "char": "8", + "x": 390, + "y": 2, + "w": 12, + "h": 19, + "source": "fixture" + }, + { + "char": "8", + "x": 404, + "y": 2, + "w": 11, + "h": 19, + "source": "fixture" + }, + { + "char": "8", + "x": 417, + "y": 2, + "w": 12, + "h": 18, + "source": "fixture" + }, + { + "char": "8", + "x": 431, + "y": 2, + "w": 11, + "h": 19, + "source": "fixture" + }, + { + "char": "9", + "x": 444, + "y": 2, + "w": 11, + "h": 19, + "source": "fixture" + }, + { + "char": "9", + "x": 457, + "y": 2, + "w": 10, + "h": 18, + "source": "fixture" + }, + { + "char": "0", + "x": 469, + "y": 2, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "1", + "x": 483, + "y": 2, + "w": 7, + "h": 19, + "source": "font" + }, + { + "char": "2", + "x": 492, + "y": 2, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "3", + "x": 506, + "y": 2, + "w": 13, + "h": 19, + "source": "font" + }, + { + "char": "4", + "x": 521, + "y": 2, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "5", + "x": 535, + "y": 2, + "w": 11, + "h": 19, + "source": "font" + }, + { + "char": "6", + "x": 548, + "y": 2, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "7", + "x": 562, + "y": 2, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "8", + "x": 576, + "y": 2, + "w": 12, + "h": 19, + "source": "font" + }, + { + "char": "9", + "x": 590, + "y": 2, + "w": 12, + "h": 19, + "source": "font" + } + ] +} \ No newline at end of file diff --git a/public/cv/v1/glyphs/scoreboard-stat-digits.png b/public/cv/v1/glyphs/scoreboard-stat-digits.png new file mode 100644 index 000000000..56943e3ce Binary files /dev/null and b/public/cv/v1/glyphs/scoreboard-stat-digits.png differ diff --git a/public/cv/v1/glyphs/scoreboard-team-digits.json b/public/cv/v1/glyphs/scoreboard-team-digits.json new file mode 100644 index 000000000..6aa2a7103 --- /dev/null +++ b/public/cv/v1/glyphs/scoreboard-team-digits.json @@ -0,0 +1,149 @@ +{ + "height": 28, + "glyphs": [ + { + "char": "0", + "x": 2, + "y": 2, + "w": 24, + "h": 28, + "source": "fixture" + }, + { + "char": "0", + "x": 28, + "y": 2, + "w": 24, + "h": 28, + "source": "fixture" + }, + { + "char": "0", + "x": 54, + "y": 2, + "w": 24, + "h": 28, + "source": "fixture" + }, + { + "char": "0", + "x": 80, + "y": 2, + "w": 24, + "h": 28, + "source": "fixture" + }, + { + "char": "5", + "x": 106, + "y": 2, + "w": 24, + "h": 29, + "source": "fixture" + }, + { + "char": "5", + "x": 132, + "y": 2, + "w": 23, + "h": 29, + "source": "fixture" + }, + { + "char": "5", + "x": 157, + "y": 2, + "w": 24, + "h": 29, + "source": "fixture" + }, + { + "char": "5", + "x": 183, + "y": 2, + "w": 24, + "h": 29, + "source": "fixture" + }, + { + "char": "0", + "x": 209, + "y": 2, + "w": 25, + "h": 30, + "source": "font" + }, + { + "char": "1", + "x": 236, + "y": 2, + "w": 16, + "h": 30, + "source": "font" + }, + { + "char": "2", + "x": 254, + "y": 2, + "w": 25, + "h": 30, + "source": "font" + }, + { + "char": "3", + "x": 281, + "y": 2, + "w": 24, + "h": 30, + "source": "font" + }, + { + "char": "4", + "x": 307, + "y": 2, + "w": 25, + "h": 30, + "source": "font" + }, + { + "char": "5", + "x": 334, + "y": 2, + "w": 25, + "h": 30, + "source": "font" + }, + { + "char": "6", + "x": 361, + "y": 2, + "w": 26, + "h": 30, + "source": "font" + }, + { + "char": "7", + "x": 389, + "y": 2, + "w": 24, + "h": 30, + "source": "font" + }, + { + "char": "8", + "x": 415, + "y": 2, + "w": 24, + "h": 30, + "source": "font" + }, + { + "char": "9", + "x": 441, + "y": 2, + "w": 27, + "h": 30, + "source": "font" + } + ] +} \ No newline at end of file diff --git a/public/cv/v1/glyphs/scoreboard-team-digits.png b/public/cv/v1/glyphs/scoreboard-team-digits.png new file mode 100644 index 000000000..ea14d67a3 Binary files /dev/null and b/public/cv/v1/glyphs/scoreboard-team-digits.png differ diff --git a/public/cv/v1/planner/manifest.json b/public/cv/v1/planner/manifest.json new file mode 100644 index 000000000..b5d9d8595 --- /dev/null +++ b/public/cv/v1/planner/manifest.json @@ -0,0 +1,132 @@ +{ + "width": 120, + "height": 68, + "cols": 5, + "keys": [ + "0-CB", + "0-RM", + "0-SZ", + "0-TC", + "0-TW", + "1-CB", + "1-RM", + "1-SZ", + "1-TC", + "1-TW", + "2-CB", + "2-RM", + "2-SZ", + "2-TC", + "2-TW", + "3-CB", + "3-RM", + "3-SZ", + "3-TC", + "3-TW", + "4-CB", + "4-RM", + "4-SZ", + "4-TC", + "4-TW", + "5-CB", + "5-RM", + "5-SZ", + "5-TC", + "5-TW", + "6-CB", + "6-RM", + "6-SZ", + "6-TC", + "6-TW", + "7-CB", + "7-RM", + "7-SZ", + "7-TC", + "7-TW", + "8-CB", + "8-RM", + "8-SZ", + "8-TC", + "8-TW", + "9-CB", + "9-RM", + "9-SZ", + "9-TC", + "9-TW", + "10-CB", + "10-RM", + "10-SZ", + "10-TC", + "10-TW", + "11-CB", + "11-RM", + "11-SZ", + "11-TC", + "11-TW", + "12-CB", + "12-RM", + "12-SZ", + "12-TC", + "12-TW", + "13-CB", + "13-RM", + "13-SZ", + "13-TC", + "13-TW", + "14-CB", + "14-RM", + "14-SZ", + "14-TC", + "14-TW", + "15-CB", + "15-RM", + "15-SZ", + "15-TC", + "15-TW", + "16-CB", + "16-RM", + "16-SZ", + "16-TC", + "16-TW", + "17-CB", + "17-RM", + "17-SZ", + "17-TC", + "17-TW", + "18-CB", + "18-RM", + "18-SZ", + "18-TC", + "18-TW", + "19-CB", + "19-RM", + "19-SZ", + "19-TC", + "19-TW", + "20-CB", + "20-RM", + "20-SZ", + "20-TC", + "20-TW", + "21-CB", + "21-RM", + "21-SZ", + "21-TC", + "21-TW", + "22-CB", + "22-RM", + "22-SZ", + "22-TC", + "22-TW", + "23-CB", + "23-RM", + "23-SZ", + "23-TC", + "23-TW", + "24-CB", + "24-RM", + "24-SZ", + "24-TC", + "24-TW" + ] +} diff --git a/public/cv/v1/planner/signatures.png b/public/cv/v1/planner/signatures.png new file mode 100644 index 000000000..98554a195 Binary files /dev/null and b/public/cv/v1/planner/signatures.png differ