on y est presque
59
biblio.html
Normal file
@ -0,0 +1,59 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Bibliothèque de dessins</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<ul class="menu">
|
||||
<li><a href="index.html">Accueil</a></li>
|
||||
<li><a href="create.html">Créer</a></li>
|
||||
<li><a href="biblio.html" class="active">Bibliothèque</a></li>
|
||||
</ul>
|
||||
</header>
|
||||
|
||||
<main id="library" style="padding:20px;">
|
||||
<h1>Ma Bibliothèque de Dessins</h1>
|
||||
<div id="gallery" style="display:flex; flex-wrap:wrap; gap:10px;"></div>
|
||||
</main>
|
||||
|
||||
<script>
|
||||
const gallery = document.getElementById('gallery');
|
||||
|
||||
// Récupérer les dessins enregistrés depuis le localStorage
|
||||
let library = JSON.parse(localStorage.getItem('canvasLibrary') || "[]");
|
||||
|
||||
library.forEach((dataURL, index) => {
|
||||
const container = document.createElement('div');
|
||||
container.style.position = "relative";
|
||||
|
||||
const img = document.createElement('img');
|
||||
img.src = dataURL;
|
||||
img.style.width = "200px";
|
||||
img.style.border = "1px solid #ccc";
|
||||
img.style.borderRadius = "5px";
|
||||
container.appendChild(img);
|
||||
|
||||
// Optionnel : bouton supprimer
|
||||
const delBtn = document.createElement('button');
|
||||
delBtn.textContent = "Supprimer";
|
||||
delBtn.style.position = "absolute";
|
||||
delBtn.style.top = "5px";
|
||||
delBtn.style.right = "5px";
|
||||
delBtn.style.fontSize = "12px";
|
||||
delBtn.style.cursor = "pointer";
|
||||
container.appendChild(delBtn);
|
||||
|
||||
delBtn.onclick = () => {
|
||||
library.splice(index, 1);
|
||||
localStorage.setItem('canvasLibrary', JSON.stringify(library));
|
||||
container.remove();
|
||||
};
|
||||
|
||||
gallery.appendChild(container);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
51
create.html
Normal file
@ -0,0 +1,51 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Créer un paysage</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<script src="https://unpkg.com/paper@0.12.15/dist/paper-full.min.js"></script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- menu du haut -->
|
||||
<header>
|
||||
<nav>
|
||||
<ul class="menu">
|
||||
<li><a href="index.html">Accueil</a></li>
|
||||
<li><a href="create.html" class="active">Créer</a></li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<!-- panneau de controle + canvas -->
|
||||
<div id="app">
|
||||
<div id="controls">
|
||||
<h2>Panneaux de contrôles</h2>
|
||||
<button id="draw-scheme">Tirer un schéma & lettres</button>
|
||||
|
||||
<label for="shape">Choisir une forme :</label>
|
||||
<select id="shape">
|
||||
<option value="free">Libre</option>
|
||||
<option value="spiral">Spirale</option>
|
||||
<option value="circle">Cercle</option>
|
||||
</select>
|
||||
<br><br>
|
||||
|
||||
<button id="clear">Effacer</button>
|
||||
<button id="export">Exporter PNG</button>
|
||||
<br><br>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<canvas id="canvas-typo"></canvas>
|
||||
</div>
|
||||
|
||||
<script src="scripttypo.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
BIN
images/a.png
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
11
images/a.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 146.55 159.9">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M46.65,91.86c-1.5,0-3-1.5-3-3,0-1.2.3-1.8,1.2-2.4,7.8-5.7,18.9-15.3,30-27.3,18.6-20.1,32.4-40.8,27.9-50.1-2.1-5.1-11.4-3-18.3,1.2-5.7,3.3-12,8.4-17.7,12.9-17.1,14.1-41.1,43.8-53.7,72.3-7.5,16.8-14.4,52.8,7.2,54.9,20.1,1.5,49.2-30.3,63-48.3l4.5-6.3,4.5-14.1c4.5-14.4,11.1-31.5,16.2-42.6,4.2-9,9.9-16.8,15.9-9.3,4.5,5.4,0,16.5-2.4,23.1-.6,1.8-1.8,4.2-3.6,7.8l-7.5,12c-5.1,8.1-12,18-17.4,25.5-4.5,14.4-8.1,28.5-6.3,41.4.9,5.7,2.7,12,10.8,13.8,10.2,2.4,28.2-6,43.5-21.9.6-.9,1.2-.9,2.1-.9,1.5,0,3,1.2,3,3,0,.6-.6,1.5-.9,1.8-16.5,17.1-36.3,27-48.9,24-11.1-2.4-14.7-12.9-15.6-19.2-1.2-8.7,0-18.6,2.4-28.8-15.3,18.6-42.9,46.5-63.9,45-28.2-2.7-20.1-45.3-12-63.3,13.2-29.7,37.8-60,55.5-74.7,5.7-4.5,12.6-10.2,18.3-13.5,8.1-4.8,22.2-8.7,26.7,1.8,6.3,12.9-9.9,36-29.1,56.7-11.4,12.3-22.8,22.2-30.6,27.9-.3.3-.9.6-1.8.6ZM106.05,69.67l6.9-12c1.8-3.6,3-6,3-6.6,2.4-6.3,5.7-15.3,3.6-17.7-1.2-1.5-3,2.4-5.7,8.1-4.5,9.9-10.2,24.3-14.4,37.8l6.6-9.6Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
BIN
images/b.png
Normal file
|
After Width: | Height: | Size: 6.9 KiB |
11
images/b.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 152.79 229.86">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M43.5,187.77c-2.1,0-3.3-2.1-3-3.6,1.5-7.5,4.8-15.9,6.9-19.8,8.1-15.9,22.5-34.5,34.2-45.3,20.4-18,42.3-28.8,58.5-23.1,5.7,1.8,9.3,5.7,11.7,12.3,2.1,6.6.9,15.6-3.9,27.3-6.9,21.9-31.2,55.8-55.2,75.9-13.5,10.2-32.4,25.5-53.4,14.7-22.5-11.4-17.1-44.4-6-75.9,7.2-20.1,16.8-40.2,24.9-56.1l-1.2,1.2c-19.8,21.9-41.4,39.9-52.2,48-.3.3-1.2.9-1.8.9-1.5,0-3-1.5-3-3,0-1.2.3-1.8,1.2-2.4,10.5-8.1,31.8-25.8,51.6-47.7,5.4-6,12-14.4,18.3-22.5,11.7-22.2,21.3-39,28.2-48.9,14.4-22.5,27-27,18.3-7.2-4.2,8.4-22.8,35.1-40.5,57.9l-3,6c-7.5,14.7-24.3,44.4-35.4,75.6-10.5,30.3-15.3,59.1,3.6,68.7,17.4,9,33.3-3.9,46.8-14.1,23.4-19.5,46.5-51.6,53.4-72.9,4.2-10.5,5.4-18.9,3.9-23.7-1.8-4.8-4.8-7.5-8.1-8.7-13.2-4.5-32.7,4.5-52.5,21.9-11.7,10.8-24.9,28.2-33,44.1-1.8,3.3-5.1,10.8-6.6,18-.3,1.5-1.5,2.4-2.7,2.4Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
BIN
images/c.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
11
images/c.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 123.2 155.39">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M120.2,114c1.8,0,3,1.2,3,3,0,.9-.3,1.8-.9,2.4l-8.7,6.6c-6.3,4.8-15.6,10.5-27.3,16.5-26.1,13.5-54.3,16.2-68.4,9-9.3-5.1-20.4-18.9-17.4-42.3,2.4-19.2,13.2-42.9,27.9-61.2C49.1,22.8,81.8-6.3,101,1.2c22.2,9,.3,47.4-24.9,53.7-1.5.3-3.6-.9-3.6-3,0-1.2.9-2.4,2.1-2.7,21-5.1,38.7-36.6,24-42.6C84.2.9,53.6,26.7,33.2,51.6c-14.7,18.3-24.3,39.6-26.7,58.2-2.4,20.4,6.3,31.8,14.4,36.3,11.7,6,37.5,3.9,62.4-9,11.7-6,20.4-11.1,26.7-15.9l8.4-6.6c.3-.3,1.2-.6,1.8-.6Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 715 B |
BIN
images/d.png
Normal file
|
After Width: | Height: | Size: 7.3 KiB |
11
images/d.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 215.89 229.38">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M212.89,178.63c1.5,0,3,1.5,3,3,0,.9-.6,1.8-.9,2.1l-18,18c-14.4,13.8-30.3,25.2-46.8,24.3-17.7-.9-24.6-15-24.6-35.1,0-16.8,4.2-36.6,9.3-55.5-18,26.7-35.4,48.3-40.8,55.2-6.3,8.1-21.9,23.1-42,33.9-15.9,8.1-36,5.7-44.4-4.5-4.2-6.3-7.2-14.4-7.5-21.9-2.1-30.6,13.2-66.3,39.6-91.5,25.8-24.6,53.7-30.6,71.7-14.4.6.6,1.2,1.5,1.2,2.4,0,1.5-1.5,3-3,3-.9,0-1.8-.6-2.1-.9-15.6-13.8-39.6-8.7-63.6,14.1-25.8,24.6-39.9,57.9-37.8,86.7.3,7.5,2.1,12.6,6.3,18.9,6.6,7.8,23.1,9.6,36.6,2.7,20.1-10.8,33.9-24,40.2-32.1,6.6-8.4,30.3-37.8,51.6-72.3l4.5-14.7c5.7-18,10.8-32.4,14.4-41.7l7.5-19.2c12.6-35.1,25.5-47.1,25.5-33.9s-13.5,50.7-30.3,84c-4.8,9.3-10.5,18.9-15.9,27.6-7.8,25.2-15,52.5-15,74.1,0,17.7,5.1,28.2,19.2,29.1,14.1.9,27.6-8.7,42-22.5l18-18c.3-.3,1.2-.9,2.1-.9ZM157.09,86.23c16.8-33.3,29.7-69.3,29.7-81,0,3-3.6,6.9-14.1,35.7l-7.5,19.8c-2.7,6.9-6.3,17.1-10.2,29.4l2.1-3.9Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
BIN
images/e.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
11
images/e.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.37 155.7">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M113.96,129.9c1.5,0,3,1.5,3,3,0,.9-.6,1.8-.9,2.1-12.3,13.5-33.6,20.7-50.4,20.7-22.8,0-41.4-13.8-41.4-37.2,0-9.6,3.9-21.3,10.2-33.3l-8.1-.6c-11.7-2.1-22.5-6.3-26.1-14.7-.9-2.4.6-4.2,3-4.2,1.2,0,2.1.3,2.7,1.8,2.4,5.7,10.8,9.3,21,11.1,3.3.3,7.5.6,10.8.6C60.26,40.5,104.37-.3,126.57,0c8.7,0,13.8,5.7,13.8,13.5,0,18.9-30,42.9-44.1,52.8-17.4,12-35.7,18-55.2,18.6-6.6,12-10.8,24-10.8,33.6,0,19.8,15.6,31.2,35.4,31.2,15.6,0,34.8-6.6,45.9-18.9.6-.6,1.5-.9,2.4-.9ZM92.66,61.5c14.1-9.9,41.7-32.1,41.7-48,0-4.8-3-7.5-7.8-7.5-19.5-.3-60,37.2-81.9,72.9,17.4-1.2,33.3-7.2,48-17.4Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 832 B |
BIN
images/f.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
11
images/f.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 196.8 396.49">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M196.8,199.93c0,1.2-.9,2.1-1.5,2.4-16.2,9.6-30.6,16.5-43.8,21-18,5.7-33.6,7.5-45.9,7.2,8.4,12.6,14.7,30,18,51.3,3.9,29.1,2.4,57.3-2.7,78-5.4,21.6-15,35.7-26.4,36.6-9.9.6-18-3.3-23.1-11.7-9-15.3-9.9-44.4-6.3-79.2,1.8-15.9,8.1-43.5,17.7-78.9-22.2-8.1-24.6-24.6-7.5-19.8,4.2,1.2,7.8,2.7,11.7,5.1l10.8-38.4,7.2-24.3c-.6.3-.9.6-.9.6-22.5,21.9-45.3,40.5-64.5,52.5-17.1,11.1-29.7,16.8-36.9,15.9-1.2,0-2.7-1.5-2.7-3,0-1.8,1.5-3.3,3.6-3,3.6.6,14.4-3,33-14.7,18.6-12,40.8-30,63.3-51.9l8.4-8.7c12.9-43.5,25.8-84.6,30.6-100.2C146.1,16.03,153.6-1.67,167.7.13c14.7,2.1,13.8,21.3,10.5,35.4-8.7,35.7-33.6,72-63.9,104.1l-10.5,35.7-11.4,40.2c3,2.4,5.7,5.1,8.4,8.4,12.3,1.2,28.5,0,48.9-6.6,12.6-4.2,27-10.8,42.6-20.1,1.5-.9,4.5,0,4.5,2.7ZM93.9,390.43c7.8-.6,16.2-12.6,21-31.8,5.1-20.7,6.6-47.1,2.7-76.2-3.6-23.1-10.5-40.5-19.8-52.5-3-.3-6-.9-9-1.8-9.6,35.4-16.2,62.7-17.7,78-3.6,34.8-2.7,61.5,5.7,75.6,3.9,6.6,9,9.3,17.1,8.7ZM84.3,220.63c.3-1.2.6-1.5.9-2.7-3.6-2.4-7.5-3.9-11.7-5.1-6.3-1.8-5.4,2.7,10.8,7.8ZM90.9,222.43l-.3-.3c0-.3-.3,0-.3,0l.6.3ZM172.2,34.33c3.3-13.5,4.2-26.7-5.1-28.2-9.3-1.2-15.6,12.9-22.2,32.4-4.5,14.4-15.3,48.9-27,88.2,26.4-29.4,46.8-61.5,54.3-92.4Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
BIN
images/g.png
Normal file
|
After Width: | Height: | Size: 8.6 KiB |
11
images/g.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 203.39 321.11">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M200.47,150.63c-1.2,0-1.8-.3-2.4-1.2-1.2-1.8-2.7-3-5.7-4.8-4.5-3-10.8-3.6-17.7-2.7.6,10.8-1.2,21.9-3.6,32.1-7.5,31.5-24,62.1-39.9,89.4-17.1,29.4-36,56.4-51.3,57.6-25.2,2.1-34.8-37.5-34.8-55.5,0-35.7,29.1-71.7,59.4-96,4.5-3.9,28.2-19.5,50.4-28.2,4.8-1.8,9-3.3,13.2-4.2-1.2-6.6-3.6-11.7-7.8-15.3-12-10.8-29.1-12.9-47.7-9-46.8,9.6-87.3,49.2-102.9,42.3-17.7-7.8-8.7-34.2,7.8-61.5C36.97,60.93,80.47-1.47,119.47.03c8.7,0,18,3,21.9,14.4,4.2,12.9-3.9,34.5-27.6,70.8-.6.6-1.5,1.2-2.7,1.2-2.7,0-3.6-2.7-2.4-4.5,23.1-35.4,30.6-55.2,27.3-65.7-2.7-7.8-9.3-10.2-16.5-10.2-36-1.5-77.1,57.9-96.6,90.6C7.27,122.43-.23,144.33,12.07,149.73c11.4,5.1,51-33,99.3-42.9,19.2-3.9,38.7-2.4,53.1,10.2,5.1,4.5,8.4,11.7,9.6,19.2,8.4-1.2,15.3-.6,21.3,3.6,3.3,1.8,6,3.9,7.5,6.3,1.2,1.5.3,4.5-2.4,4.5ZM79.27,315.03c12.3-1.2,30-26.4,46.5-54.6,15.9-27.3,31.8-56.7,39.3-87.6,2.4-10.2,3.9-20.7,3.6-29.7-3.9.9-7.5,2.1-11.4,3.6-22.2,8.7-44.7,23.7-49.2,27.6-29.7,23.7-57,57.9-57,91.2,0,16.8,9,51,28.2,49.5Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
BIN
images/h.png
Normal file
|
After Width: | Height: | Size: 9.8 KiB |
11
images/h.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 182.6 232.36">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M129.31,232.36c-1.8,0-3.3-1.5-3-3.3.3-2.4,1.5-6,3.3-9.9l9.9-19.5c11.4-21.3,26.1-42.9,18.6-59.7-9.9-22.5-59.4,10.8-90.3,33.3-24.9,18.3-46.2,42-51,46.5-5.4,5.4-9,8.1-11.7,8.4-3.6.6-6-1.8-4.8-5.1,3.3-9.6,14.4-28.8,29.7-53.1-7.5,5.1-15.3,9.3-21.6,11.4-1.8.6-3.9-.3-3.9-3,0-1.2.9-2.4,1.8-2.7,9-3,20.7-10.5,32.4-19.5l8.1-12.3C63.01,118.96,150.61-14.84,178.81,1.36c4.5,2.7,5.1,7.8,1.2,15.3-13.8,26.1-80.7,90.9-100.5,111.3-10.5,10.5-23.7,22.5-36.9,32.7-17.1,26.7-29.4,47.4-34.8,59.1,1.5-1.2,3-2.4,4.8-4.2,4.8-4.5,26.7-28.8,51.6-47.1,30.9-22.5,85.8-61.2,99.3-30.9,8.7,19.8-7.2,43.8-18.6,65.1l-9.9,18.9c-1.8,3.9-2.7,6.3-3,8.1,0,1.2-1.2,2.7-2.7,2.7ZM75.31,123.76c19.8-20.4,86.1-85.2,99.3-110.1,2.4-4.5,2.4-6.3,1.2-6.9-20.4-11.7-102.3,107.4-122.4,137.4,8.1-6.9,15.3-13.8,21.9-20.4Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
BIN
images/i.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
11
images/i.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128.7 156.14">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M125.7,119.83c1.8,0,3,1.2,3,3,0,.6-.3,1.2-.6,1.5-7.5,10.2-30.3,30.9-54.3,31.8-3.6,0-10.8.6-20.4-6.6-5.7-4.2-12.9-14.4-10.2-33,3.6-20.7,12.3-39,18-53.7-21.6,22.5-43.8,40.5-58.2,41.4-1.5,0-3-1.2-3-3,0-1.5,1.5-3,3-3,11.4-.6,33.3-17.7,54.9-40.5l9.6-10.2,6-13.2c11.7-25.2,20.4-41.1,25.2-31.5,3.6,8.1-8.4,27.6-26.4,48l-.3.9-3,7.2c-5.1,15.3-15.9,36-19.8,58.8-2.1,15,3.3,23.7,7.8,27,7.2,5.4,13.2,5.4,16.8,5.4,21.6-.9,43.2-20.4,49.5-29.1.6-.9,1.5-1.2,2.4-1.2ZM93.3,5.23c.6,1.2-3,7.8-9.9,22.2,7.5-10.8,11.1-19.5,9.9-22.2Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 778 B |
BIN
images/j.png
Normal file
|
After Width: | Height: | Size: 9.8 KiB |
11
images/j.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 142.2 228.21">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M142.2,66.43c0,1.5-.9,2.7-2.7,3-12,1.5-29.7,4.5-49.2,17.4-4.2,39.6-9,79.2-18.3,104.1-6.3,18.3-14.4,35.7-30.6,37.2-21.6,1.8-34.2-27.9-29.4-50.4,3.3-15,13.8-33.3,30.6-53.7,12.3-14.7,27.3-30.3,42-40.2l.6-6.6,2.4-24.9c-14.1,21-30.9,38.7-45.6,41.7-9.3,1.8-19.2-.9-27.9-12.3C6.3,71.53.3,52.03,0,20.53c0-1.5,1.5-3,3-3,1.8,0,3,1.5,3,3,.3,30.6,5.7,48.3,12.9,57.6,6.9,9,15,11.1,21.9,9.9,13.8-2.7,31.5-22.5,45.6-45.3l2.7-4.5C91.5,18.43,95.1.73,102.3.13c10.2-1.8,6.6,15.9-6.6,39.3-1.8,12.9-3.3,26.4-4.5,38.4l-.3,1.8c18.9-11.7,36.3-14.7,48-16.2,1.8-.3,3.3,1.2,3.3,3ZM40.8,222.13c12-.9,19.5-15.3,25.8-33,8.4-23.1,12.9-59.7,17.1-97.5-12.3,9.3-25.2,22.8-36.3,36-16.8,20.4-26.1,36.9-29.4,51.3-4.2,19.5,7.2,44.4,22.8,43.2ZM102.9,6.13c-1.2,0-3,6-4.5,14.7,4.5-9.6,6-15,4.5-14.7Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
BIN
images/k.png
Normal file
|
After Width: | Height: | Size: 8.7 KiB |
11
images/k.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 152.7 231.21">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M0,160.6c0-1.2,1.2-2.4,2.1-2.7,9.9-4.2,26.4-13.5,45.3-28.5l8.1-16.2C93,37.9,119.7-2.3,133.5.1c14.1,2.7,8.7,24.3-13.2,57.3-12.3,18.3-28.5,38.4-45.3,55.2-7.5,7.5-14.7,14.1-22.2,20.1-9.9,20.1-17.4,37.5-23.1,51.3l11.7-15c20.7-27,67.2-74.7,83.1-60,9.3,7.5,5.1,20.7-19.5,41.7l-4.8,4.2c6-2.4,11.4-3.3,14.1-.9,6.3,5.7,4.2,16.5.3,27.9-5.4,16.2-10.8,31.2.6,37.2,6.3,3.3,13.5,1.5,17.4,0,4.5-2.1,8.1-3.9,11.7-6.3,1.8-1.2,3-2.1,3.6-2.7.3-.3,1.2-.6,1.8-.6,1.8,0,3,1.5,3,3,0,.9-.3,1.8-.9,2.4l-3.9,2.7c-3.6,2.4-8.4,4.8-12.9,6.9-3.9,1.5-14.1,4.5-22.8,0-15.6-8.4-8.4-28.8-3-44.4,3.3-10.2,4.8-18,.9-21.3-5.4-4.8-40.8,24.9-46.2,19.5-6.9-6.9,3.6-6.6,16.8-15.6,5.1-3.6,15.6-12.9,20.1-16.8,22.5-18.9,24.9-27.9,19.5-32.1-10.5-9.9-54.3,33-74.1,58.8-10.2,13.2-18.3,23.1-24.6,30.9-7.8,19.5-12,28.8-16.8,27.6-8.7-2.1-3.6-10.8,10.5-28.8,5.1-13.5,13.2-33.6,26.4-61.2-15.6,11.4-28.8,18.6-37.5,22.2-1.5.6-4.2-.6-4.2-2.7ZM8.7,219.7c-2.7,3.6-3.6,5.1-2.7,5.4.3,0,1.2-1.5,2.7-5.4ZM70.8,108.4c16.8-16.8,32.4-36.3,44.7-54.6,20.4-30.6,23.4-46.5,16.8-47.7-7.2-1.2-33.9,34.8-71.4,110.1l-1.5,3,11.4-10.8Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
BIN
images/l.png
Normal file
|
After Width: | Height: | Size: 8.1 KiB |
11
images/l.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.96 225.45">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M47.1,225.45c-1.2,0-2.1-.6-2.7-2.1-7.2-18.6-4.8-48.9,4.2-81.9-14.7,11.1-30,20.4-44.4,26.4-2.1.9-4.2-.9-4.2-3,0-1.2.9-2.4,1.8-2.7,16.5-6.9,33-17.7,49.5-30.9,5.7-18.6,13.2-37.5,21.9-54.9C97.5,28.05,132.9-13.35,147.6,4.05c9.9,10.8-12.9,47.4-39.3,79.2-15.6,18.6-33.3,36.6-51.9,51.6-10.2,35.1-13.2,68.4-6.3,86.4.9,2.1-.9,4.2-3,4.2ZM103.5,79.65c26.4-31.8,45-65.4,39.3-71.4-9-11.1-41.1,24.6-64.2,70.5-7.2,14.4-13.5,30-18.6,45.3,15.3-13.2,30.3-28.5,43.5-44.4Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 719 B |
BIN
images/m.png
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
11
images/m.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 183.87 151.54">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M180.87,107.51c1.5,0,3,1.5,3,3,0,.6-.3,1.2-.6,1.8-12.6,16.8-29.1,47.4-42.3,37.2-9.3-6.9-3.9-33,.9-59.7,4.5-24.9,9.3-51.3,3-57.9-6-7.2-15.9,5.4-26.4,29.1-7.5,16.2-13.8,34.5-19.2,50.1-5.7,15.9-5.1,32.4-13.2,31.8-9.6-.6,2.7-20.7,11.7-55.2,8.7-34.5,15.3-77.4,2.4-77.4-11.7,0-27.3,22.8-40.8,52.8-21.6,46.8-31.5,85.8-35.7,85.8-7.5,0,5.1-26.7,13.5-56.7C48.87,51.71,56.37,10.61,45.57,6.41,35.37,1.91,12.87,25.61,5.67,44.51c-.3.9-1.5,1.8-2.7,1.8-2.1,0-3.6-1.8-2.7-3.9C8.07,21.7,32.97-5.59,47.97,1c13.8,5.4,9.6,36.6,1.5,69.6l4.5-9.9c14.1-31.2,30.6-56.4,46.2-56.4,18,0,14.7,34.2,8.1,65.7l4.8-11.4c11.4-25.5,25.2-44.4,36.6-30.9,8.7,9.6,2.7,38.4-1.8,63.3-4.8,26.7-8.4,49.8-3.3,53.7,6.6,5.1,21-18.9,33.9-36,.6-.9,1.2-1.2,2.4-1.2Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 983 B |
BIN
images/n.png
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
11
images/n.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 156.9 155.21">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M153.9,108.06c1.5,0,3,1.5,3,3,0,.9-.3,1.5-.6,1.8-20.1,28.8-45.6,46.8-61.2,41.4-18.6-6.3-12.9-34.5-1.5-65.1,5.1-14.7,32.4-80.1,23.4-83.1-9.9-3.3-31.2,18-50.1,49.8C34.5,110.46,18.6,151.26,6.9,149.46c-13.5-2.4.6-21.3,14.4-56.4C30.9,69.06,53.4,9.06,41.7,8.46c-13.2-.9-23.4,13.2-36.6,27-.3.3-1.5.9-2.1.9-1.8,0-3-1.2-3-3,0-.6.3-1.8.6-2.1C13.5,18.06,25.8,1.26,42.3,2.46c22.5,1.2-5.4,67.5-15.6,93-13.2,33.6-22.2,47.4-18.6,48,3.9.6,21-36,53.4-90.6C80.7,20.76,104.1-4.44,118.8.66c18,6-14.4,75-19.8,90.3-11.1,30-15,53.4-2.1,57.9,11.7,3.9,35.1-11.7,54.6-39.3.6-.9,1.5-1.5,2.4-1.5Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 835 B |
BIN
images/o.png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
11
images/o.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 117.53 161.14">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M117.53,63.64c0,1.5-1.5,3-2.7,3-2.7.3-5.1.3-7.2.3-2.4,13.5-6.9,26.4-12.6,38.4-16.2,33-40.2,55.8-58.5,55.8-15.9-.3-33.3-13.8-36-44.1-2.4-25.8,3.6-49.2,13.5-66.9C25.43,30.04,40.13,16.84,50.33,12.94c1.5-.6,3.9.9,3.9,2.7,0,1.5-.9,2.7-1.8,3-8.4,3-22.2,15.6-33,34.5-9.3,16.5-15.3,38.1-12.9,63.3,2.7,27.9,17.1,38.4,30,38.7,15.3,0,37.5-20.4,53.1-52.2,5.7-12,9.9-24.3,12-36.6-13.2-2.1-23.1-8.7-28.5-16.2-12-16.2-9.9-37.2.9-45.9C77.63,1.24,82.73-.26,87.83.04c11.7,1.2,19.5,14.4,21.3,36,.6,7.8.6,16.2-.6,24.9,1.5,0,3.6,0,5.7-.3,1.2,0,3.3,1.2,3.3,3ZM102.53,60.34c1.2-8.1,1.2-15.9.6-23.7-1.8-20.4-9-30-15.9-30.6-3.9-.3-6.6.6-9.6,3-7.8,6.3-9.9,23.7.3,37.5,4.5,6.3,13.5,12.3,24.6,13.8Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 938 B |
BIN
images/p.png
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
11
images/p.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 204.9 232.77">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M201.9,78.57c2.4,0,3.6,2.7,2.7,4.5-11.7,21.3-37.2,54.9-51.9,55.5-8.7.3-18-5.4-17.4-20.1.3-15,11.1-34.8,19.5-54.3,11.7-28.5,21.9-52.5,12.9-55.8-8.7-3.6-46.2,37.2-76.2,96.3-16.5,32.4-52.5,128.1-59.1,128.1-9.9,0,4.8-22.8,34.8-93.6,15-35.1,28.5-63.9,39.3-88.2,9-21.6,16.2-40.2,14.1-43.8-2.7-4.8-19.5,8.4-43.8,36.9C48.9,77.37,17.1,120.27,5.1,130.47c-.3.3-1.2.9-2.1.9-1.5,0-3-1.5-3-3,0-.9.6-1.8,1.2-2.4,9.9-8.1,42.6-51.6,70.8-85.5C97.5,10.77,118.8-9.03,126,4.17c3.9,6.6-5.1,27.6-14.1,49.2l-5.7,12.9C132,25.17,158.7-1.83,170.1,2.97c15.6,5.7,1.8,35.1-9.9,63.6-8.4,19.5-18.6,38.1-18.9,51.9-.6,11.1,4.5,14.4,11.4,14.1,11.1-.6,35.1-31.8,46.5-52.5.3-.6,1.5-1.5,2.7-1.5Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 924 B |
BIN
images/paysage_typo (1).png
Normal file
|
After Width: | Height: | Size: 63 KiB |
BIN
images/paysage_typo.png
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
images/q.png
Normal file
|
After Width: | Height: | Size: 6.6 KiB |
11
images/q.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 136.36 228.4">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M69.04,228.4c-1.8,0-3.3-1.5-3-3.3,1.2-9,7.5-37.5,36-93.9,13.2-26.1,22.2-49.5,26.1-68.7,3.9-18.9,2.1-27.9-3.6-28.5h-.9c-3,8.1-7.2,17.1-12.3,27-18,35.1-49.5,83.4-66,90.9-11.4,4.8-22.2-2.4-22.2-19.2,0-14.7,5.1-34.5,11.1-51,8.7-24,19.2-45,23.7-54-4.8,7.2-15.6,20.1-27.6,38.4-10.5,16.2-19.8,32.7-24.9,42.3-.6,1.2-1.5,1.8-2.7,1.8-2.4,0-3.3-2.7-2.4-4.5,5.4-10.2,14.7-26.7,25.2-42.6,17.4-26.7,39.6-54.3,40.8-41.1.6,4.2-15,29.1-26.7,61.5-6,17.1-10.5,35.1-10.5,49.2,0,12.6,6.6,16.8,13.8,13.8,14.1-6.3,45-53.4,63-88.5,4.2-8.1,7.8-15.6,10.2-21.6-4.5,2.1-9.3,5.1-14.7,9-14.7,10.2-33,22.5-38.4,8.4-2.7-6.6,1.5-17.1,9-27.3C84.34,9.7,103.24-3.2,120.64.7c8.1,1.8,9.6,11.4,4.8,27.3,11.1,1.5,13.2,13.8,8.7,35.7-3.9,19.2-13.5,44.4-26.7,70.5-28.8,56.7-34.2,83.4-35.4,91.5-.3,1.8-1.5,2.7-3,2.7ZM97.84,40.6c7.2-5.1,14.7-10.2,21-12,4.5-13.5,4.2-21,.6-21.9-15-3.3-31.5,8.4-42.6,23.4-6.9,9.6-9.9,17.7-8.4,21.3,2.7,6.9,14.7-.6,29.4-10.8Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
BIN
images/r.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
11
images/r.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 105.3 156.78">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M102.3,122.58c1.8,0,3,1.2,3,3,0,.6-.3,1.5-.6,1.8-14.4,17.7-38.7,29.4-50.1,29.4-8.7,0-13.2-5.4-14.4-11.7-1.8-10.8,3.9-29.4,14.1-48.6,17.1-32.7,30.6-48.6,28.8-51.3-1.2-1.8-8.1,11.1-24.3,14.1-6.9,1.2-11.4-.6-13.2-4.2-10.5,12-24,26.4-40.5,42.9-.3.3-1.2.9-2.1.9-1.5,0-3-1.5-3-3,0-.9.6-1.8.9-2.1,18.3-18.3,32.7-33.6,43.5-46.5.6-9.3,6-21.6,11.7-31.2,4.5-6.6,15.3-22.2,20.4-13.5,4.8,6.9-8.7,26.4-26.1,47.1.6,2.7,2.7,4.5,7.2,3.6,14.7-2.7,23.7-21.3,30.3-11.7,5.4,8.1-11.1,25.2-28.2,57.9-9.6,18-15.3,34.8-13.5,44.4.6,3.9,3.3,6.9,8.4,6.9,9.9,0,32.1-11.1,45.3-27.3.6-.6,1.5-.9,2.4-.9ZM71.7,5.57c-.6-.9-7.5,9-10.8,13.5-3.9,6.9-7.2,13.8-9,19.2,13.5-17.1,21.3-30.3,19.8-32.7Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 926 B |
BIN
images/s.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
11
images/s.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100.65 152.26">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M1.2,96.49c10.8-10.2,37.8-33.3,61.5-58.8l.9-.9c-2.1-2.4-3.6-4.8-4.5-7.8-2.7-12,13.5-32.4,24.6-28.5,5.1,1.8,7.8,6.6,2.7,16.5-3,5.4-8.1,12.3-14.4,19.5,9.6,8.4,26.4,17.7,28.5,33.3,1.5,11.4-8.1,33.9-24.3,54.9-16.2,21-32.4,33.3-40.8,24.9-10.5-11.1,1.2-32.4,17.7-51.9,14.1-16.8,30-30.3,38.7-34.8-5.4-8.7-15.9-14.7-24-21.9l-.9.9c-23.7,25.5-51,48.9-61.8,59.1-.3.3-1.2.9-2.1.9-1.5,0-3-1.5-3-3,0-.9.6-1.8,1.2-2.4ZM71.4,121.09c15.6-20.4,24.6-40.5,23.1-50.7,0-.6-.3-1.5-.3-2.1-7.2,3.9-22.5,16.8-36.3,33-16.2,19.2-25.2,36.6-18.3,44.1,3.9,3.9,17.1-5.4,31.8-24.3ZM67.5,32.29c6.3-7.2,10.5-12.9,13.5-18.3,2.7-5.1,2.4-7.5.9-8.1-6.3-2.1-18.9,13.5-16.8,21.9.3,1.2,1.2,3,2.4,4.5Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 926 B |
BIN
images/t.png
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
11
images/t.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 146.49 229.2">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M110.19,184.5c1.8,0,3,1.2,3,3,0,.9-.3,1.8-1.2,2.4-19.8,14.1-57,39.3-81.9,39.3-33.9,0-36.3-29.4-21.3-61.8,8.1-17.1,19.5-37.2,33-57l-12-1.5c-1.2,0-2.4-1.2-2.4-2.7,0-1.8,1.5-3.3,3.3-3l15,1.8,6.9-9.9C101.79,27.9,135.39,6,126.09,6c-6,0-28.2,8.4-86.7,66.6-.6.6-1.5.9-2.1.9-1.8,0-3-1.2-3-3,0-.6.3-1.5.9-2.1C95.19,8.7,118.29,0,126.09,0c27,0-17.7,29.1-68.7,98.7l-4.8,6.6c9,.6,19.2,1.2,27.9,1.2,27.3,0,54-2.4,61.5-6.3,1.8-.9,4.5.3,4.5,2.7,0,1.2-.6,2.1-1.8,2.7-10.2,5.1-37.5,6.9-64.2,6.9-9.9,0-21.3-.6-31.8-1.5-14.1,20.4-26.1,41.1-34.5,58.8-13.2,28.8-12.6,53.4,15.9,53.4,22.8,0,58.5-24.3,78.3-38.4.6-.3,1.2-.3,1.8-.3Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 873 B |
BIN
images/u.png
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
11
images/u.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 151.39 172.01">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M140.1,157.24c1.8,0,3,1.2,3,3,0,.9-.3,1.8-.6,2.1-9.6,9.3-21,12.3-28.5,7.2-18.9-12.3-14.4-43.2-2.4-74.1,7.2-20.4,16.8-40.2,24.3-55.8,3-6.3,5.4-12.3,7.5-16.2-8.7,11.1-28.8,40.2-36.6,51-25.8,36.3-63.6,87.6-84.3,80.1-16.5-5.7-11.4-33.9-1.2-63.3C34.2,53.74,49.8,23.14,55.2,9.94c-1.8,3-5.1,6.6-10.8,13.5-11.1,12.9-25.2,28.8-39.3,43.2-.3.3-1.2.9-2.1.9-1.5,0-3-1.5-3-3,0-.9.6-1.8.9-2.1,13.8-14.1,27.9-30,38.7-42.6,11.7-13.8,24.3-27.6,23.4-14.7-1.2,8.1-21,43.5-36.3,87.9-9.9,29.1-13.5,52.2-2.4,56.1,15.9,5.7,51.9-42,77.7-78.3,9.9-13.8,38.7-57.9,45.6-57.9,8.7,0,.6,14.7-6.3,29.1-7.5,15.6-17.1,35.4-24.3,55.2-11.4,29.7-14.7,57.6,0,67.5,4.8,3,13.8.6,21-6.6.6-.6,1.5-.9,2.1-.9Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 932 B |
BIN
images/v.png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
11
images/v.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 118.8 155.38">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M118.8,65.53c0,1.2-.9,2.4-2.1,2.7-3.9.9-7.8,1.2-12,.9-7.2-.3-14.1-3.6-17.4-11.7l-5.7,11.7c-19.8,38.7-52.5,93.3-72.6,85.5-14.4-5.7-7.5-38.7.9-69.3,5.1-19.2,10.8-35.7,15.3-50.1,4.2-13.2,6.6-25.2,5.7-25.8-.3-.3,0-.9-6,4.5-5.4,5.1-11.4,12.6-19.5,23.4-.6.9-1.2,1.2-2.4,1.2-1.5,0-3-1.5-3-3,0-.6.3-1.5.6-1.8C8.7,22.93,15,15.13,20.7,9.73c8.4-7.5,12.9-7.5,15.3-3.3,3,4.8-.9,18-4.8,30.6-4.5,14.4-10.2,30.9-15.3,50.1-8.4,30.3-12.9,58.8-4.5,62.1,14.1,5.4,45-44.4,64.8-83.1l9.3-19.2.3-4.2c2.4-18.6,7.5-31.8,12.3-38.4,13.8-12.6,13.2,2.4-6.3,44.1.3,10.2,5.4,14.1,13.5,14.7,3.9.3,6.6.3,9.9-.6,1.5-.3,3.6.9,3.6,3Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 863 B |
BIN
images/w.png
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
11
images/w.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 142.16 154.42">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M132.95,82.12c0,1.5-1.8,3-3,3-4.5,0-7.8-1.2-10.8-3.6-19.8,43.2-45,79.8-64.8,71.7-9-3.6-10.2-16.2-7.5-30.9-12.9,18.6-26.7,32.4-36,32.1-12.9-1.2-13.2-21.3-6.6-46.2,6.9-25.8,21.9-60.3,46.5-98.4.6-.6,1.5-1.2,2.7-1.2,2.7,0,3.6,2.7,2.4,4.5C31.25,50.92,16.85,84.82,10.25,110.02c-6,22.5-5.1,37.8,1.2,38.4,8.7.6,25.2-19.8,40.5-45.3l3.3-9.6c11.1-30.9,22.2-52.5,28.5-48,4.5,3-6,24.6-24.3,57l-2.7,4.5c-6.3,21-7.2,37.8,0,40.8,14.7,6,39-28.8,58.2-71.4-4.2-7.8-4.5-19.2-1.8-31.8C117.65,21.22,128.15,1.42,135.05.22c12.9-3,7.2,25.5-8.7,64.5l-4.8,11.1c2.1,2.1,4.8,3.3,8.4,3.3,1.2,0,3,1.2,3,3ZM120.95,62.32c14.4-35.1,17.7-56.7,15.3-56.1-3,.6-12.6,16.2-17.1,39.6-1.8,8.7-2.4,16.8-.9,22.8l2.7-6.3Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 944 B |
BIN
images/x.png
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
11
images/x.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 189.32 157.68">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M173.7,129.01c2.7,0,3.9,2.7,2.7,4.5-10.8,16.2-36,32.4-62.4,19.5-15.3-7.5-22.2-21.3-22.5-36.9-11.1,19.8-30.3,36.3-62.1,40.8-18,2.7-29.1-6-25.8-18,6.6-21.9,53.7-48,95.1-69.9,2.7-30.3-3.6-59.4-6.9-62.7-3.9-4.2-26.1,12.3-42.3,23.1C28.8,43.2,12,54.6,4.2,57.9c-2.1.9-4.2-.6-4.2-2.7,0-1.2.6-2.1,1.8-2.7,5.4-2.4,22.5-13.5,44.1-27.9C62.1,13.8,87.6-6.6,96,2.1c4.5,4.5,11.1,32.7,9,63.6l1.8-.9C130.5,23.7,173.7-7.8,186.9,7.2c12,13.8-22.8,33.9-57.9,52.8l-17.7,9.6c-.3.3-.9,1.2-1.2,1.8-17.1,31.5-18.9,63.9,6.3,76.2,22.8,11.1,45-2.4,54.9-17.4.6-.9,1.5-1.2,2.4-1.2ZM28.8,150.9c40.5-5.7,58.8-32.7,66-60,1.2-4.5,2.1-9.3,3-14.1C58.2,97.8,15,122.4,9.6,140.7c-2.1,7.5,5.4,12.3,19.2,10.2ZM126,54.6c33.9-18.3,62.4-36.3,56.1-43.2-7.5-8.7-41.7,14.1-64.5,47.7l8.4-4.5Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1010 B |
BIN
images/y.png
Normal file
|
After Width: | Height: | Size: 7.8 KiB |
11
images/y.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 173.06 284.5">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M166.87,114.63c0,1.5-1.5,2.7-2.7,2.7-13.5,1.5-37.5,14.1-64.5,33.3l-10.5,21.6c-15.3,30.3-30.6,58.5-40.8,79.2-15.3,31.2-18.9,36.3-26.1,31.5-40.5-27,4.2-81.9,53.1-121.2,6.3-5.1,13.5-10.5,19.8-15l11.4-23.4,21.9-44.4c7.2-15,13.2-28.5,18.3-40.2l-17.4,20.4c-31.8,37.2-80.4,93-103.2,93C7.27,152.13-.83,137.74.07,117.03,1.87,86.73,19.87,45.33,46.27,10.83c.6-.6,1.5-.9,2.4-.9,1.8,0,3,1.2,3,3,0,.6-.3,1.5-.6,1.8C25.27,48.63,7.87,88.23,6.07,117.63c-.9,18.3,5.4,28.5,20.1,28.5,19.2,0,66.6-53.4,98.4-90.6l30.9-36C161.47,6.93,166.57-.57,170.17.03c6.3,1.5,1.8,8.7-8.7,21.6-6,13.2-15.6,34.8-27.6,59.7l-21.9,44.4-6.9,13.8c24-15.9,45.3-26.4,58.5-27.9,1.8-.3,3.3,1.2,3.3,3ZM42.97,249.04c10.2-20.7,25.5-48.9,40.8-79.2l5.7-11.4-10.5,8.1c-47.4,38.1-88.2,88.2-53.1,111.6.9.6,3.6-1.5,17.1-29.1Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
BIN
images/z.png
Normal file
|
After Width: | Height: | Size: 6.9 KiB |
11
images/z.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Calque_1" data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 207.42 230.43">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1d1d1b;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M207.42,122.69c0,2.4-2.4,3.3-4.2,2.7-12.3-4.2-28.8-4.5-48-1.5,8.7,9.3,14.1,19.5,14.1,30.9,0,33.6-47.4,58.5-84.9,68.1-39.6,10.2-70.8,10.2-81.3-.9-11.7-13.2,11.1-46.2,42.6-64.8,27-16.5,63.3-30.6,96.3-37.2-12-9.3-26.4-16.2-40.2-19.5-50.1-12-101.4-.6-82.5-12.9,4.5-3,27.6-8.7,81-23.7,36.3-10.2,60-28.2,62.7-41.4,3.3-15.6-30.6-19.2-66-15-25.5,2.7-48.6,9.3-61.2,8.1-1.2,0-2.7-1.2-2.7-3,0-1.5,1.2-3,3.3-2.7,10.5.9,33.6-5.7,60-8.4,36.9-4.2,77.1-.3,72.6,22.2-3.3,16.2-28.8,35.4-66.9,46.2-33,9.3-54,14.7-66,18,12.3-1.8,33.9-1.2,66.9,6.6,16.2,3.9,33.6,12.3,46.8,24,21.6-3.6,41.4-3.6,55.5,1.2.9.3,2.1,1.5,2.1,3ZM83.22,216.89c35.7-9,80.1-32.7,80.1-62.1,0-10.8-6.3-21-15.6-29.7-33,6-71.1,20.4-99,37.5C19.02,179.99.12,209.69,7.32,217.79c8.7,9.3,37.5,9,75.9-.9Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1013 B |
33
index.html
Normal file
@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Paysages Typographiques</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- menu du haut -->
|
||||
<header>
|
||||
<nav>
|
||||
<ul class="menu">
|
||||
<li><a href="index.html">Accueil</a></li>
|
||||
<li><a href="create.html">Créer</a></li>
|
||||
|
||||
</ul>
|
||||
</header>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<!-- accueil -->
|
||||
<main class="home">
|
||||
<h1>Créer ton "paysage"</h1>
|
||||
<p>Explore cet univers typographique et transforme les lettres en paysages perceptifs.</p>
|
||||
<a href="create.html" class="btn">Commencer</a>
|
||||
</main>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
73
json
Normal file
@ -0,0 +1,73 @@
|
||||
paper.install(window);
|
||||
|
||||
window.onload = function() {
|
||||
var canvas = document.getElementById('myCanvas');
|
||||
paper.setup(canvas);
|
||||
|
||||
var firstPoint = new Point(20, 40);
|
||||
var secondPoint = new Point(200,300);
|
||||
console.log(secondPoint); // { x: 20, y: 40 }
|
||||
|
||||
secondPoint.y = 20;
|
||||
console.log(secondPoint); // { x: 20, y: 20 }
|
||||
|
||||
console.log(firstPoint); // { x: 20, y: 40 }
|
||||
// console.log("Line from", firstPoint, "to", secondPoint);
|
||||
var path = new Path.Line(firstPoint, secondPoint);
|
||||
path.strokeColor = 'black';
|
||||
console.log(Path.Line);
|
||||
|
||||
paper.view.draw();
|
||||
};
|
||||
|
||||
// comme 0 = haut gauche de ma page en js, et que le 0 de ma lettre est diff je dois rajouter au x de ma lettre la diff
|
||||
// qu'il y a par rapport à l'endroit ou je veux que ma lettre soit et faire la même chose avec y (mais soustraire)
|
||||
|
||||
const letterAnchors = {
|
||||
A: { begin: new Point(0, 228), end: new Point(142, 0) },
|
||||
B: { begin: new Point(0, 228), end: new Point(122, 0) },
|
||||
C: { begin: new Point(0, 225), end: new Point(149, 0) },
|
||||
D: { begin: new Point(0, 151), end: new Point(183, 0) },
|
||||
E: { begin: new Point(0, 155), end: new Point(156, 0) },
|
||||
F: { begin: new Point(0, 161), end: new Point(117, 0) },
|
||||
G: { begin: new Point(0, 232), end: new Point(204, 0) },
|
||||
H: { begin: new Point(0, 228), end: new Point(136, 0) },
|
||||
I: { begin: new Point(0, 156), end: new Point(105, 0) },
|
||||
J: { begin: new Point(0, 152), end: new Point(100, 0) },
|
||||
K: { begin: new Point(0, 229), end: new Point(146, 0) },
|
||||
L: { begin: new Point(0, 172), end: new Point(151, 0) },
|
||||
M: { begin: new Point(0, 155), end: new Point(118, 0) },
|
||||
N: { begin: new Point(0, 82), end: new Point(142, 0) },
|
||||
O: { begin: new Point(0, 129), end: new Point(173, 0) },
|
||||
P: { begin: new Point(0, 122), end: new Point(207, 0) },
|
||||
Q: { begin: new Point(0, 184), end: new Point(146, 0) },
|
||||
R: { begin: new Point(0, 157), end: new Point(151, 0) },
|
||||
S: { begin: new Point(0, 65), end: new Point(118, 0) },
|
||||
T: { begin: new Point(0, 82), end: new Point(142, 0) },
|
||||
U: { begin: new Point(0, 129), end: new Point(173, 0) },
|
||||
V: { begin: new Point(0, 122), end: new Point(207, 0) },
|
||||
W: { begin: new Point(0, 184), end: new Point(146, 0) },
|
||||
X: { begin: new Point(0, 157), end: new Point(151, 0) },
|
||||
Y: { begin: new Point(0, 65), end: new Point(118, 0) },
|
||||
Z: { begin: new Point(0, 82), end: new Point(142, 0) },
|
||||
};
|
||||
|
||||
sequence = scheme.split("").map(s => lettersMap[s]);
|
||||
|
||||
currentPoint = startingPoint; // début du tracé
|
||||
|
||||
sequence.forEach(letter => {
|
||||
let anchors = letterAnchors[letter];
|
||||
let img = new Raster(letterImages[letter]);
|
||||
|
||||
// translation pour rattachement
|
||||
offset = currentPoint.subtract(anchors.begin);
|
||||
img.position = img.position.add(offset);
|
||||
|
||||
// rotation si nécessaire
|
||||
angle = Math.atan2(anchors.end.y - anchors.begin.y, anchors.end.x - anchors.begin.x) * 180/Math.PI;
|
||||
img.rotate(angle);
|
||||
|
||||
// mettre à jour le point pour la lettre suivante
|
||||
currentPoint = currentPoint.add(anchors.end.subtract(anchors.begin));
|
||||
});
|
||||
114
letters/D^1.json
Normal file
@ -0,0 +1,114 @@
|
||||
{
|
||||
"name": "D",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 283,
|
||||
"y": 466
|
||||
},
|
||||
{
|
||||
"x": 53,
|
||||
"y": 445,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -52,
|
||||
"y": 44,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 37,
|
||||
"y": 13,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 127,
|
||||
"y": -18,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 244,
|
||||
"y": 158,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 334,
|
||||
"y": 348,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 422,
|
||||
"y": 534,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 487,
|
||||
"y": 735,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 489,
|
||||
"y": 748,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 495,
|
||||
"y": 782,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 264,
|
||||
"y": 70,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 417,
|
||||
"y": 9,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 472,
|
||||
"y": -13,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 585,
|
||||
"y": 79,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 657,
|
||||
"y": 140
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "92dca7e3-f3b2-4c0e-83a3-5df2ca8a8424",
|
||||
"transformation": {
|
||||
"translateX": -471,
|
||||
"translateY": -783,
|
||||
"scaleX": 0.5307927923335285,
|
||||
"scaleY": 0.5307927923335285
|
||||
},
|
||||
"opacity": 0.27889825406381696
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
99
letters/E^1.json
Normal file
@ -0,0 +1,99 @@
|
||||
{
|
||||
"name": "E",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 503,
|
||||
"y": 103
|
||||
},
|
||||
{
|
||||
"x": 423,
|
||||
"y": -14,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 297,
|
||||
"y": -6,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 243,
|
||||
"y": 33,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 95,
|
||||
"y": 141,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 274,
|
||||
"y": 556,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 372,
|
||||
"y": 494,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 462,
|
||||
"y": 437,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 235,
|
||||
"y": 193,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 89,
|
||||
"y": 179,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 51,
|
||||
"y": 175,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 17,
|
||||
"y": 195,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 220
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "310aefcd-7f69-4388-84bb-5040f1267909",
|
||||
"transformation": {
|
||||
"translateX": -867,
|
||||
"translateY": -940,
|
||||
"scaleX": 0.7360509737576577,
|
||||
"scaleY": 0.7360509737576577
|
||||
},
|
||||
"opacity": 0.09542444310656228
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
105
letters/F^1.json
Normal file
@ -0,0 +1,105 @@
|
||||
{
|
||||
"name": "F",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": -87,
|
||||
"y": 54
|
||||
},
|
||||
{
|
||||
"x": 10,
|
||||
"y": -71,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 644,
|
||||
"y": 577,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 477,
|
||||
"y": 738,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 319,
|
||||
"y": 889,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -139,
|
||||
"y": -260,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 65,
|
||||
"y": -250,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 169,
|
||||
"y": -245,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 109,
|
||||
"y": 267,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 24,
|
||||
"y": 227,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": -76,
|
||||
"y": 180,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 136,
|
||||
"y": -15,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 381,
|
||||
"y": 136,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 622,
|
||||
"y": 284,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "addf0ac2-6425-45db-8fe3-872e06e00a27",
|
||||
"transformation": {
|
||||
"translateX": -795,
|
||||
"translateY": -1064,
|
||||
"scaleX": 0.6507308890037773,
|
||||
"scaleY": 0.6507308890037772
|
||||
},
|
||||
"opacity": 0.16721854304635797
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
165
letters/G^1.json
Normal file
@ -0,0 +1,165 @@
|
||||
{
|
||||
"name": "G",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 304,
|
||||
"y": 239
|
||||
},
|
||||
{
|
||||
"x": 349,
|
||||
"y": 303,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 419,
|
||||
"y": 481,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 349,
|
||||
"y": 495,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 235,
|
||||
"y": 517,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -50,
|
||||
"y": 68,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 164,
|
||||
"y": 5,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 301,
|
||||
"y": -35,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 435,
|
||||
"y": 346,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 453,
|
||||
"y": 367,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 461,
|
||||
"y": 376,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 381,
|
||||
"y": 175,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 323,
|
||||
"y": 0,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 267,
|
||||
"y": -165,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 219,
|
||||
"y": -325,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 201,
|
||||
"y": -324,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 165,
|
||||
"y": -322,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 133,
|
||||
"y": -192,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 159,
|
||||
"y": -135,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 168,
|
||||
"y": -115,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 207,
|
||||
"y": -74,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 262,
|
||||
"y": -34,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 343,
|
||||
"y": 26,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 455,
|
||||
"y": 81,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 505,
|
||||
"y": 86,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 591,
|
||||
"y": 94,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "768dfa66-514b-4c93-be01-a6b29089416e",
|
||||
"transformation": {
|
||||
"translateX": -282.6412073990309,
|
||||
"translateY": -646.4024532370369,
|
||||
"scaleX": 0.3692065644038946,
|
||||
"scaleY": 0.3692065644038945
|
||||
},
|
||||
"opacity": 0.13531005418422604
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
129
letters/H^1.json
Normal file
@ -0,0 +1,129 @@
|
||||
{
|
||||
"name": "H",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": -68,
|
||||
"y": 198
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 215,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 541,
|
||||
"y": 671,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 467,
|
||||
"y": 738,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 383,
|
||||
"y": 814,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -313,
|
||||
"y": 82,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -236,
|
||||
"y": 16,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": -216,
|
||||
"y": -2,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -121,
|
||||
"y": 95,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -7,
|
||||
"y": 175,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 130,
|
||||
"y": 271,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 268,
|
||||
"y": 331,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 327,
|
||||
"y": 303,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 398,
|
||||
"y": 270,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 175,
|
||||
"y": 80,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 249,
|
||||
"y": 20,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 294,
|
||||
"y": -17,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 398,
|
||||
"y": 50,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 521,
|
||||
"y": 123
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "15b906af-0836-4c17-b5b4-703841ca2fbe",
|
||||
"transformation": {
|
||||
"translateX": -1016,
|
||||
"translateY": -1173,
|
||||
"scaleX": 0.8031566583955416,
|
||||
"scaleY": 0.8031566583955416
|
||||
},
|
||||
"opacity": 0.143287176399759
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
125
letters/I^1.json
Normal file
@ -0,0 +1,125 @@
|
||||
{
|
||||
"name": "I",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 20,
|
||||
"y": 259
|
||||
},
|
||||
{
|
||||
"x": 148,
|
||||
"y": 412,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 236,
|
||||
"y": 507,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 342,
|
||||
"y": 497,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 429,
|
||||
"y": 489,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 181,
|
||||
"y": 41,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 220,
|
||||
"y": 2,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 259,
|
||||
"y": -37,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
},
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 449,
|
||||
"y": 641,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 473,
|
||||
"y": 666,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 515,
|
||||
"y": 652,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 482,
|
||||
"y": 616,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 461,
|
||||
"y": 594,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 453,
|
||||
"y": 594,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 444,
|
||||
"y": 597,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 431,
|
||||
"y": 601,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 435,
|
||||
"y": 624,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "e2c65bfc-01e3-476e-988e-ac4a1ac1beec",
|
||||
"transformation": {
|
||||
"translateX": -701,
|
||||
"translateY": -898,
|
||||
"scaleX": 0.6254863695447641,
|
||||
"scaleY": 0.6254863695447641
|
||||
},
|
||||
"opacity": 0.13531005418422604
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
154
letters/J^1.json
Normal file
@ -0,0 +1,154 @@
|
||||
{
|
||||
"name": "J",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 18,
|
||||
"y": 145
|
||||
},
|
||||
{
|
||||
"x": -1,
|
||||
"y": 185,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 134,
|
||||
"y": 471,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 269,
|
||||
"y": 500,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 418,
|
||||
"y": 532,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 205,
|
||||
"y": -289,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 73,
|
||||
"y": -249,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": -83,
|
||||
"y": -202,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 213,
|
||||
"y": 349,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 439,
|
||||
"y": 349,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 665,
|
||||
"y": 349,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
},
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 318,
|
||||
"y": 610,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 318,
|
||||
"y": 627,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 351,
|
||||
"y": 622,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 348,
|
||||
"y": 608,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 344,
|
||||
"y": 594,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 317,
|
||||
"y": 594,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": true
|
||||
},
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 111,
|
||||
"y": 215
|
||||
},
|
||||
{
|
||||
"x": 210,
|
||||
"y": 132,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 147,
|
||||
"y": 95,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 238,
|
||||
"y": 132,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 328,
|
||||
"y": 168,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "7bbed696-7312-4922-a50e-2e3ae8fc2b5d",
|
||||
"transformation": {
|
||||
"translateX": -405.8652874351421,
|
||||
"translateY": -632,
|
||||
"scaleX": 0.4698650913607194,
|
||||
"scaleY": 0.46986509136071947
|
||||
},
|
||||
"opacity": 0.08744732089102947
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
114
letters/L^1.json
Normal file
@ -0,0 +1,114 @@
|
||||
{
|
||||
"name": "L",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 220
|
||||
},
|
||||
{
|
||||
"x": 94,
|
||||
"y": 273,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 167,
|
||||
"y": 332,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 223,
|
||||
"y": 383,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 460,
|
||||
"y": 600,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 526,
|
||||
"y": 755,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 480,
|
||||
"y": 746,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 428,
|
||||
"y": 736,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 248,
|
||||
"y": 320,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 235,
|
||||
"y": 286,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 148,
|
||||
"y": 54,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 185,
|
||||
"y": 18,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 223,
|
||||
"y": 11,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 301,
|
||||
"y": -3,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 399,
|
||||
"y": 140,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 502,
|
||||
"y": 207
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "d4fab780-e8a5-46a7-827e-4a0b559af23d",
|
||||
"transformation": {
|
||||
"translateX": -379,
|
||||
"translateY": -491,
|
||||
"scaleX": 0.440680231655746,
|
||||
"scaleY": 0.440680231655746
|
||||
},
|
||||
"opacity": 0.132751354605659
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
165
letters/M^1.json
Normal file
@ -0,0 +1,165 @@
|
||||
{
|
||||
"name": "M",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 25,
|
||||
"y": 250
|
||||
},
|
||||
{
|
||||
"x": 86,
|
||||
"y": 371,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 158,
|
||||
"y": 485,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 220,
|
||||
"y": 494,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 324,
|
||||
"y": 509,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 103,
|
||||
"y": 84,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 121,
|
||||
"y": 116,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 122,
|
||||
"y": 119,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 194,
|
||||
"y": 288,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 255,
|
||||
"y": 392,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 288,
|
||||
"y": 448,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 335,
|
||||
"y": 474,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 361,
|
||||
"y": 451,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 400,
|
||||
"y": 416,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 238,
|
||||
"y": 172,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 248,
|
||||
"y": 182,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 253,
|
||||
"y": 187,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 299,
|
||||
"y": 282,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 354,
|
||||
"y": 337,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 400,
|
||||
"y": 383,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 470,
|
||||
"y": 420,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 485,
|
||||
"y": 365,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 500,
|
||||
"y": 309,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 365,
|
||||
"y": 62,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 355,
|
||||
"y": 1,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 345,
|
||||
"y": -62,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "f096e289-4fb3-47c4-a0be-c9279144cce7",
|
||||
"transformation": {
|
||||
"translateX": -194,
|
||||
"translateY": -374,
|
||||
"scaleX": 0.3163475915741544,
|
||||
"scaleY": 0.3163475915741544
|
||||
},
|
||||
"opacity": 0.20499698976520198
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
17
letters/N^1.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "N",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"xAdvance": 500
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
81
letters/O^1.json
Normal file
@ -0,0 +1,81 @@
|
||||
{
|
||||
"name": "O",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 389,
|
||||
"y": 511,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 305,
|
||||
"y": 528,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 71,
|
||||
"y": 265,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 108,
|
||||
"y": 49,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 145,
|
||||
"y": -172,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 426,
|
||||
"y": 201,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 439,
|
||||
"y": 409,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 442,
|
||||
"y": 461,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 431,
|
||||
"y": 502,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "3b953f00-e859-45f0-ae6c-0c7ef30e7cc1",
|
||||
"transformation": {
|
||||
"translateX": -257.5653433932131,
|
||||
"translateY": -451.7964791389,
|
||||
"scaleX": 0.35436763915845854,
|
||||
"scaleY": 0.3543676391584586
|
||||
},
|
||||
"opacity": 0.132751354605659
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
150
letters/P^1.json
Normal file
@ -0,0 +1,150 @@
|
||||
{
|
||||
"name": "P",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 4,
|
||||
"y": 220
|
||||
},
|
||||
{
|
||||
"x": 151,
|
||||
"y": 220,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 418,
|
||||
"y": 534,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 385,
|
||||
"y": 499,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 347,
|
||||
"y": 459,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -27,
|
||||
"y": -255,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -12,
|
||||
"y": -231,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": -3,
|
||||
"y": -217,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 186,
|
||||
"y": 170,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 323,
|
||||
"y": 303,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 355,
|
||||
"y": 334,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 471,
|
||||
"y": 428,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 523,
|
||||
"y": 360,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 579,
|
||||
"y": 288,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 309,
|
||||
"y": 78,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 283,
|
||||
"y": 133,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 276,
|
||||
"y": 148,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 315,
|
||||
"y": 191,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 377,
|
||||
"y": 220,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 421,
|
||||
"y": 241,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 475,
|
||||
"y": 247,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 476,
|
||||
"y": 244,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 576,
|
||||
"y": 73,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "b377d5db-c9d9-48fd-8de7-fb1725aecc84",
|
||||
"transformation": {
|
||||
"translateX": -322,
|
||||
"translateY": -567,
|
||||
"scaleX": 0.3786910236378584,
|
||||
"scaleY": 0.37869102363785834
|
||||
},
|
||||
"opacity": 0.19777242624924707
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
105
letters/Q^1.json
Normal file
@ -0,0 +1,105 @@
|
||||
{
|
||||
"name": "Q",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 354,
|
||||
"y": 414
|
||||
},
|
||||
{
|
||||
"x": 354,
|
||||
"y": 434,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 377,
|
||||
"y": 484,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 337,
|
||||
"y": 497,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 254,
|
||||
"y": 524,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -71,
|
||||
"y": 83,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 25,
|
||||
"y": 10,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 129,
|
||||
"y": -69,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 474,
|
||||
"y": 458,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 465,
|
||||
"y": 445,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 435,
|
||||
"y": 399,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 42,
|
||||
"y": -496,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 42,
|
||||
"y": -575,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 42,
|
||||
"y": -654,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "9061f319-c95a-44ad-8c65-cd5bdf3fb068",
|
||||
"transformation": {
|
||||
"translateX": -855,
|
||||
"translateY": -1286,
|
||||
"scaleX": 0.6833237030400487,
|
||||
"scaleY": 0.6833237030400489
|
||||
},
|
||||
"opacity": 0.31878386514148094
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
159
letters/R^1.json
Normal file
@ -0,0 +1,159 @@
|
||||
{
|
||||
"name": "R",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 61,
|
||||
"y": 319
|
||||
},
|
||||
{
|
||||
"x": 68,
|
||||
"y": 326,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 115,
|
||||
"y": 355,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 159,
|
||||
"y": 393,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 201,
|
||||
"y": 429,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 230,
|
||||
"y": 479,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 239,
|
||||
"y": 492,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 244,
|
||||
"y": 499,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 234,
|
||||
"y": 483,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 218,
|
||||
"y": 457,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 207,
|
||||
"y": 441,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 188,
|
||||
"y": 416,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 193,
|
||||
"y": 405,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 200,
|
||||
"y": 390,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 250,
|
||||
"y": 423,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 274,
|
||||
"y": 387,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 299,
|
||||
"y": 349,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 231,
|
||||
"y": 252,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 194,
|
||||
"y": 159,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 168,
|
||||
"y": 96,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 160,
|
||||
"y": 49,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 188,
|
||||
"y": 23,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 219,
|
||||
"y": -6,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"y": 18,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 442,
|
||||
"y": 103
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "a23b0c58-dde2-45b3-931e-d267b78377c0",
|
||||
"transformation": {
|
||||
"translateX": -343,
|
||||
"translateY": -371,
|
||||
"scaleX": 0.33629282384340853,
|
||||
"scaleY": 0.33629282384340853
|
||||
},
|
||||
"opacity": 0.20710415412402194
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
107
letters/T^1.json
Normal file
@ -0,0 +1,107 @@
|
||||
{
|
||||
"name": "T",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 62,
|
||||
"y": 217
|
||||
},
|
||||
{
|
||||
"x": 296,
|
||||
"y": 451,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 432,
|
||||
"y": 750,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 420,
|
||||
"y": 749,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 412,
|
||||
"y": 748,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 80,
|
||||
"y": 87,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 147,
|
||||
"y": 18,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 187,
|
||||
"y": -24,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 256,
|
||||
"y": 17,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 324,
|
||||
"y": 89
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
},
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 150,
|
||||
"y": 463
|
||||
},
|
||||
{
|
||||
"x": 183,
|
||||
"y": 463,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 274,
|
||||
"y": 476,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 425,
|
||||
"y": 502
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "21194c1a-0b38-4b02-9401-ea0cb631a1c3",
|
||||
"transformation": {
|
||||
"translateX": -287,
|
||||
"translateY": -243,
|
||||
"scaleX": 0.38582321012375126,
|
||||
"scaleY": 0.38582321012375126
|
||||
},
|
||||
"opacity": 0.358669476219145
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
99
letters/V^1.json
Normal file
@ -0,0 +1,99 @@
|
||||
{
|
||||
"name": "V",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 200,
|
||||
"y": 496
|
||||
},
|
||||
{
|
||||
"x": 143,
|
||||
"y": 439,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -19,
|
||||
"y": 58,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 78,
|
||||
"y": 6,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 176,
|
||||
"y": -47,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 480,
|
||||
"y": 468,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 402,
|
||||
"y": 500,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 357,
|
||||
"y": 518,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 226,
|
||||
"y": 285,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 283,
|
||||
"y": 231,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 310,
|
||||
"y": 206,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 341,
|
||||
"y": 216,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 382,
|
||||
"y": 234
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "b0a4cabc-5e9e-4210-a269-db48853c7443",
|
||||
"transformation": {
|
||||
"translateX": -341,
|
||||
"translateY": -408,
|
||||
"scaleX": 0.36185689418165,
|
||||
"scaleY": 0.36185689418165007
|
||||
},
|
||||
"opacity": 0.36664659843467806
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
letters/W^1.json
Normal file
@ -0,0 +1,135 @@
|
||||
{
|
||||
"name": "W",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": -1,
|
||||
"y": 344
|
||||
},
|
||||
{
|
||||
"x": 59,
|
||||
"y": 404,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 221,
|
||||
"y": 508,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": 489,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 203,
|
||||
"y": 469,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -42,
|
||||
"y": 33,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 31,
|
||||
"y": 3,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 108,
|
||||
"y": -29,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 335,
|
||||
"y": 401,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 335,
|
||||
"y": 397,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 335,
|
||||
"y": 393,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 172,
|
||||
"y": 73,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 230,
|
||||
"y": 47,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 289,
|
||||
"y": 20,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 508,
|
||||
"y": 480,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 496,
|
||||
"y": 468,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 484,
|
||||
"y": 456,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 441,
|
||||
"y": 362,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 466,
|
||||
"y": 337,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 491,
|
||||
"y": 312,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "f7bda038-1c1e-4fd7-8509-d0e37c8a9743",
|
||||
"transformation": {
|
||||
"translateX": -486,
|
||||
"translateY": -601,
|
||||
"scaleX": 0.4944705090612771,
|
||||
"scaleY": 0.494470509061277
|
||||
},
|
||||
"opacity": 0.08744732089102947
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
134
letters/X^1.json
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"name": "X",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": -79,
|
||||
"y": 172
|
||||
},
|
||||
{
|
||||
"x": -219,
|
||||
"y": 51,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 107,
|
||||
"y": 15,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 242,
|
||||
"y": 233,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 377,
|
||||
"y": 451,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 167,
|
||||
"y": 550,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 125,
|
||||
"y": 472,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 69,
|
||||
"y": 369,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
},
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 180,
|
||||
"y": 277
|
||||
},
|
||||
{
|
||||
"x": 241,
|
||||
"y": 295,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 471,
|
||||
"y": 381,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 419,
|
||||
"y": 435,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 371,
|
||||
"y": 486,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 168,
|
||||
"y": 132,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 222,
|
||||
"y": 49,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 274,
|
||||
"y": -33,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 372,
|
||||
"y": -7,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 529,
|
||||
"y": 68,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 699,
|
||||
"y": 149,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "18930060-a42f-4671-9a6e-385fdbe4b9bd",
|
||||
"transformation": {
|
||||
"translateX": -329,
|
||||
"translateY": -467,
|
||||
"scaleX": 0.40627446639434445,
|
||||
"scaleY": 0.40627446639434445
|
||||
},
|
||||
"opacity": 0.11137868753762803
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
120
letters/Y^1.json
Normal file
@ -0,0 +1,120 @@
|
||||
{
|
||||
"name": "Y",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": -1,
|
||||
"y": 435
|
||||
},
|
||||
{
|
||||
"x": 45,
|
||||
"y": 481,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 115,
|
||||
"y": 509,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 136,
|
||||
"y": 494,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 197,
|
||||
"y": 452,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -21,
|
||||
"y": 135,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 73,
|
||||
"y": 72,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 172,
|
||||
"y": 6,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 454,
|
||||
"y": 493,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 447,
|
||||
"y": 491,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 444,
|
||||
"y": 490,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 259,
|
||||
"y": -314,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 173,
|
||||
"y": -252,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": -129,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 333,
|
||||
"y": 224,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 631,
|
||||
"y": 291,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 895,
|
||||
"y": 351,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "762cfb70-8eec-45e1-86c7-1fcc4e9df509",
|
||||
"transformation": {
|
||||
"translateX": -491.54654906395433,
|
||||
"translateY": -656.6976202122326,
|
||||
"scaleX": 0.46698913344766774,
|
||||
"scaleY": 0.46698913344766774
|
||||
},
|
||||
"opacity": 0.11137868753762803
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
150
letters/Z^1.json
Normal file
@ -0,0 +1,150 @@
|
||||
{
|
||||
"name": "Z",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 46,
|
||||
"y": 445
|
||||
},
|
||||
{
|
||||
"x": 37,
|
||||
"y": 376,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 143,
|
||||
"y": 234,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 487,
|
||||
"y": 493,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 525,
|
||||
"y": 521,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 335,
|
||||
"y": 395,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 184,
|
||||
"y": 270,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 64,
|
||||
"y": 171,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -30,
|
||||
"y": 73,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -36,
|
||||
"y": 67,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": -50,
|
||||
"y": 53,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 320,
|
||||
"y": 330,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 445,
|
||||
"y": 188,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 539,
|
||||
"y": 81,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 136,
|
||||
"y": -319,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 47,
|
||||
"y": -224,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": -38,
|
||||
"y": -133,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 155,
|
||||
"y": 10,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 334,
|
||||
"y": 80,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 436,
|
||||
"y": 120,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 528,
|
||||
"y": 132,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 551,
|
||||
"y": 128,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 620,
|
||||
"y": 115,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "fd4daa61-8760-4b7a-9bae-d5b9e04487ec",
|
||||
"transformation": {
|
||||
"translateX": -465,
|
||||
"translateY": -702,
|
||||
"scaleX": 0.47082374399840393,
|
||||
"scaleY": 0.4708237439984038
|
||||
},
|
||||
"opacity": 0.239012642986153
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
174
letters/a.json
Normal file
@ -0,0 +1,174 @@
|
||||
{
|
||||
"name": "A",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 149
|
||||
},
|
||||
{
|
||||
"x": 46,
|
||||
"y": 210,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 219,
|
||||
"y": 457,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 218,
|
||||
"y": 445,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 218,
|
||||
"y": 438,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 170,
|
||||
"y": 368,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 132,
|
||||
"y": 281,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 81,
|
||||
"y": 160,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 35,
|
||||
"y": 21,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 109,
|
||||
"y": 6,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 222.1844940663987,
|
||||
"y": -15.324614824104106,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 342,
|
||||
"y": 290,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 355,
|
||||
"y": 328,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 376,
|
||||
"y": 388,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 377,
|
||||
"y": 510,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 289,
|
||||
"y": 493,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 219,
|
||||
"y": 480,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 204,
|
||||
"y": 418,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 208,
|
||||
"y": 413,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 220,
|
||||
"y": 400,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 406,
|
||||
"y": 480,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 408,
|
||||
"y": 445,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 410,
|
||||
"y": 411,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 206,
|
||||
"y": -12,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 347,
|
||||
"y": -20,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 379,
|
||||
"y": -22,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 473,
|
||||
"y": 27,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 535,
|
||||
"y": 90
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "59e239c1-d8f0-4c2c-84cd-3683407500d2",
|
||||
"transformation": {
|
||||
"translateX": -240,
|
||||
"translateY": -405,
|
||||
"scaleX": 0.6068034911083972,
|
||||
"scaleY": 0.6068034911083972
|
||||
},
|
||||
"opacity": 0.18096313017306198
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
230
letters/aa.json
Normal file
@ -0,0 +1,230 @@
|
||||
{
|
||||
"name": "a",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 440,
|
||||
"y": 20,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 372,
|
||||
"y": -21,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 328,
|
||||
"y": -11,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 296,
|
||||
"y": -4,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 287,
|
||||
"y": 24,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 284,
|
||||
"y": 44,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 275.7615153755458,
|
||||
"y": 103.72901352729276,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 303,
|
||||
"y": 179,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 321,
|
||||
"y": 235,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 336,
|
||||
"y": 284,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 357,
|
||||
"y": 339,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 374,
|
||||
"y": 376,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 380,
|
||||
"y": 388,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 396,
|
||||
"y": 422,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 410,
|
||||
"y": 405,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 421,
|
||||
"y": 391,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 408,
|
||||
"y": 358,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 400,
|
||||
"y": 337,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 397,
|
||||
"y": 329,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 384,
|
||||
"y": 302,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 365,
|
||||
"y": 273,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 341,
|
||||
"y": 236,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 309,
|
||||
"y": 191,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 289,
|
||||
"y": 164,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 247,
|
||||
"y": 108,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 141.46099159187946,
|
||||
"y": -6.496999353221498,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 70,
|
||||
"y": -1
|
||||
},
|
||||
{
|
||||
"x": -15.6771591568439,
|
||||
"y": 7.924704078837907,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 16,
|
||||
"y": 147,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 38,
|
||||
"y": 196,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 75,
|
||||
"y": 282,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 160,
|
||||
"y": 391,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 220,
|
||||
"y": 441,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 238,
|
||||
"y": 456,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 261,
|
||||
"y": 474,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 280,
|
||||
"y": 485,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 299.98775661021176,
|
||||
"y": 496.9926539661271,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 342,
|
||||
"y": 511,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 355,
|
||||
"y": 484,
|
||||
"smooth": true
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "584806c1-f7e5-4412-9b1d-b88af350ab4e",
|
||||
"transformation": {
|
||||
"translateX": -164,
|
||||
"translateY": -326,
|
||||
"scaleX": 0.5120314807467685,
|
||||
"scaleY": 0.5120314807467684
|
||||
},
|
||||
"opacity": 0.26523702031602703
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
102
letters/b.json
Normal file
@ -0,0 +1,102 @@
|
||||
{
|
||||
"name": "B",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
|
||||
{
|
||||
"x": 57,
|
||||
"y": 242,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 247,
|
||||
"y": 491,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 326,
|
||||
"y": 422,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 417,
|
||||
"y": 342,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 106,
|
||||
"y": -71,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 24,
|
||||
"y": 11,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": -58,
|
||||
"y": 93,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 295,
|
||||
"y": 752,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 332,
|
||||
"y": 752,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 369,
|
||||
"y": 752,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 150,
|
||||
"y": 419,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 119,
|
||||
"y": 419,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 88,
|
||||
"y": 419,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "acf0e848-5701-40ed-9309-046d867c3e31",
|
||||
"transformation": {
|
||||
"translateX": -512,
|
||||
"translateY": -608,
|
||||
"scaleX": 0.4673086843268955,
|
||||
"scaleY": 0.4673086843268955
|
||||
},
|
||||
"opacity": 0.191149909692956
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
200
letters/bb.json
Normal file
@ -0,0 +1,200 @@
|
||||
{
|
||||
"name": "b",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 284
|
||||
},
|
||||
{
|
||||
"x": 31,
|
||||
"y": 308,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 110,
|
||||
"y": 370,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 180,
|
||||
"y": 449,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 281,
|
||||
"y": 564,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 373,
|
||||
"y": 705,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 380,
|
||||
"y": 722,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 408,
|
||||
"y": 786,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 362,
|
||||
"y": 755,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 235,
|
||||
"y": 510,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 183,
|
||||
"y": 408,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 100,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 133,
|
||||
"y": 15,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 133,
|
||||
"y": 15,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 133,
|
||||
"y": 15,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 133,
|
||||
"y": 15
|
||||
},
|
||||
{
|
||||
"x": 213,
|
||||
"y": -38,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
},
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 133,
|
||||
"y": 15
|
||||
},
|
||||
{
|
||||
"x": 189,
|
||||
"y": -21,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 250,
|
||||
"y": 24,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 300,
|
||||
"y": 63
|
||||
},
|
||||
{
|
||||
"x": 370.7542958506688,
|
||||
"y": 121.6742941200668,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 456,
|
||||
"y": 234,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 481,
|
||||
"y": 311
|
||||
},
|
||||
{
|
||||
"x": 510,
|
||||
"y": 385,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 491,
|
||||
"y": 421,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 461,
|
||||
"y": 431
|
||||
},
|
||||
{
|
||||
"x": 411,
|
||||
"y": 448,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 342,
|
||||
"y": 415,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 276,
|
||||
"y": 356,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 237.41457148749305,
|
||||
"y": 320.63002386353526,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 190,
|
||||
"y": 260,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 164,
|
||||
"y": 207,
|
||||
"smooth": true
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "0a23f722-91ea-403e-ae2f-9b9a2150ba39",
|
||||
"transformation": {
|
||||
"translateX": -251.83655536028112,
|
||||
"translateY": -419.78207381370817,
|
||||
"scaleX": 0.363300295033348,
|
||||
"scaleY": 0.36330029503334793
|
||||
},
|
||||
"opacity": 0.150865312264861
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
128
letters/c.json
Normal file
@ -0,0 +1,128 @@
|
||||
{
|
||||
"name": "c",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 272,
|
||||
"y": 334
|
||||
},
|
||||
{
|
||||
"x": 347,
|
||||
"y": 345,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 429,
|
||||
"y": 469,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 362,
|
||||
"y": 496,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 308,
|
||||
"y": 518,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 203,
|
||||
"y": 430,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 132,
|
||||
"y": 343,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 82,
|
||||
"y": 281,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 49,
|
||||
"y": 206,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 41,
|
||||
"y": 144
|
||||
},
|
||||
{
|
||||
"x": 31,
|
||||
"y": 70,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 64,
|
||||
"y": 29,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 94,
|
||||
"y": 13,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 137,
|
||||
"y": -10,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 230,
|
||||
"y": 1,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 312,
|
||||
"y": 43,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 389,
|
||||
"y": 83,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 432,
|
||||
"y": 120,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 437,
|
||||
"y": 125
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "3702db95-9440-48c1-97ee-4cb98a277f25",
|
||||
"transformation": {
|
||||
"translateX": -167.32517514401965,
|
||||
"translateY": -272.3751257232086,
|
||||
"scaleX": 0.2889957506637987,
|
||||
"scaleY": 0.2889957506637987
|
||||
},
|
||||
"opacity": 0.27727614747930796
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
189
letters/d.json
Normal file
@ -0,0 +1,189 @@
|
||||
{
|
||||
"name": "d",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 244,
|
||||
"y": 436
|
||||
},
|
||||
{
|
||||
"x": 122,
|
||||
"y": 561,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -132,
|
||||
"y": 314,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -117,
|
||||
"y": 98,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": -116,
|
||||
"y": 74,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -108,
|
||||
"y": 50,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -94,
|
||||
"y": 30,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": -68,
|
||||
"y": -3,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -3,
|
||||
"y": -5,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 41,
|
||||
"y": 18,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 107,
|
||||
"y": 54,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 156,
|
||||
"y": 101,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 178,
|
||||
"y": 128,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 199,
|
||||
"y": 155,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 326,
|
||||
"y": 313,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 405,
|
||||
"y": 465,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 454,
|
||||
"y": 560,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 506,
|
||||
"y": 698,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 505,
|
||||
"y": 740,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 504,
|
||||
"y": 774,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 453,
|
||||
"y": 661,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 439,
|
||||
"y": 624,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 429,
|
||||
"y": 597,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 406,
|
||||
"y": 543,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 367,
|
||||
"y": 421,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 323,
|
||||
"y": 284,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 241,
|
||||
"y": 21,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 374,
|
||||
"y": 14,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 449,
|
||||
"y": 9,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 526,
|
||||
"y": 93,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 588,
|
||||
"y": 158
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "6eda54fa-58ea-4dea-988a-87628c5078c6",
|
||||
"transformation": {
|
||||
"translateX": -301,
|
||||
"translateY": -478,
|
||||
"scaleX": 0.3719145377038379,
|
||||
"scaleY": 0.37191453770383787
|
||||
},
|
||||
"opacity": 0.19300225733634302
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
186
letters/e.json
Normal file
@ -0,0 +1,186 @@
|
||||
{
|
||||
"name": "e",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 18,
|
||||
"y": 291
|
||||
},
|
||||
{
|
||||
"x": 23,
|
||||
"y": 262,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 59,
|
||||
"y": 245,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 99,
|
||||
"y": 239
|
||||
},
|
||||
{
|
||||
"x": 181,
|
||||
"y": 231,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 257.01446794266116,
|
||||
"y": 251.86696038966292,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 325,
|
||||
"y": 298,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 376,
|
||||
"y": 333,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 435,
|
||||
"y": 389,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 451,
|
||||
"y": 417
|
||||
},
|
||||
{
|
||||
"x": 473,
|
||||
"y": 450,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 476,
|
||||
"y": 478,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 454,
|
||||
"y": 494,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 382,
|
||||
"y": 546,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 170,
|
||||
"y": 295,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 170,
|
||||
"y": 283,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 170,
|
||||
"y": 271,
|
||||
"type": "cubic"
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
},
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 170,
|
||||
"y": 284
|
||||
},
|
||||
{
|
||||
"x": 119,
|
||||
"y": 206,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 101,
|
||||
"y": 151,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 101,
|
||||
"y": 107,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 101,
|
||||
"y": 90,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 106,
|
||||
"y": 70,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 114,
|
||||
"y": 55,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 140.90712847614816,
|
||||
"y": 7.395080388353264,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 191,
|
||||
"y": 2,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 229,
|
||||
"y": 2,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 286,
|
||||
"y": 2,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 358.124613950106,
|
||||
"y": 28.212758408954436,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 396,
|
||||
"y": 75
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "6c1dfb8c-4dc2-4d11-927b-c1a5df6afa1c",
|
||||
"transformation": {
|
||||
"translateX": -175.70826010544818,
|
||||
"translateY": -350.1195079086116,
|
||||
"scaleX": 0.5980002388793146,
|
||||
"scaleY": 0.5980002388793146
|
||||
},
|
||||
"opacity": 0.150865312264861
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
159
letters/f.json
Normal file
@ -0,0 +1,159 @@
|
||||
{
|
||||
"name": "f",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": -78,
|
||||
"y": 47
|
||||
},
|
||||
{
|
||||
"x": -28,
|
||||
"y": 7,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 431,
|
||||
"y": 340,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 504,
|
||||
"y": 645,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 513,
|
||||
"y": 688,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 519,
|
||||
"y": 745,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 478,
|
||||
"y": 751,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 439,
|
||||
"y": 756,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 415,
|
||||
"y": 703,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 393,
|
||||
"y": 636,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 338,
|
||||
"y": 456,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 163,
|
||||
"y": -102,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 147,
|
||||
"y": -258,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 129,
|
||||
"y": -432,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 144,
|
||||
"y": -556,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 234,
|
||||
"y": -550,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 301,
|
||||
"y": -545,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 349,
|
||||
"y": -374,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 322,
|
||||
"y": -179,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 300,
|
||||
"y": -42,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 242,
|
||||
"y": 42,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 168,
|
||||
"y": 62,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 81,
|
||||
"y": 84,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 239,
|
||||
"y": -106,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 574,
|
||||
"y": 100
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "1f67c4d6-023e-4ce6-a027-abc9534ee2a8",
|
||||
"transformation": {
|
||||
"translateX": -179,
|
||||
"translateY": -529,
|
||||
"scaleX": 0.3174114988701983,
|
||||
"scaleY": 0.31741149887019837
|
||||
},
|
||||
"opacity": 0.13280662151994
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
219
letters/g.json
Normal file
@ -0,0 +1,219 @@
|
||||
{
|
||||
"name": "g",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 371,
|
||||
"y": 223
|
||||
},
|
||||
{
|
||||
"x": 460,
|
||||
"y": 358,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 482,
|
||||
"y": 420,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 468,
|
||||
"y": 458,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 458,
|
||||
"y": 491,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 430,
|
||||
"y": 499,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 404,
|
||||
"y": 499,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 357,
|
||||
"y": 501,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 307,
|
||||
"y": 482,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 203,
|
||||
"y": 370,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 173,
|
||||
"y": 335,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -62,
|
||||
"y": 31,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 42,
|
||||
"y": 1,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 70,
|
||||
"y": -7,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 125,
|
||||
"y": 35,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 168,
|
||||
"y": 61,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 211,
|
||||
"y": 88,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 437,
|
||||
"y": 207,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 547,
|
||||
"y": 111,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 618,
|
||||
"y": 52,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 545,
|
||||
"y": -138,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 543,
|
||||
"y": -146,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 524,
|
||||
"y": -207,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 362,
|
||||
"y": -531,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 271,
|
||||
"y": -551,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 203,
|
||||
"y": -563,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 149,
|
||||
"y": -386,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 170,
|
||||
"y": -321,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 213,
|
||||
"y": -177,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 333,
|
||||
"y": -86,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 360,
|
||||
"y": -64,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 388,
|
||||
"y": -41,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 579,
|
||||
"y": 84,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 652,
|
||||
"y": 35,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 667,
|
||||
"y": 26,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 672,
|
||||
"y": 21,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 678,
|
||||
"y": 9
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "262645fb-efbf-4f1c-ab65-8d9ba0ef5de1",
|
||||
"transformation": {
|
||||
"translateX": -130,
|
||||
"translateY": -477.02282468936824,
|
||||
"scaleX": 0.3403685343933509,
|
||||
"scaleY": 0.34036853439335096
|
||||
},
|
||||
"opacity": 0.186982693754703
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
174
letters/h.json
Normal file
@ -0,0 +1,174 @@
|
||||
{
|
||||
"name": "h",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": -100,
|
||||
"y": 176
|
||||
},
|
||||
{
|
||||
"x": -94,
|
||||
"y": 176,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -90,
|
||||
"y": 162,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -55,
|
||||
"y": 181
|
||||
},
|
||||
{
|
||||
"x": -5,
|
||||
"y": 208,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 87,
|
||||
"y": 279,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 151,
|
||||
"y": 344,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 310,
|
||||
"y": 508,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 533,
|
||||
"y": 721,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 484,
|
||||
"y": 750,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 437,
|
||||
"y": 778,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 305,
|
||||
"y": 620,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 219,
|
||||
"y": 516,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 176,
|
||||
"y": 463,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -66,
|
||||
"y": 103,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -97,
|
||||
"y": 17,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": -99,
|
||||
"y": 10,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -93,
|
||||
"y": 5,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -58,
|
||||
"y": 38,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": -20,
|
||||
"y": 74,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 65,
|
||||
"y": 158,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 113,
|
||||
"y": 194,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 157,
|
||||
"y": 227,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 395,
|
||||
"y": 386,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 429,
|
||||
"y": 301,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 462,
|
||||
"y": 220,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 315,
|
||||
"y": 28,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 324,
|
||||
"y": -10,
|
||||
"smooth": true
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "edc72160-2b2f-4240-a346-85e3930c331b",
|
||||
"transformation": {
|
||||
"translateX": -591.7390593788814,
|
||||
"translateY": -662.3041583436836,
|
||||
"scaleX": 0.5465616211342136,
|
||||
"scaleY": 0.5465616211342137
|
||||
},
|
||||
"opacity": 0.253197893152746
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
131
letters/i.json
Normal file
@ -0,0 +1,131 @@
|
||||
{
|
||||
"name": "i",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 65,
|
||||
"y": 173,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 148,
|
||||
"y": 160,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 407,
|
||||
"y": 445,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 384,
|
||||
"y": 497,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 372,
|
||||
"y": 524,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 288,
|
||||
"y": 326,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 285,
|
||||
"y": 318,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 270,
|
||||
"y": 275,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 229,
|
||||
"y": 191,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 218,
|
||||
"y": 120,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 210,
|
||||
"y": 64,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 232,
|
||||
"y": 32,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 248,
|
||||
"y": 20,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 276,
|
||||
"y": -1,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 297,
|
||||
"y": 0,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 310,
|
||||
"y": 0,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 393,
|
||||
"y": 2,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 475,
|
||||
"y": 85,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 488,
|
||||
"y": 109,
|
||||
"smooth": true
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "d72bc156-7bc1-4aea-8fda-b89bd8573d03",
|
||||
"transformation": {
|
||||
"translateX": -302,
|
||||
"translateY": -438,
|
||||
"scaleX": 0.40336708790135833,
|
||||
"scaleY": 0.4033670879013584
|
||||
},
|
||||
"opacity": 0.17494356659142196
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
160
letters/j.json
Normal file
@ -0,0 +1,160 @@
|
||||
{
|
||||
"name": "j",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 13,
|
||||
"y": 450
|
||||
},
|
||||
{
|
||||
"x": 13,
|
||||
"y": 232,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 88,
|
||||
"y": 196,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 141,
|
||||
"y": 206,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 244,
|
||||
"y": 225,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 392,
|
||||
"y": 505,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 345,
|
||||
"y": 499,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 299,
|
||||
"y": 493,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 299,
|
||||
"y": 51,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 234,
|
||||
"y": -124,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 212,
|
||||
"y": -184,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 186,
|
||||
"y": -237,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 140,
|
||||
"y": -241,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 69,
|
||||
"y": -247,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 42,
|
||||
"y": -137,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 53,
|
||||
"y": -85,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 64,
|
||||
"y": -34,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 95,
|
||||
"y": 20,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 153,
|
||||
"y": 90,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 195,
|
||||
"y": 141,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 250,
|
||||
"y": 197,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 299,
|
||||
"y": 228,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 370,
|
||||
"y": 274,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 435,
|
||||
"y": 284,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 476,
|
||||
"y": 289,
|
||||
"smooth": true
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "4a339b73-34dc-4339-a84a-a526028a8d10",
|
||||
"transformation": {
|
||||
"translateX": -508,
|
||||
"translateY": -753,
|
||||
"scaleX": 0.5175468495979267,
|
||||
"scaleY": 0.5175468495979267
|
||||
},
|
||||
"opacity": 0.212221553281156
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
158
letters/k.json
Normal file
@ -0,0 +1,158 @@
|
||||
{
|
||||
"name": "K",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 41,
|
||||
"y": 262
|
||||
},
|
||||
{
|
||||
"x": 68,
|
||||
"y": 273,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 114,
|
||||
"y": 309,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 150,
|
||||
"y": 342,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 398,
|
||||
"y": 575,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 522,
|
||||
"y": 729,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 475,
|
||||
"y": 743,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 436,
|
||||
"y": 755,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 275,
|
||||
"y": 497,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 17
|
||||
},
|
||||
{
|
||||
"x": 56,
|
||||
"y": 108,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 190,
|
||||
"y": 269,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 227,
|
||||
"y": 303,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 306,
|
||||
"y": 376,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 392,
|
||||
"y": 427,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 420,
|
||||
"y": 416,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 465,
|
||||
"y": 398,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 213,
|
||||
"y": 177,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 202,
|
||||
"y": 177,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 191,
|
||||
"y": 177,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 456,
|
||||
"y": 327,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 489,
|
||||
"y": 237,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 506,
|
||||
"y": 190,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 456,
|
||||
"y": 105,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 389,
|
||||
"y": 17
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "b4889cc8-6b80-4583-b1ff-195056970a9e",
|
||||
"transformation": {
|
||||
"translateX": -483,
|
||||
"translateY": -715,
|
||||
"scaleX": 0.5090454724983307,
|
||||
"scaleY": 0.5090454724983307
|
||||
},
|
||||
"opacity": 0.176098735701385
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
193
letters/kk.json
Normal file
@ -0,0 +1,193 @@
|
||||
{
|
||||
"name": "k",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 513,
|
||||
"y": 53,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 484,
|
||||
"y": 34,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 454,
|
||||
"y": 21,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 440,
|
||||
"y": 15,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 412,
|
||||
"y": 8,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 387,
|
||||
"y": 21,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 311,
|
||||
"y": 60,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 425,
|
||||
"y": 201,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 382,
|
||||
"y": 239,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 350,
|
||||
"y": 267,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 321,
|
||||
"y": 241,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 228,
|
||||
"y": 173
|
||||
},
|
||||
{
|
||||
"x": 289,
|
||||
"y": 220,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 322,
|
||||
"y": 241,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 351,
|
||||
"y": 266,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 440,
|
||||
"y": 342,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 435,
|
||||
"y": 372,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 416,
|
||||
"y": 389,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 346,
|
||||
"y": 453,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 21,
|
||||
"y": 40,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 18,
|
||||
"y": 3,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 17,
|
||||
"y": -11,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 364,
|
||||
"y": 768,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 451,
|
||||
"y": 750,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 518,
|
||||
"y": 736,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 390,
|
||||
"y": 533,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 251,
|
||||
"y": 392,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 155,
|
||||
"y": 295,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 49,
|
||||
"y": 236,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 10,
|
||||
"y": 222
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
},
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 644,
|
||||
"y": 196
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 654,
|
||||
"backgroundImage": {
|
||||
"identifier": "27213d8a-1eca-405a-8d81-ff29763aaf89",
|
||||
"transformation": {
|
||||
"translateX": -332.8059976302204,
|
||||
"translateY": -461.12449304753517,
|
||||
"scaleX": 0.4170652952679792,
|
||||
"scaleY": 0.41706529526797914
|
||||
},
|
||||
"opacity": 0.16887417218543
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
85
letters/l.json
Normal file
@ -0,0 +1,85 @@
|
||||
{
|
||||
"name": "l",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 8,
|
||||
"y": 201
|
||||
},
|
||||
{
|
||||
"x": 255,
|
||||
"y": 297,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 537,
|
||||
"y": 680,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 491,
|
||||
"y": 734,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 451,
|
||||
"y": 781,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 337,
|
||||
"y": 650,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 260,
|
||||
"y": 496,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 175,
|
||||
"y": 325,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 123,
|
||||
"y": 102,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 168,
|
||||
"y": 5,
|
||||
"smooth": true
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "14883cce-0b6d-4be8-82cf-7b8be5045366",
|
||||
"transformation": {
|
||||
"translateX": -298,
|
||||
"translateY": -435,
|
||||
"scaleX": 0.3770379780907148,
|
||||
"scaleY": 0.37703797809071476
|
||||
},
|
||||
"opacity": 0.2700180614087899
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
145
letters/m.json
Normal file
@ -0,0 +1,145 @@
|
||||
{
|
||||
"name": "m",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": -50,
|
||||
"y": 350,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": -28,
|
||||
"y": 419,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 56,
|
||||
"y": 509,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 99,
|
||||
"y": 491,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 182,
|
||||
"y": 456,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 19,
|
||||
"y": 17,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 22,
|
||||
"y": 17,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 25,
|
||||
"y": 17,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 167,
|
||||
"y": 478,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 277,
|
||||
"y": 479,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 376,
|
||||
"y": 480,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 228,
|
||||
"y": 32,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 231,
|
||||
"y": 37,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 244,
|
||||
"y": 65,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 363,
|
||||
"y": 487,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 434,
|
||||
"y": 404,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 481,
|
||||
"y": 350,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 371,
|
||||
"y": 50,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 419,
|
||||
"y": 13,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 453,
|
||||
"y": -13,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 504,
|
||||
"y": 80,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 551,
|
||||
"y": 142
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "8852ea64-dcd6-49e0-873d-ac06e676b6fd",
|
||||
"transformation": {
|
||||
"translateX": -259,
|
||||
"translateY": -353,
|
||||
"scaleX": 0.34681085951437335,
|
||||
"scaleY": 0.34681085951437335
|
||||
},
|
||||
"opacity": 0.298916315472607
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
114
letters/n.json
Normal file
@ -0,0 +1,114 @@
|
||||
{
|
||||
"name": "n",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 4,
|
||||
"y": 390
|
||||
},
|
||||
{
|
||||
"x": 49,
|
||||
"y": 435,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 87,
|
||||
"y": 493,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 141,
|
||||
"y": 490,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 230,
|
||||
"y": 485,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": -18,
|
||||
"y": -4,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 26,
|
||||
"y": 20,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 46,
|
||||
"y": 31,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 298,
|
||||
"y": 530,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 394,
|
||||
"y": 497,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 466,
|
||||
"y": 472,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 200,
|
||||
"y": 47,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 321,
|
||||
"y": 3,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 369,
|
||||
"y": -14,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 455,
|
||||
"y": 50,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 519,
|
||||
"y": 145
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "b865f36f-f8ab-41bd-85c4-179aff9f4eb8",
|
||||
"transformation": {
|
||||
"translateX": -473,
|
||||
"translateY": -623,
|
||||
"scaleX": 0.44238371574711016,
|
||||
"scaleY": 0.44238371574711005
|
||||
},
|
||||
"opacity": 0.17519566526189
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
115
letters/o.json
Normal file
@ -0,0 +1,115 @@
|
||||
{
|
||||
"name": "o",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 235,
|
||||
"y": 464
|
||||
},
|
||||
{
|
||||
"x": 213,
|
||||
"y": 478,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 47,
|
||||
"y": 340,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 67,
|
||||
"y": 125,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 76,
|
||||
"y": 27,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 129,
|
||||
"y": -12,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 177,
|
||||
"y": -13,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 273,
|
||||
"y": -14,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 427,
|
||||
"y": 200,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 409,
|
||||
"y": 393,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 398,
|
||||
"y": 507,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 341,
|
||||
"y": 520,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 308,
|
||||
"y": 492,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 255,
|
||||
"y": 448,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 277,
|
||||
"y": 295,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 433,
|
||||
"y": 303,
|
||||
"smooth": true
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "c77393ff-1932-48fc-aba0-ec2917c92ded",
|
||||
"transformation": {
|
||||
"translateX": -282.63699083462916,
|
||||
"translateY": -478.703403287428,
|
||||
"scaleX": 0.37054387058407884,
|
||||
"scaleY": 0.3705438705840789
|
||||
},
|
||||
"opacity": 0.18332329921733903
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
155
letters/p.json
Normal file
@ -0,0 +1,155 @@
|
||||
{
|
||||
"name": "p",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 32,
|
||||
"y": 205,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 271,
|
||||
"y": 558,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 304,
|
||||
"y": 500,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 317,
|
||||
"y": 477,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 238,
|
||||
"y": 321,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 169,
|
||||
"y": 160,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 85,
|
||||
"y": -35,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": -239,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": -243,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": -248,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 107,
|
||||
"y": 40,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 215,
|
||||
"y": 254,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 294,
|
||||
"y": 409,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 394,
|
||||
"y": 509,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 419,
|
||||
"y": 500,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 470,
|
||||
"y": 481,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 353,
|
||||
"y": 305,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 349,
|
||||
"y": 215,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 348,
|
||||
"y": 182,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 358,
|
||||
"y": 170,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 378,
|
||||
"y": 172,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 410,
|
||||
"y": 176,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 477,
|
||||
"y": 263,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 505,
|
||||
"y": 314
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "21d44467-0474-43d0-8291-4b50f3575f94",
|
||||
"transformation": {
|
||||
"translateX": -513,
|
||||
"translateY": -799,
|
||||
"scaleX": 0.473977291962497,
|
||||
"scaleY": 0.473977291962497
|
||||
},
|
||||
"opacity": 0.544551475015051
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
160
letters/q.json
Normal file
@ -0,0 +1,160 @@
|
||||
{
|
||||
"name": "q",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": -1,
|
||||
"y": 89
|
||||
},
|
||||
{
|
||||
"x": 53,
|
||||
"y": 143,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 265,
|
||||
"y": 417,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 251,
|
||||
"y": 394,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 242,
|
||||
"y": 380,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 149,
|
||||
"y": 151,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 142,
|
||||
"y": 84,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 134,
|
||||
"y": 14,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 164,
|
||||
"y": -6,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 195,
|
||||
"y": 8,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 277,
|
||||
"y": 45,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 533,
|
||||
"y": 476,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 448,
|
||||
"y": 493,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 354,
|
||||
"y": 512,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 250,
|
||||
"y": 372,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 267,
|
||||
"y": 330,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 291,
|
||||
"y": 271,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 413,
|
||||
"y": 407,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 464,
|
||||
"y": 402,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 583,
|
||||
"y": 390,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 278,
|
||||
"y": -244,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 251,
|
||||
"y": -340,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 234,
|
||||
"y": -401,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 234,
|
||||
"y": -424,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 234,
|
||||
"y": -434,
|
||||
"smooth": true
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "d34295a8-6e05-4b90-993b-735d724dde8e",
|
||||
"transformation": {
|
||||
"translateX": -718,
|
||||
"translateY": -1167,
|
||||
"scaleX": 0.6414071909517628,
|
||||
"scaleY": 0.6414071909517628
|
||||
},
|
||||
"opacity": 0.19054786273329305
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
159
letters/r.json
Normal file
@ -0,0 +1,159 @@
|
||||
{
|
||||
"name": "r",
|
||||
"sources": [
|
||||
{
|
||||
"name": "",
|
||||
"layerName": "f1362c35",
|
||||
"locationBase": "f1362c35"
|
||||
}
|
||||
],
|
||||
"layers": {
|
||||
"f1362c35": {
|
||||
"glyph": {
|
||||
"path": {
|
||||
"contours": [
|
||||
{
|
||||
"points": [
|
||||
{
|
||||
"x": 90,
|
||||
"y": 189
|
||||
},
|
||||
{
|
||||
"x": 286,
|
||||
"y": 385,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 346,
|
||||
"y": 480,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 333,
|
||||
"y": 501,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 326,
|
||||
"y": 512,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 302,
|
||||
"y": 491,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 281,
|
||||
"y": 456,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 257,
|
||||
"y": 415,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 231,
|
||||
"y": 342,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 247,
|
||||
"y": 329,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 253,
|
||||
"y": 324,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 266,
|
||||
"y": 322,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 280,
|
||||
"y": 327,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 306,
|
||||
"y": 336,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 362,
|
||||
"y": 393,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 371,
|
||||
"y": 370,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 377,
|
||||
"y": 354,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 316,
|
||||
"y": 276,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 276,
|
||||
"y": 188,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 232,
|
||||
"y": 90,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 200,
|
||||
"y": 12,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 268,
|
||||
"y": 2,
|
||||
"smooth": true
|
||||
},
|
||||
{
|
||||
"x": 299,
|
||||
"y": -3,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 387,
|
||||
"y": 42,
|
||||
"type": "cubic"
|
||||
},
|
||||
{
|
||||
"x": 433,
|
||||
"y": 104
|
||||
}
|
||||
],
|
||||
"isClosed": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"xAdvance": 500,
|
||||
"backgroundImage": {
|
||||
"identifier": "5c2a59ec-673b-411e-9bd0-c01632e0df78",
|
||||
"transformation": {
|
||||
"translateX": -204,
|
||||
"translateY": -325,
|
||||
"scaleX": 0.3088114482297994,
|
||||
"scaleY": 0.30881144822979933
|
||||
},
|
||||
"opacity": 0.22305839855508702
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||