From 73daaecc39bb067fa7e8723ad64f7ad5b356d7ba Mon Sep 17 00:00:00 2001 From: be5invis Date: Mon, 11 Apr 2016 05:29:33 +0800 Subject: [PATCH 01/32] At least you can dump metadata of CFF now. --- src/caryll-font.c | 10 +++++----- src/fontops/unconsolidate.c | 5 +++-- src/tables/cmap.c | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/caryll-font.c b/src/caryll-font.c index 7a94788a..1db6d2b3 100644 --- a/src/caryll-font.c +++ b/src/caryll-font.c @@ -76,11 +76,11 @@ caryll_font *caryll_read_font(caryll_sfnt *sfnt, uint32_t index) { font->cvt_ = caryll_read_fpgm_prep(packet, 'cvt '); font->gasp = caryll_read_gasp(packet); font->glyf = caryll_read_glyf(packet, font->head, font->maxp); - - font->GSUB = caryll_read_otl(packet, 'GSUB'); - font->GPOS = caryll_read_otl(packet, 'GPOS'); - font->GDEF = caryll_read_GDEF(packet); - + if (font->glyf) { + font->GSUB = caryll_read_otl(packet, 'GSUB'); + font->GPOS = caryll_read_otl(packet, 'GPOS'); + font->GDEF = caryll_read_GDEF(packet); + } return font; } } diff --git a/src/fontops/unconsolidate.c b/src/fontops/unconsolidate.c index aea4dd92..6fac842f 100644 --- a/src/fontops/unconsolidate.c +++ b/src/fontops/unconsolidate.c @@ -7,6 +7,7 @@ // same name whare one unique string entity stored in font->glyph_order. // (Separate?) static void caryll_name_glyphs(caryll_font *font) { + if (!font->glyf) return; glyph_order_hash *glyph_order = malloc(sizeof(glyph_order_hash)); *glyph_order = NULL; @@ -227,7 +228,7 @@ static void caryll_name_features(caryll_font *font) { } static void merge_hmtx(caryll_font *font) { // Merge hmtx table into glyf. - if (font->hhea && font->hmtx) { + if (font->hhea && font->hmtx && font->glyf) { uint32_t count_a = font->hhea->numberOfMetrics; for (uint16_t j = 0; j < font->glyf->numberGlyphs; j++) { font->glyf->glyphs[j]->advanceWidth = @@ -237,7 +238,7 @@ static void merge_hmtx(caryll_font *font) { } static void merge_vmtx(caryll_font *font) { // Merge vmtx table into glyf. - if (font->vhea && font->vmtx) { + if (font->vhea && font->vmtx && font->glyf) { uint32_t count_a = font->vhea->numOfLongVerMetrics; for (uint16_t j = 0; j < font->glyf->numberGlyphs; j++) { font->glyf->glyphs[j]->advanceHeight = diff --git a/src/tables/cmap.c b/src/tables/cmap.c index 85c98127..90106252 100644 --- a/src/tables/cmap.c +++ b/src/tables/cmap.c @@ -117,7 +117,7 @@ void caryll_cmap_to_json(cmap_hash *table, json_value *root, caryll_dump_options json_value *cmap = json_object_new(HASH_COUNT(*table)); cmap_entry *item; - foreach_hash(item, *table) { + foreach_hash(item, *table) if(item->glyph.name) { sds key = sdsfromlonglong(item->unicode); json_object_push(cmap, key, json_string_new_length(sdslen(item->glyph.name), item->glyph.name)); From 9d28ed0b4232e42e6fbffe45a087a58e640caea5 Mon Sep 17 00:00:00 2001 From: be5invis Date: Mon, 11 Apr 2016 09:03:47 +0800 Subject: [PATCH 02/32] otfccbuild now supports building from STDIN. --- src/otfccbuild.c | 88 ++++++++++++++++++++++++++++++++++++------------ 1 file changed, 66 insertions(+), 22 deletions(-) diff --git a/src/otfccbuild.c b/src/otfccbuild.c index ed84eecd..d0346855 100644 --- a/src/otfccbuild.c +++ b/src/otfccbuild.c @@ -21,12 +21,67 @@ void printHelp() { " instead of stating the average width of glyphs. \n" " Useful when creating a monospaced font.\n" " --short-post : Don't export glyph names in the result font. It \n" - " will reduce file size.\n" + " will reduce file size.\n" " --dummy-DSIG : Include an empty DSIG table in the font. For\n" - " some Microsoft applications, a DSIG is required\n" - " to enable OpenType features." + " some Microsoft applications, a DSIG is required\n" + " to enable OpenType features." "\n"); } +void readEntireFile(char *inPath, char **_buffer, long *_length) { + char *buffer = NULL; + long length = 0; + FILE *f = fopen(inPath, "rb"); + if (!f) { + fprintf(stderr, "Cannot read JSON file \"%s\". Exit.\n", inPath); + exit(EXIT_FAILURE); + } + fseek(f, 0, SEEK_END); + length = ftell(f); + fseek(f, 0, SEEK_SET); + buffer = malloc(length); + if (buffer) { fread(buffer, 1, length, f); } + fclose(f); + + if (!buffer) { + fprintf(stderr, "Cannot read JSON file \"%s\". Exit.\n", inPath); + exit(EXIT_FAILURE); + } + *_buffer = buffer; + *_length = length; +} + +void readEntireStdin(char **_buffer, long *_length) { + static const long BUF_SIZE = 0x400; + static const long BUF_GROW = 0x100000; + static const long BUF_MIN = 0x100; + long size = BUF_SIZE; + char *buffer = malloc(size); + long length = 0; + long remain = size; + while (!feof(stdin)) { + if (remain <= BUF_MIN) { + remain += size; + if (size < BUF_GROW) { + size *= 2; + } else { + size += BUF_GROW; + } + char *p = realloc(buffer, size); + if (p == NULL) { + free(buffer); + exit(EXIT_FAILURE); + } + buffer = p; + } + + fgets(buffer + length, remain, stdin); + long n = strlen(buffer + length); + length += n; + remain -= n; + } + *_buffer = buffer; + *_length = length; +} void print_table(sfnt_builder_entry *t) { fprintf(stderr, "Writing Table %c%c%c%c, Length: %8d, Checksum: %08X\n", @@ -98,9 +153,7 @@ int main(int argc, char *argv[]) { } if (optind >= argc) { - fprintf(stderr, "Expected argument after options for input file name. Exit.\n"); - printHelp(); - exit(EXIT_FAILURE); + inPath = NULL; } else { inPath = sdsnew(argv[optind]); } @@ -111,26 +164,17 @@ int main(int argc, char *argv[]) { exit(EXIT_FAILURE); } - char *buffer = NULL; - long length = 0; + char *buffer; + long length; { - FILE *f = fopen(inPath, "rb"); - if (!f) { - fprintf(stderr, "Cannot read JSON file \"%s\". Exit.\n", inPath); - exit(EXIT_FAILURE); + if (inPath) { + readEntireFile(inPath, &buffer, &length); + } else { + readEntireStdin(&buffer, &length); } - fseek(f, 0, SEEK_END); - length = ftell(f); - fseek(f, 0, SEEK_SET); - buffer = malloc(length); - if (buffer) { fread(buffer, 1, length, f); } - fclose(f); if (show_time) push_stopwatch("Read file", &begin); - if (!buffer) { - fprintf(stderr, "Cannot read JSON file \"%s\". Exit.\n", inPath); - exit(EXIT_FAILURE); - } } + json_value *root; { root = json_parse(buffer, length); From d1d8da57e2e5c9736882598ace246e4ddb9c1b2f Mon Sep 17 00:00:00 2001 From: be5invis Date: Mon, 11 Apr 2016 10:26:01 +0800 Subject: [PATCH 03/32] add win32-specific code to avoid redirecting wrongly-encoded text. --- src/caryll-font.c | 12 +++++----- src/fontops/consolidate.c | 2 +- src/otfccbuild.c | 7 +++--- src/otfccdump.c | 47 ++++++++++++++++++++++++++++++++++++++- 4 files changed, 57 insertions(+), 11 deletions(-) diff --git a/src/caryll-font.c b/src/caryll-font.c index 1db6d2b3..4f989abc 100644 --- a/src/caryll-font.c +++ b/src/caryll-font.c @@ -130,17 +130,17 @@ caryll_font *caryll_font_from_json(json_value *root, caryll_dump_options *dumpop font->gasp = caryll_gasp_from_json(root); } font->vhea = caryll_vhea_from_json(root, dumpopts); - - font->GSUB = caryll_otl_from_json(root, dumpopts, "GSUB"); - font->GPOS = caryll_otl_from_json(root, dumpopts, "GPOS"); - font->GDEF = caryll_GDEF_from_json(root, dumpopts); - + if (font->glyf) { + font->GSUB = caryll_otl_from_json(root, dumpopts, "GSUB"); + font->GPOS = caryll_otl_from_json(root, dumpopts, "GPOS"); + font->GDEF = caryll_GDEF_from_json(root, dumpopts); + } return font; } caryll_buffer *caryll_write_font(caryll_font *font, caryll_dump_options *dumpopts) { caryll_buffer *bufglyf = bufnew(); caryll_buffer *bufloca = bufnew(); - caryll_write_glyf(font->glyf, font->head, bufglyf, bufloca); + if (font->glyf && font->head) { caryll_write_glyf(font->glyf, font->head, bufglyf, bufloca); } sfnt_builder *builder = new_sfnt_builder(); sfnt_builder_push_table(builder, 'head', caryll_write_head(font->head)); diff --git a/src/fontops/consolidate.c b/src/fontops/consolidate.c index 0afca740..8684ed4b 100644 --- a/src/fontops/consolidate.c +++ b/src/fontops/consolidate.c @@ -140,5 +140,5 @@ void caryll_font_consolidate_otl(caryll_font *font) { void caryll_font_consolidate(caryll_font *font, caryll_dump_options *dumpopts) { caryll_font_consolidate_glyf(font); caryll_font_consolidate_cmap(font); - caryll_font_consolidate_otl(font); + if(font -> glyf) caryll_font_consolidate_otl(font); } diff --git a/src/otfccbuild.c b/src/otfccbuild.c index d0346855..351f80ff 100644 --- a/src/otfccbuild.c +++ b/src/otfccbuild.c @@ -153,9 +153,9 @@ int main(int argc, char *argv[]) { } if (optind >= argc) { - inPath = NULL; + inPath = NULL; // read from STDIN } else { - inPath = sdsnew(argv[optind]); + inPath = sdsnew(argv[optind]); // read from file } if (!outputPath) { fprintf(stderr, "Unable to build OpenType font tile : output path not " @@ -198,8 +198,9 @@ int main(int argc, char *argv[]) { } { caryll_font_consolidate(font, dumpopts); + if (show_time) push_stopwatch("Consolidation", &begin); caryll_font_stat(font, dumpopts); - if (show_time) push_stopwatch("Consolidation and Stating", &begin); + if (show_time) push_stopwatch("Stating", &begin); } { caryll_buffer *otf = caryll_write_font(font, dumpopts); diff --git a/src/otfccdump.c b/src/otfccdump.c index 355f5b14..7e199a99 100644 --- a/src/otfccdump.c +++ b/src/otfccdump.c @@ -18,7 +18,10 @@ void printHelp() { " --ugly : Force uglify the output JSON.\n" " --time : Time each substep.\n" " --ignore-glyph-order : Do not export glyph order information.\n" - " --ignore-hints : Do not export hingint information.\n"); + " --ignore-hints : Do not export hingint information.\n" + " --add-bom : Add BOM mark in the output. (This is default\n" + " on Windows when redirecting to another program.\n" + " Use --no-bom to turn it off.)"); } int main(int argc, char *argv[]) { @@ -27,6 +30,8 @@ int main(int argc, char *argv[]) { bool show_pretty = false; bool show_ugly = false; bool show_time = false; + bool add_bom = false; + bool no_bom = false; uint32_t ttcindex = 0; struct option longopts[] = {{"version", no_argument, NULL, 'v'}, {"help", no_argument, NULL, 'h'}, @@ -35,6 +40,8 @@ int main(int argc, char *argv[]) { {"time", no_argument, NULL, 0}, {"ignore-glyph-order", no_argument, NULL, 0}, {"ignore-hints", no_argument, NULL, 0}, + {"add-bom", no_argument, NULL, 0}, + {"no-bom", no_argument, NULL, 0}, {"output", required_argument, NULL, 'o'}, {"ttc-index", required_argument, NULL, 'n'}, {0, 0, 0, 0}}; @@ -53,6 +60,8 @@ int main(int argc, char *argv[]) { if (longopts[option_index].flag != 0) break; if (strcmp(longopts[option_index].name, "ugly") == 0) { show_ugly = true; } if (strcmp(longopts[option_index].name, "time") == 0) { show_time = true; } + if (strcmp(longopts[option_index].name, "add-bom") == 0) { add_bom = true; } + if (strcmp(longopts[option_index].name, "no-bom") == 0) { no_bom = true; } if (strcmp(longopts[option_index].name, "ignore-glyph-order") == 0) { dumpopts->ignore_glyph_order = true; } @@ -156,10 +165,46 @@ int main(int argc, char *argv[]) { fprintf(stderr, "Cannot write to file \"%s\". Exit.", outputPath); exit(EXIT_FAILURE); } + if (add_bom) { + fputc(0xEF, stdout); + fputc(0xBB, stdout); + fputc(0xBF, stdout); + } fputs(buf, outputFile); fclose(outputFile); } else { +#ifdef WIN32 + if (isatty(fileno(stdout))) { + DWORD dwNum = MultiByteToWideChar(CP_UTF8, 0, buf, -1, NULL, 0); + LPWSTR pwStr = malloc(dwNum * sizeof(WCHAR)); + MultiByteToWideChar(CP_UTF8, 0, buf, -1, pwStr, dwNum); + DWORD actual = 0; + DWORD written = 0; + const DWORD chunk = 0x10000; + while (written < dwNum) { + DWORD len = dwNum - written; + if (len > chunk) len = chunk; + WriteConsoleW(GetStdHandle(STD_OUTPUT_HANDLE), pwStr + written, len, &actual, + NULL); + written += len; + } + free(pwStr); + } else { + if (!no_bom) { + fputc(0xEF, stdout); + fputc(0xBB, stdout); + fputc(0xBF, stdout); + } + fputs(buf, stdout); + } +#else + if (add_bom) { + fputc(0xEF, stdout); + fputc(0xBB, stdout); + fputc(0xBF, stdout); + } fputs(buf, stdout); +#endif } if (show_time) push_stopwatch("Write to file", &begin); } From 33ffbb7013bcbdcb71292b6c6bb1bec3e14424e2 Mon Sep 17 00:00:00 2001 From: be5invis Date: Mon, 11 Apr 2016 11:04:48 +0800 Subject: [PATCH 04/32] add handler for non-ASCII paths (win32) --- src/caryll-sfnt.c | 5 ++--- src/caryll-sfnt.h | 3 ++- src/otfccbuild.c | 12 ++++++++++-- src/otfccdump.c | 20 +++++++++++++------ src/support/platform.h | 44 ++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 72 insertions(+), 12 deletions(-) create mode 100644 src/support/platform.h diff --git a/src/caryll-sfnt.c b/src/caryll-sfnt.c index 58e4d624..4cc29bd3 100644 --- a/src/caryll-sfnt.c +++ b/src/caryll-sfnt.c @@ -30,10 +30,9 @@ static void caryll_read_packets(caryll_sfnt *font, FILE *file) { } } -caryll_sfnt *caryll_read_sfnt(const char *path) { - caryll_sfnt *font = (caryll_sfnt *)malloc(sizeof(caryll_sfnt) * 1); - FILE *file = fopen(path, "rb"); +caryll_sfnt *caryll_read_sfnt(FILE *file) { if (!file) return NULL; + caryll_sfnt *font = (caryll_sfnt *)malloc(sizeof(caryll_sfnt) * 1); font->type = caryll_get32u(file); diff --git a/src/caryll-sfnt.h b/src/caryll-sfnt.h index 5e7d5533..b68efa78 100644 --- a/src/caryll-sfnt.h +++ b/src/caryll-sfnt.h @@ -2,6 +2,7 @@ #define CARYLL_SFNT_H #include +#include typedef struct { uint32_t tag; @@ -27,7 +28,7 @@ typedef struct { caryll_packet *packets; } caryll_sfnt; -caryll_sfnt *caryll_read_sfnt(const char *path); +caryll_sfnt *caryll_read_sfnt(FILE *file); void caryll_delete_sfnt(caryll_sfnt *font); caryll_piece shift_piece(caryll_piece piece, uint32_t delta); diff --git a/src/otfccbuild.c b/src/otfccbuild.c index 351f80ff..1e4be790 100644 --- a/src/otfccbuild.c +++ b/src/otfccbuild.c @@ -4,6 +4,7 @@ #include #include "support/stopwatch.h" +#include "support/platform.h" #include "version.h" void printInfo() { fprintf(stdout, "This is otfccbuild, version %s.\n", VERSION); } @@ -30,7 +31,7 @@ void printHelp() { void readEntireFile(char *inPath, char **_buffer, long *_length) { char *buffer = NULL; long length = 0; - FILE *f = fopen(inPath, "rb"); + FILE *f = u8fopen(inPath, "rb"); if (!f) { fprintf(stderr, "Cannot read JSON file \"%s\". Exit.\n", inPath); exit(EXIT_FAILURE); @@ -89,7 +90,14 @@ void print_table(sfnt_builder_entry *t) { ((uint32_t)(t->tag) >> 8) & 0xff, t->tag & 0xff, t->length, t->checksum); } +#ifdef WIN32 +int main() { + int argc; + char **argv; + get_argv_utf8(&argc, &argv); +#else int main(int argc, char *argv[]) { +#endif struct timespec begin; time_now(&begin); @@ -204,7 +212,7 @@ int main(int argc, char *argv[]) { } { caryll_buffer *otf = caryll_write_font(font, dumpopts); - FILE *outfile = fopen(outputPath, "wb"); + FILE *outfile = u8fopen(outputPath, "wb"); fwrite(otf->s, sizeof(uint8_t), buflen(otf), outfile); fclose(outfile); if (show_time) push_stopwatch("Write OpenType", &begin); diff --git a/src/otfccdump.c b/src/otfccdump.c index 7e199a99..250b5bdc 100644 --- a/src/otfccdump.c +++ b/src/otfccdump.c @@ -4,6 +4,7 @@ #include #include "support/stopwatch.h" +#include "support/platform.h" #include "version.h" void printInfo() { fprintf(stdout, "This is otfccdump, version %s.\n", VERSION); } @@ -23,8 +24,15 @@ void printHelp() { " on Windows when redirecting to another program.\n" " Use --no-bom to turn it off.)"); } - +#ifdef WIN32 +int main() { + int argc; + char **argv; + get_argv_utf8(&argc, &argv); +#else int main(int argc, char *argv[]) { +#endif + bool show_help = false; bool show_version = false; bool show_pretty = false; @@ -110,7 +118,8 @@ int main(int argc, char *argv[]) { caryll_sfnt *sfnt; { - sfnt = caryll_read_sfnt(inPath); + FILE *file = u8fopen(inPath, "rb"); + sfnt = caryll_read_sfnt(file); if (!sfnt || sfnt->count == 0) { fprintf(stderr, "Cannot read SFNT file \"%s\". Exit.\n", inPath); exit(EXIT_FAILURE); @@ -160,7 +169,7 @@ int main(int argc, char *argv[]) { { if (outputPath) { - FILE *outputFile = fopen(outputPath, "wb"); + FILE *outputFile = u8fopen(outputPath, "wb"); if (!outputFile) { fprintf(stderr, "Cannot write to file \"%s\". Exit.", outputPath); exit(EXIT_FAILURE); @@ -175,9 +184,8 @@ int main(int argc, char *argv[]) { } else { #ifdef WIN32 if (isatty(fileno(stdout))) { - DWORD dwNum = MultiByteToWideChar(CP_UTF8, 0, buf, -1, NULL, 0); - LPWSTR pwStr = malloc(dwNum * sizeof(WCHAR)); - MultiByteToWideChar(CP_UTF8, 0, buf, -1, pwStr, dwNum); + LPWSTR pwStr; + DWORD dwNum = widen_utf8(buf, &pwStr); DWORD actual = 0; DWORD written = 0; const DWORD chunk = 0x10000; diff --git a/src/support/platform.h b/src/support/platform.h new file mode 100644 index 00000000..aec7cae3 --- /dev/null +++ b/src/support/platform.h @@ -0,0 +1,44 @@ +#ifdef WIN32 + +#include +#include +#include +#include +int get_argv_utf8(int *argc_ptr, char ***argv_ptr) { + int argc; + char **argv; + wchar_t **argv_utf16 = CommandLineToArgvW(GetCommandLineW(), &argc); + int i; + int offset = (argc + 1) * sizeof(char *); + int size = offset; + for (i = 0; i < argc; i++) + size += WideCharToMultiByte(CP_UTF8, 0, argv_utf16[i], -1, 0, 0, 0, 0); + argv = malloc(size); + for (i = 0; i < argc; i++) { + argv[i] = (char *)argv + offset; + offset += WideCharToMultiByte(CP_UTF8, 0, argv_utf16[i], -1, argv[i], size - offset, 0, 0); + } + *argc_ptr = argc; + *argv_ptr = argv; + return 0; +} +int widen_utf8(char *filename_utf8, LPWSTR *filename_w) { + int num_chars = MultiByteToWideChar(CP_UTF8, 0, filename_utf8, -1, 0, 0); + int size = sizeof(WCHAR); + *filename_w = malloc(size * num_chars); + MultiByteToWideChar(CP_UTF8, 0, filename_utf8, -1, *filename_w, num_chars); + return num_chars; +} +FILE *__u8fopen(char *path, char *mode) { + LPWSTR wpath, wmode; + widen_utf8(path, &wpath); + widen_utf8(mode, &wmode); + FILE *f = _wfopen(wpath, wmode); + free(wpath); + free(wmode); + return f; +} +#define u8fopen __u8fopen +#else +#define u8fopen fopen +#endif From dd23ad15acd8d267caad8afc03ca1cbab4f8a957 Mon Sep 17 00:00:00 2001 From: be5invis Date: Mon, 11 Apr 2016 11:05:30 +0800 Subject: [PATCH 05/32] update test --- tests/test-payload-1.c | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/tests/test-payload-1.c b/tests/test-payload-1.c index f886ae03..43467d4a 100644 --- a/tests/test-payload-1.c +++ b/tests/test-payload-1.c @@ -9,7 +9,8 @@ int main(int argc, char *argv[]) { printf("Testing Payload %s\n", argv[1]); - caryll_sfnt *sfnt = caryll_read_sfnt(argv[1]); + FILE *inf = fopen(argv[1], "rb"); + caryll_sfnt *sfnt = caryll_read_sfnt(inf); caryll_font *font = caryll_read_font(sfnt, 0); caryll_font_unconsolidate(font); @@ -25,11 +26,16 @@ int main(int argc, char *argv[]) { assert_equal("Glyph count", font->glyf->numberGlyphs, 15); assert_equal("glyf[14] contour count", font->glyf->glyphs[14]->numberOfContours, 2); assert_equal("glyf[14] instr length", font->glyf->glyphs[14]->instructionsLength, 281); - assert_equal("glyf[14] contour[0] pts", font->glyf->glyphs[14]->contours[0].pointsCount, (11 - 0 + 1)); - assert_equal("glyf[14] contour[1] pts", font->glyf->glyphs[14]->contours[1].pointsCount, (56 - 12 + 1)); - assert_equal("glyf[14] contour[0] point[0] x", font->glyf->glyphs[14]->contours[0].points[0].x, 28); - assert_equal("glyf[14] contour[0] point[0] y", font->glyf->glyphs[14]->contours[0].points[0].y, 63); - assert_equal("glyf[14] contour[0] point[0] on", font->glyf->glyphs[14]->contours[0].points[0].onCurve, true); + assert_equal("glyf[14] contour[0] pts", font->glyf->glyphs[14]->contours[0].pointsCount, + (11 - 0 + 1)); + assert_equal("glyf[14] contour[1] pts", font->glyf->glyphs[14]->contours[1].pointsCount, + (56 - 12 + 1)); + assert_equal("glyf[14] contour[0] point[0] x", + font->glyf->glyphs[14]->contours[0].points[0].x, 28); + assert_equal("glyf[14] contour[0] point[0] y", + font->glyf->glyphs[14]->contours[0].points[0].y, 63); + assert_equal("glyf[14] contour[0] point[0] on", + font->glyf->glyphs[14]->contours[0].points[0].onCurve, true); } { // Glyph order and naming @@ -71,10 +77,13 @@ int main(int argc, char *argv[]) { assert_exists("Found cmap entry for U+9DF9", s); if (s != NULL) assert_equal("U+9DF9 Mapping correct", s->glyph.gid, 9); } - + { // name assert_equal("Should have 34 name records", font->name->count, 34); - assert_equal("Name item 13 should be 'http://www.apache.org/licenses/LICENSE-2.0.html'", strcmp(font->name->records[13]->nameString, "http://www.apache.org/licenses/LICENSE-2.0.html"), 0); + assert_equal("Name item 13 should be 'http://www.apache.org/licenses/LICENSE-2.0.html'", + strcmp(font->name->records[13]->nameString, + "http://www.apache.org/licenses/LICENSE-2.0.html"), + 0); } caryll_delete_font(font); From f41eb6f422e8f7c5893f1ecf046b8be8a0d322b3 Mon Sep 17 00:00:00 2001 From: be5invis Date: Mon, 11 Apr 2016 11:32:42 +0800 Subject: [PATCH 06/32] fix formats --- src/support/util.h | 5 +++++ src/tables/otl/otl.c | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/support/util.h b/src/support/util.h index cf8ab0ab..bb91c95b 100644 --- a/src/support/util.h +++ b/src/support/util.h @@ -1,9 +1,14 @@ #ifndef CARYLL_SUPPORT_UTIL_H #define CARYLL_SUPPORT_UTIL_H +#ifndef __STDC_FORMAT_MACROS +#define __STDC_FORMAT_MACROS +#endif + #include #include #include +#include #include #include #include "../../extern/sds.h" diff --git a/src/tables/otl/otl.c b/src/tables/otl/otl.c index e62bb51f..7d1736fe 100644 --- a/src/tables/otl/otl.c +++ b/src/tables/otl/otl.c @@ -646,9 +646,9 @@ static INLINE caryll_buffer *writeOTLLookups(table_otl *table) { otl_lookup *lookup = table->lookups[j]; size_t lookupOffset = bufl->cursor; if (lookupOffset > 0xFFFF) { - fprintf(stderr, "[OTFCC-fea] Warning, Lookup %s Written at 0x%llX, " - "this lookup is corrupted.\n", - table->lookups[j]->name, lookupOffset); + fprintf(stderr, "[OTFCC-fea] Warning, Lookup %s Written at 0x%" PRIx32 ", " + "this lookup may be corrupted.\n", + table->lookups[j]->name, (int32_t)lookupOffset); } // lookup type if (useExtended) { From 932a4078561eec264cbd93f1a5578fd9dfb88924 Mon Sep 17 00:00:00 2001 From: be5invis Date: Mon, 11 Apr 2016 11:33:55 +0800 Subject: [PATCH 07/32] size is unsigned --- src/tables/otl/otl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tables/otl/otl.c b/src/tables/otl/otl.c index 7d1736fe..f1857746 100644 --- a/src/tables/otl/otl.c +++ b/src/tables/otl/otl.c @@ -648,7 +648,7 @@ static INLINE caryll_buffer *writeOTLLookups(table_otl *table) { if (lookupOffset > 0xFFFF) { fprintf(stderr, "[OTFCC-fea] Warning, Lookup %s Written at 0x%" PRIx32 ", " "this lookup may be corrupted.\n", - table->lookups[j]->name, (int32_t)lookupOffset); + table->lookups[j]->name, (uint32_t)lookupOffset); } // lookup type if (useExtended) { From 39147fb17553722655c5d2b3ba5722e65e18e730 Mon Sep 17 00:00:00 2001 From: be5invis Date: Mon, 11 Apr 2016 12:08:34 +0800 Subject: [PATCH 08/32] convert versions in several tables into f16dot16, and export float numbers to json. --- src/support/util.h | 9 +++++++-- src/tables/head.c | 6 +++--- src/tables/head.h | 2 +- src/tables/hhea.c | 6 +++--- src/tables/hhea.h | 2 +- src/tables/maxp.c | 6 +++--- src/tables/maxp.h | 2 +- src/tables/post.c | 2 +- src/tables/post.h | 4 ++-- src/tables/vhea.c | 2 +- src/tables/vhea.h | 2 +- tests/payload/iosevka-r.json | 6 +++--- 12 files changed, 27 insertions(+), 22 deletions(-) diff --git a/src/support/util.h b/src/support/util.h index bb91c95b..1fcce4ae 100644 --- a/src/support/util.h +++ b/src/support/util.h @@ -208,6 +208,7 @@ static INLINE uint64_t caryll_get64u(FILE *file) { return caryll_endian_convert64(tmp); } +// data reader static INLINE uint8_t read_8u(uint8_t *src) { return src[0]; } static INLINE uint16_t read_16u(uint8_t *src) { uint16_t b0 = ((uint16_t)src[0]) << 8; @@ -237,11 +238,15 @@ static INLINE int16_t read_16s(uint8_t *src) { return (int16_t)read_16u(src); } static INLINE int32_t read_32s(uint8_t *src) { return (int32_t)read_32u(src); } static INLINE int64_t read_64s(uint8_t *src) { return (int64_t)read_64u(src); } +// f2dot14 type +typedef int16_t f2dot14; static INLINE float caryll_from_f2dot14(int16_t x) { return x / 16384.0; } static INLINE int16_t caryll_to_f2dot14(float x) { return x * 16384.0; } -static INLINE float caryll_from_fixed(int32_t x) { return x / 65536.0; } -static INLINE int32_t caryll_to_fixed(float x) { return x * 65536.0; } +// F16.16 (fixed) type +typedef int32_t f16dot16; +static INLINE float caryll_from_fixed(f16dot16 x) { return x / 65536.0; } +static INLINE f16dot16 caryll_to_fixed(float x) { return x * 65536.0; } // glyph reference type typedef struct { diff --git a/src/tables/head.c b/src/tables/head.c index 66a9f1ee..80a882f0 100644 --- a/src/tables/head.c +++ b/src/tables/head.c @@ -16,7 +16,7 @@ table_head *caryll_read_head(caryll_packet packet) { fprintf(stderr, "table 'head' corrupted.\n"); } else { table_head *head = (table_head *)malloc(sizeof(table_head) * 1); - head->version = read_32u(data); + head->version = read_32s(data); head->fontRevison = read_32u(data + 4); head->checkSumAdjustment = read_32u(data + 8); head->magicNumber = read_32u(data + 12); @@ -42,7 +42,7 @@ table_head *caryll_read_head(caryll_packet packet) { void caryll_head_to_json(table_head *table, json_value *root, caryll_dump_options *dumpopts) { if (!table) return; json_value *head = json_object_new(15); - json_object_push(head, "version", json_integer_new(table->version)); + json_object_push(head, "version", json_double_new(caryll_from_fixed(table->version))); json_object_push(head, "fontRevison", json_integer_new(table->fontRevison)); json_object_push(head, "flags", json_integer_new(table->flags)); json_object_push(head, "unitsPerEm", json_integer_new(table->unitsPerEm)); @@ -64,7 +64,7 @@ table_head *caryll_head_from_json(json_value *root, caryll_dump_options *dumpopt table_head *head = caryll_new_head(); json_value *table = NULL; if ((table = json_obj_get_type(root, "head", json_object))) { - head->version = json_obj_getnum_fallback(table, "version", 0); + head->version = caryll_to_fixed(json_obj_getnum_fallback(table, "version", 0)); head->fontRevison = json_obj_getnum_fallback(table, "fontRevison", 0); head->flags = json_obj_getnum_fallback(table, "flags", 0); head->unitsPerEm = json_obj_getnum_fallback(table, "unitsPerEm", 0); diff --git a/src/tables/head.h b/src/tables/head.h index 5526b545..b3c0c047 100644 --- a/src/tables/head.h +++ b/src/tables/head.h @@ -6,7 +6,7 @@ typedef struct { // Font header - uint32_t version; + f16dot16 version; uint32_t fontRevison; uint32_t checkSumAdjustment; uint32_t magicNumber; diff --git a/src/tables/hhea.c b/src/tables/hhea.c index 799e33bf..8c514efe 100644 --- a/src/tables/hhea.c +++ b/src/tables/hhea.c @@ -14,7 +14,7 @@ table_hhea *caryll_read_hhea(caryll_packet packet) { fprintf(stderr, "table 'hhea' corrupted.\n"); } else { table_hhea *hhea = (table_hhea *)malloc(sizeof(table_hhea) * 1); - hhea->version = read_32u(data); + hhea->version = read_32s(data); hhea->ascender = read_16u(data + 4); hhea->descender = read_16u(data + 6); hhea->lineGap = read_16u(data + 8); @@ -40,7 +40,7 @@ table_hhea *caryll_read_hhea(caryll_packet packet) { void caryll_hhea_to_json(table_hhea *table, json_value *root, caryll_dump_options *dumpopts) { if (!table) return; json_value *hhea = json_object_new(13); - json_object_push(hhea, "version", json_integer_new(table->version)); + json_object_push(hhea, "version", json_double_new(caryll_from_fixed(table->version))); json_object_push(hhea, "ascender", json_integer_new(table->ascender)); json_object_push(hhea, "descender", json_integer_new(table->descender)); json_object_push(hhea, "lineGap", json_integer_new(table->lineGap)); @@ -61,7 +61,7 @@ table_hhea *caryll_hhea_from_json(json_value *root, caryll_dump_options *dumpopt table_hhea *hhea = caryll_new_hhea(); json_value *table = NULL; if ((table = json_obj_get_type(root, "hhea", json_object))) { - hhea->version = json_obj_getnum_fallback(table, "version", 0); + hhea->version = caryll_to_fixed(json_obj_getnum_fallback(table, "version", 0)); hhea->ascender = json_obj_getnum_fallback(table, "ascender", 0); hhea->descender = json_obj_getnum_fallback(table, "descender", 0); hhea->lineGap = json_obj_getnum_fallback(table, "lineGap", 0); diff --git a/src/tables/hhea.h b/src/tables/hhea.h index daf1bf8f..aa3c2c21 100644 --- a/src/tables/hhea.h +++ b/src/tables/hhea.h @@ -6,7 +6,7 @@ typedef struct { // Horizontal header - uint32_t version; + f16dot16 version; int16_t ascender; int16_t descender; int16_t lineGap; diff --git a/src/tables/maxp.c b/src/tables/maxp.c index 2fb1773d..e4647a45 100644 --- a/src/tables/maxp.c +++ b/src/tables/maxp.c @@ -15,7 +15,7 @@ table_maxp *caryll_read_maxp(caryll_packet packet) { fprintf(stderr, "table 'maxp' corrupted.\n"); } else { table_maxp *maxp = (table_maxp *)malloc(sizeof(table_maxp) * 1); - maxp->version = read_32u(data); + maxp->version = read_32s(data); maxp->numGlyphs = read_16u(data + 4); if (maxp->version == 0x00010000) { // TrueType Format 1 maxp->maxPoints = read_16u(data + 6); @@ -55,7 +55,7 @@ table_maxp *caryll_read_maxp(caryll_packet packet) { void caryll_maxp_to_json(table_maxp *table, json_value *root, caryll_dump_options *dumpopts) { if (!table) return; json_value *maxp = json_object_new(15); - json_object_push(maxp, "version", json_integer_new(table->version)); + json_object_push(maxp, "version", json_double_new(caryll_from_fixed(table->version))); json_object_push(maxp, "numGlyphs", json_integer_new(table->numGlyphs)); json_object_push(maxp, "maxPoints", json_integer_new(table->maxPoints)); json_object_push(maxp, "maxContours", json_integer_new(table->maxContours)); @@ -78,7 +78,7 @@ table_maxp *caryll_maxp_from_json(json_value *root, caryll_dump_options *dumpopt table_maxp *maxp = caryll_new_maxp(); json_value *table = NULL; if ((table = json_obj_get_type(root, "maxp", json_object))) { - maxp->version = json_obj_getnum(table, "version"); + maxp->version = caryll_to_fixed(json_obj_getnum(table, "version")); maxp->numGlyphs = json_obj_getnum(table, "numGlyphs"); maxp->maxZones = json_obj_getnum(table, "maxZones"); maxp->maxTwilightPoints = json_obj_getnum(table, "maxTwilightPoints"); diff --git a/src/tables/maxp.h b/src/tables/maxp.h index 2894564e..c7c12690 100644 --- a/src/tables/maxp.h +++ b/src/tables/maxp.h @@ -6,7 +6,7 @@ typedef struct { // Maximum profile - uint32_t version; + f16dot16 version; uint16_t numGlyphs; uint16_t maxPoints; uint16_t maxContours; diff --git a/src/tables/post.c b/src/tables/post.c index 499cb9ca..6ad58f9e 100644 --- a/src/tables/post.c +++ b/src/tables/post.c @@ -13,7 +13,7 @@ table_post *caryll_read_post(caryll_packet packet) { font_file_pointer data = table.data; table_post *post = (table_post *)malloc(sizeof(table_post) * 1); - post->version = read_32u(data); + post->version = read_32s(data); post->italicAngle = read_32u(data + 4); post->underlinePosition = read_16u(data + 8); post->underlineThickness = read_16u(data + 10); diff --git a/src/tables/post.h b/src/tables/post.h index 127c5dff..612ac7a4 100644 --- a/src/tables/post.h +++ b/src/tables/post.h @@ -8,8 +8,8 @@ typedef struct { // PostScript information - uint32_t version; - uint32_t italicAngle; + f16dot16 version; + f16dot16 italicAngle; int16_t underlinePosition; int16_t underlineThickness; uint32_t isFixedPitch; diff --git a/src/tables/vhea.c b/src/tables/vhea.c index 20512d83..163e8392 100644 --- a/src/tables/vhea.c +++ b/src/tables/vhea.c @@ -12,7 +12,7 @@ table_vhea *caryll_read_vhea(caryll_packet packet) { size_t length = table.length; if (length >= 36) { vhea = (table_vhea *)malloc(sizeof(table_vhea) * 1); - vhea->version = read_32u(data); + vhea->version = read_32s(data); vhea->ascent = read_16s(data + 4); vhea->descent = read_16s(data + 6); vhea->lineGap = read_16s(data + 8); diff --git a/src/tables/vhea.h b/src/tables/vhea.h index 07c68a54..5501d097 100644 --- a/src/tables/vhea.h +++ b/src/tables/vhea.h @@ -5,7 +5,7 @@ #include "../caryll-sfnt.h" typedef struct { - uint32_t version; + f16dot16 version; int16_t ascent; int16_t descent; int16_t lineGap; diff --git a/tests/payload/iosevka-r.json b/tests/payload/iosevka-r.json index c51f5df9..30d3aa4b 100644 --- a/tests/payload/iosevka-r.json +++ b/tests/payload/iosevka-r.json @@ -1,6 +1,6 @@ { "head": { - "version": 65536, + "version": 1.0, "fontRevison": 65536, "flags": 11, "unitsPerEm": 1000, @@ -17,7 +17,7 @@ "glyphDataFormat": 0 }, "hhea": { - "version": 65536, + "version": 1.0, "ascender": 977, "descender": -205, "lineGap": 67, @@ -32,7 +32,7 @@ "numberOfMetrics": 2692 }, "maxp": { - "version": 65536, + "version": 1.0, "numGlyphs": 2780, "maxPoints": 192, "maxContours": 24, From 5ddcf4fc787bdb535838ac41baef8db4eadb1a07 Mon Sep 17 00:00:00 2001 From: be5invis Date: Mon, 11 Apr 2016 13:07:06 +0800 Subject: [PATCH 09/32] check equality before freeing --- src/fontops/consolidate.c | 6 +++--- src/fontops/otl/chaining.c | 4 +++- src/fontops/otl/common.c | 4 ++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/fontops/consolidate.c b/src/fontops/consolidate.c index 8684ed4b..f1e162fc 100644 --- a/src/fontops/consolidate.c +++ b/src/fontops/consolidate.c @@ -10,7 +10,7 @@ void caryll_font_consolidate_glyph(glyf_glyph *g, caryll_font *font) { HASH_FIND_STR(*font->glyph_order, r->glyph.name, entry); if (entry) { r->glyph.gid = entry->gid; - sdsfree(r->glyph.name); + if (r->glyph.name != entry->name) sdsfree(r->glyph.name); r->glyph.name = entry->name; nReferencesConsolidated += 1; } else { @@ -63,7 +63,7 @@ void caryll_font_consolidate_cmap(caryll_font *font) { HASH_FIND_STR(*font->glyph_order, item->glyph.name, ordentry); if (ordentry) { item->glyph.gid = ordentry->gid; - sdsfree(item->glyph.name); + if (item->glyph.name != ordentry->name) sdsfree(item->glyph.name); item->glyph.name = ordentry->name; } else { fprintf(stderr, "[Consolidate] Ignored mapping U+%04X to " @@ -140,5 +140,5 @@ void caryll_font_consolidate_otl(caryll_font *font) { void caryll_font_consolidate(caryll_font *font, caryll_dump_options *dumpopts) { caryll_font_consolidate_glyf(font); caryll_font_consolidate_cmap(font); - if(font -> glyf) caryll_font_consolidate_otl(font); + if (font->glyf) caryll_font_consolidate_otl(font); } diff --git a/src/fontops/otl/chaining.c b/src/fontops/otl/chaining.c index 65e2f0c5..b0ce785c 100644 --- a/src/fontops/otl/chaining.c +++ b/src/fontops/otl/chaining.c @@ -19,7 +19,9 @@ bool consolidate_chaining(caryll_font *font, table_otl *table, otl_subtable *_su if (strcmp(table->lookups[k]->name, rule->apply[j].lookupName) == 0) { foundLookup = true; rule->apply[j].lookupIndex = k; - DELETE(sdsfree, rule->apply[j].lookupName); + if (rule->apply[j].lookupName != table->lookups[k]->name) { + DELETE(sdsfree, rule->apply[j].lookupName); + } rule->apply[j].lookupName = table->lookups[k]->name; } } diff --git a/src/fontops/otl/common.c b/src/fontops/otl/common.c index 0ff7c37d..90e0868c 100644 --- a/src/fontops/otl/common.c +++ b/src/fontops/otl/common.c @@ -11,7 +11,7 @@ void consolidate_coverage(caryll_font *font, otl_coverage *coverage, sds lookupN HASH_FIND_STR(*font->glyph_order, coverage->glyphs[j].name, ordentry); if (ordentry) { coverage->glyphs[j].gid = ordentry->gid; - sdsfree(coverage->glyphs[j].name); + if (ordentry->name != coverage->glyphs[j].name) sdsfree(coverage->glyphs[j].name); coverage->glyphs[j].name = ordentry->name; } else { fprintf(stderr, "[Consolidate] Ignored missing glyph /%s in lookup %s.\n", @@ -38,7 +38,7 @@ void consolidate_classdef(caryll_font *font, otl_classdef *cd, sds lookupName) { HASH_FIND_STR(*font->glyph_order, cd->glyphs[j].name, ordentry); if (ordentry) { cd->glyphs[j].gid = ordentry->gid; - sdsfree(cd->glyphs[j].name); + if (ordentry->name != cd->glyphs[j].name) sdsfree(cd->glyphs[j].name); cd->glyphs[j].name = ordentry->name; } else { fprintf(stderr, "[Consolidate] Ignored missing glyph /%s in lookup %s.\n", From 7db1ead0b80ff0cfc0b3c274cf067227731773fd Mon Sep 17 00:00:00 2001 From: be5invis Date: Mon, 11 Apr 2016 14:31:40 +0800 Subject: [PATCH 10/32] use base64 strings to tump instructions --- makefile | 6 +- src/support/base64.c | 87 + src/support/base64.h | 10 + src/support/platform.h | 5 + src/support/util.h | 1 + src/tables/fpgm-prep.c | 30 +- src/tables/glyf.c | 22 +- tests/payload/iosevka-r.json | 5566 +++++++++++++++++----------------- 8 files changed, 2904 insertions(+), 2823 deletions(-) create mode 100644 src/support/base64.c create mode 100644 src/support/base64.h diff --git a/makefile b/makefile index 4af50f9f..ba39a2b2 100644 --- a/makefile +++ b/makefile @@ -71,11 +71,11 @@ FONTOP_OTL_OBJECTS = $(TARGETDIR)/fopotl-common.o \ EXTERN_OBJECTS = $(TARGETDIR)/extern-sds.o $(TARGETDIR)/extern-json.o $(TARGETDIR)/extern-json-builder.o SUPPORT_OBJECTS = $(TARGETDIR)/support-glyphorder.o $(TARGETDIR)/support-aglfn.o \ $(TARGETDIR)/support-stopwatch.o $(TARGETDIR)/support-unicodeconv.o \ - $(TARGETDIR)/support-buffer.o + $(TARGETDIR)/support-buffer.o $(TARGETDIR)/support-base64.o EXECUTABLES = $(TARGETDIR)/otfccdump$(SUFFIX) $(TARGETDIR)/otfccbuild$(SUFFIX) OBJECTS = $(EXTERN_OBJECTS) $(SUPPORT_OBJECTS) $(TABLE_OBJECTS) $(OTL_OBJECTS) \ - $(FONTOP_OBJECTS) $(FONTOP_OTL_OBJECTS) $(MAIN_OBJECTS_1) + $(FONTOP_OBJECTS) $(FONTOP_OTL_OBJECTS) $(MAIN_OBJECTS_1) $(EXTERN_OBJECTS) : $(TARGETDIR)/extern-%.o : extern/%.c | $(DIRS) @echo CC "->" $@ @@ -106,7 +106,7 @@ $(FONTOP_OBJECTS) : $(TARGETDIR)/fontop-%.o : src/fontops/%.c src/fontops/%.h $( @echo CC "->" $@ @$(CC) $(CFLAGS) -c $< -o $@ -MAIN_H = $(subst .o,.h,$(subst $(TARGETDIR)/,src/,$(MAIN_OBJECTS_1))) +MAIN_H = $(subst .o,.h,$(subst $(TARGETDIR)/,src/,$(MAIN_OBJECTS_1))) src/support/platform.h $(MAIN_OBJECTS) : $(TARGETDIR)/%.o : src/%.c $(MAIN_H) $(SUPPORT_H) $(TABLES_H) $(OTL_H) $(FONTOPS_H) $(FOPOTL_H) | $(DIRS) @echo CC "->" $@ @$(CC) $(CFLAGS) -c $< -o $@ diff --git a/src/support/base64.c b/src/support/base64.c new file mode 100644 index 00000000..fc74dabb --- /dev/null +++ b/src/support/base64.c @@ -0,0 +1,87 @@ +#include "base64.h" +static const uint8_t base64_table[64] = + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; + +uint8_t *base64_encode(const uint8_t *src, size_t len, size_t *out_len) { + uint8_t *out, *pos; + const uint8_t *end, *in; + size_t olen; + + olen = len * 4 / 3 + 4; /* 3-byte blocks to 4-byte */ + olen++; /* nul termination */ + out = malloc(olen); + if (out == NULL) return NULL; + + end = src + len; + in = src; + pos = out; + while (end - in >= 3) { + *pos++ = base64_table[in[0] >> 2]; + *pos++ = base64_table[((in[0] & 0x03) << 4) | (in[1] >> 4)]; + *pos++ = base64_table[((in[1] & 0x0f) << 2) | (in[2] >> 6)]; + *pos++ = base64_table[in[2] & 0x3f]; + in += 3; + } + + if (end - in) { + *pos++ = base64_table[in[0] >> 2]; + if (end - in == 1) { + *pos++ = base64_table[(in[0] & 0x03) << 4]; + *pos++ = '='; + } else { + *pos++ = base64_table[((in[0] & 0x03) << 4) | (in[1] >> 4)]; + *pos++ = base64_table[(in[1] & 0x0f) << 2]; + } + *pos++ = '='; + } + + *pos = '\0'; + if (out_len) *out_len = pos - out; + return out; +} + +uint8_t *base64_decode(const uint8_t *src, size_t len, size_t *out_len) { + uint8_t dtable[256], *out, *pos, in[4], block[4], tmp; + size_t i, count, olen; + + memset(dtable, 0x80, 256); + for (i = 0; i < sizeof(base64_table); i++) dtable[base64_table[i]] = i; + dtable['='] = 0; + + count = 0; + for (i = 0; i < len; i++) { + if (dtable[src[i]] != 0x80) count++; + } + + if (count % 4) return NULL; + + olen = count / 4 * 3; + pos = out = malloc(count); + if (out == NULL) return NULL; + + count = 0; + for (i = 0; i < len; i++) { + tmp = dtable[src[i]]; + if (tmp == 0x80) continue; + + in[count] = src[i]; + block[count] = tmp; + count++; + if (count == 4) { + *pos++ = (block[0] << 2) | (block[1] >> 4); + *pos++ = (block[1] << 4) | (block[2] >> 2); + *pos++ = (block[2] << 6) | block[3]; + count = 0; + } + } + + if (pos > out) { + if (in[2] == '=') + pos -= 2; + else if (in[3] == '=') + pos--; + } + + *out_len = pos - out; + return out; +} diff --git a/src/support/base64.h b/src/support/base64.h new file mode 100644 index 00000000..272327fe --- /dev/null +++ b/src/support/base64.h @@ -0,0 +1,10 @@ +#ifndef CARYLL_SUPPORT_BASE64_H +#define CARYLL_SUPPORT_BASE64_H + +#include +#include +#include +uint8_t *base64_encode(const uint8_t *src, size_t len, size_t *out_len); +uint8_t *base64_decode(const uint8_t *src, size_t len, size_t *out_len); + +#endif diff --git a/src/support/platform.h b/src/support/platform.h index aec7cae3..67595a87 100644 --- a/src/support/platform.h +++ b/src/support/platform.h @@ -1,3 +1,6 @@ +#ifndef CARYLL_SUPPORT_PLATFORM_H +#define CARYLL_SUPPORT_PLATFORM_H + #ifdef WIN32 #include @@ -42,3 +45,5 @@ FILE *__u8fopen(char *path, char *mode) { #else #define u8fopen fopen #endif + +#endif diff --git a/src/support/util.h b/src/support/util.h index 1fcce4ae..055e53d5 100644 --- a/src/support/util.h +++ b/src/support/util.h @@ -16,6 +16,7 @@ #include "../../extern/json.h" #include "../../extern/json-builder.h" #include "buffer.h" +#include "base64.h" #ifdef _MSC_VER #define INLINE __forceinline /* use __forceinline (VC++ specific) */ diff --git a/src/tables/fpgm-prep.c b/src/tables/fpgm-prep.c index a4294b5f..a5cbd2ce 100644 --- a/src/tables/fpgm-prep.c +++ b/src/tables/fpgm-prep.c @@ -26,34 +26,20 @@ void caryll_delete_fpgm_prep(table_fpgm_prep *table) { void caryll_fpgm_prep_to_json(table_fpgm_prep *table, json_value *root, caryll_dump_options *dumpopts, const char *tag) { if (!table) return; - json_value *t = json_array_new(table->length); - for (uint32_t j = 0; j < table->length; j++) { - json_array_push(t, json_integer_new(table->bytes[j])); - } - json_object_push(root, tag, preserialize(t)); + size_t len = 0; + uint8_t *buf = base64_encode(table->bytes, table->length, &len); + json_object_push(root, tag, json_string_new_nocopy(len, (char *)buf)); } table_fpgm_prep *caryll_fpgm_prep_from_json(json_value *root, const char *tag) { table_fpgm_prep *t = NULL; json_value *table = NULL; - if ((table = json_obj_get_type(root, tag, json_array))) { - t = malloc(sizeof(table_fpgm_prep)); - if (!t) goto FAIL; - t->length = table->u.array.length; - t->bytes = malloc(sizeof(uint8_t) * t->length); - if (!t->bytes) goto FAIL; - for (uint32_t j = 0; j < table->u.array.length; j++) { - json_value *v = table->u.array.values[j]; - if (v->type == json_integer) { - t->bytes[j] = v->u.integer; - } else { - t->bytes[j] = 0; - } - } + if ((table = json_obj_get_type(root, tag, json_string))) { + NEW(t); + size_t len; + t->bytes = base64_decode((uint8_t *)table->u.string.ptr, table->u.string.length, &len); + t->length = len; } return t; -FAIL: - if (t) caryll_delete_fpgm_prep(t); - return NULL; } caryll_buffer *caryll_write_fpgm_prep(table_fpgm_prep *table) { diff --git a/src/tables/glyf.c b/src/tables/glyf.c index 8387680f..4eefd9d6 100644 --- a/src/tables/glyf.c +++ b/src/tables/glyf.c @@ -393,11 +393,9 @@ static INLINE json_value *glyf_glyph_references_to_json(glyf_glyph *g, } static INLINE json_value *glyf_glyph_instructions_to_json(glyf_glyph *g, caryll_dump_options *dumpopts) { - json_value *instructions = json_array_new(g->instructionsLength); - for (uint16_t j = 0; j < g->instructionsLength; j++) { - json_array_push(instructions, json_integer_new(g->instructions[j])); - } - return instructions; + size_t len = 0; + uint8_t *buf = base64_encode(g->instructions, g->instructionsLength, &len); + return json_string_new_nocopy(len, (char *)buf); } static INLINE json_value *glyf_glyph_to_json(glyf_glyph *g, caryll_dump_options *dumpopts) { json_value *glyph = json_object_new(7); @@ -503,15 +501,9 @@ static INLINE void glyf_instructions_from_json(json_value *col, glyf_glyph *g) { g->instructions = NULL; return; } - g->instructionsLength = col->u.array.length; - g->instructions = calloc(g->instructionsLength, sizeof(uint8_t)); - for (uint16_t j = 0; j < g->instructionsLength; j++) { - json_value *byte = col->u.array.values[j]; - if (byte && byte->type == json_integer) - g->instructions[j] = byte->u.integer; - else if (byte && byte->type == json_double) - g->instructions[j] = byte->u.dbl; - } + size_t instrlen; + g->instructions = base64_decode((uint8_t *)col->u.string.ptr, col->u.string.length, &instrlen); + g->instructionsLength = instrlen; } static INLINE glyf_glyph *caryll_glyf_glyph_from_json(json_value *glyphdump, glyph_order_entry *order_entry, @@ -524,7 +516,7 @@ static INLINE glyf_glyph *caryll_glyf_glyph_from_json(json_value *glyphdump, glyf_contours_from_json(json_obj_get_type(glyphdump, "contours", json_array), g); glyf_references_from_json(json_obj_get_type(glyphdump, "references", json_array), g); if (!dumpopts->ignore_hints) { - glyf_instructions_from_json(json_obj_get_type(glyphdump, "instructions", json_array), g); + glyf_instructions_from_json(json_obj_get_type(glyphdump, "instructions", json_string), g); } else { g->instructionsLength = 0; g->instructions = NULL; diff --git a/tests/payload/iosevka-r.json b/tests/payload/iosevka-r.json index 30d3aa4b..b9ffdb40 100644 --- a/tests/payload/iosevka-r.json +++ b/tests/payload/iosevka-r.json @@ -2550,19466 +2550,19466 @@ "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":0,"on":true}],[{"x":132,"y":72,"on":true},{"x":368,"y":72,"on":true},{"x":368,"y":663,"on":true},{"x":132,"y":663,"on":true}]], "references": [], - "instructions": [181,6,4,1,0,2,48,43] + "instructions": "tQYEAQACMCs=" }, "glyph1": { "name": "glyph1", "advanceWidth": 0, "contours": [], "references": [], - "instructions": [] + "instructions": "" }, "glyph2": { "name": "glyph2", "advanceWidth": 333, "contours": [], "references": [], - "instructions": [] + "instructions": "" }, "space": { "name": "space", "advanceWidth": 500, "contours": [], "references": [], - "instructions": [] + "instructions": "" }, "uni0307": { "name": "uni0307", "advanceWidth": 0, "contours": [[{"x":-312,"y":665,"on":false},{"x":-312,"y":705,"on":false},{"x":-304,"y":719,"on":true},{"x":-297,"y":732,"on":false},{"x":-284,"y":739,"on":true},{"x":-270,"y":747,"on":false},{"x":-230,"y":748,"on":false},{"x":-216,"y":739,"on":true},{"x":-203,"y":732,"on":false},{"x":-196,"y":719,"on":true},{"x":-188,"y":705,"on":false},{"x":-188,"y":665,"on":false},{"x":-196,"y":651,"on":true},{"x":-203,"y":638,"on":false},{"x":-216,"y":631,"on":true},{"x":-230,"y":622,"on":false},{"x":-270,"y":622,"on":false},{"x":-284,"y":631,"on":true},{"x":-297,"y":638,"on":false},{"x":-304,"y":651,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,21,0,0,1,1,0,87,0,0,0,1,95,0,1,0,1,79,25,21,2,9,22,43,177,6,0,68] + "instructions": "sQZkREAVAAABAQBXAAAAAV8AAQABTxkVAgkWK7EGAEQ=" }, "uni0308": { "name": "uni0308", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0307","x":100,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":-100,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni030A": { "name": "uni030A", "advanceWidth": 0, "contours": [[{"x":-346,"y":630,"on":false},{"x":-346,"y":691,"on":false},{"x":-333,"y":713,"on":true},{"x":-322,"y":732,"on":false},{"x":-303,"y":744,"on":true},{"x":-281,"y":757,"on":false},{"x":-219,"y":757,"on":false},{"x":-197,"y":744,"on":true},{"x":-178,"y":733,"on":false},{"x":-167,"y":713,"on":true},{"x":-154,"y":691,"on":false},{"x":-154,"y":630,"on":false},{"x":-167,"y":608,"on":true},{"x":-178,"y":589,"on":false},{"x":-197,"y":577,"on":true},{"x":-219,"y":565,"on":false},{"x":-281,"y":565,"on":false},{"x":-303,"y":577,"on":true},{"x":-322,"y":588,"on":false},{"x":-333,"y":608,"on":true}],[{"x":-287,"y":678,"on":false},{"x":-287,"y":644,"on":false},{"x":-267,"y":624,"on":false},{"x":-233,"y":624,"on":false},{"x":-213,"y":644,"on":false},{"x":-213,"y":678,"on":false},{"x":-233,"y":698,"on":false},{"x":-267,"y":698,"on":false}]], "references": [], - "instructions": [177,6,100,68,64,31,0,0,0,3,2,0,3,103,0,2,1,1,2,87,0,2,2,1,95,0,1,2,1,79,19,22,25,21,4,9,24,43,177,6,0,68] + "instructions": "sQZkREAfAAAAAwIAA2cAAgEBAlcAAgIBXwABAgFPExYZFQQJGCuxBgBE" }, "uni1AB2": { "name": "uni1AB2", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni030A","x":-81,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":81,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "gravecomb": { "name": "gravecomb", "advanceWidth": 0, "contours": [[{"x":-383,"y":718,"on":true},{"x":-317,"y":770,"on":true},{"x":-183,"y":606,"on":true},{"x":-238,"y":563,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "grave": { "name": "grave", "advanceWidth": 500, "contours": [[{"x":90,"y":734,"on":true},{"x":156,"y":786,"on":true},{"x":327,"y":579,"on":true},{"x":273,"y":536,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "acutecomb": { "name": "acutecomb", "advanceWidth": 0, "contours": [[{"x":-317,"y":606,"on":true},{"x":-183,"y":770,"on":true},{"x":-117,"y":718,"on":true},{"x":-262,"y":563,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "acute": { "name": "acute", "advanceWidth": 500, "contours": [[{"x":173,"y":579,"on":true},{"x":344,"y":786,"on":true},{"x":410,"y":734,"on":true},{"x":227,"y":536,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "uni0302": { "name": "uni0302", "advanceWidth": 0, "contours": [[{"x":-424,"y":616,"on":true},{"x":-294,"y":767,"on":true},{"x":-206,"y":767,"on":true},{"x":-76,"y":616,"on":true},{"x":-145,"y":567,"on":true},{"x":-250,"y":708,"on":true},{"x":-355,"y":567,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,15,6,5,4,3,4,0,71,0,0,0,116,17,1,9,21,43,177,6,0,68] + "instructions": "sQZkREAPBgUEAwQARwAAAHQRAQkVK7EGAEQ=" }, "asciicircum": { "name": "asciicircum", "advanceWidth": 500, "contours": [[{"x":54,"y":584,"on":true},{"x":208,"y":778,"on":true},{"x":292,"y":778,"on":true},{"x":446,"y":584,"on":true},{"x":379,"y":538,"on":true},{"x":250,"y":719,"on":true},{"x":121,"y":538,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,15,6,5,4,3,4,0,71,0,0,0,116,17,1,9,21,43,177,6,0,68] + "instructions": "sQZkREAPBgUEAwQARwAAAHQRAQkVK7EGAEQ=" }, "uni030C": { "name": "uni030C", "advanceWidth": 0, "contours": [[{"x":-424,"y":719,"on":true},{"x":-355,"y":769,"on":true},{"x":-250,"y":628,"on":true},{"x":-145,"y":769,"on":true},{"x":-76,"y":719,"on":true},{"x":-206,"y":569,"on":true},{"x":-294,"y":569,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,15,4,3,2,1,4,0,72,0,0,0,116,21,1,9,21,43,177,6,0,68] + "instructions": "sQZkREAPBAMCAQQASAAAAHQVAQkVK7EGAEQ=" }, "tildecomb": { "name": "tildecomb", "advanceWidth": 0, "contours": [[{"x":-433,"y":613,"on":true},{"x":-414,"y":659,"on":false},{"x":-397,"y":689,"on":true},{"x":-371,"y":734,"on":false},{"x":-344,"y":750,"on":true},{"x":-327,"y":760,"on":false},{"x":-308,"y":759,"on":true},{"x":-290,"y":759,"on":false},{"x":-273,"y":750,"on":true},{"x":-250,"y":737,"on":false},{"x":-219,"y":688,"on":true},{"x":-201,"y":660,"on":false},{"x":-192,"y":652,"on":true},{"x":-181,"y":662,"on":false},{"x":-167,"y":685,"on":true},{"x":-151,"y":712,"on":false},{"x":-133,"y":756,"on":true},{"x":-67,"y":732,"on":true},{"x":-86,"y":686,"on":false},{"x":-103,"y":656,"on":true},{"x":-129,"y":611,"on":false},{"x":-156,"y":595,"on":true},{"x":-173,"y":585,"on":false},{"x":-192,"y":585,"on":true},{"x":-210,"y":585,"on":false},{"x":-227,"y":595,"on":true},{"x":-250,"y":608,"on":false},{"x":-281,"y":656,"on":true},{"x":-299,"y":684,"on":false},{"x":-308,"y":693,"on":true},{"x":-319,"y":683,"on":false},{"x":-333,"y":659,"on":true},{"x":-349,"y":632,"on":false},{"x":-367,"y":588,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,24,33,29,17,16,12,5,1,0,1,74,0,0,1,0,131,0,1,1,116,47,37,2,9,22,43,177,6,0,68] + "instructions": "sQZkREAYIR0REAwFAQABSgAAAQCDAAEBdC8lAgkWK7EGAEQ=" }, "glyph16": { "name": "glyph16", "advanceWidth": 500, "contours": [[{"x":27,"y":590,"on":true},{"x":53,"y":654,"on":false},{"x":75,"y":694,"on":true},{"x":105,"y":747,"on":false},{"x":137,"y":765,"on":true},{"x":156,"y":776,"on":false},{"x":176,"y":775,"on":true},{"x":196,"y":775,"on":false},{"x":214,"y":765,"on":true},{"x":242,"y":749,"on":false},{"x":282,"y":684,"on":true},{"x":306,"y":644,"on":false},{"x":317,"y":633,"on":true},{"x":320,"y":630,"on":false},{"x":324,"y":627,"on":true},{"x":341,"y":639,"on":false},{"x":361,"y":673,"on":true},{"x":382,"y":710,"on":false},{"x":407,"y":772,"on":true},{"x":473,"y":748,"on":true},{"x":447,"y":684,"on":false},{"x":425,"y":644,"on":true},{"x":395,"y":591,"on":false},{"x":363,"y":573,"on":true},{"x":344,"y":562,"on":false},{"x":304,"y":562,"on":false},{"x":286,"y":573,"on":true},{"x":258,"y":589,"on":false},{"x":218,"y":653,"on":true},{"x":194,"y":693,"on":false},{"x":183,"y":705,"on":true},{"x":180,"y":708,"on":false},{"x":176,"y":710,"on":true},{"x":159,"y":698,"on":false},{"x":139,"y":664,"on":true},{"x":118,"y":627,"on":false},{"x":93,"y":566,"on":true}]], "references": [], - "instructions": [64,25,36,32,19,18,14,5,1,0,1,74,0,0,1,0,131,0,1,1,116,25,24,37,2,7,21,43] + "instructions": "QBkkIBMSDgUBAAFKAAABAIMAAQF0GRglAgcVKw==" }, "uni034A": { "name": "uni034A", "advanceWidth": 0, "contours": [[{"x":-426,"y":629,"on":true},{"x":-385,"y":699,"on":false},{"x":-348,"y":720,"on":true},{"x":-328,"y":731,"on":false},{"x":-308,"y":731,"on":true},{"x":-291,"y":731,"on":false},{"x":-273,"y":722,"on":true},{"x":-263,"y":771,"on":true},{"x":-197,"y":759,"on":true},{"x":-215,"y":670,"on":true},{"x":-199,"y":654,"on":false},{"x":-192,"y":654,"on":true},{"x":-189,"y":654,"on":false},{"x":-185,"y":657,"on":true},{"x":-161,"y":671,"on":false},{"x":-126,"y":729,"on":true},{"x":-74,"y":701,"on":true},{"x":-115,"y":631,"on":false},{"x":-152,"y":610,"on":true},{"x":-172,"y":599,"on":false},{"x":-192,"y":599,"on":true},{"x":-209,"y":599,"on":false},{"x":-227,"y":608,"on":true},{"x":-237,"y":559,"on":true},{"x":-303,"y":570,"on":true},{"x":-285,"y":660,"on":true},{"x":-301,"y":676,"on":false},{"x":-308,"y":676,"on":true},{"x":-311,"y":676,"on":false},{"x":-315,"y":673,"on":true},{"x":-339,"y":659,"on":false},{"x":-374,"y":601,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,59,16,15,6,3,3,0,25,9,2,1,3,31,22,2,2,1,3,74,8,7,2,0,72,24,23,2,2,71,0,0,0,3,1,0,3,103,0,1,2,2,1,87,0,1,1,2,95,0,2,1,2,79,37,39,37,35,4,9,24,43,177,6,0,68] + "instructions": "sQZkREA7EA8GAwMAGQkCAQMfFgICAQNKCAcCAEgYFwICRwAAAAMBAANnAAECAgFXAAEBAl8AAgECTyUnJSMECRgrsQYARA==" }, "uni034B": { "name": "uni034B", "advanceWidth": 0, "contours": [[{"x":-426,"y":629,"on":true},{"x":-385,"y":699,"on":false},{"x":-348,"y":720,"on":true},{"x":-328,"y":731,"on":false},{"x":-308,"y":731,"on":true},{"x":-274,"y":731,"on":false},{"x":-241,"y":697,"on":true},{"x":-236,"y":692,"on":false},{"x":-227,"y":682,"on":true},{"x":-201,"y":653,"on":false},{"x":-192,"y":654,"on":true},{"x":-189,"y":654,"on":false},{"x":-185,"y":657,"on":true},{"x":-161,"y":671,"on":false},{"x":-126,"y":729,"on":true},{"x":-74,"y":701,"on":true},{"x":-115,"y":631,"on":false},{"x":-152,"y":610,"on":true},{"x":-172,"y":599,"on":false},{"x":-192,"y":599,"on":true},{"x":-226,"y":599,"on":false},{"x":-259,"y":633,"on":true},{"x":-273,"y":647,"on":true},{"x":-299,"y":676,"on":false},{"x":-308,"y":676,"on":true},{"x":-311,"y":676,"on":false},{"x":-315,"y":673,"on":true},{"x":-339,"y":659,"on":false},{"x":-374,"y":601,"on":true}],[{"x":-290,"y":546,"on":false},{"x":-290,"y":583,"on":false},{"x":-268,"y":604,"on":false},{"x":-232,"y":604,"on":false},{"x":-210,"y":583,"on":false},{"x":-210,"y":546,"on":false},{"x":-232,"y":525,"on":false},{"x":-268,"y":525,"on":false}],[{"x":-290,"y":747,"on":false},{"x":-290,"y":784,"on":false},{"x":-268,"y":805,"on":false},{"x":-232,"y":805,"on":false},{"x":-210,"y":784,"on":false},{"x":-210,"y":747,"on":false},{"x":-232,"y":726,"on":false},{"x":-268,"y":726,"on":false}]], "references": [], - "instructions": [177,6,100,68,64,64,14,1,6,0,15,1,2,6,28,1,1,3,3,74,0,1,3,4,3,1,4,126,0,5,0,6,2,5,6,103,0,0,0,2,3,0,2,103,0,3,1,4,3,87,0,3,3,4,95,0,4,3,4,79,19,19,19,23,19,45,35,7,9,27,43,177,6,0,68] + "instructions": "sQZkREBADgEGAA8BAgYcAQEDA0oAAQMEAwEEfgAFAAYCBQZnAAAAAgMAAmcAAwEEA1cAAwMEXwAEAwRPExMTFxMtIwcJGyuxBgBE" }, "uni034C": { "name": "uni034C", "advanceWidth": 0, "contours": [[{"x":-426,"y":549,"on":true},{"x":-385,"y":619,"on":false},{"x":-348,"y":640,"on":true},{"x":-328,"y":651,"on":false},{"x":-308,"y":652,"on":true},{"x":-274,"y":652,"on":false},{"x":-241,"y":618,"on":true},{"x":-236,"y":613,"on":false},{"x":-227,"y":603,"on":true},{"x":-201,"y":574,"on":false},{"x":-192,"y":574,"on":true},{"x":-189,"y":574,"on":false},{"x":-185,"y":577,"on":true},{"x":-161,"y":591,"on":false},{"x":-126,"y":650,"on":true},{"x":-74,"y":622,"on":true},{"x":-115,"y":552,"on":false},{"x":-152,"y":531,"on":true},{"x":-172,"y":520,"on":false},{"x":-192,"y":520,"on":true},{"x":-226,"y":520,"on":false},{"x":-259,"y":553,"on":true},{"x":-264,"y":558,"on":false},{"x":-273,"y":568,"on":true},{"x":-299,"y":597,"on":false},{"x":-308,"y":597,"on":true},{"x":-311,"y":597,"on":false},{"x":-315,"y":594,"on":true},{"x":-339,"y":580,"on":false},{"x":-374,"y":521,"on":true}],[{"x":-426,"y":670,"on":true},{"x":-385,"y":740,"on":false},{"x":-348,"y":761,"on":true},{"x":-328,"y":772,"on":false},{"x":-308,"y":772,"on":true},{"x":-274,"y":772,"on":false},{"x":-241,"y":738,"on":true},{"x":-227,"y":724,"on":true},{"x":-201,"y":695,"on":false},{"x":-192,"y":695,"on":true},{"x":-189,"y":695,"on":false},{"x":-185,"y":698,"on":true},{"x":-161,"y":712,"on":false},{"x":-126,"y":770,"on":true},{"x":-74,"y":742,"on":true},{"x":-115,"y":672,"on":false},{"x":-152,"y":651,"on":true},{"x":-172,"y":640,"on":false},{"x":-192,"y":640,"on":true},{"x":-226,"y":640,"on":false},{"x":-259,"y":674,"on":true},{"x":-264,"y":679,"on":false},{"x":-273,"y":689,"on":true},{"x":-299,"y":718,"on":false},{"x":-308,"y":717,"on":true},{"x":-311,"y":717,"on":false},{"x":-315,"y":714,"on":true},{"x":-339,"y":700,"on":false},{"x":-374,"y":642,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,20,44,43,2,5,4,58,14,2,6,0,15,1,3,6,29,1,2,1,4,74,75,176,10,80,88,64,38,0,4,5,0,4,110,0,5,0,6,3,5,6,103,0,0,0,3,1,0,3,104,0,1,2,2,1,87,0,1,1,2,95,0,2,1,2,79,27,64,37,0,4,5,4,131,0,5,0,6,3,5,6,103,0,0,0,3,1,0,3,104,0,1,2,2,1,87,0,1,1,2,95,0,2,1,2,79,89,64,10,40,19,40,20,40,20,35,7,9,27,43,177,6,0,68] + "instructions": "sQZkREAULCsCBQQ6DgIGAA8BAwYdAQIBBEpLsApQWEAmAAQFAARuAAUABgMFBmcAAAADAQADaAABAgIBVwABAQJfAAIBAk8bQCUABAUEgwAFAAYDBQZnAAAAAwEAA2gAAQICAVcAAQECXwACAQJPWUAKKBMoFCgUIwcJGyuxBgBE" }, "uni0304": { "name": "uni0304", "advanceWidth": 0, "contours": [[{"x":-400,"y":649,"on":true},{"x":-400,"y":721,"on":true},{"x":-100,"y":721,"on":true},{"x":-100,"y":649,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,9,21,43,177,6,0,68] + "instructions": "sQZkREAbAAABAQBVAAAAAV0CAQEAAU0AAAADAAMRAwkVK7EGAEQ=" }, "uni0305": { "name": "uni0305", "advanceWidth": 0, "contours": [[{"x":-440,"y":649,"on":true},{"x":-440,"y":721,"on":true},{"x":-60,"y":721,"on":true},{"x":-60,"y":649,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,9,21,43,177,6,0,68] + "instructions": "sQZkREAbAAABAQBVAAAAAV0CAQEAAU0AAAADAAMRAwkVK7EGAEQ=" }, "uni033F": { "name": "uni033F", "advanceWidth": 0, "contours": [[{"x":-440,"y":584,"on":true},{"x":-440,"y":637,"on":true},{"x":-60,"y":637,"on":true},{"x":-60,"y":584,"on":true}],[{"x":-440,"y":691,"on":true},{"x":-440,"y":744,"on":true},{"x":-60,"y":744,"on":true},{"x":-60,"y":691,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,44,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,4,4,0,0,4,7,4,7,6,5,0,3,0,3,17,6,9,21,43,177,6,0,68] + "instructions": "sQZkREAsAAIFAQMAAgNlAAABAQBVAAAAAV0EAQEAAU0EBAAABAcEBwYFAAMAAxEGCRUrsQYARA==" }, "uni0306": { "name": "uni0306", "advanceWidth": 0, "contours": [[{"x":-410,"y":744,"on":true},{"x":-330,"y":744,"on":true},{"x":-330,"y":714,"on":false},{"x":-318,"y":693,"on":true},{"x":-297,"y":656,"on":false},{"x":-203,"y":656,"on":false},{"x":-182,"y":693,"on":true},{"x":-170,"y":714,"on":false},{"x":-170,"y":744,"on":true},{"x":-90,"y":744,"on":true},{"x":-90,"y":693,"on":false},{"x":-111,"y":656,"on":true},{"x":-130,"y":624,"on":false},{"x":-162,"y":605,"on":true},{"x":-199,"y":584,"on":false},{"x":-301,"y":584,"on":false},{"x":-338,"y":605,"on":true},{"x":-370,"y":624,"on":false},{"x":-389,"y":656,"on":true},{"x":-410,"y":692,"on":false}]], "references": [], - "instructions": [177,6,100,68,64,29,2,1,0,1,0,131,0,1,3,3,1,87,0,1,1,3,95,0,3,1,3,79,21,19,19,16,4,9,24,43,177,6,0,68] + "instructions": "sQZkREAdAgEAAQCDAAEDAwFXAAEBA18AAwEDTxUTExAECRgrsQYARA==" }, "uni0311": { "name": "uni0311", "advanceWidth": 0, "contours": [[{"x":-410,"y":584,"on":true},{"x":-410,"y":635,"on":false},{"x":-389,"y":672,"on":true},{"x":-370,"y":704,"on":false},{"x":-338,"y":723,"on":true},{"x":-301,"y":744,"on":false},{"x":-199,"y":744,"on":false},{"x":-162,"y":723,"on":true},{"x":-130,"y":704,"on":false},{"x":-111,"y":672,"on":true},{"x":-90,"y":636,"on":false},{"x":-90,"y":584,"on":true},{"x":-170,"y":584,"on":true},{"x":-170,"y":614,"on":false},{"x":-182,"y":635,"on":true},{"x":-203,"y":672,"on":false},{"x":-297,"y":672,"on":false},{"x":-318,"y":635,"on":true},{"x":-330,"y":614,"on":false},{"x":-330,"y":584,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,35,4,3,2,1,2,1,132,0,0,2,2,0,87,0,0,0,2,95,0,2,0,2,79,0,0,0,19,0,19,19,21,21,5,9,23,43,177,6,0,68] + "instructions": "sQZkREAjBAMCAQIBhAAAAgIAVwAAAAJfAAIAAk8AAAATABMTFRUFCRcrsQYARA==" }, "hookabovecomb": { "name": "hookabovecomb", "advanceWidth": 0, "contours": [[{"x":-318,"y":680,"on":true},{"x":-318,"y":744,"on":true},{"x":-237,"y":744,"on":true},{"x":-205,"y":744,"on":false},{"x":-182,"y":731,"on":true},{"x":-163,"y":720,"on":false},{"x":-153,"y":702,"on":true},{"x":-142,"y":683,"on":false},{"x":-142,"y":630,"on":false},{"x":-153,"y":610,"on":true},{"x":-163,"y":592,"on":false},{"x":-182,"y":581,"on":true},{"x":-205,"y":568,"on":false},{"x":-237,"y":568,"on":true},{"x":-285,"y":568,"on":true},{"x":-285,"y":632,"on":true},{"x":-237,"y":632,"on":true},{"x":-226,"y":632,"on":false},{"x":-213,"y":645,"on":false},{"x":-213,"y":667,"on":false},{"x":-226,"y":680,"on":false},{"x":-237,"y":680,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,37,0,0,4,1,3,2,0,3,101,0,2,1,1,2,87,0,2,2,1,95,0,1,2,1,79,0,0,0,21,0,20,33,41,33,5,9,23,43,177,6,0,68] + "instructions": "sQZkREAlAAAEAQMCAANlAAIBAQJXAAICAV8AAQIBTwAAABUAFCEpIQUJFyuxBgBE" }, "uni030F": { "name": "uni030F", "advanceWidth": 0, "contours": [], "references": [{"glyph":"gravecomb","x":85,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":-85,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni030B": { "name": "uni030B", "advanceWidth": 0, "contours": [], "references": [{"glyph":"acutecomb","x":85,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":-85,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0313": { "name": "uni0313", "advanceWidth": 0, "contours": [[{"x":-303,"y":583,"on":true},{"x":-272,"y":617,"on":false},{"x":-262,"y":663,"on":true},{"x":-278,"y":666,"on":false},{"x":-289,"y":677,"on":true},{"x":-303,"y":691,"on":false},{"x":-303,"y":740,"on":false},{"x":-274,"y":769,"on":false},{"x":-226,"y":769,"on":false},{"x":-197,"y":740,"on":false},{"x":-197,"y":716,"on":true},{"x":-197,"y":644,"on":false},{"x":-229,"y":588,"on":true},{"x":-242,"y":565,"on":false},{"x":-261,"y":546,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,13,14,2,2,0,71,0,0,0,116,23,1,9,21,43,177,6,0,68] + "instructions": "sQZkREANDgICAEcAAAB0FwEJFSuxBgBE" }, "uni0312": { "name": "uni0312", "advanceWidth": 0, "contours": [[{"x":-303,"y":603,"on":true},{"x":-303,"y":675,"on":false},{"x":-271,"y":731,"on":true},{"x":-258,"y":754,"on":false},{"x":-239,"y":773,"on":true},{"x":-197,"y":736,"on":true},{"x":-228,"y":702,"on":false},{"x":-238,"y":655,"on":true},{"x":-222,"y":652,"on":false},{"x":-211,"y":642,"on":true},{"x":-197,"y":628,"on":false},{"x":-197,"y":579,"on":false},{"x":-226,"y":550,"on":false},{"x":-274,"y":550,"on":false},{"x":-303,"y":579,"on":false}]], "references": [], - "instructions": [177,6,100,68,64,14,7,5,4,3,0,72,0,0,0,116,28,1,9,21,43,177,6,0,68] + "instructions": "sQZkREAOBwUEAwBIAAAAdBwBCRUrsQYARA==" }, "uni0314": { "name": "uni0314", "advanceWidth": 0, "contours": [[{"x":-303,"y":716,"on":true},{"x":-303,"y":740,"on":false},{"x":-274,"y":769,"on":false},{"x":-226,"y":769,"on":false},{"x":-197,"y":740,"on":false},{"x":-197,"y":691,"on":false},{"x":-211,"y":677,"on":true},{"x":-222,"y":666,"on":false},{"x":-238,"y":663,"on":true},{"x":-227,"y":617,"on":false},{"x":-197,"y":583,"on":true},{"x":-239,"y":546,"on":true},{"x":-257,"y":565,"on":false},{"x":-271,"y":588,"on":true},{"x":-303,"y":644,"on":false}]], "references": [], - "instructions": [177,6,100,68,64,14,11,10,8,3,0,71,0,0,0,116,18,1,9,21,43,177,6,0,68] + "instructions": "sQZkREAOCwoIAwBHAAAAdBIBCRUrsQYARA==" }, "uni030D": { "name": "uni030D", "advanceWidth": 0, "contours": [[{"x":-290,"y":584,"on":true},{"x":-290,"y":744,"on":true},{"x":-210,"y":744,"on":true},{"x":-210,"y":584,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,9,21,43,177,6,0,68] + "instructions": "sQZkREAbAAABAQBVAAAAAV0CAQEAAU0AAAADAAMRAwkVK7EGAEQ=" }, "uni030E": { "name": "uni030E", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni030D","x":75,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":-75,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0346": { "name": "uni0346", "advanceWidth": 0, "contours": [[{"x":-386,"y":584,"on":true},{"x":-386,"y":744,"on":true},{"x":-114,"y":744,"on":true},{"x":-114,"y":584,"on":true},{"x":-186,"y":584,"on":true},{"x":-186,"y":679,"on":true},{"x":-314,"y":679,"on":true},{"x":-314,"y":584,"on":true}]], "references": [], - "instructions": [177,6,100,68,75,176,14,80,88,64,24,4,3,2,1,2,2,1,111,0,0,2,2,0,85,0,0,0,2,93,0,2,0,2,77,27,64,23,4,3,2,1,2,1,132,0,0,2,2,0,85,0,0,0,2,93,0,2,0,2,77,89,64,12,0,0,0,7,0,7,17,17,17,5,9,23,43,177,6,0,68] + "instructions": "sQZkREuwDlBYQBgEAwIBAgIBbwAAAgIAVQAAAAJdAAIAAk0bQBcEAwIBAgGEAAACAgBVAAAAAl0AAgACTVlADAAAAAcABxEREQUJFyuxBgBE" }, "uni033E": { "name": "uni033E", "advanceWidth": 0, "contours": [[{"x":-302,"y":584,"on":true},{"x":-291,"y":587,"on":false},{"x":-284,"y":595,"on":true},{"x":-271,"y":608,"on":false},{"x":-271,"y":627,"on":true},{"x":-271,"y":642,"on":false},{"x":-301,"y":686,"on":false},{"x":-301,"y":701,"on":true},{"x":-301,"y":720,"on":false},{"x":-288,"y":733,"on":true},{"x":-280,"y":741,"on":false},{"x":-270,"y":744,"on":true},{"x":-198,"y":744,"on":true},{"x":-209,"y":741,"on":false},{"x":-216,"y":733,"on":true},{"x":-229,"y":720,"on":false},{"x":-229,"y":701,"on":true},{"x":-229,"y":686,"on":false},{"x":-199,"y":643,"on":false},{"x":-199,"y":627,"on":true},{"x":-199,"y":608,"on":false},{"x":-212,"y":595,"on":true},{"x":-220,"y":587,"on":false},{"x":-230,"y":584,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,23,0,23,27,3,9,21,43,177,6,0,68] + "instructions": "sQZkREAbAAABAQBVAAAAAV0CAQEAAU0AAAAXABcbAwkVK7EGAEQ=" }, "uni0310": { "name": "uni0310", "advanceWidth": 0, "contours": [[{"x":-366,"y":706,"on":true},{"x":-307,"y":706,"on":true},{"x":-307,"y":680,"on":false},{"x":-276,"y":649,"on":false},{"x":-224,"y":649,"on":false},{"x":-193,"y":680,"on":false},{"x":-193,"y":706,"on":true},{"x":-134,"y":706,"on":true},{"x":-134,"y":672,"on":false},{"x":-148,"y":648,"on":true},{"x":-161,"y":625,"on":false},{"x":-185,"y":612,"on":true},{"x":-212,"y":596,"on":false},{"x":-288,"y":596,"on":false},{"x":-315,"y":612,"on":true},{"x":-338,"y":625,"on":false},{"x":-352,"y":648,"on":true},{"x":-366,"y":672,"on":false}],[{"x":-292,"y":687,"on":false},{"x":-292,"y":726,"on":false},{"x":-269,"y":748,"on":false},{"x":-231,"y":748,"on":false},{"x":-208,"y":726,"on":false},{"x":-208,"y":687,"on":false},{"x":-231,"y":664,"on":false},{"x":-269,"y":664,"on":false}]], "references": [], - "instructions": [177,6,100,68,64,42,2,1,0,4,5,4,0,5,126,0,4,0,5,1,4,5,103,0,1,3,3,1,87,0,1,1,3,95,0,3,1,3,79,19,23,21,18,18,16,6,9,26,43,177,6,0,68] + "instructions": "sQZkREAqAgEABAUEAAV+AAQABQEEBWcAAQMDAVcAAQEDXwADAQNPExcVEhIQBgkaK7EGAEQ=" }, "uni0352": { "name": "uni0352", "advanceWidth": 0, "contours": [[{"x":-366,"y":664,"on":true},{"x":-366,"y":698,"on":false},{"x":-352,"y":722,"on":true},{"x":-339,"y":745,"on":false},{"x":-315,"y":758,"on":true},{"x":-288,"y":774,"on":false},{"x":-212,"y":774,"on":false},{"x":-185,"y":758,"on":true},{"x":-162,"y":745,"on":false},{"x":-148,"y":722,"on":true},{"x":-134,"y":698,"on":false},{"x":-134,"y":664,"on":true},{"x":-193,"y":664,"on":true},{"x":-193,"y":690,"on":false},{"x":-224,"y":721,"on":false},{"x":-276,"y":721,"on":false},{"x":-307,"y":690,"on":false},{"x":-307,"y":664,"on":true}],[{"x":-292,"y":644,"on":false},{"x":-292,"y":683,"on":false},{"x":-269,"y":706,"on":false},{"x":-231,"y":706,"on":false},{"x":-208,"y":683,"on":false},{"x":-208,"y":644,"on":false},{"x":-231,"y":622,"on":false},{"x":-269,"y":622,"on":false}]], "references": [], - "instructions": [177,6,100,68,64,50,6,3,2,1,4,5,4,1,5,126,0,0,0,2,4,0,2,103,0,4,1,5,4,87,0,4,4,5,95,0,5,4,5,79,0,0,25,24,21,20,0,17,0,17,18,21,21,7,9,23,43,177,6,0,68] + "instructions": "sQZkREAyBgMCAQQFBAEFfgAAAAIEAAJnAAQBBQRXAAQEBV8ABQQFTwAAGRgVFAARABESFRUHCRcrsQYARA==" }, "uni0340": { "name": "uni0340", "advanceWidth": 0, "contours": [[{"x":-340,"y":737,"on":true},{"x":-260,"y":771,"on":true},{"x":-178,"y":582,"on":true},{"x":-243,"y":554,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "uni0341": { "name": "uni0341", "advanceWidth": 0, "contours": [[{"x":-322,"y":582,"on":true},{"x":-240,"y":771,"on":true},{"x":-160,"y":737,"on":true},{"x":-257,"y":554,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "uni0342": { "name": "uni0342", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0311","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0343": { "name": "uni0343", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0313","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni033D": { "name": "uni033D", "advanceWidth": 0, "contours": [[{"x":-372,"y":610,"on":true},{"x":-304,"y":664,"on":true},{"x":-372,"y":719,"on":true},{"x":-328,"y":769,"on":true},{"x":-250,"y":707,"on":true},{"x":-172,"y":769,"on":true},{"x":-128,"y":719,"on":true},{"x":-196,"y":664,"on":true},{"x":-128,"y":610,"on":true},{"x":-172,"y":559,"on":true},{"x":-250,"y":621,"on":true},{"x":-328,"y":559,"on":true}]], "references": [], - "instructions": [179,9,3,1,48,43] + "instructions": "swkDATAr" }, "uni1DFE": { "name": "uni1DFE", "advanceWidth": 0, "contours": [[{"x":-350,"y":634,"on":true},{"x":-350,"y":695,"on":true},{"x":-163,"y":774,"on":true},{"x":-137,"y":714,"on":true},{"x":-269,"y":664,"on":true},{"x":-137,"y":614,"on":true},{"x":-163,"y":554,"on":true}]], "references": [], - "instructions": [179,6,2,1,48,43] + "instructions": "swYCATAr" }, "uni0350": { "name": "uni0350", "advanceWidth": 0, "contours": [[{"x":-363,"y":614,"on":true},{"x":-231,"y":664,"on":true},{"x":-363,"y":714,"on":true},{"x":-337,"y":774,"on":true},{"x":-150,"y":695,"on":true},{"x":-150,"y":634,"on":true},{"x":-337,"y":554,"on":true}]], "references": [], - "instructions": [179,6,3,1,48,43] + "instructions": "swYDATAr" }, "uni0327": { "name": "uni0327", "advanceWidth": 0, "contours": [[{"x":-350,"y":-142,"on":true},{"x":-250,"y":-142,"on":true},{"x":-236,"y":-142,"on":false},{"x":-228,"y":-134,"on":true},{"x":-222,"y":-128,"on":false},{"x":-222,"y":-109,"on":false},{"x":-228,"y":-103,"on":true},{"x":-236,"y":-95,"on":false},{"x":-250,"y":-96,"on":true},{"x":-290,"y":-96,"on":true},{"x":-290,"y":0,"on":true},{"x":-210,"y":0,"on":true},{"x":-210,"y":-29,"on":true},{"x":-172,"y":-40,"on":false},{"x":-154,"y":-71,"on":true},{"x":-142,"y":-91,"on":false},{"x":-142,"y":-147,"on":false},{"x":-154,"y":-167,"on":true},{"x":-165,"y":-187,"on":false},{"x":-186,"y":-199,"on":true},{"x":-212,"y":-214,"on":false},{"x":-250,"y":-214,"on":true},{"x":-350,"y":-214,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,37,12,1,1,2,1,74,0,2,0,1,0,2,1,101,0,0,3,3,0,85,0,0,0,3,93,0,3,0,3,77,41,17,22,32,4,9,24,43,177,6,0,68] + "instructions": "sQZkREAlDAEBAgFKAAIAAQACAWUAAAMDAFUAAAADXQADAANNKREWIAQJGCuxBgBE" }, "uni0328": { "name": "uni0328", "advanceWidth": 0, "contours": [[{"x":-375,"y":-100,"on":false},{"x":-375,"y":-54,"on":false},{"x":-364,"y":-34,"on":true},{"x":-350,"y":-10,"on":false},{"x":-325,"y":4,"on":true},{"x":-293,"y":23,"on":false},{"x":-250,"y":23,"on":true},{"x":-250,"y":-8,"on":true},{"x":-271,"y":-8,"on":false},{"x":-285,"y":-22,"on":true},{"x":-297,"y":-34,"on":false},{"x":-297,"y":-66,"on":false},{"x":-286,"y":-78,"on":true},{"x":-269,"y":-95,"on":false},{"x":-225,"y":-95,"on":true},{"x":-165,"y":-95,"on":true},{"x":-165,"y":-174,"on":true},{"x":-225,"y":-174,"on":true},{"x":-295,"y":-174,"on":false},{"x":-328,"y":-155,"on":true},{"x":-351,"y":-142,"on":false},{"x":-364,"y":-120,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,31,0,0,0,1,2,0,1,103,0,2,3,3,2,87,0,2,2,3,95,0,3,2,3,79,33,37,17,21,4,9,24,43,177,6,0,68] + "instructions": "sQZkREAfAAAAAQIAAWcAAgMDAlcAAgIDXwADAgNPISURFQQJGCuxBgBE" }, "glyph46": { "name": "glyph46", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0328","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0345": { "name": "uni0345", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni030D","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,226,176,51,43] + "instructions": "sQABuPzisDMr" }, "glyph48": { "name": "glyph48", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni030D","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,226,176,51,43] + "instructions": "sQABuPzisDMr" }, "uni031D": { "name": "uni031D", "advanceWidth": 0, "contours": [[{"x":-350,"y":-149,"on":true},{"x":-286,"y":-149,"on":true},{"x":-286,"y":-54,"on":true},{"x":-214,"y":-54,"on":true},{"x":-214,"y":-149,"on":true},{"x":-150,"y":-149,"on":true},{"x":-150,"y":-214,"on":true},{"x":-350,"y":-214,"on":true}]], "references": [], - "instructions": [177,6,100,68,75,176,14,80,88,64,24,0,1,0,0,1,110,2,1,0,3,3,0,85,2,1,0,0,3,94,0,3,0,3,78,27,64,23,0,1,0,1,131,2,1,0,3,3,0,85,2,1,0,0,3,94,0,3,0,3,78,89,182,17,17,17,16,4,9,24,43,177,6,0,68] + "instructions": "sQZkREuwDlBYQBgAAQAAAW4CAQADAwBVAgEAAANeAAMAA04bQBcAAQABgwIBAAMDAFUCAQAAA14AAwADTlm2EREREAQJGCuxBgBE" }, "uni031E": { "name": "uni031E", "advanceWidth": 0, "contours": [[{"x":-350,"y":-54,"on":true},{"x":-150,"y":-54,"on":true},{"x":-150,"y":-119,"on":true},{"x":-214,"y":-119,"on":true},{"x":-214,"y":-214,"on":true},{"x":-286,"y":-214,"on":true},{"x":-286,"y":-119,"on":true},{"x":-350,"y":-119,"on":true}]], "references": [], - "instructions": [177,6,100,68,75,176,14,80,88,64,23,0,2,1,1,2,111,0,0,1,1,0,85,0,0,0,1,93,3,1,1,0,1,77,27,64,22,0,2,1,2,132,0,0,1,1,0,85,0,0,0,1,93,3,1,1,0,1,77,89,182,17,17,17,16,4,9,24,43,177,6,0,68] + "instructions": "sQZkREuwDlBYQBcAAgEBAm8AAAEBAFUAAAABXQMBAQABTRtAFgACAQKEAAABAQBVAAAAAV0DAQEAAU1ZthERERAECRgrsQYARA==" }, "uni0318": { "name": "uni0318", "advanceWidth": 0, "contours": [[{"x":-350,"y":-102,"on":true},{"x":-186,"y":-102,"on":true},{"x":-186,"y":-54,"on":true},{"x":-114,"y":-54,"on":true},{"x":-114,"y":-214,"on":true},{"x":-186,"y":-214,"on":true},{"x":-186,"y":-166,"on":true},{"x":-350,"y":-166,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,31,0,1,0,2,1,85,0,0,0,3,2,0,3,101,0,1,1,2,93,0,2,1,2,77,17,17,17,16,4,9,24,43,177,6,0,68] + "instructions": "sQZkREAfAAEAAgFVAAAAAwIAA2UAAQECXQACAQJNEREREAQJGCuxBgBE" }, "uni0319": { "name": "uni0319", "advanceWidth": 0, "contours": [[{"x":-386,"y":-54,"on":true},{"x":-314,"y":-54,"on":true},{"x":-314,"y":-102,"on":true},{"x":-150,"y":-102,"on":true},{"x":-150,"y":-166,"on":true},{"x":-314,"y":-166,"on":true},{"x":-314,"y":-214,"on":true},{"x":-386,"y":-214,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,31,0,0,1,3,0,85,0,1,0,2,3,1,2,101,0,0,0,3,93,0,3,0,3,77,17,17,17,16,4,9,24,43,177,6,0,68] + "instructions": "sQZkREAfAAABAwBVAAEAAgMBAmUAAAADXQADAANNEREREAQJGCuxBgBE" }, "uni0349": { "name": "uni0349", "advanceWidth": 0, "contours": [[{"x":-350,"y":-54,"on":true},{"x":-114,"y":-54,"on":true},{"x":-114,"y":-214,"on":true},{"x":-186,"y":-214,"on":true},{"x":-186,"y":-119,"on":true},{"x":-350,"y":-119,"on":true}]], "references": [], - "instructions": [177,6,100,68,75,176,14,80,88,64,22,0,1,2,2,1,111,0,0,2,2,0,85,0,0,0,2,93,0,2,0,2,77,27,64,21,0,1,2,1,132,0,0,2,2,0,85,0,0,0,2,93,0,2,0,2,77,89,181,17,17,16,3,9,23,43,177,6,0,68] + "instructions": "sQZkREuwDlBYQBYAAQICAW8AAAICAFUAAAACXQACAAJNG0AVAAECAYQAAAICAFUAAAACXQACAAJNWbURERADCRcrsQYARA==" }, "uni031F": { "name": "uni031F", "advanceWidth": 0, "contours": [[{"x":-350,"y":-102,"on":true},{"x":-286,"y":-102,"on":true},{"x":-286,"y":-54,"on":true},{"x":-214,"y":-54,"on":true},{"x":-214,"y":-102,"on":true},{"x":-150,"y":-102,"on":true},{"x":-150,"y":-166,"on":true},{"x":-214,"y":-166,"on":true},{"x":-214,"y":-214,"on":true},{"x":-286,"y":-214,"on":true},{"x":-286,"y":-166,"on":true},{"x":-350,"y":-166,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,35,0,1,0,4,1,85,2,1,0,5,1,3,4,0,3,101,0,1,1,4,93,0,4,1,4,77,17,17,17,17,17,16,6,9,26,43,177,6,0,68] + "instructions": "sQZkREAjAAEABAFVAgEABQEDBAADZQABAQRdAAQBBE0RERERERAGCRorsQYARA==" }, "uni0320": { "name": "uni0320", "advanceWidth": 0, "contours": [[{"x":-386,"y":-54,"on":true},{"x":-314,"y":-54,"on":true},{"x":-314,"y":-102,"on":true},{"x":-186,"y":-102,"on":true},{"x":-186,"y":-54,"on":true},{"x":-114,"y":-54,"on":true},{"x":-114,"y":-214,"on":true},{"x":-186,"y":-214,"on":true},{"x":-186,"y":-166,"on":true},{"x":-314,"y":-166,"on":true},{"x":-314,"y":-214,"on":true},{"x":-386,"y":-214,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,36,2,1,0,1,3,0,85,0,1,0,4,3,1,4,101,2,1,0,0,3,93,5,1,3,0,3,77,17,17,17,17,17,16,6,9,26,43,177,6,0,68] + "instructions": "sQZkREAkAgEAAQMAVQABAAQDAQRlAgEAAANdBQEDAANNEREREREQBgkaK7EGAEQ=" }, "uni032A": { "name": "uni032A", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0346","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,226,176,51,43] + "instructions": "sQABuPzisDMr" }, "uni033B": { "name": "uni033B", "advanceWidth": 0, "contours": [[{"x":-386,"y":-54,"on":true},{"x":-114,"y":-54,"on":true},{"x":-114,"y":-214,"on":true},{"x":-386,"y":-214,"on":true}],[{"x":-314,"y":-107,"on":true},{"x":-314,"y":-161,"on":true},{"x":-186,"y":-161,"on":true},{"x":-186,"y":-107,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,37,0,0,4,1,3,2,0,3,101,0,2,1,1,2,85,0,2,2,1,93,0,1,2,1,77,4,4,4,7,4,7,18,17,16,5,9,23,43,177,6,0,68] + "instructions": "sQZkREAlAAAEAQMCAANlAAIBAQJVAAICAV0AAQIBTQQEBAcEBxIREAUJFyuxBgBE" }, "uni0347": { "name": "uni0347", "advanceWidth": 0, "contours": [[{"x":-350,"y":-54,"on":true},{"x":-150,"y":-54,"on":true},{"x":-150,"y":-107,"on":true},{"x":-350,"y":-107,"on":true}],[{"x":-350,"y":-161,"on":true},{"x":-150,"y":-161,"on":true},{"x":-150,"y":-214,"on":true},{"x":-350,"y":-214,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,31,0,0,0,1,2,0,1,101,0,2,3,3,2,85,0,2,2,3,93,0,3,2,3,77,17,17,17,16,4,9,24,43,177,6,0,68] + "instructions": "sQZkREAfAAAAAQIAAWUAAgMDAlUAAgIDXQADAgNNEREREAQJGCuxBgBE" }, "uni032B": { "name": "uni032B", "advanceWidth": 0, "contours": [[{"x":-445,"y":-54,"on":true},{"x":-365,"y":-54,"on":true},{"x":-365,"y":-114,"on":false},{"x":-344,"y":-135,"on":true},{"x":-337,"y":-142,"on":false},{"x":-318,"y":-142,"on":false},{"x":-311,"y":-135,"on":true},{"x":-290,"y":-114,"on":false},{"x":-290,"y":-54,"on":true},{"x":-210,"y":-54,"on":true},{"x":-210,"y":-114,"on":false},{"x":-189,"y":-135,"on":true},{"x":-182,"y":-142,"on":false},{"x":-163,"y":-142,"on":false},{"x":-156,"y":-135,"on":true},{"x":-135,"y":-114,"on":false},{"x":-135,"y":-54,"on":true},{"x":-55,"y":-54,"on":true},{"x":-55,"y":-116,"on":false},{"x":-79,"y":-158,"on":true},{"x":-95,"y":-186,"on":false},{"x":-120,"y":-201,"on":true},{"x":-143,"y":-214,"on":false},{"x":-203,"y":-214,"on":false},{"x":-225,"y":-201,"on":true},{"x":-239,"y":-193,"on":false},{"x":-250,"y":-181,"on":true},{"x":-261,"y":-193,"on":false},{"x":-275,"y":-201,"on":true},{"x":-298,"y":-214,"on":false},{"x":-357,"y":-214,"on":false},{"x":-380,"y":-201,"on":true},{"x":-405,"y":-186,"on":false},{"x":-421,"y":-158,"on":true},{"x":-445,"y":-117,"on":false}]], "references": [], - "instructions": [177,6,100,68,64,42,26,1,5,1,1,74,4,2,2,0,1,0,131,3,1,1,5,5,1,87,3,1,1,1,5,95,6,1,5,1,5,79,22,21,19,19,19,19,16,7,9,27,43,177,6,0,68] + "instructions": "sQZkREAqGgEFAQFKBAICAAEAgwMBAQUFAVcDAQEBBV8GAQUBBU8WFRMTExMQBwkbK7EGAEQ=" }, "uni033C": { "name": "uni033C", "advanceWidth": 0, "contours": [[{"x":-445,"y":-214,"on":true},{"x":-445,"y":-151,"on":false},{"x":-421,"y":-110,"on":true},{"x":-405,"y":-82,"on":false},{"x":-380,"y":-67,"on":true},{"x":-357,"y":-54,"on":false},{"x":-297,"y":-54,"on":false},{"x":-275,"y":-67,"on":true},{"x":-261,"y":-75,"on":false},{"x":-250,"y":-87,"on":true},{"x":-239,"y":-75,"on":false},{"x":-225,"y":-67,"on":true},{"x":-202,"y":-54,"on":false},{"x":-143,"y":-54,"on":false},{"x":-120,"y":-67,"on":true},{"x":-95,"y":-81,"on":false},{"x":-79,"y":-110,"on":true},{"x":-55,"y":-151,"on":false},{"x":-55,"y":-214,"on":true},{"x":-135,"y":-214,"on":true},{"x":-135,"y":-154,"on":false},{"x":-156,"y":-133,"on":true},{"x":-163,"y":-126,"on":false},{"x":-182,"y":-126,"on":false},{"x":-189,"y":-133,"on":true},{"x":-210,"y":-154,"on":false},{"x":-210,"y":-214,"on":true},{"x":-290,"y":-214,"on":true},{"x":-290,"y":-154,"on":false},{"x":-311,"y":-133,"on":true},{"x":-318,"y":-126,"on":false},{"x":-337,"y":-126,"on":false},{"x":-344,"y":-133,"on":true},{"x":-365,"y":-154,"on":false},{"x":-365,"y":-214,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,48,9,1,3,0,1,74,7,6,4,3,2,3,2,132,1,1,0,3,3,0,87,1,1,0,0,3,95,5,1,3,0,3,79,0,0,0,34,0,34,19,19,19,21,22,21,8,9,26,43,177,6,0,68] + "instructions": "sQZkREAwCQEDAAFKBwYEAwIDAoQBAQADAwBXAQEAAANfBQEDAANPAAAAIgAiExMTFRYVCAkaK7EGAEQ=" }, "uni031C": { "name": "uni031C", "advanceWidth": 0, "contours": [[{"x":-326,"y":-169,"on":false},{"x":-326,"y":-99,"on":false},{"x":-311,"y":-74,"on":true},{"x":-298,"y":-51,"on":false},{"x":-275,"y":-37,"on":true},{"x":-248,"y":-22,"on":false},{"x":-210,"y":-22,"on":true},{"x":-210,"y":-87,"on":true},{"x":-229,"y":-87,"on":false},{"x":-241,"y":-98,"on":true},{"x":-254,"y":-111,"on":false},{"x":-254,"y":-157,"on":false},{"x":-241,"y":-170,"on":true},{"x":-229,"y":-182,"on":false},{"x":-210,"y":-182,"on":true},{"x":-210,"y":-246,"on":true},{"x":-248,"y":-246,"on":false},{"x":-275,"y":-231,"on":true},{"x":-298,"y":-218,"on":false},{"x":-311,"y":-194,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,31,0,0,0,1,2,0,1,103,0,2,3,3,2,87,0,2,2,3,95,0,3,2,3,79,17,21,17,21,4,9,24,43,177,6,0,68] + "instructions": "sQZkREAfAAAAAQIAAWcAAgMDAlcAAgIDXwADAgNPERURFQQJGCuxBgBE" }, "uni0339": { "name": "uni0339", "advanceWidth": 0, "contours": [[{"x":-290,"y":-22,"on":true},{"x":-252,"y":-22,"on":false},{"x":-225,"y":-37,"on":true},{"x":-202,"y":-50,"on":false},{"x":-189,"y":-74,"on":true},{"x":-174,"y":-99,"on":false},{"x":-174,"y":-169,"on":false},{"x":-189,"y":-194,"on":true},{"x":-202,"y":-217,"on":false},{"x":-225,"y":-231,"on":true},{"x":-252,"y":-246,"on":false},{"x":-290,"y":-246,"on":true},{"x":-290,"y":-182,"on":true},{"x":-271,"y":-182,"on":false},{"x":-259,"y":-170,"on":true},{"x":-246,"y":-157,"on":false},{"x":-246,"y":-111,"on":false},{"x":-259,"y":-98,"on":true},{"x":-271,"y":-86,"on":false},{"x":-290,"y":-87,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,31,0,0,0,3,2,0,3,103,0,2,1,1,2,87,0,2,2,1,95,0,1,2,1,79,21,17,25,16,4,9,24,43,177,6,0,68] + "instructions": "sQZkREAfAAAAAwIAA2cAAgEBAlcAAgIBXwABAgFPFREZEAQJGCuxBgBE" }, "uni0351": { "name": "uni0351", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni031C","x":0,"y":798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,3,30,176,51,43] + "instructions": "sQABuAMesDMr" }, "uni0357": { "name": "uni0357", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0339","x":0,"y":798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,3,30,176,51,43] + "instructions": "sQABuAMesDMr" }, "uni0316": { "name": "uni0316", "advanceWidth": 0, "contours": [[{"x":-317,"y":-76,"on":true},{"x":-262,"y":-33,"on":true},{"x":-117,"y":-188,"on":true},{"x":-183,"y":-240,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "uni0317": { "name": "uni0317", "advanceWidth": 0, "contours": [[{"x":-383,"y":-188,"on":true},{"x":-238,"y":-33,"on":true},{"x":-183,"y":-76,"on":true},{"x":-317,"y":-240,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "dotbelowcomb": { "name": "dotbelowcomb", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0307","x":0,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,184,176,51,43] + "instructions": "sQABuPy4sDMr" }, "uni0324": { "name": "uni0324", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0307","x":-100,"y":-840,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":100,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,184,176,51,43,177,1,1,184,252,184,176,51,43] + "instructions": "sQABuPy4sDMrsQEBuPy4sDMr" }, "uni0330": { "name": "uni0330", "advanceWidth": 0, "contours": [], "references": [{"glyph":"tildecomb","x":0,"y":-814,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,210,176,51,43] + "instructions": "sQABuPzSsDMr" }, "uni0325": { "name": "uni0325", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni030A","x":0,"y":-791,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,184,252,233,176,51,43] + "instructions": "sQACuPzpsDMr" }, "uni0331": { "name": "uni0331", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0304","x":0,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,184,176,51,43] + "instructions": "sQABuPy4sDMr" }, "uni033A": { "name": "uni033A", "advanceWidth": 0, "contours": [[{"x":-386,"y":-54,"on":true},{"x":-314,"y":-54,"on":true},{"x":-314,"y":-149,"on":true},{"x":-186,"y":-149,"on":true},{"x":-186,"y":-54,"on":true},{"x":-114,"y":-54,"on":true},{"x":-114,"y":-214,"on":true},{"x":-386,"y":-214,"on":true}]], "references": [], - "instructions": [177,6,100,68,75,176,14,80,88,64,23,2,1,0,1,1,0,110,0,1,3,3,1,85,0,1,1,3,94,0,3,1,3,78,27,64,22,2,1,0,1,0,131,0,1,3,3,1,85,0,1,1,3,94,0,3,1,3,78,89,182,17,17,17,16,4,9,24,43,177,6,0,68] + "instructions": "sQZkREuwDlBYQBcCAQABAQBuAAEDAwFVAAEBA14AAwEDThtAFgIBAAEAgwABAwMBVQABAQNeAAMBA05ZthERERAECRgrsQYARA==" }, "uni0332": { "name": "uni0332", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0305","x":0,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,184,176,51,43] + "instructions": "sQABuPy4sDMr" }, "uni0333": { "name": "uni0333", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni033F","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,184,252,226,176,51,43] + "instructions": "sQACuPzisDMr" }, "uni032D": { "name": "uni032D", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0302","x":0,"y":-805,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,219,176,51,43] + "instructions": "sQABuPzbsDMr" }, "uni032C": { "name": "uni032C", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni030C","x":0,"y":-805,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,219,176,51,43] + "instructions": "sQABuPzbsDMr" }, "uni032E": { "name": "uni032E", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0306","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,226,176,51,43] + "instructions": "sQABuPzisDMr" }, "uni032F": { "name": "uni032F", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0311","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,226,176,51,43] + "instructions": "sQABuPzisDMr" }, "uni0326": { "name": "uni0326", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0313","x":0,"y":-789,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,235,176,51,43] + "instructions": "sQABuPzrsDMr" }, "uni0329": { "name": "uni0329", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni030D","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,226,176,51,43] + "instructions": "sQABuPzisDMr" }, "uni0348": { "name": "uni0348", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni030D","x":-75,"y":-798,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":75,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,226,176,51,43,177,1,1,184,252,226,176,51,43] + "instructions": "sQABuPzisDMrsQEBuPzisDMr" }, "uni0353": { "name": "uni0353", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni033D","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,226,176,51,43] + "instructions": "sQABuPzisDMr" }, "uni0354": { "name": "uni0354", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni1DFE","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,226,176,51,43] + "instructions": "sQABuPzisDMr" }, "uni0355": { "name": "uni0355", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0350","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,226,176,51,43] + "instructions": "sQABuPzisDMr" }, "uni035A": { "name": "uni035A", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni030A","x":81,"y":-791,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":-81,"y":-791,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,184,252,233,176,51,43,177,2,2,184,252,233,176,51,43] + "instructions": "sQACuPzpsDMrsQICuPzpsDMr" }, "uni034D": { "name": "uni034D", "advanceWidth": 0, "contours": [[{"x":-434,"y":-134,"on":true},{"x":-317,"y":-36,"on":true},{"x":-283,"y":-73,"on":true},{"x":-334,"y":-110,"on":true},{"x":-166,"y":-110,"on":true},{"x":-217,"y":-73,"on":true},{"x":-183,"y":-36,"on":true},{"x":-66,"y":-134,"on":true},{"x":-183,"y":-233,"on":true},{"x":-217,"y":-195,"on":true},{"x":-166,"y":-158,"on":true},{"x":-334,"y":-158,"on":true},{"x":-283,"y":-195,"on":true},{"x":-317,"y":-233,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,41,7,1,1,0,1,74,6,5,2,1,4,0,72,13,12,9,8,4,1,71,0,0,1,1,0,85,0,0,0,1,93,0,1,0,1,77,22,19,2,9,22,43,177,6,0,68] + "instructions": "sQZkREApBwEBAAFKBgUCAQQASA0MCQgEAUcAAAEBAFUAAAABXQABAAFNFhMCCRYrsQYARA==" }, "uni034E": { "name": "uni034E", "advanceWidth": 0, "contours": [[{"x":-344,"y":-118,"on":true},{"x":-250,"y":-21,"on":true},{"x":-156,"y":-118,"on":true},{"x":-194,"y":-150,"on":true},{"x":-225,"y":-116,"on":true},{"x":-225,"y":-214,"on":true},{"x":-275,"y":-214,"on":true},{"x":-275,"y":-116,"on":true},{"x":-306,"y":-150,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,17,8,7,4,3,2,1,6,0,72,0,0,0,116,21,1,9,21,43,177,6,0,68] + "instructions": "sQZkREARCAcEAwIBBgBIAAAAdBUBCRUrsQYARA==" }, "uni031B": { "name": "uni031B", "advanceWidth": 0, "contours": [[{"x":-86,"y":585,"on":true},{"x":-58,"y":592,"on":false},{"x":-36,"y":606,"on":true},{"x":-14,"y":618,"on":false},{"x":-3,"y":635,"on":true},{"x":-13,"y":639,"on":false},{"x":-21,"y":646,"on":true},{"x":-36,"y":661,"on":false},{"x":-35,"y":710,"on":false},{"x":-6,"y":739,"on":false},{"x":44,"y":739,"on":false},{"x":73,"y":710,"on":false},{"x":73,"y":685,"on":true},{"x":73,"y":684,"on":false},{"x":73,"y":682,"on":true},{"x":73,"y":644,"on":false},{"x":35,"y":580,"on":false},{"x":-2,"y":558,"on":true},{"x":-33,"y":540,"on":false},{"x":-71,"y":530,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,13,19,4,2,0,71,0,0,0,116,25,1,9,21,43,177,6,0,68] + "instructions": "sQZkREANEwQCAEcAAAB0GQEJFSuxBgBE" }, "uni031A": { "name": "uni031A", "advanceWidth": 0, "contours": [[{"x":-150,"y":679,"on":true},{"x":-150,"y":744,"on":true},{"x":72,"y":744,"on":true},{"x":72,"y":584,"on":true},{"x":0,"y":584,"on":true},{"x":0,"y":679,"on":true}]], "references": [], - "instructions": [177,6,100,68,75,176,14,80,88,64,23,0,1,2,2,1,111,0,0,2,2,0,85,0,0,0,2,93,3,1,2,0,2,77,27,64,22,0,1,2,1,132,0,0,2,2,0,85,0,0,0,2,93,3,1,2,0,2,77,89,64,11,0,0,0,5,0,5,17,17,4,9,22,43,177,6,0,68] + "instructions": "sQZkREuwDlBYQBcAAQICAW8AAAICAFUAAAACXQMBAgACTRtAFgABAgGEAAACAgBVAAAAAl0DAQIAAk1ZQAsAAAAFAAUREQQJFiuxBgBE" }, "uni0358": { "name": "uni0358", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0307","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0315": { "name": "uni0315", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0313","x":198,"y":-220,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,255,36,176,51,43] + "instructions": "sQABuP8ksDMr" }, "uni0322": { "name": "uni0322", "advanceWidth": 0, "contours": [[{"x":-80,"y":0,"on":true},{"x":-80,"y":8,"on":true},{"x":0,"y":8,"on":true},{"x":0,"y":0,"on":true},{"x":0,"y":-47,"on":false},{"x":14,"y":-71,"on":true},{"x":26,"y":-91,"on":false},{"x":46,"y":-103,"on":true},{"x":73,"y":-119,"on":false},{"x":130,"y":-119,"on":true},{"x":130,"y":-191,"on":true},{"x":38,"y":-191,"on":false},{"x":-6,"y":-166,"on":true},{"x":-39,"y":-147,"on":false},{"x":-58,"y":-114,"on":true},{"x":-80,"y":-75,"on":false}]], "references": [], - "instructions": [177,6,100,68,64,26,2,0,2,0,72,0,0,1,1,0,87,0,0,0,1,95,0,1,0,1,79,17,24,2,9,22,43,177,6,0,68] + "instructions": "sQZkREAaAgACAEgAAAEBAFcAAAABXwABAAFPERgCCRYrsQYARA==" }, "uni0321": { "name": "uni0321", "advanceWidth": 0, "contours": [[{"x":-210,"y":-119,"on":true},{"x":-153,"y":-119,"on":false},{"x":-126,"y":-103,"on":true},{"x":-106,"y":-91,"on":false},{"x":-94,"y":-71,"on":true},{"x":-80,"y":-47,"on":false},{"x":-80,"y":0,"on":true},{"x":-80,"y":8,"on":true},{"x":0,"y":8,"on":true},{"x":0,"y":0,"on":true},{"x":0,"y":-75,"on":false},{"x":-22,"y":-114,"on":true},{"x":-41,"y":-147,"on":false},{"x":-74,"y":-166,"on":true},{"x":-118,"y":-191,"on":false},{"x":-210,"y":-191,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,26,8,6,2,0,72,0,0,1,1,0,87,0,0,0,1,95,0,1,0,1,79,29,16,2,9,22,43,177,6,0,68] + "instructions": "sQZkREAaCAYCAEgAAAEBAFcAAAABXwABAAFPHRACCRYrsQYARA==" }, "uni0334": { "name": "uni0334", "advanceWidth": 0, "contours": [], "references": [{"glyph":"tildecomb","x":0,"y":-399,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,113,176,51,43] + "instructions": "sQABuP5xsDMr" }, "uni0335": { "name": "uni0335", "advanceWidth": 0, "contours": [[{"x":-381,"y":229,"on":true},{"x":-381,"y":301,"on":true},{"x":-119,"y":301,"on":true},{"x":-119,"y":229,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,9,21,43,177,6,0,68] + "instructions": "sQZkREAbAAABAQBVAAAAAV0CAQEAAU0AAAADAAMRAwkVK7EGAEQ=" }, "uni0336": { "name": "uni0336", "advanceWidth": 0, "contours": [[{"x":-470,"y":229,"on":true},{"x":-470,"y":301,"on":true},{"x":-30,"y":301,"on":true},{"x":-30,"y":229,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,9,21,43,177,6,0,68] + "instructions": "sQZkREAbAAABAQBVAAAAAV0CAQEAAU0AAAADAAMRAwkVK7EGAEQ=" }, "uniE090": { "name": "uniE090", "advanceWidth": 0, "contours": [[{"x":-408,"y":227,"on":true},{"x":-128,"y":367,"on":true},{"x":-92,"y":303,"on":true},{"x":-372,"y":163,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "uni0337": { "name": "uni0337", "advanceWidth": 0, "contours": [[{"x":-416,"y":-42,"on":true},{"x":-138,"y":594,"on":true},{"x":-84,"y":572,"on":true},{"x":-362,"y":-64,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "uni0338": { "name": "uni0338", "advanceWidth": 0, "contours": [[{"x":-418,"y":-168,"on":true},{"x":-140,"y":714,"on":true},{"x":-82,"y":698,"on":true},{"x":-360,"y":-184,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "uni0361": { "name": "uni0361", "advanceWidth": 0, "contours": [[{"x":-312,"y":789,"on":true},{"x":-251,"y":854,"on":false},{"x":-177,"y":898,"on":true},{"x":-88,"y":949,"on":false},{"x":88,"y":949,"on":false},{"x":177,"y":898,"on":true},{"x":252,"y":855,"on":false},{"x":312,"y":789,"on":true},{"x":254,"y":740,"on":true},{"x":201,"y":800,"on":false},{"x":136,"y":838,"on":true},{"x":68,"y":877,"on":false},{"x":-68,"y":877,"on":false},{"x":-136,"y":838,"on":true},{"x":-201,"y":800,"on":false},{"x":-254,"y":740,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,27,15,8,7,3,1,71,0,0,1,1,0,87,0,0,0,1,95,0,1,0,1,79,23,19,2,9,22,43,177,6,0,68] + "instructions": "sQZkREAbDwgHAwFHAAABAQBXAAAAAV8AAQABTxcTAgkWK7EGAEQ=" }, "uni035D": { "name": "uni035D", "advanceWidth": 0, "contours": [[{"x":-312,"y":949,"on":true},{"x":-254,"y":998,"on":true},{"x":-201,"y":938,"on":false},{"x":-136,"y":901,"on":true},{"x":-68,"y":862,"on":false},{"x":68,"y":861,"on":false},{"x":136,"y":901,"on":true},{"x":201,"y":939,"on":false},{"x":254,"y":998,"on":true},{"x":312,"y":949,"on":true},{"x":251,"y":884,"on":false},{"x":177,"y":840,"on":true},{"x":88,"y":789,"on":false},{"x":-88,"y":789,"on":false},{"x":-177,"y":840,"on":true},{"x":-252,"y":883,"on":false}]], "references": [], - "instructions": [177,6,100,68,64,27,9,8,1,3,0,72,0,0,1,1,0,87,0,0,0,1,95,0,1,0,1,79,23,20,2,9,22,43,177,6,0,68] + "instructions": "sQZkREAbCQgBAwBIAAABAQBXAAAAAV8AAQABTxcUAgkWK7EGAEQ=" }, "uni035C": { "name": "uni035C", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni035D","x":0,"y":-1208,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,251,72,176,51,43] + "instructions": "sQABuPtIsDMr" }, "uni035E": { "name": "uni035E", "advanceWidth": 0, "contours": [[{"x":-312,"y":854,"on":true},{"x":-312,"y":926,"on":true},{"x":312,"y":926,"on":true},{"x":312,"y":854,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,9,21,43,177,6,0,68] + "instructions": "sQZkREAbAAABAQBVAAAAAV0CAQEAAU0AAAADAAMRAwkVK7EGAEQ=" }, "uni035F": { "name": "uni035F", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni035E","x":0,"y":-1250,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,251,30,176,51,43] + "instructions": "sQABuPsesDMr" }, "uni0362": { "name": "uni0362", "advanceWidth": 0, "contours": [[{"x":-312,"y":-328,"on":true},{"x":223,"y":-328,"on":true},{"x":140,"y":-266,"on":true},{"x":185,"y":-215,"on":true},{"x":359,"y":-360,"on":true},{"x":185,"y":-505,"on":true},{"x":140,"y":-454,"on":true},{"x":223,"y":-392,"on":true},{"x":-312,"y":-392,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,37,4,1,1,0,1,74,3,2,2,0,72,6,5,2,1,71,0,0,1,1,0,85,0,0,0,1,93,0,1,0,1,77,22,16,2,9,22,43,177,6,0,68] + "instructions": "sQZkREAlBAEBAAFKAwICAEgGBQIBRwAAAQEAVQAAAAFdAAEAAU0WEAIJFiuxBgBE" }, "uni0360": { "name": "uni0360", "advanceWidth": 0, "contours": [[{"x":-342,"y":808,"on":true},{"x":-267,"y":914,"on":false},{"x":-203,"y":951,"on":true},{"x":-163,"y":974,"on":false},{"x":-124,"y":974,"on":true},{"x":-86,"y":974,"on":false},{"x":-49,"y":953,"on":true},{"x":-21,"y":937,"on":false},{"x":26,"y":891,"on":true},{"x":67,"y":851,"on":false},{"x":88,"y":840,"on":true},{"x":107,"y":829,"on":false},{"x":124,"y":829,"on":true},{"x":142,"y":829,"on":false},{"x":164,"y":842,"on":true},{"x":216,"y":872,"on":false},{"x":283,"y":968,"on":true},{"x":342,"y":930,"on":true},{"x":267,"y":824,"on":false},{"x":203,"y":787,"on":true},{"x":163,"y":764,"on":false},{"x":124,"y":764,"on":true},{"x":86,"y":764,"on":false},{"x":49,"y":785,"on":true},{"x":21,"y":801,"on":false},{"x":-26,"y":847,"on":true},{"x":-67,"y":887,"on":false},{"x":-88,"y":898,"on":true},{"x":-107,"y":909,"on":false},{"x":-124,"y":909,"on":true},{"x":-142,"y":909,"on":false},{"x":-164,"y":897,"on":true},{"x":-216,"y":867,"on":false},{"x":-283,"y":771,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,42,17,16,2,3,0,33,1,2,1,2,74,0,0,0,3,1,0,3,103,0,1,2,2,1,87,0,1,1,2,95,0,2,1,2,79,38,39,38,35,4,9,24,43,177,6,0,68] + "instructions": "sQZkREAqERACAwAhAQIBAkoAAAADAQADZwABAgIBVwABAQJfAAIBAk8mJyYjBAkYK7EGAEQ=" }, "glyph107": { "name": "glyph107", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni1FCD","x":-500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FCD": { "name": "uni1FCD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0340","x":575,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":425,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph109": { "name": "glyph109", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0341","x":75,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":-75,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FCE": { "name": "uni1FCE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph111": { "name": "glyph111", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0340","x":75,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":-75,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FDD": { "name": "uni1FDD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph113": { "name": "glyph113", "advanceWidth": 0, "contours": [], "references": [{"glyph":"uni0341","x":75,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":-75,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FDE": { "name": "uni1FDE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph115": { "name": "glyph115", "advanceWidth": 0, "contours": [[{"x":-375,"y":716,"on":true},{"x":-375,"y":753,"on":false},{"x":-360,"y":779,"on":true},{"x":-346,"y":803,"on":false},{"x":-321,"y":818,"on":true},{"x":-292,"y":835,"on":false},{"x":-209,"y":835,"on":false},{"x":-179,"y":818,"on":true},{"x":-154,"y":804,"on":false},{"x":-140,"y":779,"on":true},{"x":-125,"y":752,"on":false},{"x":-125,"y":716,"on":true},{"x":-184,"y":716,"on":true},{"x":-184,"y":747,"on":false},{"x":-219,"y":782,"on":false},{"x":-281,"y":782,"on":false},{"x":-316,"y":746,"on":false},{"x":-316,"y":716,"on":true}],[{"x":-303,"y":583,"on":true},{"x":-272,"y":617,"on":false},{"x":-262,"y":663,"on":true},{"x":-278,"y":666,"on":false},{"x":-289,"y":677,"on":true},{"x":-303,"y":691,"on":false},{"x":-303,"y":740,"on":false},{"x":-274,"y":769,"on":false},{"x":-226,"y":769,"on":false},{"x":-197,"y":740,"on":false},{"x":-197,"y":716,"on":true},{"x":-197,"y":644,"on":false},{"x":-229,"y":588,"on":true},{"x":-242,"y":565,"on":false},{"x":-261,"y":546,"on":true}]], "references": [], - "instructions": [64,49,32,20,2,1,71,0,4,2,1,2,4,1,126,5,3,2,1,1,130,0,0,2,2,0,87,0,0,0,2,95,0,2,0,2,79,0,0,26,25,0,17,0,17,18,21,21,6,8,23,43] + "instructions": "QDEgFAIBRwAEAgECBAF+BQMCAQGCAAACAgBXAAAAAl8AAgACTwAAGhkAEQAREhUVBggXKw==" }, "uni1FCF": { "name": "uni1FCF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph115","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph117": { "name": "glyph117", "advanceWidth": 0, "contours": [[{"x":-375,"y":716,"on":true},{"x":-375,"y":753,"on":false},{"x":-360,"y":779,"on":true},{"x":-346,"y":803,"on":false},{"x":-321,"y":818,"on":true},{"x":-292,"y":835,"on":false},{"x":-209,"y":835,"on":false},{"x":-179,"y":818,"on":true},{"x":-154,"y":804,"on":false},{"x":-140,"y":779,"on":true},{"x":-125,"y":752,"on":false},{"x":-125,"y":716,"on":true},{"x":-184,"y":716,"on":true},{"x":-184,"y":747,"on":false},{"x":-219,"y":782,"on":false},{"x":-281,"y":782,"on":false},{"x":-316,"y":746,"on":false},{"x":-316,"y":716,"on":true}],[{"x":-303,"y":716,"on":true},{"x":-303,"y":740,"on":false},{"x":-274,"y":769,"on":false},{"x":-226,"y":769,"on":false},{"x":-197,"y":740,"on":false},{"x":-197,"y":691,"on":false},{"x":-211,"y":677,"on":true},{"x":-222,"y":666,"on":false},{"x":-238,"y":663,"on":true},{"x":-227,"y":617,"on":false},{"x":-197,"y":583,"on":true},{"x":-239,"y":546,"on":true},{"x":-257,"y":565,"on":false},{"x":-271,"y":588,"on":true},{"x":-303,"y":644,"on":false}]], "references": [], - "instructions": [64,50,29,28,26,3,1,71,0,4,2,1,2,4,1,126,5,3,2,1,1,130,0,0,2,2,0,87,0,0,0,2,95,0,2,0,2,79,0,0,21,20,0,17,0,17,18,21,21,6,8,23,43] + "instructions": "QDIdHBoDAUcABAIBAgQBfgUDAgEBggAAAgIAVwAAAAJfAAIAAk8AABUUABEAERIVFQYIFys=" }, "uni1FDF": { "name": "uni1FDF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph117","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph119": { "name": "glyph119", "advanceWidth": 500, "contours": [[{"x":210,"y":0,"on":true},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "glyph120": { "name": "glyph120", "advanceWidth": 500, "contours": [[{"x":110,"y":0,"on":true},{"x":110,"y":72,"on":true},{"x":210,"y":72,"on":true},{"x":210,"y":663,"on":true},{"x":110,"y":663,"on":true},{"x":110,"y":735,"on":true},{"x":390,"y":735,"on":true},{"x":390,"y":663,"on":true},{"x":290,"y":663,"on":true},{"x":290,"y":72,"on":true},{"x":390,"y":72,"on":true},{"x":390,"y":0,"on":true}]], "references": [], - "instructions": [64,38,3,1,1,1,2,93,0,2,2,64,75,4,1,0,0,5,93,6,1,5,5,65,5,76,0,0,0,11,0,11,17,17,17,17,17,7,9,25,43] + "instructions": "QCYDAQEBAl0AAgJASwQBAAAFXQYBBQVBBUwAAAALAAsREREREQcJGSs=" }, "I": { "name": "I", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Iota": { "name": "Iota", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0406": { "name": "uni0406", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04C0": { "name": "uni04C0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni026A": { "name": "uni026A", "advanceWidth": 500, "contours": [[{"x":110,"y":0,"on":true},{"x":110,"y":72,"on":true},{"x":210,"y":72,"on":true},{"x":210,"y":458,"on":true},{"x":110,"y":458,"on":true},{"x":110,"y":530,"on":true},{"x":390,"y":530,"on":true},{"x":390,"y":458,"on":true},{"x":290,"y":458,"on":true},{"x":290,"y":72,"on":true},{"x":390,"y":72,"on":true},{"x":390,"y":0,"on":true}]], "references": [], - "instructions": [64,38,3,1,1,1,2,93,0,2,2,67,75,4,1,0,0,5,93,6,1,5,5,65,5,76,0,0,0,11,0,11,17,17,17,17,17,7,9,25,43] + "instructions": "QCYDAQEBAl0AAgJDSwQBAAAFXQYBBQVBBUwAAAALAAsREREREQcJGSs=" }, "glyph126": { "name": "glyph126", "advanceWidth": 500, "contours": [[{"x":210,"y":0,"on":true},{"x":210,"y":530,"on":true},{"x":290,"y":530,"on":true},{"x":290,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "glyph127": { "name": "glyph127", "advanceWidth": 500, "contours": [[{"x":82,"y":458,"on":true},{"x":82,"y":530,"on":true},{"x":297,"y":530,"on":true},{"x":297,"y":0,"on":true},{"x":217,"y":0,"on":true},{"x":217,"y":458,"on":true}]], "references": [], - "instructions": [64,28,3,1,2,2,0,93,0,0,0,28,75,0,1,1,27,1,76,0,0,0,5,0,5,17,17,4,7,22,43] + "instructions": "QBwDAQICAF0AAAAcSwABARsBTAAAAAUABRERBAcWKw==" }, "glyph128": { "name": "glyph128", "advanceWidth": 500, "contours": [[{"x":75,"y":458,"on":true},{"x":75,"y":530,"on":true},{"x":290,"y":530,"on":true},{"x":290,"y":72,"on":true},{"x":425,"y":72,"on":true},{"x":425,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":458,"on":true}]], "references": [], - "instructions": [64,34,4,1,3,3,0,93,0,0,0,28,75,0,1,1,2,93,0,2,2,27,2,76,0,0,0,7,0,7,17,17,17,5,7,23,43] + "instructions": "QCIEAQMDAF0AAAAcSwABAQJdAAICGwJMAAAABwAHERERBQcXKw==" }, "glyph129": { "name": "glyph129", "advanceWidth": 500, "contours": [[{"x":75,"y":0,"on":true},{"x":75,"y":72,"on":true},{"x":217,"y":72,"on":true},{"x":217,"y":458,"on":true},{"x":89,"y":458,"on":true},{"x":89,"y":530,"on":true},{"x":297,"y":530,"on":true},{"x":297,"y":72,"on":true},{"x":425,"y":72,"on":true},{"x":425,"y":0,"on":true}]], "references": [], - "instructions": [64,36,0,1,1,2,93,0,2,2,28,75,3,1,0,0,4,93,5,1,4,4,27,4,76,0,0,0,9,0,9,17,17,17,17,6,7,24,43] + "instructions": "QCQAAQECXQACAhxLAwEAAARdBQEEBBsETAAAAAkACREREREGBxgr" }, "glyph130": { "name": "glyph130", "advanceWidth": 500, "contours": [[{"x":52,"y":458,"on":true},{"x":52,"y":530,"on":true},{"x":267,"y":530,"on":true},{"x":267,"y":176,"on":true},{"x":267,"y":126,"on":false},{"x":285,"y":96,"on":true},{"x":295,"y":79,"on":false},{"x":309,"y":71,"on":true},{"x":321,"y":64,"on":false},{"x":351,"y":64,"on":false},{"x":363,"y":71,"on":true},{"x":377,"y":79,"on":false},{"x":388,"y":97,"on":true},{"x":403,"y":122,"on":false},{"x":405,"y":159,"on":true},{"x":483,"y":143,"on":true},{"x":479,"y":97,"on":false},{"x":458,"y":62,"on":true},{"x":438,"y":28,"on":false},{"x":407,"y":10,"on":true},{"x":377,"y":-8,"on":false},{"x":295,"y":-8,"on":false},{"x":265,"y":10,"on":true},{"x":234,"y":28,"on":false},{"x":214,"y":62,"on":true},{"x":187,"y":108,"on":false},{"x":187,"y":176,"on":true},{"x":187,"y":458,"on":true}]], "references": [], - "instructions": [64,41,15,14,2,1,3,1,74,4,1,3,3,0,93,0,0,0,28,75,0,1,1,2,95,0,2,2,34,2,76,0,0,0,27,0,27,27,22,17,5,7,23,43] + "instructions": "QCkPDgIBAwFKBAEDAwBdAAAAHEsAAQECXwACAiICTAAAABsAGxsWEQUHFys=" }, "dotlessi": { "name": "dotlessi", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph132": { "name": "glyph132", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "i": { "name": "i", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph134": { "name": "glyph134", "advanceWidth": 500, "contours": [], "references": [{"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph135": { "name": "glyph135", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph136": { "name": "glyph136", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph137": { "name": "glyph137", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0456": { "name": "uni0456", "advanceWidth": 500, "contours": [], "references": [{"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1D09": { "name": "uni1D09", "advanceWidth": 500, "contours": [[{"x":75,"y":458,"on":true},{"x":75,"y":530,"on":true},{"x":425,"y":530,"on":true},{"x":425,"y":458,"on":true},{"x":283,"y":458,"on":true},{"x":283,"y":72,"on":true},{"x":411,"y":72,"on":true},{"x":411,"y":0,"on":true},{"x":203,"y":0,"on":true},{"x":203,"y":458,"on":true}],[{"x":188,"y":-175,"on":false},{"x":188,"y":-135,"on":false},{"x":196,"y":-121,"on":true},{"x":203,"y":-108,"on":false},{"x":216,"y":-101,"on":true},{"x":230,"y":-93,"on":false},{"x":270,"y":-92,"on":false},{"x":284,"y":-101,"on":true},{"x":297,"y":-108,"on":false},{"x":304,"y":-121,"on":true},{"x":312,"y":-135,"on":false},{"x":312,"y":-175,"on":false},{"x":304,"y":-189,"on":true},{"x":297,"y":-202,"on":false},{"x":284,"y":-209,"on":true},{"x":270,"y":-218,"on":false},{"x":230,"y":-218,"on":false},{"x":216,"y":-209,"on":true},{"x":203,"y":-202,"on":false},{"x":196,"y":-189,"on":true}]], "references": [], - "instructions": [64,50,7,4,2,1,1,0,93,0,0,0,67,75,0,2,2,3,93,0,3,3,65,75,0,5,5,6,95,0,6,6,77,6,76,0,0,26,25,16,15,0,9,0,9,17,17,17,17,8,9,24,43] + "instructions": "QDIHBAIBAQBdAAAAQ0sAAgIDXQADA0FLAAUFBl8ABgZNBkwAABoZEA8ACQAJEREREQgJGCs=" }, "iota": { "name": "iota", "advanceWidth": 500, "contours": [[{"x":75,"y":458,"on":true},{"x":75,"y":530,"on":true},{"x":290,"y":530,"on":true},{"x":290,"y":155,"on":true},{"x":290,"y":127,"on":false},{"x":301,"y":108,"on":true},{"x":322,"y":72,"on":false},{"x":369,"y":72,"on":true},{"x":434,"y":72,"on":true},{"x":434,"y":0,"on":true},{"x":369,"y":0,"on":true},{"x":317,"y":0,"on":false},{"x":280,"y":21,"on":true},{"x":248,"y":39,"on":false},{"x":230,"y":71,"on":true},{"x":210,"y":106,"on":false},{"x":210,"y":155,"on":true},{"x":210,"y":458,"on":true}]], "references": [], - "instructions": [64,34,4,1,3,3,0,93,0,0,0,47,75,0,1,1,2,95,0,2,2,45,2,76,0,0,0,17,0,17,33,36,17,5,8,23,43] + "instructions": "QCIEAQMDAF0AAAAvSwABAQJfAAICLQJMAAAAEQARISQRBQgXKw==" }, "uni0269": { "name": "uni0269", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0196": { "name": "uni0196", "advanceWidth": 500, "contours": [[{"x":75,"y":663,"on":true},{"x":75,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":155,"on":true},{"x":290,"y":127,"on":false},{"x":301,"y":108,"on":true},{"x":322,"y":72,"on":false},{"x":369,"y":72,"on":true},{"x":434,"y":72,"on":true},{"x":434,"y":0,"on":true},{"x":369,"y":0,"on":true},{"x":317,"y":0,"on":false},{"x":280,"y":21,"on":true},{"x":248,"y":39,"on":false},{"x":230,"y":71,"on":true},{"x":210,"y":106,"on":false},{"x":210,"y":155,"on":true},{"x":210,"y":663,"on":true}]], "references": [], - "instructions": [64,34,4,1,3,3,0,93,0,0,0,64,75,0,1,1,2,95,0,2,2,65,2,76,0,0,0,17,0,17,33,36,17,5,9,23,43] + "instructions": "QCIEAQMDAF0AAABASwABAQJfAAICQQJMAAAAEQARISQRBQkXKw==" }, "glyph143": { "name": "glyph143", "advanceWidth": 500, "contours": [[{"x":40,"y":155,"on":true},{"x":118,"y":170,"on":true},{"x":121,"y":140,"on":false},{"x":136,"y":115,"on":true},{"x":150,"y":90,"on":false},{"x":196,"y":64,"on":false},{"x":257,"y":64,"on":false},{"x":279,"y":77,"on":true},{"x":302,"y":90,"on":false},{"x":316,"y":115,"on":true},{"x":335,"y":147,"on":false},{"x":335,"y":195,"on":true},{"x":335,"y":735,"on":true},{"x":415,"y":735,"on":true},{"x":415,"y":195,"on":true},{"x":415,"y":127,"on":false},{"x":387,"y":78,"on":true},{"x":364,"y":38,"on":false},{"x":325,"y":16,"on":true},{"x":283,"y":-8,"on":false},{"x":169,"y":-8,"on":false},{"x":127,"y":16,"on":true},{"x":88,"y":38,"on":false},{"x":65,"y":78,"on":true},{"x":45,"y":113,"on":false}]], "references": [], - "instructions": [179,19,12,1,48,43] + "instructions": "sxMMATAr" }, "glyph144": { "name": "glyph144", "advanceWidth": 500, "contours": [[{"x":174,"y":-8,"on":true},{"x":174,"y":64,"on":true},{"x":245,"y":64,"on":false},{"x":279,"y":83,"on":true},{"x":304,"y":97,"on":false},{"x":318,"y":123,"on":true},{"x":335,"y":152,"on":false},{"x":335,"y":209,"on":true},{"x":335,"y":735,"on":true},{"x":415,"y":735,"on":true},{"x":415,"y":209,"on":true},{"x":415,"y":124,"on":false},{"x":390,"y":80,"on":true},{"x":368,"y":43,"on":false},{"x":331,"y":21,"on":true},{"x":281,"y":-8,"on":false}]], "references": [], - "instructions": [179,8,0,1,48,43] + "instructions": "swgAATAr" }, "glyph145": { "name": "glyph145", "advanceWidth": 500, "contours": [[{"x":40,"y":155,"on":true},{"x":118,"y":170,"on":true},{"x":121,"y":140,"on":false},{"x":136,"y":115,"on":true},{"x":150,"y":90,"on":false},{"x":196,"y":64,"on":false},{"x":257,"y":64,"on":false},{"x":279,"y":77,"on":true},{"x":302,"y":90,"on":false},{"x":316,"y":115,"on":true},{"x":335,"y":147,"on":false},{"x":335,"y":195,"on":true},{"x":335,"y":663,"on":true},{"x":200,"y":663,"on":true},{"x":200,"y":735,"on":true},{"x":415,"y":735,"on":true},{"x":415,"y":195,"on":true},{"x":415,"y":127,"on":false},{"x":387,"y":78,"on":true},{"x":364,"y":38,"on":false},{"x":325,"y":16,"on":true},{"x":283,"y":-8,"on":false},{"x":169,"y":-8,"on":false},{"x":127,"y":16,"on":true},{"x":88,"y":38,"on":false},{"x":65,"y":78,"on":true},{"x":45,"y":113,"on":false}]], "references": [], - "instructions": [64,34,1,1,0,1,1,74,0,1,1,2,93,0,2,2,64,75,0,0,0,3,95,0,3,3,73,3,76,22,17,22,21,4,9,24,43] + "instructions": "QCIBAQABAUoAAQECXQACAkBLAAAAA18AAwNJA0wWERYVBAkYKw==" }, "J": { "name": "J", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph145","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0408": { "name": "uni0408", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph145","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni037F": { "name": "uni037F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph145","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph149": { "name": "glyph149", "advanceWidth": 500, "contours": [[{"x":13,"y":-70,"on":true},{"x":89,"y":-46,"on":true},{"x":94,"y":-74,"on":false},{"x":106,"y":-96,"on":true},{"x":119,"y":-119,"on":false},{"x":139,"y":-131,"on":true},{"x":157,"y":-141,"on":false},{"x":203,"y":-141,"on":false},{"x":221,"y":-131,"on":true},{"x":241,"y":-120,"on":false},{"x":253,"y":-97,"on":true},{"x":273,"y":-63,"on":false},{"x":273,"y":-10,"on":true},{"x":273,"y":530,"on":true},{"x":353,"y":530,"on":true},{"x":353,"y":-10,"on":true},{"x":353,"y":-83,"on":false},{"x":324,"y":-133,"on":true},{"x":302,"y":-171,"on":false},{"x":230,"y":-213,"on":false},{"x":131,"y":-213,"on":false},{"x":59,"y":-171,"on":false},{"x":36,"y":-133,"on":true},{"x":20,"y":-104,"on":false}]], "references": [], - "instructions": [179,19,13,1,48,43] + "instructions": "sxMNATAr" }, "glyph150": { "name": "glyph150", "advanceWidth": 500, "contours": [[{"x":13,"y":-70,"on":true},{"x":89,"y":-46,"on":true},{"x":94,"y":-74,"on":false},{"x":106,"y":-96,"on":true},{"x":119,"y":-119,"on":false},{"x":139,"y":-131,"on":true},{"x":157,"y":-141,"on":false},{"x":203,"y":-141,"on":false},{"x":221,"y":-131,"on":true},{"x":241,"y":-120,"on":false},{"x":253,"y":-97,"on":true},{"x":273,"y":-63,"on":false},{"x":273,"y":-10,"on":true},{"x":273,"y":458,"on":true},{"x":138,"y":458,"on":true},{"x":138,"y":530,"on":true},{"x":353,"y":530,"on":true},{"x":353,"y":-10,"on":true},{"x":353,"y":-83,"on":false},{"x":324,"y":-133,"on":true},{"x":302,"y":-171,"on":false},{"x":230,"y":-213,"on":false},{"x":131,"y":-213,"on":false},{"x":59,"y":-171,"on":false},{"x":36,"y":-133,"on":true},{"x":20,"y":-104,"on":false}]], "references": [], - "instructions": [64,34,1,1,0,1,1,74,0,1,1,2,93,0,2,2,67,75,0,0,0,3,95,0,3,3,77,3,76,21,17,22,22,4,9,24,43] + "instructions": "QCIBAQABAUoAAQECXQACAkNLAAAAA18AAwNNA0wVERYWBAkYKw==" }, "uni0237": { "name": "uni0237", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph150","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "j": { "name": "j", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph150","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":550,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni03F3": { "name": "uni03F3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"j","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0458": { "name": "uni0458", "advanceWidth": 500, "contours": [], "references": [{"glyph":"j","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni029D": { "name": "uni029D", "advanceWidth": 500, "contours": [[{"x":90,"y":-124,"on":false},{"x":90,"y":-40,"on":false},{"x":109,"y":-7,"on":true},{"x":123,"y":18,"on":false},{"x":148,"y":32,"on":true},{"x":179,"y":50,"on":false},{"x":219,"y":50,"on":true},{"x":247,"y":50,"on":false},{"x":273,"y":42,"on":true},{"x":273,"y":458,"on":true},{"x":138,"y":458,"on":true},{"x":138,"y":530,"on":true},{"x":353,"y":530,"on":true},{"x":353,"y":-3,"on":true},{"x":401,"y":-42,"on":false},{"x":438,"y":-106,"on":true},{"x":462,"y":-147,"on":false},{"x":475,"y":-193,"on":true},{"x":398,"y":-213,"on":true},{"x":387,"y":-174,"on":false},{"x":367,"y":-139,"on":true},{"x":357,"y":-122,"on":false},{"x":346,"y":-107,"on":true},{"x":340,"y":-133,"on":false},{"x":330,"y":-151,"on":true},{"x":313,"y":-180,"on":false},{"x":285,"y":-197,"on":true},{"x":256,"y":-213,"on":false},{"x":222,"y":-213,"on":true},{"x":181,"y":-213,"on":false},{"x":147,"y":-194,"on":true},{"x":122,"y":-180,"on":false},{"x":108,"y":-155,"on":true}],[{"x":170,"y":-52,"on":false},{"x":170,"y":-111,"on":false},{"x":186,"y":-127,"on":true},{"x":200,"y":-141,"on":false},{"x":221,"y":-141,"on":true},{"x":240,"y":-141,"on":false},{"x":255,"y":-127,"on":true},{"x":274,"y":-108,"on":false},{"x":273,"y":-60,"on":true},{"x":273,"y":-38,"on":true},{"x":272,"y":-38,"on":false},{"x":272,"y":-37,"on":true},{"x":246,"y":-22,"on":false},{"x":223,"y":-22,"on":true},{"x":199,"y":-22,"on":false},{"x":186,"y":-36,"on":true}],[{"x":251,"y":665,"on":false},{"x":250,"y":705,"on":false},{"x":259,"y":719,"on":true},{"x":266,"y":732,"on":false},{"x":279,"y":739,"on":true},{"x":293,"y":747,"on":false},{"x":333,"y":748,"on":false},{"x":347,"y":739,"on":true},{"x":360,"y":732,"on":false},{"x":367,"y":719,"on":true},{"x":375,"y":705,"on":false},{"x":376,"y":665,"on":false},{"x":367,"y":651,"on":true},{"x":360,"y":638,"on":false},{"x":347,"y":631,"on":true},{"x":333,"y":622,"on":false},{"x":293,"y":622,"on":false},{"x":279,"y":631,"on":true},{"x":266,"y":638,"on":false},{"x":259,"y":651,"on":true}]], "references": [], - "instructions": [64,20,13,8,2,5,0,42,22,2,4,5,17,1,3,4,3,74,18,1,3,71,75,176,35,80,88,64,41,0,7,7,6,95,0,6,6,74,75,0,1,1,2,93,0,2,2,67,75,0,0,0,5,95,0,5,5,73,75,0,4,4,3,95,0,3,3,77,3,76,27,64,39,0,0,0,5,4,0,5,103,0,7,7,6,95,0,6,6,74,75,0,1,1,2,93,0,2,2,67,75,0,4,4,3,95,0,3,3,77,3,76,89,64,11,25,23,39,39,47,17,18,37,8,9,28,43] + "instructions": "QBQNCAIFACoWAgQFEQEDBANKEgEDR0uwI1BYQCkABwcGXwAGBkpLAAEBAl0AAgJDSwAAAAVfAAUFSUsABAQDXwADA00DTBtAJwAAAAUEAAVnAAcHBl8ABgZKSwABAQJdAAICQ0sABAQDXwADA00DTFlACxkXJycvERIlCAkcKw==" }, "L": { "name": "L", "advanceWidth": 500, "contours": [[{"x":90,"y":0,"on":true},{"x":90,"y":735,"on":true},{"x":170,"y":735,"on":true},{"x":170,"y":72,"on":true},{"x":448,"y":72,"on":true},{"x":448,"y":0,"on":true}]], "references": [], - "instructions": [64,28,0,0,0,64,75,0,1,1,2,94,3,1,2,2,65,2,76,0,0,0,5,0,5,17,17,4,9,22,43] + "instructions": "QBwAAABASwABAQJeAwECAkECTAAAAAUABRERBAkWKw==" }, "uniA780": { "name": "uniA780", "advanceWidth": 500, "contours": [[{"x":52,"y":663,"on":true},{"x":52,"y":735,"on":true},{"x":410,"y":735,"on":true},{"x":410,"y":0,"on":true},{"x":330,"y":0,"on":true},{"x":330,"y":663,"on":true}]], "references": [], - "instructions": [64,28,3,1,2,2,0,93,0,0,0,64,75,0,1,1,65,1,76,0,0,0,5,0,5,17,17,4,9,22,43] + "instructions": "QBwDAQICAF0AAABASwABAUEBTAAAAAUABRERBAkWKw==" }, "Lcaron": { "name": "Lcaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":642,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Lslash": { "name": "Lslash", "advanceWidth": 500, "contours": [], "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniE090","x":420,"y":139,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,139,176,51,43] + "instructions": "sQEBsIuwMys=" }, "Ldot": { "name": "Ldot", "advanceWidth": 500, "contours": [], "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":557,"y":-282,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,254,230,176,51,43] + "instructions": "sQEBuP7msDMr" }, "uni023D": { "name": "uni023D", "advanceWidth": 500, "contours": [[{"x":18,"y":346,"on":true},{"x":18,"y":418,"on":true},{"x":90,"y":418,"on":true},{"x":90,"y":735,"on":true},{"x":170,"y":735,"on":true},{"x":170,"y":418,"on":true},{"x":262,"y":418,"on":true},{"x":262,"y":346,"on":true},{"x":170,"y":346,"on":true},{"x":170,"y":72,"on":true},{"x":448,"y":72,"on":true},{"x":448,"y":0,"on":true},{"x":90,"y":0,"on":true},{"x":90,"y":346,"on":true}]], "references": [], - "instructions": [64,42,2,1,0,7,6,2,3,4,0,3,101,0,1,1,64,75,0,4,4,5,94,0,5,5,65,5,76,0,0,0,13,0,13,17,17,17,17,17,17,8,9,26,43] + "instructions": "QCoCAQAHBgIDBAADZQABAUBLAAQEBV4ABQVBBUwAAAANAA0REREREREICRor" }, "uni029F": { "name": "uni029F", "advanceWidth": 500, "contours": [[{"x":90,"y":0,"on":true},{"x":90,"y":530,"on":true},{"x":170,"y":530,"on":true},{"x":170,"y":72,"on":true},{"x":448,"y":72,"on":true},{"x":448,"y":0,"on":true}]], "references": [], - "instructions": [64,28,0,0,0,67,75,0,1,1,2,94,3,1,2,2,65,2,76,0,0,0,5,0,5,17,17,4,9,22,43] + "instructions": "QBwAAABDSwABAQJeAwECAkECTAAAAAUABRERBAkWKw==" }, "glyph163": { "name": "glyph163", "advanceWidth": 500, "contours": [[{"x":210,"y":0,"on":true},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "glyph164": { "name": "glyph164", "advanceWidth": 500, "contours": [[{"x":82,"y":663,"on":true},{"x":82,"y":735,"on":true},{"x":297,"y":735,"on":true},{"x":297,"y":0,"on":true},{"x":217,"y":0,"on":true},{"x":217,"y":663,"on":true}]], "references": [], - "instructions": [64,28,3,1,2,2,0,93,0,0,0,26,75,0,1,1,27,1,76,0,0,0,5,0,5,17,17,4,7,22,43] + "instructions": "QBwDAQICAF0AAAAaSwABARsBTAAAAAUABRERBAcWKw==" }, "glyph165": { "name": "glyph165", "advanceWidth": 500, "contours": [[{"x":75,"y":663,"on":true},{"x":75,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":72,"on":true},{"x":425,"y":72,"on":true},{"x":425,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":663,"on":true}]], "references": [], - "instructions": [64,34,4,1,3,3,0,93,0,0,0,26,75,0,1,1,2,93,0,2,2,27,2,76,0,0,0,7,0,7,17,17,17,5,7,23,43] + "instructions": "QCIEAQMDAF0AAAAaSwABAQJdAAICGwJMAAAABwAHERERBQcXKw==" }, "glyph166": { "name": "glyph166", "advanceWidth": 500, "contours": [[{"x":75,"y":0,"on":true},{"x":75,"y":72,"on":true},{"x":217,"y":72,"on":true},{"x":217,"y":663,"on":true},{"x":89,"y":663,"on":true},{"x":89,"y":735,"on":true},{"x":297,"y":735,"on":true},{"x":297,"y":72,"on":true},{"x":425,"y":72,"on":true},{"x":425,"y":0,"on":true}]], "references": [], - "instructions": [64,36,0,1,1,2,93,0,2,2,26,75,3,1,0,0,4,93,5,1,4,4,27,4,76,0,0,0,9,0,9,17,17,17,17,6,7,24,43] + "instructions": "QCQAAQECXQACAhpLAwEAAARdBQEEBBsETAAAAAkACREREREGBxgr" }, "glyph167": { "name": "glyph167", "advanceWidth": 500, "contours": [[{"x":60,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":254,"y":735,"on":true},{"x":254,"y":187,"on":true},{"x":254,"y":132,"on":false},{"x":273,"y":99,"on":true},{"x":284,"y":80,"on":false},{"x":300,"y":71,"on":true},{"x":313,"y":64,"on":false},{"x":346,"y":64,"on":false},{"x":359,"y":72,"on":true},{"x":375,"y":81,"on":false},{"x":386,"y":100,"on":true},{"x":402,"y":128,"on":false},{"x":405,"y":170,"on":true},{"x":483,"y":155,"on":true},{"x":479,"y":104,"on":false},{"x":456,"y":65,"on":true},{"x":435,"y":29,"on":false},{"x":403,"y":10,"on":true},{"x":372,"y":-8,"on":false},{"x":287,"y":-8,"on":false},{"x":256,"y":10,"on":true},{"x":223,"y":29,"on":false},{"x":202,"y":65,"on":true},{"x":174,"y":114,"on":false},{"x":174,"y":187,"on":true},{"x":174,"y":663,"on":true}]], "references": [], - "instructions": [64,41,15,14,2,1,3,1,74,4,1,3,3,0,93,0,0,0,26,75,0,1,1,2,95,0,2,2,34,2,76,0,0,0,27,0,27,27,22,17,5,7,23,43] + "instructions": "QCkPDgIBAwFKBAEDAwBdAAAAGksAAQECXwACAiICTAAAABsAGxsWEQUHFys=" }, "l": { "name": "l", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04CF": { "name": "uni04CF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uniA781": { "name": "uniA781", "advanceWidth": 500, "contours": [[{"x":75,"y":458,"on":true},{"x":75,"y":530,"on":true},{"x":425,"y":530,"on":true},{"x":425,"y":458,"on":true},{"x":283,"y":458,"on":true},{"x":283,"y":-133,"on":true},{"x":411,"y":-133,"on":true},{"x":411,"y":-205,"on":true},{"x":203,"y":-205,"on":true},{"x":203,"y":458,"on":true}]], "references": [], - "instructions": [64,36,5,4,2,1,1,0,93,0,0,0,67,75,0,2,2,3,93,0,3,3,69,3,76,0,0,0,9,0,9,17,17,17,17,6,9,24,43] + "instructions": "QCQFBAIBAQBdAAAAQ0sAAgIDXQADA0UDTAAAAAkACREREREGCRgr" }, "ldot": { "name": "ldot", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph166","x":-31,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":628,"y":-282,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,254,230,176,51,43] + "instructions": "sQEBuP7msDMr" }, "uni026D": { "name": "uni026D", "advanceWidth": 500, "contours": [[{"x":82,"y":663,"on":true},{"x":82,"y":735,"on":true},{"x":297,"y":735,"on":true},{"x":297,"y":0,"on":true},{"x":297,"y":-47,"on":false},{"x":311,"y":-71,"on":true},{"x":323,"y":-91,"on":false},{"x":343,"y":-103,"on":true},{"x":370,"y":-119,"on":false},{"x":427,"y":-119,"on":true},{"x":427,"y":-191,"on":true},{"x":335,"y":-191,"on":false},{"x":291,"y":-166,"on":true},{"x":258,"y":-147,"on":false},{"x":239,"y":-114,"on":true},{"x":217,"y":-75,"on":false},{"x":217,"y":0,"on":true},{"x":217,"y":663,"on":true}]], "references": [], - "instructions": [75,176,35,80,88,64,22,4,1,3,3,0,93,0,0,0,64,75,0,1,1,2,95,0,2,2,69,2,76,27,64,19,0,1,0,2,1,2,99,4,1,3,3,0,93,0,0,0,64,3,76,89,64,12,0,0,0,17,0,17,17,22,17,5,9,23,43] + "instructions": "S7AjUFhAFgQBAwMAXQAAAEBLAAEBAl8AAgJFAkwbQBMAAQACAQJjBAEDAwBdAAAAQANMWUAMAAAAEQARERYRBQkXKw==" }, "uni0234": { "name": "uni0234", "advanceWidth": 500, "contours": [[{"x":40,"y":-53,"on":true},{"x":57,"y":11,"on":false},{"x":91,"y":68,"on":true},{"x":143,"y":159,"on":false},{"x":210,"y":208,"on":true},{"x":210,"y":663,"on":true},{"x":75,"y":663,"on":true},{"x":75,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":248,"on":true},{"x":316,"y":255,"on":false},{"x":343,"y":255,"on":true},{"x":385,"y":255,"on":false},{"x":416,"y":237,"on":true},{"x":441,"y":223,"on":false},{"x":454,"y":198,"on":true},{"x":473,"y":166,"on":false},{"x":473,"y":82,"on":false},{"x":455,"y":50,"on":true},{"x":441,"y":25,"on":false},{"x":416,"y":11,"on":true},{"x":383,"y":-8,"on":false},{"x":342,"y":-8,"on":true},{"x":307,"y":-8,"on":false},{"x":278,"y":8,"on":true},{"x":250,"y":24,"on":false},{"x":233,"y":54,"on":true},{"x":221,"y":75,"on":false},{"x":215,"y":110,"on":true},{"x":187,"y":79,"on":false},{"x":162,"y":35,"on":true},{"x":134,"y":-15,"on":false},{"x":118,"y":-72,"on":true}],[{"x":290,"y":145,"on":true},{"x":290,"y":96,"on":false},{"x":308,"y":78,"on":true},{"x":322,"y":64,"on":false},{"x":341,"y":64,"on":true},{"x":363,"y":64,"on":false},{"x":377,"y":78,"on":true},{"x":393,"y":94,"on":false},{"x":393,"y":153,"on":false},{"x":363,"y":183,"on":false},{"x":338,"y":183,"on":true},{"x":316,"y":183,"on":false},{"x":290,"y":170,"on":true}]], "references": [], - "instructions": [64,54,9,4,2,5,2,45,28,2,4,5,2,74,32,1,3,71,0,2,0,5,4,2,5,103,0,0,0,1,93,0,1,1,64,75,0,4,4,3,95,0,3,3,73,3,76,36,45,41,34,17,21,6,9,26,43] + "instructions": "QDYJBAIFAi0cAgQFAkogAQNHAAIABQQCBWcAAAABXQABAUBLAAQEA18AAwNJA0wkLSkiERUGCRor" }, "uni026B": { "name": "uni026B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":-278,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,254,234,176,51,43] + "instructions": "sQEBuP7qsDMr" }, "uni026C": { "name": "uni026C", "advanceWidth": 500, "contours": [[{"x":75,"y":0,"on":true},{"x":75,"y":72,"on":true},{"x":217,"y":72,"on":true},{"x":217,"y":280,"on":true},{"x":174,"y":280,"on":true},{"x":142,"y":280,"on":false},{"x":120,"y":293,"on":true},{"x":101,"y":304,"on":false},{"x":91,"y":322,"on":true},{"x":80,"y":341,"on":false},{"x":80,"y":394,"on":false},{"x":91,"y":413,"on":true},{"x":101,"y":431,"on":false},{"x":120,"y":442,"on":true},{"x":142,"y":455,"on":false},{"x":174,"y":455,"on":true},{"x":217,"y":455,"on":true},{"x":217,"y":663,"on":true},{"x":89,"y":663,"on":true},{"x":89,"y":735,"on":true},{"x":297,"y":735,"on":true},{"x":297,"y":341,"on":true},{"x":387,"y":341,"on":true},{"x":387,"y":280,"on":true},{"x":297,"y":280,"on":true},{"x":297,"y":72,"on":true},{"x":425,"y":72,"on":true},{"x":425,"y":0,"on":true}],[{"x":148,"y":380,"on":false},{"x":148,"y":355,"on":false},{"x":162,"y":341,"on":false},{"x":174,"y":341,"on":true},{"x":217,"y":341,"on":true},{"x":217,"y":394,"on":true},{"x":174,"y":394,"on":true},{"x":162,"y":394,"on":false}]], "references": [], - "instructions": [64,62,0,2,0,10,5,2,10,103,9,1,5,6,1,1,0,5,1,103,0,3,3,4,93,0,4,4,64,75,7,1,0,0,8,93,11,1,8,8,65,8,76,0,0,35,33,32,30,0,27,0,27,17,17,17,17,17,41,33,17,12,9,28,43] + "instructions": "QD4AAgAKBQIKZwkBBQYBAQAFAWcAAwMEXQAEBEBLBwEAAAhdCwEICEEITAAAIyEgHgAbABsRERERESkhEQwJHCs=" }, "uniA78E": { "name": "uniA78E", "advanceWidth": 500, "contours": [[{"x":80,"y":341,"on":false},{"x":80,"y":394,"on":false},{"x":91,"y":413,"on":true},{"x":101,"y":431,"on":false},{"x":120,"y":442,"on":true},{"x":142,"y":455,"on":false},{"x":174,"y":455,"on":true},{"x":217,"y":455,"on":true},{"x":217,"y":663,"on":true},{"x":82,"y":663,"on":true},{"x":82,"y":735,"on":true},{"x":297,"y":735,"on":true},{"x":297,"y":341,"on":true},{"x":387,"y":341,"on":true},{"x":387,"y":280,"on":true},{"x":297,"y":280,"on":true},{"x":297,"y":0,"on":true},{"x":297,"y":-47,"on":false},{"x":311,"y":-71,"on":true},{"x":323,"y":-91,"on":false},{"x":343,"y":-103,"on":true},{"x":370,"y":-119,"on":false},{"x":427,"y":-119,"on":true},{"x":427,"y":-191,"on":true},{"x":335,"y":-191,"on":false},{"x":291,"y":-166,"on":true},{"x":258,"y":-147,"on":false},{"x":239,"y":-114,"on":true},{"x":217,"y":-75,"on":false},{"x":217,"y":0,"on":true},{"x":217,"y":280,"on":true},{"x":174,"y":280,"on":true},{"x":142,"y":280,"on":false},{"x":120,"y":293,"on":true},{"x":101,"y":304,"on":false},{"x":91,"y":322,"on":true}],[{"x":148,"y":380,"on":false},{"x":148,"y":355,"on":false},{"x":162,"y":341,"on":false},{"x":174,"y":341,"on":true},{"x":217,"y":341,"on":true},{"x":217,"y":394,"on":true},{"x":174,"y":394,"on":true},{"x":162,"y":394,"on":false}]], "references": [], - "instructions": [75,176,35,80,88,64,39,0,0,0,9,3,0,9,103,8,1,3,7,1,4,5,3,4,103,0,1,1,2,93,0,2,2,64,75,0,5,5,6,95,0,6,6,69,6,76,27,64,36,0,0,0,9,3,0,9,103,8,1,3,7,1,4,5,3,4,103,0,5,0,6,5,6,99,0,1,1,2,93,0,2,2,64,1,76,89,64,14,43,41,38,38,17,22,17,17,17,17,37,10,9,29,43] + "instructions": "S7AjUFhAJwAAAAkDAAlnCAEDBwEEBQMEZwABAQJdAAICQEsABQUGXwAGBkUGTBtAJAAAAAkDAAlnCAEDBwEEBQMEZwAFAAYFBmMAAQECXQACAkABTFlADispJiYRFhERERElCgkdKw==" }, "uni01AA": { "name": "uni01AA", "advanceWidth": 500, "contours": [[{"x":75,"y":600,"on":false},{"x":75,"y":664,"on":false},{"x":88,"y":687,"on":true},{"x":100,"y":708,"on":false},{"x":122,"y":721,"on":true},{"x":147,"y":735,"on":false},{"x":182,"y":735,"on":true},{"x":218,"y":735,"on":false},{"x":243,"y":720,"on":true},{"x":290,"y":693,"on":false},{"x":290,"y":632,"on":true},{"x":290,"y":0,"on":true},{"x":290,"y":-70,"on":false},{"x":345,"y":-101,"on":true},{"x":376,"y":-119,"on":false},{"x":420,"y":-119,"on":true},{"x":420,"y":-191,"on":true},{"x":348,"y":-191,"on":false},{"x":298,"y":-162,"on":true},{"x":257,"y":-138,"on":false},{"x":234,"y":-99,"on":true},{"x":210,"y":-57,"on":false},{"x":210,"y":0,"on":true},{"x":210,"y":532,"on":true},{"x":197,"y":529,"on":false},{"x":181,"y":529,"on":true},{"x":146,"y":529,"on":false},{"x":122,"y":543,"on":true},{"x":101,"y":555,"on":false},{"x":88,"y":577,"on":true}],[{"x":151,"y":649,"on":false},{"x":151,"y":615,"on":false},{"x":160,"y":606,"on":true},{"x":168,"y":598,"on":false},{"x":194,"y":598,"on":false},{"x":203,"y":606,"on":true},{"x":208,"y":611,"on":false},{"x":210,"y":618,"on":true},{"x":210,"y":632,"on":true},{"x":210,"y":649,"on":false},{"x":201,"y":659,"on":true},{"x":194,"y":666,"on":false},{"x":168,"y":666,"on":false},{"x":160,"y":658,"on":true}]], "references": [], - "instructions": [64,10,37,1,4,5,23,1,3,4,2,74,75,176,35,80,88,64,29,0,4,0,3,1,4,3,103,0,5,5,0,95,0,0,0,64,75,0,1,1,2,95,0,2,2,69,2,76,27,64,26,0,4,0,3,1,4,3,103,0,1,0,2,1,2,99,0,5,5,0,95,0,0,0,64,5,76,89,64,9,23,23,39,17,23,37,6,9,26,43] + "instructions": "QAolAQQFFwEDBAJKS7AjUFhAHQAEAAMBBANnAAUFAF8AAABASwABAQJfAAICRQJMG0AaAAQAAwEEA2cAAQACAQJjAAUFAF8AAABABUxZQAkXFycRFyUGCRor" }, "V": { "name": "V", "advanceWidth": 500, "contours": [[{"x":60,"y":662,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":662,"on":true},{"x":140,"y":484,"on":false},{"x":250,"y":91,"on":true},{"x":360,"y":484,"on":false},{"x":360,"y":662,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":662,"on":true},{"x":440,"y":462,"on":false},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":60,"y":462,"on":false}]], "references": [], - "instructions": [64,24,5,1,2,0,1,74,1,1,0,0,64,75,0,2,2,65,2,76,19,22,17,3,9,23,43] + "instructions": "QBgFAQIAAUoBAQAAQEsAAgJBAkwTFhEDCRcr" }, "v": { "name": "v", "advanceWidth": 500, "contours": [[{"x":60,"y":477,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":477,"on":true},{"x":140,"y":350,"on":false},{"x":250,"y":70,"on":true},{"x":360,"y":351,"on":false},{"x":360,"y":477,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":477,"on":true},{"x":440,"y":333,"on":false},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":60,"y":333,"on":false}]], "references": [], - "instructions": [64,24,5,1,2,0,1,74,1,1,0,0,67,75,0,2,2,65,2,76,19,22,17,3,9,23,43] + "instructions": "QBgFAQIAAUoBAQAAQ0sAAgJBAkwTFhEDCRcr" }, "uni2C71": { "name": "uni2C71", "advanceWidth": 500, "contours": [[{"x":60,"y":477,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":477,"on":true},{"x":140,"y":350,"on":false},{"x":251,"y":67,"on":true},{"x":257,"y":84,"on":false},{"x":263,"y":105,"on":true},{"x":286,"y":192,"on":false},{"x":304,"y":347,"on":true},{"x":312,"y":420,"on":false},{"x":333,"y":456,"on":true},{"x":352,"y":489,"on":false},{"x":384,"y":508,"on":true},{"x":422,"y":530,"on":false},{"x":497,"y":530,"on":true},{"x":497,"y":458,"on":true},{"x":457,"y":458,"on":false},{"x":435,"y":446,"on":true},{"x":416,"y":435,"on":false},{"x":404,"y":414,"on":true},{"x":391,"y":392,"on":false},{"x":384,"y":340,"on":true},{"x":346,"y":84,"on":false},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":60,"y":333,"on":false}]], "references": [], - "instructions": [64,30,5,1,3,2,1,74,0,2,2,0,95,1,1,0,0,67,75,0,3,3,65,3,76,23,17,28,17,4,9,24,43] + "instructions": "QB4FAQMCAUoAAgIAXwEBAABDSwADA0EDTBcRHBEECRgr" }, "uni0475": { "name": "uni0475", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2C71","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0474": { "name": "uni0474", "advanceWidth": 500, "contours": [[{"x":60,"y":662,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":662,"on":true},{"x":140,"y":484,"on":false},{"x":249,"y":93,"on":true},{"x":280,"y":240,"on":false},{"x":303,"y":543,"on":true},{"x":309,"y":623,"on":false},{"x":331,"y":660,"on":true},{"x":350,"y":693,"on":false},{"x":383,"y":713,"on":true},{"x":422,"y":735,"on":false},{"x":497,"y":735,"on":true},{"x":497,"y":663,"on":true},{"x":455,"y":663,"on":false},{"x":433,"y":650,"on":true},{"x":413,"y":639,"on":false},{"x":402,"y":619,"on":true},{"x":388,"y":594,"on":false},{"x":383,"y":535,"on":true},{"x":346,"y":136,"on":false},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":60,"y":462,"on":false}]], "references": [], - "instructions": [64,30,5,1,3,2,1,74,0,2,2,0,95,1,1,0,0,26,75,0,3,3,27,3,76,23,17,26,17,4,7,24,43] + "instructions": "QB4FAQMCAUoAAgIAXwEBAAAaSwADAxsDTBcRGhEEBxgr" }, "uni028C": { "name": "uni028C", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":53,"on":true},{"x":60,"y":197,"on":false},{"x":210,"y":530,"on":true},{"x":290,"y":530,"on":true},{"x":440,"y":197,"on":false},{"x":440,"y":53,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":53,"on":true},{"x":360,"y":180,"on":false},{"x":250,"y":460,"on":true},{"x":140,"y":179,"on":false},{"x":140,"y":53,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,30,11,1,1,0,1,74,0,0,0,67,75,3,2,2,1,1,65,1,76,0,0,0,14,0,14,19,19,4,9,22,43] + "instructions": "QB4LAQEAAUoAAABDSwMCAgEBQQFMAAAADgAOExMECRYr" }, "nu": { "name": "nu", "advanceWidth": 500, "contours": [[{"x":22,"y":504,"on":true},{"x":92,"y":538,"on":true},{"x":218,"y":307,"on":false},{"x":258,"y":142,"on":true},{"x":360,"y":367,"on":false},{"x":360,"y":477,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":477,"on":true},{"x":440,"y":332,"on":false},{"x":277,"y":0,"on":true},{"x":237,"y":0,"on":false},{"x":197,"y":0,"on":true},{"x":197,"y":180,"on":false}]], "references": [], - "instructions": [64,26,3,1,1,0,1,74,1,1,0,72,0,0,0,47,75,0,1,1,45,1,76,35,22,2,8,22,43] + "instructions": "QBoDAQEAAUoBAQBIAAAAL0sAAQEtAUwjFgIIFis=" }, "A": { "name": "A", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":74,"on":true},{"x":60,"y":274,"on":false},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":440,"y":274,"on":false},{"x":440,"y":74,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":74,"on":true},{"x":360,"y":125,"on":false},{"x":351,"y":193,"on":true},{"x":149,"y":193,"on":true},{"x":140,"y":124,"on":false},{"x":140,"y":74,"on":true},{"x":140,"y":0,"on":true}],[{"x":160,"y":265,"on":true},{"x":340,"y":265,"on":true},{"x":313,"y":419,"on":false},{"x":250,"y":644,"on":true},{"x":187,"y":419,"on":false}]], "references": [], - "instructions": [64,41,19,1,4,0,1,74,0,4,0,2,1,4,2,102,0,0,0,64,75,5,3,2,1,1,65,1,76,0,0,17,16,0,15,0,15,19,19,19,6,9,23,43] + "instructions": "QCkTAQQAAUoABAACAQQCZgAAAEBLBQMCAQFBAUwAABEQAA8ADxMTEwYJFys=" }, "Alpha": { "name": "Alpha", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0410": { "name": "uni0410", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2C6F": { "name": "uni2C6F", "advanceWidth": 500, "contours": [[{"x":60,"y":662,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":662,"on":true},{"x":140,"y":611,"on":false},{"x":149,"y":542,"on":true},{"x":351,"y":542,"on":true},{"x":360,"y":612,"on":false},{"x":360,"y":662,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":662,"on":true},{"x":440,"y":462,"on":false},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":60,"y":462,"on":false}],[{"x":160,"y":470,"on":true},{"x":187,"y":316,"on":false},{"x":250,"y":91,"on":true},{"x":313,"y":316,"on":false},{"x":340,"y":470,"on":true}]], "references": [], - "instructions": [181,18,1,3,4,1,74,75,176,42,80,88,64,23,2,1,0,0,64,75,5,1,4,4,1,93,0,1,1,67,75,0,3,3,65,3,76,27,64,21,0,1,5,1,4,3,1,4,101,2,1,0,0,64,75,0,3,3,65,3,76,89,64,13,16,16,16,20,16,20,19,19,19,17,6,9,24,43] + "instructions": "tRIBAwQBSkuwKlBYQBcCAQAAQEsFAQQEAV0AAQFDSwADA0EDTBtAFQABBQEEAwEEZQIBAABASwADA0EDTFlADRAQEBQQFBMTExEGCRgr" }, "glyph189": { "name": "glyph189", "advanceWidth": 500, "contours": [[{"x":52,"y":149,"on":true},{"x":52,"y":195,"on":false},{"x":71,"y":227,"on":true},{"x":91,"y":262,"on":false},{"x":131,"y":285,"on":true},{"x":186,"y":317,"on":false},{"x":269,"y":317,"on":true},{"x":360,"y":317,"on":true},{"x":360,"y":363,"on":true},{"x":360,"y":394,"on":false},{"x":347,"y":417,"on":true},{"x":335,"y":438,"on":false},{"x":313,"y":451,"on":true},{"x":286,"y":466,"on":false},{"x":247,"y":466,"on":true},{"x":207,"y":466,"on":false},{"x":181,"y":450,"on":true},{"x":159,"y":438,"on":false},{"x":146,"y":416,"on":true},{"x":137,"y":400,"on":false},{"x":135,"y":382,"on":true},{"x":58,"y":400,"on":true},{"x":62,"y":428,"on":false},{"x":76,"y":453,"on":true},{"x":97,"y":490,"on":false},{"x":134,"y":512,"on":true},{"x":180,"y":538,"on":false},{"x":247,"y":538,"on":true},{"x":313,"y":538,"on":false},{"x":360,"y":511,"on":true},{"x":398,"y":489,"on":false},{"x":418,"y":454,"on":true},{"x":440,"y":416,"on":false},{"x":440,"y":363,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":74,"on":true},{"x":337,"y":36,"on":false},{"x":300,"y":15,"on":true},{"x":260,"y":-8,"on":false},{"x":206,"y":-8,"on":true},{"x":157,"y":-8,"on":false},{"x":123,"y":12,"on":true},{"x":92,"y":30,"on":false},{"x":73,"y":62,"on":true},{"x":52,"y":99,"on":false}],[{"x":132,"y":149,"on":true},{"x":132,"y":100,"on":false},{"x":172,"y":78,"on":true},{"x":196,"y":64,"on":false},{"x":231,"y":64,"on":true},{"x":271,"y":64,"on":false},{"x":300,"y":81,"on":true},{"x":327,"y":96,"on":false},{"x":342,"y":123,"on":true},{"x":360,"y":154,"on":false},{"x":360,"y":198,"on":true},{"x":360,"y":245,"on":true},{"x":269,"y":245,"on":true},{"x":213,"y":245,"on":false},{"x":177,"y":225,"on":true},{"x":154,"y":212,"on":false},{"x":142,"y":191,"on":true},{"x":132,"y":173,"on":false}]], "references": [], - "instructions": [64,11,21,20,2,0,1,36,1,5,6,2,74,75,176,29,80,88,64,30,0,0,0,6,5,0,6,101,0,1,1,2,95,0,2,2,35,75,0,5,5,3,95,4,1,3,3,27,3,76,27,64,34,0,0,0,6,5,0,6,101,0,1,1,2,95,0,2,2,35,75,0,3,3,27,75,0,5,5,4,95,0,4,4,34,4,76,89,64,10,38,40,36,22,43,38,37,7,7,27,43] + "instructions": "QAsVFAIAASQBBQYCSkuwHVBYQB4AAAAGBQAGZQABAQJfAAICI0sABQUDXwQBAwMbA0wbQCIAAAAGBQAGZQABAQJfAAICI0sAAwMbSwAFBQRfAAQEIgRMWUAKJigkFismJQcHGys=" }, "glyph190": { "name": "glyph190", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":398,"on":false},{"x":85,"y":456,"on":true},{"x":109,"y":497,"on":false},{"x":146,"y":518,"on":true},{"x":180,"y":538,"on":false},{"x":225,"y":538,"on":true},{"x":267,"y":538,"on":false},{"x":299,"y":520,"on":true},{"x":334,"y":500,"on":false},{"x":357,"y":460,"on":true},{"x":359,"y":457,"on":false},{"x":360,"y":454,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":225,"y":-8,"on":true},{"x":180,"y":-8,"on":false},{"x":146,"y":12,"on":true},{"x":109,"y":33,"on":false},{"x":85,"y":74,"on":true},{"x":52,"y":132,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":249,"y":466,"on":true},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [182,18,13,2,4,5,1,74,75,176,29,80,88,64,23,0,5,5,0,95,1,1,0,0,35,75,0,4,4,2,95,3,1,2,2,27,2,76,27,64,31,0,1,1,28,75,0,5,5,0,95,0,0,0,35,75,0,2,2,27,75,0,4,4,3,95,0,3,3,34,3,76,89,64,9,43,42,38,17,22,38,6,7,26,43] + "instructions": "thINAgQFAUpLsB1QWEAXAAUFAF8BAQAAI0sABAQCXwMBAgIbAkwbQB8AAQEcSwAFBQBfAAAAI0sAAgIbSwAEBANfAAMDIgNMWUAJKyomERYmBgcaKw==" }, "a": { "name": "a", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0430": { "name": "uni0430", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2C6D": { "name": "uni2C6D", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":515,"on":true},{"x":52,"y":603,"on":false},{"x":85,"y":661,"on":true},{"x":109,"y":702,"on":false},{"x":146,"y":723,"on":true},{"x":180,"y":743,"on":false},{"x":225,"y":743,"on":true},{"x":267,"y":743,"on":false},{"x":299,"y":725,"on":true},{"x":334,"y":705,"on":false},{"x":357,"y":665,"on":true},{"x":359,"y":662,"on":false},{"x":360,"y":659,"on":true},{"x":360,"y":699,"on":true},{"x":440,"y":743,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":225,"y":-8,"on":true},{"x":180,"y":-8,"on":false},{"x":146,"y":12,"on":true},{"x":109,"y":33,"on":false},{"x":85,"y":74,"on":true},{"x":52,"y":132,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":515,"on":true},{"x":360,"y":578,"on":false},{"x":337,"y":619,"on":true},{"x":322,"y":646,"on":false},{"x":298,"y":659,"on":true},{"x":277,"y":671,"on":false},{"x":249,"y":671,"on":true},{"x":219,"y":671,"on":false},{"x":196,"y":658,"on":true},{"x":171,"y":644,"on":false},{"x":155,"y":615,"on":true},{"x":132,"y":575,"on":false},{"x":132,"y":515,"on":true}]], "references": [], - "instructions": [64,15,14,1,4,0,18,13,2,3,4,2,74,15,1,0,72,75,176,29,80,88,64,22,0,4,4,0,95,0,0,0,72,75,0,3,3,1,95,2,1,1,1,65,1,76,27,64,26,0,4,4,0,95,0,0,0,72,75,0,1,1,65,75,0,3,3,2,95,0,2,2,73,2,76,89,183,43,42,38,24,38,5,9,25,43] + "instructions": "QA8OAQQAEg0CAwQCSg8BAEhLsB1QWEAWAAQEAF8AAABISwADAwFfAgEBAUEBTBtAGgAEBABfAAAASEsAAQFBSwADAwJfAAICSQJMWbcrKiYYJgUJGSs=" }, "uni2C70": { "name": "uni2C70", "advanceWidth": 500, "contours": [[{"x":60,"y":-8,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":659,"on":true},{"x":142,"y":662,"on":false},{"x":143,"y":665,"on":true},{"x":166,"y":705,"on":false},{"x":201,"y":725,"on":true},{"x":233,"y":743,"on":false},{"x":275,"y":743,"on":true},{"x":320,"y":743,"on":false},{"x":354,"y":723,"on":true},{"x":391,"y":702,"on":false},{"x":415,"y":661,"on":true},{"x":448,"y":603,"on":false},{"x":448,"y":515,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":132,"on":false},{"x":415,"y":74,"on":true},{"x":391,"y":33,"on":false},{"x":354,"y":12,"on":true},{"x":320,"y":-8,"on":false},{"x":275,"y":-8,"on":true},{"x":233,"y":-8,"on":false},{"x":201,"y":10,"on":true},{"x":166,"y":30,"on":false},{"x":143,"y":70,"on":true},{"x":141,"y":73,"on":false},{"x":140,"y":76,"on":true},{"x":140,"y":36,"on":true}],[{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":251,"y":64,"on":true},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":515,"on":true},{"x":368,"y":576,"on":false},{"x":345,"y":615,"on":true},{"x":329,"y":643,"on":false},{"x":304,"y":658,"on":true},{"x":281,"y":671,"on":false},{"x":251,"y":671,"on":true},{"x":223,"y":671,"on":false},{"x":202,"y":659,"on":true},{"x":179,"y":646,"on":false},{"x":163,"y":619,"on":true},{"x":140,"y":579,"on":false},{"x":140,"y":515,"on":true}]], "references": [], - "instructions": [64,15,28,3,2,3,4,29,1,2,3,2,74,0,1,2,71,75,176,29,80,88,64,22,0,4,4,0,95,1,1,0,0,64,75,0,3,3,2,95,0,2,2,73,2,76,27,64,26,0,0,0,64,75,0,4,4,1,95,0,1,1,72,75,0,3,3,2,95,0,2,2,73,2,76,89,183,43,44,43,38,17,5,9,25,43] + "instructions": "QA8cAwIDBB0BAgMCSgABAkdLsB1QWEAWAAQEAF8BAQAAQEsAAwMCXwACAkkCTBtAGgAAAEBLAAQEAV8AAQFISwADAwJfAAICSQJMWbcrLCsmEQUJGSs=" }, "uni0251": { "name": "uni0251", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":398,"on":false},{"x":85,"y":456,"on":true},{"x":109,"y":497,"on":false},{"x":146,"y":518,"on":true},{"x":180,"y":538,"on":false},{"x":225,"y":538,"on":true},{"x":267,"y":538,"on":false},{"x":299,"y":520,"on":true},{"x":334,"y":500,"on":false},{"x":357,"y":460,"on":true},{"x":359,"y":457,"on":false},{"x":360,"y":454,"on":true},{"x":360,"y":494,"on":true},{"x":440,"y":538,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":225,"y":-8,"on":true},{"x":180,"y":-8,"on":false},{"x":146,"y":12,"on":true},{"x":109,"y":33,"on":false},{"x":85,"y":74,"on":true},{"x":52,"y":132,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":249,"y":466,"on":true},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [64,15,14,1,4,0,18,13,2,3,4,2,74,15,1,0,72,75,176,29,80,88,64,22,0,4,4,0,95,0,0,0,75,75,0,3,3,1,95,2,1,1,1,65,1,76,27,64,26,0,4,4,0,95,0,0,0,75,75,0,1,1,65,75,0,3,3,2,95,0,2,2,73,2,76,89,183,43,42,38,24,38,5,9,25,43] + "instructions": "QA8OAQQAEg0CAwQCSg8BAEhLsB1QWEAWAAQEAF8AAABLSwADAwFfAgEBAUEBTBtAGgAEBABfAAAAS0sAAQFBSwADAwJfAAICSQJMWbcrKiYYJgUJGSs=" }, "uni0250": { "name": "uni0250", "advanceWidth": 500, "contours": [[{"x":60,"y":167,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":456,"on":true},{"x":163,"y":494,"on":false},{"x":200,"y":515,"on":true},{"x":240,"y":538,"on":false},{"x":294,"y":538,"on":true},{"x":343,"y":538,"on":false},{"x":377,"y":518,"on":true},{"x":408,"y":500,"on":false},{"x":427,"y":468,"on":true},{"x":448,"y":431,"on":false},{"x":448,"y":381,"on":true},{"x":448,"y":335,"on":false},{"x":429,"y":303,"on":true},{"x":409,"y":268,"on":false},{"x":369,"y":245,"on":true},{"x":314,"y":213,"on":false},{"x":231,"y":213,"on":true},{"x":140,"y":213,"on":true},{"x":140,"y":167,"on":true},{"x":140,"y":136,"on":false},{"x":153,"y":113,"on":true},{"x":165,"y":92,"on":false},{"x":187,"y":79,"on":true},{"x":214,"y":64,"on":false},{"x":253,"y":64,"on":true},{"x":293,"y":64,"on":false},{"x":319,"y":80,"on":true},{"x":341,"y":92,"on":false},{"x":354,"y":114,"on":true},{"x":363,"y":130,"on":false},{"x":365,"y":148,"on":true},{"x":442,"y":130,"on":true},{"x":438,"y":102,"on":false},{"x":424,"y":77,"on":true},{"x":403,"y":40,"on":false},{"x":366,"y":18,"on":true},{"x":320,"y":-8,"on":false},{"x":253,"y":-8,"on":true},{"x":187,"y":-8,"on":false},{"x":140,"y":19,"on":true},{"x":102,"y":41,"on":false},{"x":82,"y":76,"on":true},{"x":60,"y":114,"on":false}],[{"x":140,"y":285,"on":true},{"x":231,"y":285,"on":true},{"x":287,"y":285,"on":false},{"x":323,"y":305,"on":true},{"x":346,"y":318,"on":false},{"x":358,"y":339,"on":true},{"x":368,"y":357,"on":false},{"x":368,"y":381,"on":true},{"x":368,"y":430,"on":false},{"x":328,"y":452,"on":true},{"x":304,"y":466,"on":false},{"x":269,"y":466,"on":true},{"x":229,"y":466,"on":false},{"x":200,"y":449,"on":true},{"x":173,"y":434,"on":false},{"x":158,"y":407,"on":true},{"x":140,"y":376,"on":false},{"x":140,"y":332,"on":true}]], "references": [], - "instructions": [64,11,3,1,5,6,34,33,2,3,2,2,74,75,176,29,80,88,64,30,0,5,0,2,3,5,2,101,0,6,6,0,95,1,1,0,0,67,75,0,3,3,4,95,0,4,4,73,4,76,27,64,34,0,5,0,2,3,5,2,101,0,0,0,67,75,0,6,6,1,95,0,1,1,75,75,0,3,3,4,95,0,4,4,73,4,76,89,64,10,40,37,43,38,42,36,17,7,9,27,43] + "instructions": "QAsDAQUGIiECAwICSkuwHVBYQB4ABQACAwUCZQAGBgBfAQEAAENLAAMDBF8ABARJBEwbQCIABQACAwUCZQAAAENLAAYGAV8AAQFLSwADAwRfAAQESQRMWUAKKCUrJiokEQcJGys=" }, "uni0252": { "name": "uni0252", "advanceWidth": 500, "contours": [[{"x":60,"y":-8,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":275,"y":538,"on":true},{"x":320,"y":538,"on":false},{"x":354,"y":518,"on":true},{"x":391,"y":497,"on":false},{"x":415,"y":456,"on":true},{"x":448,"y":398,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":132,"on":false},{"x":415,"y":74,"on":true},{"x":391,"y":33,"on":false},{"x":354,"y":12,"on":true},{"x":320,"y":-8,"on":false},{"x":275,"y":-8,"on":true},{"x":233,"y":-8,"on":false},{"x":201,"y":10,"on":true},{"x":166,"y":30,"on":false},{"x":143,"y":70,"on":true},{"x":141,"y":73,"on":false},{"x":140,"y":76,"on":true},{"x":140,"y":36,"on":true}],[{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":251,"y":64,"on":true},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":371,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":453,"on":true},{"x":281,"y":466,"on":false},{"x":251,"y":466,"on":true},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":374,"on":false},{"x":140,"y":310,"on":true}]], "references": [], - "instructions": [64,15,28,3,2,3,4,29,1,2,3,2,74,0,1,2,71,75,176,29,80,88,64,22,0,4,4,0,95,1,1,0,0,67,75,0,3,3,2,95,0,2,2,73,2,76,27,64,26,0,0,0,67,75,0,4,4,1,95,0,1,1,75,75,0,3,3,2,95,0,2,2,73,2,76,89,183,43,44,43,38,17,5,9,25,43] + "instructions": "QA8cAwIDBB0BAgMCSgABAkdLsB1QWEAWAAQEAF8BAQAAQ0sAAwMCXwACAkkCTBtAGgAAAENLAAQEAV8AAQFLSwADAwJfAAICSQJMWbcrLCsmEQUJGSs=" }, "W": { "name": "W", "advanceWidth": 500, "contours": [[{"x":60,"y":551,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":551,"on":true},{"x":140,"y":417,"on":false},{"x":164,"y":141,"on":true},{"x":225,"y":441,"on":true},{"x":275,"y":441,"on":true},{"x":336,"y":141,"on":true},{"x":360,"y":417,"on":false},{"x":360,"y":551,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":551,"on":true},{"x":440,"y":384,"on":false},{"x":363,"y":0,"on":true},{"x":312,"y":0,"on":true},{"x":250,"y":313,"on":true},{"x":188,"y":0,"on":true},{"x":137,"y":0,"on":true},{"x":60,"y":384,"on":false}]], "references": [], - "instructions": [64,37,17,8,5,3,3,1,1,74,0,1,0,3,0,1,3,126,2,1,0,0,64,75,4,1,3,3,65,3,76,18,19,20,20,17,5,9,25,43] + "instructions": "QCURCAUDAwEBSgABAAMAAQN+AgEAAEBLBAEDA0EDTBITFBQRBQkZKw==" }, "uni051C": { "name": "uni051C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "w": { "name": "w", "advanceWidth": 500, "contours": [[{"x":60,"y":398,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":398,"on":true},{"x":140,"y":302,"on":false},{"x":164,"y":103,"on":true},{"x":225,"y":318,"on":true},{"x":275,"y":318,"on":true},{"x":336,"y":103,"on":true},{"x":360,"y":302,"on":false},{"x":360,"y":398,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":398,"on":true},{"x":440,"y":277,"on":false},{"x":363,"y":0,"on":true},{"x":312,"y":0,"on":true},{"x":250,"y":226,"on":true},{"x":188,"y":0,"on":true},{"x":137,"y":0,"on":true},{"x":60,"y":278,"on":false}]], "references": [], - "instructions": [64,37,17,8,5,3,3,1,1,74,0,1,0,3,0,1,3,126,2,1,0,0,67,75,4,1,3,3,65,3,76,18,19,20,20,17,5,9,25,43] + "instructions": "QCURCAUDAwEBSgABAAMAAQN+AgEAAENLBAEDA0EDTBITFBQRBQkZKw==" }, "uni051D": { "name": "uni051D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni028D": { "name": "uni028D", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":132,"on":true},{"x":60,"y":253,"on":false},{"x":137,"y":530,"on":true},{"x":188,"y":530,"on":true},{"x":250,"y":304,"on":true},{"x":312,"y":530,"on":true},{"x":363,"y":530,"on":true},{"x":440,"y":252,"on":false},{"x":440,"y":132,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":132,"on":true},{"x":360,"y":228,"on":false},{"x":336,"y":427,"on":true},{"x":275,"y":212,"on":true},{"x":225,"y":212,"on":true},{"x":164,"y":427,"on":true},{"x":140,"y":228,"on":false},{"x":140,"y":132,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,43,17,14,5,3,3,0,1,74,0,3,0,2,0,3,2,126,1,1,0,0,67,75,5,4,2,2,2,65,2,76,0,0,0,20,0,20,20,19,18,19,6,9,24,43] + "instructions": "QCsRDgUDAwABSgADAAIAAwJ+AQEAAENLBQQCAgJBAkwAAAAUABQUExITBgkYKw==" }, "uni2C72": { "name": "uni2C72", "advanceWidth": 500, "contours": [[{"x":60,"y":551,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":551,"on":true},{"x":140,"y":417,"on":false},{"x":164,"y":141,"on":true},{"x":225,"y":441,"on":true},{"x":275,"y":441,"on":true},{"x":335,"y":143,"on":true},{"x":360,"y":437,"on":false},{"x":360,"y":580,"on":true},{"x":360,"y":631,"on":false},{"x":381,"y":667,"on":true},{"x":399,"y":698,"on":false},{"x":429,"y":715,"on":true},{"x":463,"y":735,"on":false},{"x":510,"y":735,"on":true},{"x":510,"y":663,"on":true},{"x":470,"y":663,"on":false},{"x":452,"y":630,"on":true},{"x":440,"y":610,"on":false},{"x":440,"y":580,"on":true},{"x":440,"y":404,"on":false},{"x":363,"y":0,"on":true},{"x":312,"y":0,"on":true},{"x":250,"y":313,"on":true},{"x":188,"y":0,"on":true},{"x":137,"y":0,"on":true},{"x":60,"y":384,"on":false}]], "references": [], - "instructions": [64,43,25,8,5,3,4,1,1,74,0,1,3,4,3,1,4,126,0,3,3,0,95,2,1,0,0,64,75,5,1,4,4,65,4,76,18,21,17,24,20,17,6,9,26,43] + "instructions": "QCsZCAUDBAEBSgABAwQDAQR+AAMDAF8CAQAAQEsFAQQEQQRMEhURGBQRBgkaKw==" }, "uni2C73": { "name": "uni2C73", "advanceWidth": 500, "contours": [[{"x":60,"y":398,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":398,"on":true},{"x":140,"y":302,"on":false},{"x":164,"y":103,"on":true},{"x":225,"y":318,"on":true},{"x":275,"y":318,"on":true},{"x":336,"y":101,"on":true},{"x":360,"y":285,"on":false},{"x":360,"y":375,"on":true},{"x":360,"y":426,"on":false},{"x":381,"y":462,"on":true},{"x":399,"y":493,"on":false},{"x":429,"y":510,"on":true},{"x":463,"y":530,"on":false},{"x":510,"y":530,"on":true},{"x":510,"y":458,"on":true},{"x":470,"y":458,"on":false},{"x":452,"y":425,"on":true},{"x":440,"y":405,"on":false},{"x":440,"y":375,"on":true},{"x":440,"y":261,"on":false},{"x":363,"y":0,"on":true},{"x":312,"y":0,"on":true},{"x":250,"y":226,"on":true},{"x":188,"y":0,"on":true},{"x":137,"y":0,"on":true},{"x":60,"y":278,"on":false}]], "references": [], - "instructions": [64,43,25,8,5,3,4,1,1,74,0,1,3,4,3,1,4,126,0,3,3,0,95,2,1,0,0,67,75,5,1,4,4,65,4,76,18,21,17,24,20,17,6,9,26,43] + "instructions": "QCsZCAUDBAEBSgABAwQDAQR+AAMDAF8CAQAAQ0sFAQQEQQRMEhURGBQRBgkaKw==" }, "uni02AC": { "name": "uni02AC", "advanceWidth": 500, "contours": [[{"x":60,"y":276,"on":true},{"x":60,"y":368,"on":true},{"x":137,"y":368,"on":true},{"x":60,"y":560,"on":false},{"x":60,"y":643,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":643,"on":true},{"x":140,"y":577,"on":false},{"x":164,"y":441,"on":true},{"x":225,"y":588,"on":true},{"x":275,"y":588,"on":true},{"x":336,"y":441,"on":true},{"x":360,"y":578,"on":false},{"x":360,"y":643,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":643,"on":true},{"x":440,"y":560,"on":false},{"x":363,"y":368,"on":true},{"x":440,"y":368,"on":true},{"x":440,"y":276,"on":true},{"x":440,"y":192,"on":false},{"x":363,"y":0,"on":true},{"x":312,"y":0,"on":true},{"x":250,"y":156,"on":true},{"x":188,"y":0,"on":true},{"x":137,"y":0,"on":true},{"x":60,"y":192,"on":false}],[{"x":140,"y":276,"on":true},{"x":140,"y":210,"on":false},{"x":164,"y":73,"on":true},{"x":225,"y":220,"on":true},{"x":275,"y":220,"on":true},{"x":336,"y":73,"on":true},{"x":360,"y":210,"on":false},{"x":360,"y":276,"on":true},{"x":360,"y":368,"on":true},{"x":312,"y":368,"on":true},{"x":250,"y":524,"on":true},{"x":188,"y":368,"on":true},{"x":140,"y":368,"on":true}]], "references": [], - "instructions": [64,72,39,12,9,3,8,2,34,31,25,3,5,7,2,74,0,2,1,8,1,2,8,126,9,1,8,0,1,8,0,124,4,1,0,7,1,0,7,124,0,7,5,1,7,5,124,3,1,1,1,64,75,6,1,5,5,65,5,76,41,40,20,21,18,19,19,20,20,19,17,10,9,29,43] + "instructions": "QEgnDAkDCAIiHxkDBQcCSgACAQgBAgh+CQEIAAEIAHwEAQAHAQAHfAAHBQEHBXwDAQEBQEsGAQUFQQVMKSgUFRITExQUExEKCR0r" }, "X": { "name": "X", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":37,"on":true},{"x":60,"y":130,"on":false},{"x":115,"y":226,"on":true},{"x":120,"y":235,"on":false},{"x":126,"y":244,"on":true},{"x":204,"y":368,"on":true},{"x":126,"y":491,"on":true},{"x":120,"y":500,"on":false},{"x":115,"y":509,"on":true},{"x":60,"y":605,"on":false},{"x":60,"y":698,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":698,"on":true},{"x":140,"y":615,"on":false},{"x":194,"y":530,"on":true},{"x":250,"y":440,"on":true},{"x":306,"y":530,"on":true},{"x":360,"y":615,"on":false},{"x":360,"y":698,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":698,"on":true},{"x":440,"y":605,"on":false},{"x":385,"y":509,"on":true},{"x":380,"y":500,"on":false},{"x":374,"y":491,"on":true},{"x":296,"y":368,"on":true},{"x":374,"y":244,"on":true},{"x":380,"y":235,"on":false},{"x":385,"y":226,"on":true},{"x":440,"y":130,"on":false},{"x":440,"y":37,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":37,"on":true},{"x":360,"y":120,"on":false},{"x":306,"y":205,"on":true},{"x":250,"y":295,"on":true},{"x":194,"y":205,"on":true},{"x":140,"y":120,"on":false},{"x":140,"y":37,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,35,39,28,17,6,4,2,0,1,74,1,1,0,0,64,75,4,3,2,2,2,65,2,76,0,0,0,43,0,43,28,24,28,5,9,23,43] + "instructions": "QCMnHBEGBAIAAUoBAQAAQEsEAwICAkECTAAAACsAKxwYHAUJFys=" }, "Chi": { "name": "Chi", "advanceWidth": 500, "contours": [], "references": [{"glyph":"X","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0425": { "name": "uni0425", "advanceWidth": 500, "contours": [], "references": [{"glyph":"X","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "x": { "name": "x", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":5,"on":true},{"x":60,"y":38,"on":false},{"x":100,"y":108,"on":true},{"x":115,"y":135,"on":false},{"x":127,"y":151,"on":true},{"x":203,"y":265,"on":true},{"x":127,"y":379,"on":true},{"x":116,"y":395,"on":false},{"x":100,"y":422,"on":true},{"x":60,"y":492,"on":false},{"x":60,"y":525,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":525,"on":true},{"x":140,"y":499,"on":false},{"x":193,"y":419,"on":true},{"x":250,"y":335,"on":true},{"x":307,"y":419,"on":true},{"x":360,"y":498,"on":false},{"x":360,"y":525,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":525,"on":true},{"x":440,"y":492,"on":false},{"x":400,"y":422,"on":true},{"x":385,"y":395,"on":false},{"x":373,"y":379,"on":true},{"x":297,"y":265,"on":true},{"x":373,"y":151,"on":true},{"x":384,"y":135,"on":false},{"x":400,"y":108,"on":true},{"x":440,"y":38,"on":false},{"x":440,"y":5,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":5,"on":true},{"x":360,"y":31,"on":false},{"x":307,"y":111,"on":true},{"x":250,"y":195,"on":true},{"x":193,"y":111,"on":true},{"x":140,"y":32,"on":false},{"x":140,"y":5,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,35,39,28,17,6,4,2,0,1,74,1,1,0,0,67,75,4,3,2,2,2,65,2,76,0,0,0,43,0,42,43,39,43,5,9,23,43] + "instructions": "QCMnHBEGBAIAAUoBAQAAQ0sEAwICAkECTAAAACsAKisnKwUJFys=" }, "uni0445": { "name": "uni0445", "advanceWidth": 500, "contours": [], "references": [{"glyph":"x","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "chi": { "name": "chi", "advanceWidth": 500, "contours": [[{"x":60,"y":-187,"on":true},{"x":60,"y":-141,"on":false},{"x":124,"y":-8,"on":true},{"x":206,"y":162,"on":true},{"x":124,"y":333,"on":true},{"x":60,"y":466,"on":false},{"x":60,"y":512,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":512,"on":true},{"x":140,"y":481,"on":false},{"x":187,"y":383,"on":true},{"x":196,"y":365,"on":true},{"x":250,"y":253,"on":true},{"x":304,"y":365,"on":true},{"x":360,"y":481,"on":false},{"x":360,"y":512,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":512,"on":true},{"x":440,"y":466,"on":false},{"x":376,"y":333,"on":true},{"x":294,"y":162,"on":true},{"x":376,"y":-8,"on":true},{"x":420,"y":-99,"on":false},{"x":435,"y":-154,"on":true},{"x":440,"y":-174,"on":false},{"x":440,"y":-187,"on":true},{"x":440,"y":-205,"on":true},{"x":360,"y":-205,"on":true},{"x":360,"y":-187,"on":true},{"x":360,"y":-156,"on":false},{"x":313,"y":-58,"on":true},{"x":304,"y":-40,"on":true},{"x":250,"y":72,"on":true},{"x":196,"y":-40,"on":true},{"x":140,"y":-156,"on":false},{"x":140,"y":-187,"on":true},{"x":140,"y":-205,"on":true},{"x":60,"y":-205,"on":true}]], "references": [], - "instructions": [64,29,34,22,13,3,4,2,0,1,74,1,1,0,0,47,75,3,1,2,2,49,2,76,25,26,25,23,4,8,24,43] + "instructions": "QB0iFg0DBAIAAUoBAQAAL0sDAQICMQJMGRoZFwQIGCs=" }, "uniAB53": { "name": "uniAB53", "advanceWidth": 500, "contours": [], "references": [{"glyph":"chi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04B2": { "name": "uni04B2", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":37,"on":true},{"x":60,"y":130,"on":false},{"x":115,"y":226,"on":true},{"x":120,"y":235,"on":false},{"x":126,"y":244,"on":true},{"x":204,"y":368,"on":true},{"x":126,"y":491,"on":true},{"x":120,"y":500,"on":false},{"x":115,"y":509,"on":true},{"x":60,"y":605,"on":false},{"x":60,"y":698,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":698,"on":true},{"x":140,"y":615,"on":false},{"x":194,"y":530,"on":true},{"x":250,"y":440,"on":true},{"x":306,"y":530,"on":true},{"x":360,"y":615,"on":false},{"x":360,"y":698,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":698,"on":true},{"x":440,"y":605,"on":false},{"x":385,"y":509,"on":true},{"x":380,"y":500,"on":false},{"x":374,"y":491,"on":true},{"x":296,"y":368,"on":true},{"x":374,"y":244,"on":true},{"x":380,"y":235,"on":false},{"x":385,"y":226,"on":true},{"x":430,"y":148,"on":false},{"x":438,"y":72,"on":true},{"x":496,"y":72,"on":true},{"x":496,"y":-139,"on":true},{"x":416,"y":-139,"on":true},{"x":416,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":37,"on":true},{"x":360,"y":120,"on":false},{"x":306,"y":205,"on":true},{"x":250,"y":295,"on":true},{"x":194,"y":205,"on":true},{"x":140,"y":120,"on":false},{"x":140,"y":37,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,44,42,28,17,6,4,2,0,1,74,0,2,0,3,2,3,97,1,1,0,0,26,75,6,5,2,4,4,27,4,76,0,0,0,46,0,46,17,17,27,24,28,7,7,25,43] + "instructions": "QCwqHBEGBAIAAUoAAgADAgNhAQEAABpLBgUCBAQbBEwAAAAuAC4RERsYHAcHGSs=" }, "uni04B3": { "name": "uni04B3", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":5,"on":true},{"x":60,"y":38,"on":false},{"x":100,"y":108,"on":true},{"x":115,"y":135,"on":false},{"x":127,"y":151,"on":true},{"x":203,"y":265,"on":true},{"x":127,"y":379,"on":true},{"x":116,"y":395,"on":false},{"x":100,"y":422,"on":true},{"x":60,"y":492,"on":false},{"x":60,"y":525,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":525,"on":true},{"x":140,"y":499,"on":false},{"x":193,"y":419,"on":true},{"x":250,"y":335,"on":true},{"x":307,"y":419,"on":true},{"x":360,"y":498,"on":false},{"x":360,"y":525,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":525,"on":true},{"x":440,"y":492,"on":false},{"x":400,"y":422,"on":true},{"x":385,"y":395,"on":false},{"x":373,"y":379,"on":true},{"x":297,"y":265,"on":true},{"x":373,"y":151,"on":true},{"x":384,"y":135,"on":false},{"x":400,"y":108,"on":true},{"x":411,"y":89,"on":false},{"x":419,"y":72,"on":true},{"x":496,"y":72,"on":true},{"x":496,"y":-139,"on":true},{"x":416,"y":-139,"on":true},{"x":416,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":5,"on":true},{"x":360,"y":31,"on":false},{"x":307,"y":111,"on":true},{"x":250,"y":195,"on":true},{"x":193,"y":111,"on":true},{"x":140,"y":32,"on":false},{"x":140,"y":5,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,44,42,28,17,6,4,2,0,1,74,0,2,0,3,2,3,97,1,1,0,0,28,75,6,5,2,4,4,27,4,76,0,0,0,46,0,45,17,17,27,39,43,7,7,25,43] + "instructions": "QCwqHBEGBAIAAUoAAgADAgNhAQEAABxLBgUCBAQbBEwAAAAuAC0RERsnKwcHGSs=" }, "Y": { "name": "Y", "advanceWidth": 500, "contours": [[{"x":60,"y":691,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":691,"on":true},{"x":140,"y":588,"on":false},{"x":195,"y":482,"on":true},{"x":250,"y":378,"on":true},{"x":305,"y":482,"on":true},{"x":360,"y":588,"on":false},{"x":360,"y":691,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":691,"on":true},{"x":440,"y":572,"on":false},{"x":375,"y":449,"on":true},{"x":290,"y":286,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":286,"on":true},{"x":125,"y":449,"on":true},{"x":60,"y":572,"on":false}]], "references": [], - "instructions": [64,26,18,15,6,3,2,0,1,74,1,1,0,0,64,75,0,2,2,65,2,76,21,24,17,3,9,23,43] + "instructions": "QBoSDwYDAgABSgEBAABASwACAkECTBUYEQMJFys=" }, "Upsilon": { "name": "Upsilon", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04AE": { "name": "uni04AE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01B3": { "name": "uni01B3", "advanceWidth": 500, "contours": [[{"x":60,"y":691,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":691,"on":true},{"x":140,"y":588,"on":false},{"x":195,"y":482,"on":true},{"x":244,"y":389,"on":true},{"x":272,"y":467,"on":false},{"x":304,"y":591,"on":true},{"x":316,"y":638,"on":false},{"x":329,"y":661,"on":true},{"x":348,"y":694,"on":false},{"x":380,"y":713,"on":true},{"x":419,"y":735,"on":false},{"x":497,"y":735,"on":true},{"x":497,"y":663,"on":true},{"x":453,"y":663,"on":false},{"x":429,"y":650,"on":true},{"x":410,"y":639,"on":false},{"x":398,"y":618,"on":true},{"x":389,"y":603,"on":false},{"x":381,"y":571,"on":true},{"x":333,"y":381,"on":false},{"x":290,"y":294,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":286,"on":true},{"x":125,"y":449,"on":true},{"x":60,"y":572,"on":false}]], "references": [], - "instructions": [64,32,26,23,6,3,3,2,1,74,0,2,2,0,95,1,1,0,0,64,75,0,3,3,65,3,76,24,17,27,17,4,9,24,43] + "instructions": "QCAaFwYDAwIBSgACAgBfAQEAAEBLAAMDQQNMGBEbEQQJGCs=" }, "uni04AF": { "name": "uni04AF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,255,51,176,51,43] + "instructions": "sQABuP8zsDMr" }, "uni028F": { "name": "uni028F", "advanceWidth": 500, "contours": [[{"x":60,"y":498,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":498,"on":true},{"x":140,"y":429,"on":false},{"x":192,"y":357,"on":true},{"x":250,"y":278,"on":true},{"x":308,"y":357,"on":true},{"x":360,"y":429,"on":false},{"x":360,"y":498,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":498,"on":true},{"x":440,"y":426,"on":false},{"x":398,"y":353,"on":true},{"x":387,"y":333,"on":false},{"x":372,"y":314,"on":true},{"x":290,"y":201,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":201,"on":true},{"x":128,"y":314,"on":true},{"x":114,"y":333,"on":false},{"x":102,"y":353,"on":true},{"x":60,"y":426,"on":false}]], "references": [], - "instructions": [64,26,20,17,6,3,2,0,1,74,1,1,0,0,67,75,0,2,2,65,2,76,23,24,17,3,9,23,43] + "instructions": "QBoUEQYDAgABSgEBAABDSwACAkECTBcYEQMJFys=" }, "glyph221": { "name": "glyph221", "advanceWidth": 500, "contours": [[{"x":60,"y":493,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":493,"on":true},{"x":140,"y":441,"on":false},{"x":170,"y":353,"on":true},{"x":249,"y":118,"on":true},{"x":330,"y":353,"on":true},{"x":360,"y":439,"on":false},{"x":360,"y":493,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":493,"on":true},{"x":440,"y":428,"on":false},{"x":406,"y":329,"on":true},{"x":248,"y":-127,"on":true},{"x":240,"y":-149,"on":false},{"x":240,"y":-198,"on":true},{"x":240,"y":-205,"on":true},{"x":160,"y":-205,"on":true},{"x":160,"y":-198,"on":true},{"x":160,"y":-139,"on":false},{"x":172,"y":-103,"on":true},{"x":210,"y":5,"on":true},{"x":94,"y":329,"on":true},{"x":60,"y":425,"on":false}]], "references": [], - "instructions": [64,19,23,19,17,6,4,0,71,1,1,0,0,67,0,76,24,17,2,9,22,43] + "instructions": "QBMXExEGBABHAQEAAEMATBgRAgkWKw==" }, "glyph222": { "name": "glyph222", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "y": { "name": "y", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0443": { "name": "uni0443", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni028E": { "name": "uni028E", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":37,"on":true},{"x":60,"y":102,"on":false},{"x":94,"y":201,"on":true},{"x":252,"y":657,"on":true},{"x":260,"y":679,"on":false},{"x":260,"y":728,"on":true},{"x":260,"y":735,"on":true},{"x":340,"y":735,"on":true},{"x":340,"y":728,"on":true},{"x":340,"y":669,"on":false},{"x":328,"y":633,"on":true},{"x":290,"y":525,"on":true},{"x":406,"y":201,"on":true},{"x":440,"y":105,"on":false},{"x":440,"y":37,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":37,"on":true},{"x":360,"y":89,"on":false},{"x":330,"y":177,"on":true},{"x":251,"y":412,"on":true},{"x":170,"y":177,"on":true},{"x":140,"y":91,"on":false},{"x":140,"y":37,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,26,21,12,8,6,4,0,72,2,1,2,0,0,65,0,76,0,0,0,25,0,25,17,16,3,9,20,43] + "instructions": "QBoVDAgGBABIAgECAABBAEwAAAAZABkREAMJFCs=" }, "uni01B4": { "name": "uni01B4", "advanceWidth": 500, "contours": [[{"x":60,"y":493,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":493,"on":true},{"x":140,"y":441,"on":false},{"x":170,"y":353,"on":true},{"x":249,"y":118,"on":true},{"x":330,"y":353,"on":true},{"x":352,"y":417,"on":false},{"x":368,"y":443,"on":true},{"x":393,"y":486,"on":false},{"x":430,"y":508,"on":true},{"x":468,"y":530,"on":false},{"x":538,"y":530,"on":true},{"x":538,"y":458,"on":true},{"x":496,"y":458,"on":false},{"x":451,"y":432,"on":false},{"x":436,"y":406,"on":true},{"x":426,"y":389,"on":false},{"x":406,"y":329,"on":true},{"x":248,"y":-127,"on":true},{"x":240,"y":-149,"on":false},{"x":240,"y":-198,"on":true},{"x":240,"y":-205,"on":true},{"x":160,"y":-205,"on":true},{"x":160,"y":-198,"on":true},{"x":160,"y":-139,"on":false},{"x":172,"y":-103,"on":true},{"x":210,"y":5,"on":true},{"x":94,"y":329,"on":true},{"x":60,"y":425,"on":false}]], "references": [], - "instructions": [64,25,28,24,22,6,4,2,71,0,2,2,0,95,1,1,0,0,67,2,76,17,26,17,3,9,23,43] + "instructions": "QBkcGBYGBAJHAAICAF8BAQAAQwJMERoRAwkXKw==" }, "uni0423": { "name": "uni0423", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph221","x":0,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,205,176,51,43] + "instructions": "sQABsM2wMys=" }, "lambda": { "name": "lambda", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":37,"on":true},{"x":60,"y":102,"on":false},{"x":94,"y":201,"on":true},{"x":208,"y":529,"on":true},{"x":172,"y":633,"on":true},{"x":160,"y":668,"on":false},{"x":160,"y":728,"on":true},{"x":160,"y":735,"on":true},{"x":240,"y":735,"on":true},{"x":240,"y":728,"on":true},{"x":240,"y":679,"on":false},{"x":248,"y":657,"on":true},{"x":406,"y":201,"on":true},{"x":440,"y":102,"on":false},{"x":440,"y":37,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":37,"on":true},{"x":360,"y":91,"on":false},{"x":330,"y":177,"on":true},{"x":250,"y":408,"on":true},{"x":170,"y":177,"on":true},{"x":140,"y":91,"on":false},{"x":140,"y":37,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,26,21,9,7,4,4,0,72,2,1,2,0,0,45,0,76,0,0,0,25,0,25,17,16,3,8,20,43] + "instructions": "QBoVCQcEBABIAgECAAAtAEwAAAAZABkREAMIFCs=" }, "uni019B": { "name": "uni019B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"lambda","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniE090","x":500,"y":250,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,250,176,51,43] + "instructions": "sQEBsPqwMys=" }, "K": { "name": "K", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":395,"on":true},{"x":255,"y":521,"on":false},{"x":316,"y":627,"on":true},{"x":356,"y":697,"on":false},{"x":356,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":690,"on":false},{"x":392,"y":607,"on":true},{"x":351,"y":536,"on":false},{"x":290,"y":456,"on":true},{"x":448,"y":115,"on":false},{"x":448,"y":0,"on":true},{"x":368,"y":0,"on":true},{"x":368,"y":102,"on":false},{"x":235,"y":389,"on":true},{"x":192,"y":338,"on":false},{"x":140,"y":284,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,35,19,17,12,3,4,2,0,1,74,1,1,0,0,64,75,4,3,2,2,2,65,2,76,0,0,0,20,0,20,22,21,17,5,9,23,43] + "instructions": "QCMTEQwDBAIAAUoBAQAAQEsEAwICAkECTAAAABQAFBYVEQUJFys=" }, "Kappa": { "name": "Kappa", "advanceWidth": 500, "contours": [], "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni041A": { "name": "uni041A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni049A": { "name": "uni049A", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":395,"on":true},{"x":255,"y":521,"on":false},{"x":316,"y":627,"on":true},{"x":356,"y":697,"on":false},{"x":356,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":690,"on":false},{"x":392,"y":607,"on":true},{"x":351,"y":536,"on":false},{"x":290,"y":456,"on":true},{"x":409,"y":201,"on":false},{"x":438,"y":72,"on":true},{"x":504,"y":72,"on":true},{"x":504,"y":-139,"on":true},{"x":424,"y":-139,"on":true},{"x":424,"y":0,"on":true},{"x":396,"y":0,"on":false},{"x":368,"y":0,"on":true},{"x":368,"y":102,"on":false},{"x":235,"y":389,"on":true},{"x":192,"y":338,"on":false},{"x":140,"y":284,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,44,24,22,12,3,4,2,0,1,74,0,2,0,3,2,3,97,1,1,0,0,26,75,6,5,2,4,4,27,4,76,0,0,0,25,0,25,33,17,22,21,17,7,7,25,43] + "instructions": "QCwYFgwDBAIAAUoAAgADAgNhAQEAABpLBgUCBAQbBEwAAAAZABkhERYVEQcHGSs=" }, "k": { "name": "k", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":297,"on":true},{"x":298,"y":415,"on":false},{"x":344,"y":495,"on":true},{"x":356,"y":516,"on":false},{"x":356,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":511,"on":false},{"x":423,"y":482,"on":true},{"x":385,"y":416,"on":false},{"x":292,"y":330,"on":true},{"x":326,"y":276,"on":false},{"x":354,"y":227,"on":true},{"x":448,"y":64,"on":false},{"x":448,"y":0,"on":true},{"x":368,"y":0,"on":true},{"x":368,"y":52,"on":false},{"x":297,"y":176,"on":true},{"x":270,"y":224,"on":false},{"x":233,"y":279,"on":true},{"x":191,"y":244,"on":false},{"x":140,"y":205,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,39,23,21,12,3,4,2,1,1,74,0,0,0,64,75,0,1,1,67,75,4,3,2,2,2,65,2,76,0,0,0,24,0,24,24,21,17,5,9,23,43] + "instructions": "QCcXFQwDBAIBAUoAAABASwABAUNLBAMCAgJBAkwAAAAYABgYFREFCRcr" }, "kappa": { "name": "kappa", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":297,"on":true},{"x":298,"y":415,"on":false},{"x":344,"y":495,"on":true},{"x":356,"y":516,"on":false},{"x":356,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":511,"on":false},{"x":423,"y":482,"on":true},{"x":385,"y":416,"on":false},{"x":292,"y":330,"on":true},{"x":326,"y":276,"on":false},{"x":354,"y":227,"on":true},{"x":448,"y":64,"on":false},{"x":448,"y":0,"on":true},{"x":368,"y":0,"on":true},{"x":368,"y":52,"on":false},{"x":297,"y":176,"on":true},{"x":270,"y":224,"on":false},{"x":233,"y":279,"on":true},{"x":191,"y":244,"on":false},{"x":140,"y":205,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,35,23,21,12,3,4,2,0,1,74,1,1,0,0,47,75,4,3,2,2,2,45,2,76,0,0,0,24,0,24,24,21,17,5,8,23,43] + "instructions": "QCMXFQwDBAIAAUoBAQAAL0sEAwICAi0CTAAAABgAGBgVEQUIFys=" }, "uni043A": { "name": "uni043A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"kappa","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "kgreenlandic": { "name": "kgreenlandic", "advanceWidth": 500, "contours": [], "references": [{"glyph":"kappa","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni049B": { "name": "uni049B", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":297,"on":true},{"x":298,"y":415,"on":false},{"x":344,"y":495,"on":true},{"x":356,"y":516,"on":false},{"x":356,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":511,"on":false},{"x":423,"y":482,"on":true},{"x":385,"y":416,"on":false},{"x":292,"y":330,"on":true},{"x":326,"y":276,"on":false},{"x":354,"y":227,"on":true},{"x":408,"y":133,"on":false},{"x":431,"y":72,"on":true},{"x":504,"y":72,"on":true},{"x":504,"y":-139,"on":true},{"x":424,"y":-139,"on":true},{"x":424,"y":0,"on":true},{"x":396,"y":0,"on":false},{"x":368,"y":0,"on":true},{"x":368,"y":52,"on":false},{"x":297,"y":176,"on":true},{"x":270,"y":224,"on":false},{"x":233,"y":279,"on":true},{"x":191,"y":244,"on":false},{"x":140,"y":205,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,44,28,26,12,3,4,2,0,1,74,0,2,0,3,2,3,97,1,1,0,0,28,75,6,5,2,4,4,27,4,76,0,0,0,29,0,29,33,17,24,21,17,7,7,25,43] + "instructions": "QCwcGgwDBAIAAUoAAgADAgNhAQEAABxLBgUCBAQbBEwAAAAdAB0hERgVEQcHGSs=" }, "uni0198": { "name": "uni0198", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":544,"on":true},{"x":60,"y":601,"on":false},{"x":84,"y":643,"on":true},{"x":107,"y":682,"on":false},{"x":148,"y":706,"on":true},{"x":198,"y":735,"on":false},{"x":270,"y":735,"on":true},{"x":270,"y":663,"on":true},{"x":226,"y":663,"on":false},{"x":195,"y":645,"on":true},{"x":140,"y":613,"on":false},{"x":140,"y":544,"on":true},{"x":140,"y":395,"on":true},{"x":255,"y":521,"on":false},{"x":316,"y":627,"on":true},{"x":356,"y":697,"on":false},{"x":356,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":690,"on":false},{"x":392,"y":607,"on":true},{"x":351,"y":536,"on":false},{"x":290,"y":456,"on":true},{"x":448,"y":115,"on":false},{"x":448,"y":0,"on":true},{"x":368,"y":0,"on":true},{"x":368,"y":102,"on":false},{"x":235,"y":389,"on":true},{"x":192,"y":338,"on":false},{"x":140,"y":284,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,41,29,27,22,13,4,3,1,1,74,0,1,1,0,95,2,1,0,0,64,75,5,4,2,3,3,65,3,76,0,0,0,30,0,30,22,24,17,22,6,9,24,43] + "instructions": "QCkdGxYNBAMBAUoAAQEAXwIBAABASwUEAgMDQQNMAAAAHgAeFhgRFgYJGCs=" }, "uni0199": { "name": "uni0199", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":544,"on":true},{"x":60,"y":601,"on":false},{"x":84,"y":643,"on":true},{"x":107,"y":682,"on":false},{"x":148,"y":706,"on":true},{"x":198,"y":735,"on":false},{"x":270,"y":735,"on":true},{"x":270,"y":663,"on":true},{"x":226,"y":663,"on":false},{"x":195,"y":645,"on":true},{"x":140,"y":613,"on":false},{"x":140,"y":544,"on":true},{"x":140,"y":297,"on":true},{"x":298,"y":415,"on":false},{"x":344,"y":495,"on":true},{"x":356,"y":516,"on":false},{"x":356,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":511,"on":false},{"x":423,"y":482,"on":true},{"x":385,"y":416,"on":false},{"x":292,"y":330,"on":true},{"x":326,"y":276,"on":false},{"x":354,"y":227,"on":true},{"x":448,"y":64,"on":false},{"x":448,"y":0,"on":true},{"x":368,"y":0,"on":true},{"x":368,"y":52,"on":false},{"x":297,"y":176,"on":true},{"x":270,"y":224,"on":false},{"x":233,"y":279,"on":true},{"x":191,"y":244,"on":false},{"x":140,"y":205,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,45,33,31,22,13,4,3,2,1,74,0,1,1,0,95,0,0,0,64,75,0,2,2,67,75,5,4,2,3,3,65,3,76,0,0,0,34,0,34,24,24,17,22,6,9,24,43] + "instructions": "QC0hHxYNBAMCAUoAAQEAXwAAAEBLAAICQ0sFBAIDA0EDTAAAACIAIhgYERYGCRgr" }, "uniA7B0": { "name": "uniA7B0", "advanceWidth": 500, "contours": [[{"x":52,"y":735,"on":true},{"x":132,"y":735,"on":true},{"x":132,"y":633,"on":false},{"x":265,"y":346,"on":true},{"x":308,"y":397,"on":false},{"x":360,"y":451,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":340,"on":true},{"x":245,"y":214,"on":false},{"x":184,"y":108,"on":true},{"x":144,"y":38,"on":false},{"x":144,"y":0,"on":true},{"x":60,"y":0,"on":true},{"x":60,"y":45,"on":false},{"x":108,"y":128,"on":true},{"x":149,"y":199,"on":false},{"x":210,"y":279,"on":true},{"x":52,"y":620,"on":false}]], "references": [], - "instructions": [64,29,19,10,5,3,4,2,0,1,74,1,1,0,0,64,75,3,1,2,2,65,2,76,21,17,21,16,4,9,24,43] + "instructions": "QB0TCgUDBAIAAUoBAQAAQEsDAQICQQJMFREVEAQJGCs=" }, "uni029E": { "name": "uni029E", "advanceWidth": 500, "contours": [[{"x":52,"y":530,"on":true},{"x":132,"y":530,"on":true},{"x":132,"y":478,"on":false},{"x":203,"y":354,"on":true},{"x":230,"y":306,"on":false},{"x":267,"y":251,"on":true},{"x":309,"y":286,"on":false},{"x":360,"y":325,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":-205,"on":true},{"x":360,"y":-205,"on":true},{"x":360,"y":233,"on":true},{"x":202,"y":115,"on":false},{"x":156,"y":35,"on":true},{"x":144,"y":14,"on":false},{"x":144,"y":0,"on":true},{"x":60,"y":0,"on":true},{"x":60,"y":19,"on":false},{"x":77,"y":48,"on":true},{"x":115,"y":114,"on":false},{"x":208,"y":200,"on":true},{"x":174,"y":254,"on":false},{"x":146,"y":303,"on":true},{"x":52,"y":466,"on":false}]], "references": [], - "instructions": [64,33,21,12,7,5,4,3,0,1,74,1,1,0,0,67,75,0,3,3,65,75,0,2,2,69,2,76,21,17,23,16,4,9,24,43] + "instructions": "QCEVDAcFBAMAAUoBAQAAQ0sAAwNBSwACAkUCTBURFxAECRgr" }, "B": { "name": "B", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":235,"y":735,"on":true},{"x":291,"y":735,"on":false},{"x":332,"y":711,"on":true},{"x":369,"y":690,"on":false},{"x":392,"y":651,"on":true},{"x":418,"y":605,"on":false},{"x":418,"y":542,"on":true},{"x":418,"y":486,"on":false},{"x":372,"y":406,"on":false},{"x":330,"y":385,"on":true},{"x":393,"y":362,"on":false},{"x":424,"y":307,"on":true},{"x":448,"y":266,"on":false},{"x":448,"y":208,"on":true},{"x":448,"y":143,"on":false},{"x":421,"y":96,"on":true},{"x":396,"y":53,"on":false},{"x":354,"y":28,"on":true},{"x":305,"y":0,"on":false},{"x":235,"y":0,"on":true}],[{"x":140,"y":72,"on":true},{"x":235,"y":72,"on":true},{"x":277,"y":72,"on":false},{"x":307,"y":89,"on":true},{"x":334,"y":104,"on":false},{"x":350,"y":132,"on":true},{"x":368,"y":164,"on":false},{"x":368,"y":254,"on":false},{"x":350,"y":286,"on":true},{"x":334,"y":314,"on":false},{"x":307,"y":329,"on":true},{"x":277,"y":346,"on":false},{"x":235,"y":346,"on":true},{"x":140,"y":346,"on":true}],[{"x":140,"y":418,"on":true},{"x":235,"y":418,"on":true},{"x":293,"y":418,"on":false},{"x":321,"y":466,"on":true},{"x":338,"y":496,"on":false},{"x":338,"y":541,"on":true},{"x":338,"y":585,"on":false},{"x":321,"y":615,"on":true},{"x":293,"y":663,"on":false},{"x":235,"y":663,"on":true},{"x":140,"y":663,"on":true}]], "references": [], - "instructions": [64,54,11,1,3,4,1,74,0,4,0,3,2,4,3,101,0,5,5,0,93,0,0,0,64,75,0,2,2,1,93,6,1,1,1,65,1,76,0,0,46,44,38,36,35,33,24,22,0,21,0,20,33,7,9,21,43] + "instructions": "QDYLAQMEAUoABAADAgQDZQAFBQBdAAAAQEsAAgIBXQYBAQFBAUwAAC4sJiQjIRgWABUAFCEHCRUr" }, "Beta": { "name": "Beta", "advanceWidth": 500, "contours": [], "references": [{"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0412": { "name": "uni0412", "advanceWidth": 500, "contours": [], "references": [{"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0181": { "name": "uni0181", "advanceWidth": 500, "contours": [[{"x":-37,"y":565,"on":true},{"x":-37,"y":644,"on":false},{"x":-10,"y":690,"on":true},{"x":4,"y":715,"on":false},{"x":23,"y":726,"on":true},{"x":40,"y":735,"on":false},{"x":60,"y":735,"on":true},{"x":235,"y":735,"on":true},{"x":291,"y":735,"on":false},{"x":332,"y":711,"on":true},{"x":369,"y":690,"on":false},{"x":392,"y":651,"on":true},{"x":418,"y":605,"on":false},{"x":418,"y":542,"on":true},{"x":418,"y":486,"on":false},{"x":372,"y":406,"on":false},{"x":330,"y":385,"on":true},{"x":393,"y":362,"on":false},{"x":424,"y":307,"on":true},{"x":448,"y":266,"on":false},{"x":448,"y":208,"on":true},{"x":448,"y":143,"on":false},{"x":421,"y":96,"on":true},{"x":396,"y":53,"on":false},{"x":354,"y":28,"on":true},{"x":305,"y":0,"on":false},{"x":235,"y":0,"on":true},{"x":60,"y":0,"on":true},{"x":60,"y":670,"on":true},{"x":56,"y":670,"on":false},{"x":53,"y":667,"on":true},{"x":35,"y":649,"on":false},{"x":35,"y":565,"on":true}],[{"x":140,"y":72,"on":true},{"x":235,"y":72,"on":true},{"x":277,"y":72,"on":false},{"x":307,"y":89,"on":true},{"x":334,"y":104,"on":false},{"x":350,"y":132,"on":true},{"x":368,"y":164,"on":false},{"x":368,"y":254,"on":false},{"x":350,"y":286,"on":true},{"x":334,"y":314,"on":false},{"x":307,"y":329,"on":true},{"x":277,"y":346,"on":false},{"x":235,"y":346,"on":true},{"x":140,"y":346,"on":true}],[{"x":140,"y":418,"on":true},{"x":235,"y":418,"on":true},{"x":293,"y":418,"on":false},{"x":321,"y":466,"on":true},{"x":338,"y":496,"on":false},{"x":338,"y":541,"on":true},{"x":338,"y":585,"on":false},{"x":321,"y":615,"on":true},{"x":293,"y":663,"on":false},{"x":235,"y":663,"on":true},{"x":140,"y":663,"on":true}]], "references": [], - "instructions": [64,68,28,1,6,0,16,1,4,5,2,74,7,1,2,6,5,6,2,5,126,0,5,0,4,3,5,4,101,0,6,6,0,93,0,0,0,64,75,0,3,3,1,93,0,1,1,65,1,76,0,0,57,55,49,47,46,44,35,33,0,32,0,32,27,25,53,8,9,21,43] + "instructions": "QEQcAQYAEAEEBQJKBwECBgUGAgV+AAUABAMFBGUABgYAXQAAAEBLAAMDAV0AAQFBAUwAADk3MS8uLCMhACAAIBsZNQgJFSs=" }, "glyph247": { "name": "glyph247", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":391,"on":false},{"x":84,"y":446,"on":true},{"x":109,"y":490,"on":false},{"x":193,"y":538,"on":false},{"x":252,"y":538,"on":true},{"x":317,"y":538,"on":false},{"x":363,"y":512,"on":true},{"x":397,"y":492,"on":false},{"x":415,"y":461,"on":true},{"x":432,"y":431,"on":false},{"x":432,"y":349,"on":false},{"x":415,"y":319,"on":true},{"x":402,"y":297,"on":false},{"x":381,"y":281,"on":true},{"x":412,"y":261,"on":false},{"x":429,"y":231,"on":true},{"x":448,"y":198,"on":false},{"x":448,"y":109,"on":false},{"x":429,"y":76,"on":true},{"x":409,"y":42,"on":false},{"x":373,"y":20,"on":true},{"x":324,"y":-8,"on":false},{"x":253,"y":-8,"on":true},{"x":193,"y":-8,"on":false},{"x":109,"y":40,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":160,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":253,"y":64,"on":true},{"x":296,"y":64,"on":false},{"x":326,"y":81,"on":true},{"x":347,"y":93,"on":false},{"x":358,"y":112,"on":true},{"x":368,"y":130,"on":false},{"x":368,"y":176,"on":false},{"x":358,"y":194,"on":true},{"x":347,"y":213,"on":false},{"x":326,"y":225,"on":true},{"x":296,"y":242,"on":false},{"x":250,"y":242,"on":true},{"x":193,"y":242,"on":true},{"x":193,"y":314,"on":true},{"x":250,"y":314,"on":true},{"x":290,"y":314,"on":false},{"x":316,"y":329,"on":true},{"x":334,"y":339,"on":false},{"x":343,"y":356,"on":true},{"x":352,"y":371,"on":false},{"x":352,"y":410,"on":false},{"x":343,"y":425,"on":true},{"x":334,"y":441,"on":false},{"x":316,"y":451,"on":true},{"x":290,"y":466,"on":false},{"x":253,"y":466,"on":true},{"x":220,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":438,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [64,49,15,1,3,4,1,74,0,4,0,3,2,4,3,103,0,5,5,0,95,0,0,0,75,75,0,2,2,1,95,0,1,1,73,1,76,61,59,50,48,47,45,36,34,25,23,37,6,9,21,43] + "instructions": "QDEPAQMEAUoABAADAgQDZwAFBQBfAAAAS0sAAgIBXwABAUkBTD07MjAvLSQiGRclBgkVKw==" }, "uni025E": { "name": "uni025E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph247","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph249": { "name": "glyph249", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":279,"y":530,"on":true},{"x":322,"y":530,"on":false},{"x":354,"y":512,"on":true},{"x":382,"y":496,"on":false},{"x":398,"y":467,"on":true},{"x":418,"y":433,"on":false},{"x":418,"y":386,"on":true},{"x":418,"y":346,"on":false},{"x":402,"y":319,"on":true},{"x":388,"y":295,"on":false},{"x":364,"y":279,"on":true},{"x":374,"y":275,"on":false},{"x":383,"y":269,"on":true},{"x":414,"y":251,"on":false},{"x":432,"y":222,"on":true},{"x":448,"y":194,"on":false},{"x":448,"y":154,"on":true},{"x":448,"y":108,"on":false},{"x":428,"y":74,"on":true},{"x":409,"y":42,"on":false},{"x":377,"y":23,"on":true},{"x":337,"y":0,"on":false},{"x":279,"y":0,"on":true}],[{"x":140,"y":72,"on":true},{"x":279,"y":72,"on":true},{"x":309,"y":72,"on":false},{"x":330,"y":84,"on":true},{"x":347,"y":94,"on":false},{"x":357,"y":111,"on":true},{"x":368,"y":129,"on":false},{"x":368,"y":181,"on":false},{"x":357,"y":200,"on":true},{"x":347,"y":217,"on":false},{"x":330,"y":228,"on":true},{"x":309,"y":240,"on":false},{"x":279,"y":240,"on":true},{"x":140,"y":240,"on":true}],[{"x":140,"y":312,"on":true},{"x":279,"y":312,"on":true},{"x":302,"y":312,"on":false},{"x":318,"y":327,"on":true},{"x":338,"y":347,"on":false},{"x":338,"y":423,"on":false},{"x":318,"y":443,"on":true},{"x":303,"y":458,"on":false},{"x":279,"y":458,"on":true},{"x":140,"y":458,"on":true}]], "references": [], - "instructions": [64,54,12,1,3,4,1,74,0,4,0,3,2,4,3,101,0,5,5,0,93,0,0,0,67,75,0,2,2,1,93,6,1,1,1,65,1,76,0,0,48,46,41,39,38,36,27,25,0,24,0,23,33,7,9,21,43] + "instructions": "QDYMAQMEAUoABAADAgQDZQAFBQBdAAAAQ0sAAgIBXQYBAQFBAUwAADAuKScmJBsZABgAFyEHCRUr" }, "uni0299": { "name": "uni0299", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph249","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0432": { "name": "uni0432", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph249","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0243": { "name": "uni0243", "advanceWidth": 500, "contours": [[{"x":18,"y":184,"on":true},{"x":18,"y":256,"on":true},{"x":60,"y":256,"on":true},{"x":60,"y":735,"on":true},{"x":235,"y":735,"on":true},{"x":291,"y":735,"on":false},{"x":332,"y":711,"on":true},{"x":369,"y":690,"on":false},{"x":392,"y":651,"on":true},{"x":418,"y":605,"on":false},{"x":418,"y":542,"on":true},{"x":418,"y":486,"on":false},{"x":372,"y":406,"on":false},{"x":330,"y":385,"on":true},{"x":393,"y":362,"on":false},{"x":424,"y":307,"on":true},{"x":448,"y":266,"on":false},{"x":448,"y":208,"on":true},{"x":448,"y":143,"on":false},{"x":421,"y":96,"on":true},{"x":396,"y":53,"on":false},{"x":354,"y":28,"on":true},{"x":305,"y":0,"on":false},{"x":235,"y":0,"on":true},{"x":60,"y":0,"on":true},{"x":60,"y":184,"on":true}],[{"x":140,"y":72,"on":true},{"x":235,"y":72,"on":true},{"x":277,"y":72,"on":false},{"x":307,"y":89,"on":true},{"x":334,"y":104,"on":false},{"x":350,"y":132,"on":true},{"x":368,"y":164,"on":false},{"x":368,"y":254,"on":false},{"x":350,"y":286,"on":true},{"x":334,"y":314,"on":false},{"x":307,"y":329,"on":true},{"x":277,"y":346,"on":false},{"x":235,"y":346,"on":true},{"x":140,"y":346,"on":true},{"x":140,"y":256,"on":true},{"x":250,"y":256,"on":true},{"x":250,"y":184,"on":true},{"x":140,"y":184,"on":true}],[{"x":140,"y":418,"on":true},{"x":235,"y":418,"on":true},{"x":293,"y":418,"on":false},{"x":321,"y":466,"on":true},{"x":338,"y":496,"on":false},{"x":338,"y":541,"on":true},{"x":338,"y":585,"on":false},{"x":321,"y":615,"on":true},{"x":293,"y":663,"on":false},{"x":235,"y":663,"on":true},{"x":140,"y":663,"on":true}]], "references": [], - "instructions": [64,71,13,1,5,8,1,74,0,8,0,5,0,8,5,101,6,1,0,7,10,2,3,4,0,3,101,0,9,9,1,93,0,1,1,64,75,0,4,4,2,93,0,2,2,65,2,76,0,0,54,52,46,44,43,42,41,40,39,37,28,26,0,25,0,25,24,22,33,17,11,9,22,43] + "instructions": "QEcNAQUIAUoACAAFAAgFZQYBAAcKAgMEAANlAAkJAV0AAQFASwAEBAJdAAICQQJMAAA2NC4sKyopKCclHBoAGQAZGBYhEQsJFis=" }, "beta": { "name": "beta", "advanceWidth": 500, "contours": [[{"x":60,"y":-205,"on":true},{"x":60,"y":515,"on":true},{"x":60,"y":600,"on":false},{"x":93,"y":658,"on":true},{"x":117,"y":700,"on":false},{"x":156,"y":722,"on":true},{"x":193,"y":743,"on":false},{"x":243,"y":743,"on":true},{"x":298,"y":743,"on":false},{"x":339,"y":720,"on":true},{"x":376,"y":698,"on":false},{"x":398,"y":660,"on":true},{"x":424,"y":615,"on":false},{"x":424,"y":554,"on":true},{"x":424,"y":503,"on":false},{"x":403,"y":466,"on":true},{"x":378,"y":423,"on":false},{"x":330,"y":402,"on":true},{"x":343,"y":397,"on":false},{"x":355,"y":390,"on":true},{"x":399,"y":365,"on":false},{"x":423,"y":323,"on":true},{"x":448,"y":280,"on":false},{"x":448,"y":219,"on":true},{"x":448,"y":152,"on":false},{"x":420,"y":102,"on":true},{"x":394,"y":57,"on":false},{"x":348,"y":31,"on":true},{"x":295,"y":0,"on":false},{"x":220,"y":0,"on":true},{"x":140,"y":0,"on":true},{"x":140,"y":-205,"on":true}],[{"x":140,"y":72,"on":true},{"x":220,"y":72,"on":true},{"x":288,"y":72,"on":false},{"x":368,"y":152,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":268,"on":false},{"x":348,"y":301,"on":true},{"x":331,"y":331,"on":false},{"x":301,"y":349,"on":true},{"x":267,"y":369,"on":false},{"x":220,"y":368,"on":true},{"x":174,"y":368,"on":true},{"x":174,"y":440,"on":true},{"x":242,"y":440,"on":true},{"x":302,"y":440,"on":false},{"x":329,"y":487,"on":true},{"x":344,"y":514,"on":false},{"x":344,"y":553,"on":true},{"x":344,"y":595,"on":false},{"x":327,"y":624,"on":true},{"x":314,"y":647,"on":false},{"x":272,"y":671,"on":false},{"x":244,"y":671,"on":true},{"x":219,"y":671,"on":false},{"x":200,"y":660,"on":true},{"x":178,"y":648,"on":false},{"x":164,"y":622,"on":true},{"x":140,"y":581,"on":false},{"x":140,"y":515,"on":true}]], "references": [], - "instructions": [64,61,17,1,4,5,1,74,0,5,0,4,3,5,4,103,0,6,6,0,95,0,0,0,52,75,0,3,3,1,93,0,1,1,45,75,7,1,2,2,49,2,76,0,0,55,53,46,44,43,41,34,32,0,31,0,31,30,28,38,8,8,21,43] + "instructions": "QD0RAQQFAUoABQAEAwUEZwAGBgBfAAAANEsAAwMBXQABAS1LBwECAjECTAAANzUuLCspIiAAHwAfHhwmCAgVKw==" }, "b": { "name": "b", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":275,"y":538,"on":true},{"x":320,"y":538,"on":false},{"x":354,"y":518,"on":true},{"x":391,"y":497,"on":false},{"x":415,"y":456,"on":true},{"x":448,"y":398,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":132,"on":false},{"x":415,"y":74,"on":true},{"x":391,"y":33,"on":false},{"x":354,"y":12,"on":true},{"x":320,"y":-8,"on":false},{"x":275,"y":-8,"on":true},{"x":233,"y":-8,"on":false},{"x":201,"y":10,"on":true},{"x":166,"y":30,"on":false},{"x":143,"y":70,"on":true},{"x":141,"y":73,"on":false},{"x":140,"y":76,"on":true},{"x":140,"y":0,"on":true}],[{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":251,"y":64,"on":true},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":371,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":453,"on":true},{"x":281,"y":466,"on":false},{"x":251,"y":466,"on":true},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":374,"on":false},{"x":140,"y":310,"on":true}]], "references": [], - "instructions": [182,28,3,2,4,5,1,74,75,176,29,80,88,64,28,0,0,0,64,75,0,5,5,1,95,0,1,1,75,75,0,4,4,2,95,6,3,2,2,2,73,2,76,27,64,32,0,0,0,64,75,0,5,5,1,95,0,1,1,75,75,6,1,3,3,65,75,0,4,4,2,95,0,2,2,73,2,76,89,64,16,0,0,50,48,37,35,0,29,0,29,43,38,17,7,9,23,43] + "instructions": "thwDAgQFAUpLsB1QWEAcAAAAQEsABQUBXwABAUtLAAQEAl8GAwICAkkCTBtAIAAAAEBLAAUFAV8AAQFLSwYBAwNBSwAEBAJfAAICSQJMWUAQAAAyMCUjAB0AHSsmEQcJFys=" }, "uni0253": { "name": "uni0253", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":515,"on":true},{"x":60,"y":596,"on":false},{"x":92,"y":652,"on":true},{"x":117,"y":695,"on":false},{"x":199,"y":743,"on":false},{"x":311,"y":743,"on":false},{"x":353,"y":719,"on":true},{"x":394,"y":695,"on":false},{"x":419,"y":652,"on":true},{"x":438,"y":619,"on":false},{"x":445,"y":580,"on":true},{"x":369,"y":557,"on":true},{"x":364,"y":590,"on":false},{"x":349,"y":616,"on":true},{"x":333,"y":644,"on":false},{"x":308,"y":658,"on":true},{"x":285,"y":671,"on":false},{"x":225,"y":671,"on":false},{"x":203,"y":658,"on":true},{"x":179,"y":644,"on":false},{"x":163,"y":616,"on":true},{"x":140,"y":576,"on":false},{"x":140,"y":515,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":275,"y":538,"on":true},{"x":320,"y":538,"on":false},{"x":354,"y":518,"on":true},{"x":391,"y":497,"on":false},{"x":415,"y":456,"on":true},{"x":448,"y":398,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":132,"on":false},{"x":415,"y":74,"on":true},{"x":391,"y":33,"on":false},{"x":354,"y":12,"on":true},{"x":320,"y":-8,"on":false},{"x":275,"y":-8,"on":true},{"x":233,"y":-8,"on":false},{"x":201,"y":10,"on":true},{"x":166,"y":30,"on":false},{"x":143,"y":70,"on":true},{"x":141,"y":73,"on":false},{"x":140,"y":76,"on":true},{"x":140,"y":0,"on":true}],[{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":251,"y":64,"on":true},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":371,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":453,"on":true},{"x":281,"y":466,"on":false},{"x":251,"y":466,"on":true},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":374,"on":false},{"x":140,"y":310,"on":true}]], "references": [], - "instructions": [64,12,12,11,2,2,1,49,24,2,5,6,2,74,75,176,29,80,88,64,33,0,1,1,0,95,0,0,0,72,75,0,6,6,2,95,0,2,2,75,75,0,5,5,3,95,7,4,2,3,3,73,3,76,27,64,37,0,1,1,0,95,0,0,0,72,75,0,6,6,2,95,0,2,2,75,75,7,1,4,4,65,75,0,5,5,3,95,0,3,3,73,3,76,89,64,17,0,0,71,69,58,56,0,50,0,50,43,43,27,21,8,9,24,43] + "instructions": "QAwMCwICATEYAgUGAkpLsB1QWEAhAAEBAF8AAABISwAGBgJfAAICS0sABQUDXwcEAgMDSQNMG0AlAAEBAF8AAABISwAGBgJfAAICS0sHAQQEQUsABQUDXwADA0kDTFlAEQAAR0U6OAAyADIrKxsVCAkYKw==" }, "uni0180": { "name": "uni0180", "advanceWidth": 500, "contours": [[{"x":18,"y":586,"on":true},{"x":18,"y":658,"on":true},{"x":60,"y":658,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":658,"on":true},{"x":250,"y":658,"on":true},{"x":250,"y":586,"on":true},{"x":140,"y":586,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":275,"y":538,"on":true},{"x":320,"y":538,"on":false},{"x":354,"y":518,"on":true},{"x":391,"y":497,"on":false},{"x":415,"y":456,"on":true},{"x":448,"y":398,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":132,"on":false},{"x":415,"y":74,"on":true},{"x":391,"y":33,"on":false},{"x":354,"y":12,"on":true},{"x":320,"y":-8,"on":false},{"x":275,"y":-8,"on":true},{"x":233,"y":-8,"on":false},{"x":201,"y":10,"on":true},{"x":166,"y":30,"on":false},{"x":143,"y":70,"on":true},{"x":141,"y":73,"on":false},{"x":140,"y":76,"on":true},{"x":140,"y":0,"on":true},{"x":60,"y":0,"on":true},{"x":60,"y":586,"on":true}],[{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":251,"y":64,"on":true},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":371,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":453,"on":true},{"x":281,"y":466,"on":false},{"x":251,"y":466,"on":true},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":373,"on":false},{"x":140,"y":310,"on":true}]], "references": [], - "instructions": [182,34,9,2,8,9,1,74,75,176,29,80,88,64,38,2,1,0,10,7,2,3,4,0,3,101,0,1,1,64,75,0,9,9,4,95,0,4,4,75,75,0,8,8,5,95,6,1,5,5,73,5,76,27,64,42,2,1,0,10,7,2,3,4,0,3,101,0,1,1,64,75,0,9,9,4,95,0,4,4,75,75,0,6,6,65,75,0,8,8,5,95,0,5,5,73,5,76,89,64,20,0,0,58,56,45,43,0,37,0,37,22,43,38,17,17,17,17,11,9,27,43] + "instructions": "tiIJAggJAUpLsB1QWEAmAgEACgcCAwQAA2UAAQFASwAJCQRfAAQES0sACAgFXwYBBQVJBUwbQCoCAQAKBwIDBAADZQABAUBLAAkJBF8ABARLSwAGBkFLAAgIBV8ABQVJBUxZQBQAADo4LSsAJQAlFismEREREQsJGys=" }, "uni1E03": { "name": "uni1E03", "advanceWidth": 500, "contours": [], "references": [{"glyph":"b","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":536,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0183": { "name": "uni0183", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":402,"y":735,"on":true},{"x":402,"y":663,"on":true},{"x":140,"y":663,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":275,"y":538,"on":true},{"x":320,"y":538,"on":false},{"x":354,"y":518,"on":true},{"x":391,"y":497,"on":false},{"x":415,"y":456,"on":true},{"x":448,"y":398,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":132,"on":false},{"x":415,"y":74,"on":true},{"x":391,"y":33,"on":false},{"x":354,"y":12,"on":true},{"x":320,"y":-8,"on":false},{"x":275,"y":-8,"on":true},{"x":233,"y":-8,"on":false},{"x":201,"y":10,"on":true},{"x":166,"y":30,"on":false},{"x":143,"y":70,"on":true},{"x":141,"y":73,"on":false},{"x":140,"y":76,"on":true},{"x":140,"y":0,"on":true}],[{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":251,"y":64,"on":true},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":371,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":453,"on":true},{"x":281,"y":466,"on":false},{"x":251,"y":466,"on":true},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":373,"on":false},{"x":140,"y":310,"on":true}]], "references": [], - "instructions": [182,30,5,2,5,6,1,74,75,176,29,80,88,64,33,0,1,1,0,93,0,0,0,64,75,0,6,6,2,95,0,2,2,75,75,0,5,5,3,95,7,4,2,3,3,73,3,76,27,64,37,0,1,1,0,93,0,0,0,64,75,0,6,6,2,95,0,2,2,75,75,7,1,4,4,65,75,0,5,5,3,95,0,3,3,73,3,76,89,64,17,0,0,52,50,39,37,0,31,0,31,43,38,17,17,8,9,24,43] + "instructions": "th4FAgUGAUpLsB1QWEAhAAEBAF0AAABASwAGBgJfAAICS0sABQUDXwcEAgMDSQNMG0AlAAEBAF0AAABASwAGBgJfAAICS0sHAQQEQUsABQUDXwADA0kDTFlAEQAANDInJQAfAB8rJhERCAkYKw==" }, "uni0185": { "name": "uni0185", "advanceWidth": 500, "contours": [[{"x":-12,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":275,"y":538,"on":true},{"x":320,"y":538,"on":false},{"x":354,"y":518,"on":true},{"x":391,"y":497,"on":false},{"x":415,"y":456,"on":true},{"x":448,"y":398,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":132,"on":false},{"x":415,"y":74,"on":true},{"x":391,"y":33,"on":false},{"x":354,"y":12,"on":true},{"x":320,"y":-8,"on":false},{"x":275,"y":-8,"on":true},{"x":233,"y":-8,"on":false},{"x":201,"y":10,"on":true},{"x":166,"y":30,"on":false},{"x":143,"y":70,"on":true},{"x":141,"y":73,"on":false},{"x":140,"y":76,"on":true},{"x":140,"y":0,"on":true},{"x":60,"y":0,"on":true},{"x":60,"y":591,"on":true}],[{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":251,"y":64,"on":true},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":371,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":453,"on":true},{"x":281,"y":466,"on":false},{"x":251,"y":466,"on":true},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":373,"on":false},{"x":140,"y":310,"on":true}]], "references": [], - "instructions": [64,11,31,1,1,0,28,3,2,4,5,2,74,75,176,29,80,88,64,27,0,0,0,64,75,0,5,5,1,95,0,1,1,75,75,0,4,4,2,95,3,1,2,2,73,2,76,27,64,31,0,0,0,64,75,0,5,5,1,95,0,1,1,75,75,0,3,3,65,75,0,4,4,2,95,0,2,2,73,2,76,89,64,9,43,39,22,43,38,17,6,9,26,43] + "instructions": "QAsfAQEAHAMCBAUCSkuwHVBYQBsAAABASwAFBQFfAAEBS0sABAQCXwMBAgJJAkwbQB8AAABASwAFBQFfAAEBS0sAAwNBSwAEBAJfAAICSQJMWUAJKycWKyYRBgkaKw==" }, "D": { "name": "D", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":226,"y":735,"on":true},{"x":289,"y":735,"on":false},{"x":336,"y":708,"on":true},{"x":382,"y":682,"on":false},{"x":411,"y":631,"on":true},{"x":448,"y":566,"on":false},{"x":448,"y":472,"on":true},{"x":448,"y":263,"on":true},{"x":448,"y":168,"on":false},{"x":411,"y":104,"on":true},{"x":382,"y":54,"on":false},{"x":336,"y":27,"on":true},{"x":288,"y":0,"on":false},{"x":226,"y":0,"on":true}],[{"x":140,"y":72,"on":true},{"x":226,"y":72,"on":true},{"x":263,"y":72,"on":false},{"x":291,"y":88,"on":true},{"x":321,"y":105,"on":false},{"x":340,"y":139,"on":true},{"x":368,"y":188,"on":false},{"x":368,"y":263,"on":true},{"x":368,"y":472,"on":true},{"x":368,"y":547,"on":false},{"x":340,"y":596,"on":true},{"x":320,"y":630,"on":false},{"x":291,"y":647,"on":true},{"x":262,"y":663,"on":false},{"x":226,"y":663,"on":true},{"x":140,"y":663,"on":true}]], "references": [], - "instructions": [64,36,0,3,3,0,93,0,0,0,64,75,0,2,2,1,93,4,1,1,1,65,1,76,0,0,31,29,18,16,0,15,0,14,33,5,9,21,43] + "instructions": "QCQAAwMAXQAAAEBLAAICAV0EAQEBQQFMAAAfHRIQAA8ADiEFCRUr" }, "Eth": { "name": "Eth", "advanceWidth": 500, "contours": [[{"x":18,"y":346,"on":true},{"x":18,"y":418,"on":true},{"x":60,"y":418,"on":true},{"x":60,"y":735,"on":true},{"x":226,"y":735,"on":true},{"x":289,"y":735,"on":false},{"x":336,"y":708,"on":true},{"x":382,"y":682,"on":false},{"x":411,"y":631,"on":true},{"x":448,"y":566,"on":false},{"x":448,"y":472,"on":true},{"x":448,"y":263,"on":true},{"x":448,"y":168,"on":false},{"x":411,"y":104,"on":true},{"x":382,"y":54,"on":false},{"x":336,"y":27,"on":true},{"x":288,"y":0,"on":false},{"x":226,"y":0,"on":true},{"x":60,"y":0,"on":true},{"x":60,"y":346,"on":true}],[{"x":140,"y":72,"on":true},{"x":226,"y":72,"on":true},{"x":263,"y":72,"on":false},{"x":291,"y":88,"on":true},{"x":321,"y":105,"on":false},{"x":340,"y":139,"on":true},{"x":368,"y":188,"on":false},{"x":368,"y":263,"on":true},{"x":368,"y":472,"on":true},{"x":368,"y":547,"on":false},{"x":340,"y":596,"on":true},{"x":320,"y":630,"on":false},{"x":291,"y":647,"on":true},{"x":262,"y":663,"on":false},{"x":226,"y":663,"on":true},{"x":140,"y":663,"on":true},{"x":140,"y":418,"on":true},{"x":262,"y":418,"on":true},{"x":262,"y":346,"on":true},{"x":140,"y":346,"on":true}]], "references": [], - "instructions": [64,52,6,1,0,7,8,2,3,4,0,3,101,0,5,5,1,93,0,1,1,64,75,0,4,4,2,93,0,2,2,65,2,76,0,0,39,38,37,36,35,33,22,20,0,19,0,19,43,33,17,9,9,23,43] + "instructions": "QDQGAQAHCAIDBAADZQAFBQFdAAEBQEsABAQCXQACAkECTAAAJyYlJCMhFhQAEwATKyERCQkXKw==" }, "Dcroat": { "name": "Dcroat", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Eth","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0189": { "name": "uni0189", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Eth","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni018A": { "name": "uni018A", "advanceWidth": 500, "contours": [[{"x":-37,"y":565,"on":true},{"x":-37,"y":644,"on":false},{"x":-10,"y":690,"on":true},{"x":4,"y":715,"on":false},{"x":23,"y":726,"on":true},{"x":40,"y":735,"on":false},{"x":60,"y":735,"on":true},{"x":226,"y":735,"on":true},{"x":289,"y":735,"on":false},{"x":336,"y":708,"on":true},{"x":382,"y":682,"on":false},{"x":411,"y":631,"on":true},{"x":448,"y":566,"on":false},{"x":448,"y":472,"on":true},{"x":448,"y":263,"on":true},{"x":448,"y":168,"on":false},{"x":411,"y":104,"on":true},{"x":382,"y":54,"on":false},{"x":336,"y":27,"on":true},{"x":288,"y":0,"on":false},{"x":226,"y":0,"on":true},{"x":60,"y":0,"on":true},{"x":60,"y":670,"on":true},{"x":56,"y":670,"on":false},{"x":53,"y":667,"on":true},{"x":35,"y":649,"on":false},{"x":35,"y":565,"on":true}],[{"x":140,"y":72,"on":true},{"x":226,"y":72,"on":true},{"x":263,"y":72,"on":false},{"x":291,"y":88,"on":true},{"x":321,"y":105,"on":false},{"x":340,"y":139,"on":true},{"x":368,"y":188,"on":false},{"x":368,"y":263,"on":true},{"x":368,"y":472,"on":true},{"x":368,"y":547,"on":false},{"x":340,"y":596,"on":true},{"x":320,"y":630,"on":false},{"x":291,"y":647,"on":true},{"x":262,"y":663,"on":false},{"x":226,"y":663,"on":true},{"x":140,"y":663,"on":true}]], "references": [], - "instructions": [64,51,22,1,4,0,1,74,5,1,2,4,3,4,2,3,126,0,4,4,0,93,0,0,0,64,75,0,3,3,1,93,0,1,1,65,1,76,0,0,42,40,29,27,0,26,0,26,43,53,6,9,22,43] + "instructions": "QDMWAQQAAUoFAQIEAwQCA34ABAQAXQAAAEBLAAMDAV0AAQFBAUwAACooHRsAGgAaKzUGCRYr" }, "d": { "name": "d", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":398,"on":false},{"x":85,"y":456,"on":true},{"x":109,"y":497,"on":false},{"x":146,"y":518,"on":true},{"x":180,"y":538,"on":false},{"x":225,"y":538,"on":true},{"x":267,"y":538,"on":false},{"x":299,"y":520,"on":true},{"x":334,"y":500,"on":false},{"x":357,"y":460,"on":true},{"x":359,"y":457,"on":false},{"x":360,"y":454,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":225,"y":-8,"on":true},{"x":180,"y":-8,"on":false},{"x":146,"y":12,"on":true},{"x":109,"y":33,"on":false},{"x":85,"y":74,"on":true},{"x":52,"y":132,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":249,"y":466,"on":true},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [182,18,13,2,4,5,1,74,75,176,29,80,88,64,27,0,1,1,64,75,0,5,5,0,95,0,0,0,75,75,0,4,4,2,95,3,1,2,2,65,2,76,27,64,31,0,1,1,64,75,0,5,5,0,95,0,0,0,75,75,0,2,2,65,75,0,4,4,3,95,0,3,3,73,3,76,89,64,9,43,42,38,17,22,38,6,9,26,43] + "instructions": "thINAgQFAUpLsB1QWEAbAAEBQEsABQUAXwAAAEtLAAQEAl8DAQICQQJMG0AfAAEBQEsABQUAXwAAAEtLAAICQUsABAQDXwADA0kDTFlACSsqJhEWJgYJGis=" }, "dcroat": { "name": "dcroat", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":398,"on":false},{"x":85,"y":456,"on":true},{"x":109,"y":497,"on":false},{"x":146,"y":518,"on":true},{"x":180,"y":538,"on":false},{"x":225,"y":538,"on":true},{"x":267,"y":538,"on":false},{"x":299,"y":520,"on":true},{"x":334,"y":500,"on":false},{"x":357,"y":460,"on":true},{"x":359,"y":457,"on":false},{"x":360,"y":454,"on":true},{"x":360,"y":586,"on":true},{"x":250,"y":586,"on":true},{"x":250,"y":658,"on":true},{"x":360,"y":658,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":658,"on":true},{"x":482,"y":658,"on":true},{"x":482,"y":586,"on":true},{"x":440,"y":586,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":225,"y":-8,"on":true},{"x":180,"y":-8,"on":false},{"x":146,"y":12,"on":true},{"x":109,"y":33,"on":false},{"x":85,"y":74,"on":true},{"x":52,"y":132,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":157,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":249,"y":466,"on":true},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [182,26,13,2,8,9,1,74,75,176,29,80,88,64,37,4,1,2,5,1,1,0,2,1,101,0,3,3,64,75,0,9,9,0,95,0,0,0,75,75,0,8,8,6,95,7,1,6,6,65,6,76,27,64,41,4,1,2,5,1,1,0,2,1,101,0,3,3,64,75,0,9,9,0,95,0,0,0,75,75,0,6,6,65,75,0,8,8,7,95,0,7,7,73,7,76,89,64,14,58,56,42,38,17,17,17,17,17,22,38,10,9,29,43] + "instructions": "thoNAggJAUpLsB1QWEAlBAECBQEBAAIBZQADA0BLAAkJAF8AAABLSwAICAZfBwEGBkEGTBtAKQQBAgUBAQACAWUAAwNASwAJCQBfAAAAS0sABgZBSwAICAdfAAcHSQdMWUAOOjgqJhERERERFiYKCR0r" }, "dcaron": { "name": "dcaron", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":403,"on":false},{"x":86,"y":462,"on":true},{"x":108,"y":501,"on":false},{"x":142,"y":521,"on":true},{"x":172,"y":538,"on":false},{"x":211,"y":538,"on":true},{"x":248,"y":538,"on":false},{"x":275,"y":522,"on":true},{"x":307,"y":504,"on":false},{"x":329,"y":466,"on":true},{"x":332,"y":460,"on":false},{"x":335,"y":455,"on":true},{"x":335,"y":735,"on":true},{"x":415,"y":735,"on":true},{"x":415,"y":0,"on":true},{"x":335,"y":0,"on":true},{"x":335,"y":75,"on":true},{"x":332,"y":69,"on":false},{"x":329,"y":64,"on":true},{"x":307,"y":26,"on":false},{"x":275,"y":8,"on":true},{"x":248,"y":-8,"on":false},{"x":211,"y":-8,"on":true},{"x":172,"y":-8,"on":false},{"x":142,"y":9,"on":true},{"x":108,"y":28,"on":false},{"x":86,"y":68,"on":true},{"x":52,"y":127,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":155,"on":false},{"x":156,"y":114,"on":true},{"x":171,"y":88,"on":false},{"x":193,"y":75,"on":true},{"x":212,"y":64,"on":false},{"x":237,"y":64,"on":true},{"x":260,"y":64,"on":false},{"x":277,"y":74,"on":true},{"x":297,"y":86,"on":false},{"x":311,"y":110,"on":true},{"x":335,"y":152,"on":false},{"x":335,"y":220,"on":true},{"x":335,"y":310,"on":true},{"x":335,"y":378,"on":false},{"x":311,"y":420,"on":true},{"x":297,"y":445,"on":false},{"x":277,"y":456,"on":true},{"x":260,"y":466,"on":false},{"x":237,"y":466,"on":true},{"x":212,"y":466,"on":false},{"x":193,"y":455,"on":true},{"x":171,"y":442,"on":false},{"x":156,"y":416,"on":true},{"x":132,"y":375,"on":false},{"x":132,"y":310,"on":true}],[{"x":437,"y":583,"on":true},{"x":468,"y":617,"on":false},{"x":478,"y":663,"on":true},{"x":462,"y":666,"on":false},{"x":451,"y":677,"on":true},{"x":437,"y":691,"on":false},{"x":437,"y":740,"on":false},{"x":466,"y":769,"on":false},{"x":514,"y":769,"on":false},{"x":543,"y":740,"on":false},{"x":543,"y":716,"on":true},{"x":543,"y":644,"on":false},{"x":511,"y":588,"on":true},{"x":498,"y":565,"on":false},{"x":479,"y":546,"on":true}]], "references": [], - "instructions": [64,11,70,58,2,0,1,18,1,4,5,2,74,75,176,23,80,88,64,32,0,6,6,74,75,0,1,1,64,75,0,5,5,0,95,0,0,0,75,75,0,4,4,2,95,3,1,2,2,65,2,76,27,75,176,29,80,88,64,32,0,6,1,6,131,0,1,1,64,75,0,5,5,0,95,0,0,0,75,75,0,4,4,2,95,3,1,2,2,65,2,76,27,64,36,0,6,1,6,131,0,1,1,64,75,0,5,5,0,95,0,0,0,75,75,0,2,2,65,75,0,4,4,3,95,0,3,3,73,3,76,89,89,64,10,29,43,42,38,17,22,38,7,9,27,43] + "instructions": "QAtGOgIAARIBBAUCSkuwF1BYQCAABgZKSwABAUBLAAUFAF8AAABLSwAEBAJfAwECAkECTBtLsB1QWEAgAAYBBoMAAQFASwAFBQBfAAAAS0sABAQCXwMBAgJBAkwbQCQABgEGgwABAUBLAAUFAF8AAABLSwACAkFLAAQEA18AAwNJA0xZWUAKHSsqJhEWJgcJGys=" }, "uni0221": { "name": "uni0221", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":411,"on":false},{"x":87,"y":472,"on":true},{"x":107,"y":507,"on":false},{"x":137,"y":524,"on":true},{"x":161,"y":538,"on":false},{"x":192,"y":538,"on":true},{"x":221,"y":538,"on":false},{"x":243,"y":525,"on":true},{"x":270,"y":509,"on":false},{"x":289,"y":476,"on":true},{"x":292,"y":472,"on":false},{"x":294,"y":467,"on":true},{"x":294,"y":735,"on":true},{"x":374,"y":735,"on":true},{"x":374,"y":206,"on":true},{"x":391,"y":210,"on":false},{"x":409,"y":210,"on":true},{"x":443,"y":210,"on":false},{"x":469,"y":195,"on":true},{"x":489,"y":184,"on":false},{"x":500,"y":164,"on":true},{"x":515,"y":137,"on":false},{"x":516,"y":101,"on":true},{"x":516,"y":66,"on":false},{"x":500,"y":40,"on":true},{"x":488,"y":19,"on":false},{"x":468,"y":7,"on":true},{"x":441,"y":-8,"on":false},{"x":407,"y":-8,"on":true},{"x":375,"y":-8,"on":false},{"x":350,"y":7,"on":true},{"x":326,"y":21,"on":false},{"x":312,"y":45,"on":true},{"x":305,"y":56,"on":false},{"x":301,"y":71,"on":true},{"x":296,"y":65,"on":false},{"x":292,"y":58,"on":true},{"x":284,"y":44,"on":false},{"x":275,"y":33,"on":true},{"x":271,"y":26,"on":false},{"x":267,"y":19,"on":true},{"x":232,"y":-41,"on":false},{"x":217,"y":-109,"on":true},{"x":143,"y":-95,"on":true},{"x":153,"y":-49,"on":false},{"x":171,"y":-6,"on":true},{"x":153,"y":-3,"on":false},{"x":137,"y":6,"on":true},{"x":108,"y":23,"on":false},{"x":87,"y":58,"on":true},{"x":52,"y":119,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":146,"on":false},{"x":156,"y":104,"on":true},{"x":169,"y":82,"on":false},{"x":186,"y":72,"on":true},{"x":197,"y":67,"on":false},{"x":208,"y":65,"on":true},{"x":248,"y":130,"on":false},{"x":291,"y":165,"on":true},{"x":295,"y":190,"on":false},{"x":294,"y":220,"on":true},{"x":294,"y":310,"on":true},{"x":294,"y":388,"on":false},{"x":270,"y":431,"on":true},{"x":259,"y":451,"on":false},{"x":243,"y":459,"on":true},{"x":231,"y":466,"on":false},{"x":216,"y":466,"on":true},{"x":199,"y":466,"on":false},{"x":186,"y":458,"on":true},{"x":169,"y":448,"on":false},{"x":156,"y":426,"on":true},{"x":132,"y":384,"on":false},{"x":132,"y":310,"on":true}],[{"x":374,"y":112,"on":true},{"x":374,"y":82,"on":false},{"x":386,"y":69,"on":true},{"x":395,"y":60,"on":false},{"x":407,"y":61,"on":true},{"x":420,"y":61,"on":false},{"x":429,"y":70,"on":true},{"x":440,"y":81,"on":false},{"x":439,"y":122,"on":false},{"x":419,"y":142,"on":false},{"x":403,"y":142,"on":true},{"x":389,"y":142,"on":false},{"x":374,"y":135,"on":true}]], "references": [], - "instructions": [64,72,13,1,4,0,16,1,6,2,89,59,36,3,5,6,47,1,3,5,4,74,45,44,2,3,71,0,2,0,6,5,2,6,103,0,1,1,64,75,0,4,4,0,95,0,0,0,75,75,0,5,5,3,95,0,3,3,73,3,76,88,86,82,81,71,69,42,34,22,38,7,9,24,43] + "instructions": "QEgNAQQAEAEGAlk7JAMFBi8BAwUESi0sAgNHAAIABgUCBmcAAQFASwAEBABfAAAAS0sABQUDXwADA0kDTFhWUlFHRSoiFiYHCRgr" }, "uni0257": { "name": "uni0257", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":398,"on":false},{"x":85,"y":456,"on":true},{"x":109,"y":497,"on":false},{"x":146,"y":518,"on":true},{"x":180,"y":538,"on":false},{"x":225,"y":538,"on":true},{"x":267,"y":538,"on":false},{"x":299,"y":520,"on":true},{"x":334,"y":500,"on":false},{"x":357,"y":460,"on":true},{"x":359,"y":457,"on":false},{"x":360,"y":454,"on":true},{"x":360,"y":530,"on":true},{"x":360,"y":587,"on":false},{"x":384,"y":629,"on":true},{"x":407,"y":668,"on":false},{"x":448,"y":692,"on":true},{"x":498,"y":721,"on":false},{"x":570,"y":721,"on":true},{"x":570,"y":649,"on":true},{"x":526,"y":649,"on":false},{"x":495,"y":631,"on":true},{"x":440,"y":599,"on":false},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":225,"y":-8,"on":true},{"x":180,"y":-8,"on":false},{"x":146,"y":12,"on":true},{"x":109,"y":33,"on":false},{"x":85,"y":74,"on":true},{"x":52,"y":132,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":157,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":249,"y":466,"on":true},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [182,28,13,2,5,6,1,74,75,176,29,80,88,64,32,0,2,2,1,95,0,1,1,64,75,0,6,6,0,95,0,0,0,75,75,0,5,5,3,95,4,1,3,3,65,3,76,27,75,176,35,80,88,64,36,0,2,2,1,95,0,1,1,64,75,0,6,6,0,95,0,0,0,75,75,0,3,3,65,75,0,5,5,4,95,0,4,4,73,4,76,27,64,34,0,1,0,2,0,1,2,103,0,6,6,0,95,0,0,0,75,75,0,3,3,65,75,0,5,5,4,95,0,4,4,73,4,76,89,89,64,10,43,42,38,20,17,27,38,7,9,27,43] + "instructions": "thwNAgUGAUpLsB1QWEAgAAICAV8AAQFASwAGBgBfAAAAS0sABQUDXwQBAwNBA0wbS7AjUFhAJAACAgFfAAEBQEsABgYAXwAAAEtLAAMDQUsABQUEXwAEBEkETBtAIgABAAIAAQJnAAYGAF8AAABLSwADA0FLAAUFBF8ABARJBExZWUAKKyomFBEbJgcJGys=" }, "uni1E0B": { "name": "uni1E0B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":464,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni018C": { "name": "uni018C", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":398,"on":false},{"x":85,"y":456,"on":true},{"x":109,"y":497,"on":false},{"x":146,"y":518,"on":true},{"x":180,"y":538,"on":false},{"x":225,"y":538,"on":true},{"x":267,"y":538,"on":false},{"x":299,"y":520,"on":true},{"x":334,"y":500,"on":false},{"x":357,"y":460,"on":true},{"x":359,"y":457,"on":false},{"x":360,"y":454,"on":true},{"x":360,"y":663,"on":true},{"x":98,"y":663,"on":true},{"x":98,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":225,"y":-8,"on":true},{"x":180,"y":-8,"on":false},{"x":146,"y":12,"on":true},{"x":109,"y":33,"on":false},{"x":85,"y":74,"on":true},{"x":52,"y":132,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":157,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":249,"y":466,"on":true},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [182,20,13,2,5,6,1,74,75,176,29,80,88,64,32,0,1,1,2,93,0,2,2,64,75,0,6,6,0,95,0,0,0,75,75,0,5,5,3,95,4,1,3,3,65,3,76,27,64,36,0,1,1,2,93,0,2,2,64,75,0,6,6,0,95,0,0,0,75,75,0,3,3,65,75,0,5,5,4,95,0,4,4,73,4,76,89,64,10,43,42,38,17,17,22,38,7,9,27,43] + "instructions": "thQNAgUGAUpLsB1QWEAgAAEBAl0AAgJASwAGBgBfAAAAS0sABQUDXwQBAwNBA0wbQCQAAQECXQACAkBLAAYGAF8AAABLSwADA0FLAAUFBF8ABARJBExZQAorKiYRERYmBwkbKw==" }, "P": { "name": "P", "advanceWidth": 500, "contours": [[{"x":75,"y":0,"on":true},{"x":75,"y":735,"on":true},{"x":251,"y":735,"on":true},{"x":311,"y":735,"on":false},{"x":356,"y":710,"on":true},{"x":396,"y":687,"on":false},{"x":420,"y":645,"on":true},{"x":448,"y":596,"on":false},{"x":448,"y":455,"on":false},{"x":420,"y":406,"on":true},{"x":396,"y":364,"on":false},{"x":356,"y":341,"on":true},{"x":312,"y":316,"on":false},{"x":251,"y":315,"on":true},{"x":155,"y":315,"on":true},{"x":155,"y":0,"on":true}],[{"x":155,"y":387,"on":true},{"x":251,"y":387,"on":true},{"x":317,"y":387,"on":false},{"x":349,"y":442,"on":true},{"x":368,"y":476,"on":false},{"x":368,"y":575,"on":false},{"x":349,"y":608,"on":true},{"x":318,"y":663,"on":false},{"x":251,"y":663,"on":true},{"x":155,"y":663,"on":true}]], "references": [], - "instructions": [64,40,0,3,0,1,2,3,1,101,0,4,4,0,93,0,0,0,64,75,5,1,2,2,65,2,76,0,0,25,23,18,16,0,15,0,15,41,33,6,9,22,43] + "instructions": "QCgAAwABAgMBZQAEBABdAAAAQEsFAQICQQJMAAAZFxIQAA8ADykhBgkWKw==" }, "Rho": { "name": "Rho", "advanceWidth": 500, "contours": [], "references": [{"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0420": { "name": "uni0420", "advanceWidth": 500, "contours": [], "references": [{"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01A4": { "name": "uni01A4", "advanceWidth": 500, "contours": [[{"x":-22,"y":565,"on":true},{"x":-22,"y":644,"on":false},{"x":5,"y":690,"on":true},{"x":19,"y":715,"on":false},{"x":38,"y":726,"on":true},{"x":55,"y":735,"on":false},{"x":75,"y":735,"on":true},{"x":251,"y":735,"on":true},{"x":311,"y":735,"on":false},{"x":356,"y":710,"on":true},{"x":396,"y":687,"on":false},{"x":420,"y":645,"on":true},{"x":448,"y":596,"on":false},{"x":448,"y":455,"on":false},{"x":420,"y":406,"on":true},{"x":396,"y":364,"on":false},{"x":356,"y":341,"on":true},{"x":312,"y":316,"on":false},{"x":251,"y":315,"on":true},{"x":155,"y":315,"on":true},{"x":155,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":670,"on":true},{"x":71,"y":670,"on":false},{"x":68,"y":667,"on":true},{"x":50,"y":649,"on":false},{"x":50,"y":565,"on":true}],[{"x":155,"y":387,"on":true},{"x":251,"y":387,"on":true},{"x":317,"y":387,"on":false},{"x":349,"y":442,"on":true},{"x":368,"y":476,"on":false},{"x":368,"y":575,"on":false},{"x":349,"y":608,"on":true},{"x":318,"y":663,"on":false},{"x":251,"y":663,"on":true},{"x":155,"y":663,"on":true}]], "references": [], - "instructions": [64,55,22,1,5,0,1,74,6,1,3,5,4,5,3,4,126,0,4,0,1,2,4,1,101,0,5,5,0,93,0,0,0,64,75,0,2,2,65,2,76,0,0,36,34,29,27,0,26,0,26,17,41,53,7,9,23,43] + "instructions": "QDcWAQUAAUoGAQMFBAUDBH4ABAABAgQBZQAFBQBdAAAAQEsAAgJBAkwAACQiHRsAGgAaESk1BwkXKw==" }, "p": { "name": "p", "advanceWidth": 500, "contours": [[{"x":60,"y":-205,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":275,"y":538,"on":true},{"x":320,"y":538,"on":false},{"x":354,"y":518,"on":true},{"x":391,"y":497,"on":false},{"x":415,"y":456,"on":true},{"x":448,"y":398,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":132,"on":false},{"x":415,"y":74,"on":true},{"x":391,"y":33,"on":false},{"x":354,"y":12,"on":true},{"x":320,"y":-8,"on":false},{"x":275,"y":-8,"on":true},{"x":233,"y":-8,"on":false},{"x":201,"y":10,"on":true},{"x":166,"y":30,"on":false},{"x":143,"y":70,"on":true},{"x":141,"y":73,"on":false},{"x":140,"y":76,"on":true},{"x":140,"y":-205,"on":true}],[{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":251,"y":64,"on":true},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":371,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":453,"on":true},{"x":281,"y":466,"on":false},{"x":251,"y":466,"on":true},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":374,"on":false},{"x":140,"y":310,"on":true}]], "references": [], - "instructions": [182,28,3,2,4,5,1,74,75,176,29,80,88,64,28,0,5,5,0,95,1,1,0,0,67,75,0,4,4,2,95,0,2,2,73,75,6,1,3,3,69,3,76,27,64,32,0,0,0,67,75,0,5,5,1,95,0,1,1,75,75,0,4,4,2,95,0,2,2,73,75,6,1,3,3,69,3,76,89,64,16,0,0,50,48,37,35,0,29,0,29,43,38,17,7,9,23,43] + "instructions": "thwDAgQFAUpLsB1QWEAcAAUFAF8BAQAAQ0sABAQCXwACAklLBgEDA0UDTBtAIAAAAENLAAUFAV8AAQFLSwAEBAJfAAICSUsGAQMDRQNMWUAQAAAyMCUjAB0AHSsmEQcJFys=" }, "uni0440": { "name": "uni0440", "advanceWidth": 500, "contours": [], "references": [{"glyph":"p","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01A5": { "name": "uni01A5", "advanceWidth": 500, "contours": [[{"x":60,"y":-205,"on":true},{"x":60,"y":515,"on":true},{"x":60,"y":596,"on":false},{"x":92,"y":652,"on":true},{"x":117,"y":695,"on":false},{"x":199,"y":743,"on":false},{"x":311,"y":743,"on":false},{"x":353,"y":719,"on":true},{"x":394,"y":695,"on":false},{"x":419,"y":652,"on":true},{"x":438,"y":619,"on":false},{"x":445,"y":580,"on":true},{"x":369,"y":557,"on":true},{"x":364,"y":590,"on":false},{"x":349,"y":616,"on":true},{"x":333,"y":644,"on":false},{"x":308,"y":658,"on":true},{"x":285,"y":671,"on":false},{"x":225,"y":671,"on":false},{"x":203,"y":658,"on":true},{"x":179,"y":644,"on":false},{"x":163,"y":616,"on":true},{"x":140,"y":576,"on":false},{"x":140,"y":515,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":275,"y":538,"on":true},{"x":320,"y":538,"on":false},{"x":354,"y":518,"on":true},{"x":391,"y":497,"on":false},{"x":415,"y":456,"on":true},{"x":448,"y":398,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":132,"on":false},{"x":415,"y":74,"on":true},{"x":391,"y":33,"on":false},{"x":354,"y":12,"on":true},{"x":320,"y":-8,"on":false},{"x":275,"y":-8,"on":true},{"x":233,"y":-8,"on":false},{"x":201,"y":10,"on":true},{"x":166,"y":30,"on":false},{"x":143,"y":70,"on":true},{"x":141,"y":73,"on":false},{"x":140,"y":76,"on":true},{"x":140,"y":-205,"on":true}],[{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":251,"y":64,"on":true},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":371,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":453,"on":true},{"x":281,"y":466,"on":false},{"x":251,"y":466,"on":true},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":374,"on":false},{"x":140,"y":310,"on":true}]], "references": [], - "instructions": [64,66,12,11,2,2,1,49,24,2,5,6,2,74,0,1,1,0,95,0,0,0,72,75,0,6,6,2,95,0,2,2,75,75,0,5,5,3,95,0,3,3,73,75,7,1,4,4,69,4,76,0,0,71,69,58,56,0,50,0,50,43,43,27,21,8,9,24,43] + "instructions": "QEIMCwICATEYAgUGAkoAAQEAXwAAAEhLAAYGAl8AAgJLSwAFBQNfAAMDSUsHAQQERQRMAABHRTo4ADIAMisrGxUICRgr" }, "rho": { "name": "rho", "advanceWidth": 500, "contours": [[{"x":52,"y":-205,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":391,"on":false},{"x":84,"y":446,"on":true},{"x":109,"y":490,"on":false},{"x":193,"y":538,"on":false},{"x":307,"y":538,"on":false},{"x":349,"y":514,"on":true},{"x":390,"y":490,"on":false},{"x":416,"y":446,"on":true},{"x":448,"y":391,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":307,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":16,"on":true},{"x":141,"y":22,"on":false},{"x":132,"y":29,"on":true},{"x":132,"y":-205,"on":true}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":371,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":453,"on":true},{"x":281,"y":466,"on":false},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [64,48,20,1,1,3,1,74,0,4,4,0,95,0,0,0,55,75,0,3,3,1,95,0,1,1,53,75,5,1,2,2,49,2,76,0,0,40,39,28,27,0,21,0,21,26,21,6,8,22,43] + "instructions": "QDAUAQEDAUoABAQAXwAAADdLAAMDAV8AAQE1SwUBAgIxAkwAACgnHBsAFQAVGhUGCBYr" }, "R": { "name": "R", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":251,"y":735,"on":true},{"x":311,"y":735,"on":false},{"x":356,"y":710,"on":true},{"x":396,"y":687,"on":false},{"x":420,"y":645,"on":true},{"x":448,"y":596,"on":false},{"x":448,"y":455,"on":false},{"x":420,"y":406,"on":true},{"x":396,"y":364,"on":false},{"x":356,"y":341,"on":true},{"x":338,"y":331,"on":false},{"x":317,"y":324,"on":true},{"x":344,"y":284,"on":false},{"x":367,"y":246,"on":true},{"x":448,"y":105,"on":false},{"x":448,"y":0,"on":true},{"x":368,"y":0,"on":true},{"x":368,"y":90,"on":false},{"x":299,"y":210,"on":true},{"x":270,"y":261,"on":false},{"x":229,"y":315,"on":true},{"x":140,"y":315,"on":true},{"x":140,"y":0,"on":true}],[{"x":140,"y":387,"on":true},{"x":251,"y":387,"on":true},{"x":317,"y":387,"on":false},{"x":349,"y":442,"on":true},{"x":368,"y":476,"on":false},{"x":368,"y":575,"on":false},{"x":349,"y":608,"on":true},{"x":318,"y":663,"on":false},{"x":251,"y":663,"on":true},{"x":140,"y":663,"on":true}]], "references": [], - "instructions": [64,48,13,1,2,4,1,74,0,4,0,2,1,4,2,101,0,5,5,0,93,0,0,0,64,75,6,3,2,1,1,65,1,76,0,0,34,32,27,25,0,24,0,24,20,30,33,7,9,23,43] + "instructions": "QDANAQIEAUoABAACAQQCZQAFBQBdAAAAQEsGAwIBAUEBTAAAIiAbGQAYABgUHiEHCRcr" }, "uni0280": { "name": "uni0280", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":295,"y":530,"on":true},{"x":342,"y":530,"on":false},{"x":377,"y":510,"on":true},{"x":408,"y":492,"on":false},{"x":426,"y":460,"on":true},{"x":448,"y":422,"on":false},{"x":448,"y":315,"on":false},{"x":426,"y":277,"on":true},{"x":407,"y":245,"on":false},{"x":377,"y":227,"on":true},{"x":358,"y":216,"on":false},{"x":335,"y":211,"on":true},{"x":386,"y":156,"on":false},{"x":414,"y":106,"on":true},{"x":448,"y":47,"on":false},{"x":448,"y":0,"on":true},{"x":368,"y":0,"on":true},{"x":368,"y":36,"on":false},{"x":343,"y":79,"on":true},{"x":310,"y":137,"on":false},{"x":233,"y":207,"on":true},{"x":140,"y":207,"on":true},{"x":140,"y":0,"on":true}],[{"x":140,"y":279,"on":true},{"x":295,"y":279,"on":true},{"x":315,"y":279,"on":false},{"x":345,"y":297,"on":false},{"x":355,"y":313,"on":true},{"x":368,"y":335,"on":false},{"x":368,"y":401,"on":false},{"x":355,"y":424,"on":true},{"x":345,"y":441,"on":false},{"x":330,"y":449,"on":true},{"x":315,"y":458,"on":false},{"x":295,"y":458,"on":true},{"x":140,"y":458,"on":true}]], "references": [], - "instructions": [64,48,13,1,2,4,1,74,0,4,0,2,1,4,2,101,0,5,5,0,93,0,0,0,67,75,6,3,2,1,1,65,1,76,0,0,37,35,27,25,0,24,0,24,20,30,33,7,9,23,43] + "instructions": "QDANAQIEAUoABAACAQQCZQAFBQBdAAAAQ0sGAwIBAUEBTAAAJSMbGQAYABgUHiEHCRcr" }, "uni01A6": { "name": "uni01A6", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":625,"on":true},{"x":255,"y":625,"on":true},{"x":314,"y":625,"on":false},{"x":357,"y":600,"on":true},{"x":396,"y":577,"on":false},{"x":420,"y":536,"on":true},{"x":448,"y":488,"on":false},{"x":448,"y":350,"on":false},{"x":420,"y":301,"on":true},{"x":396,"y":260,"on":false},{"x":357,"y":238,"on":true},{"x":336,"y":226,"on":false},{"x":312,"y":219,"on":true},{"x":452,"y":-33,"on":false},{"x":452,"y":-205,"on":true},{"x":372,"y":-205,"on":true},{"x":372,"y":-40,"on":false},{"x":232,"y":203,"on":true},{"x":229,"y":208,"on":false},{"x":226,"y":213,"on":true},{"x":140,"y":213,"on":true},{"x":140,"y":0,"on":true}],[{"x":140,"y":285,"on":true},{"x":255,"y":285,"on":true},{"x":319,"y":285,"on":false},{"x":349,"y":338,"on":true},{"x":368,"y":371,"on":false},{"x":368,"y":467,"on":false},{"x":349,"y":500,"on":true},{"x":318,"y":553,"on":false},{"x":255,"y":553,"on":true},{"x":140,"y":553,"on":true}]], "references": [], - "instructions": [64,56,15,1,3,5,1,74,0,1,0,6,5,1,6,101,0,5,0,3,4,5,3,101,0,0,0,64,75,7,1,4,4,65,75,0,2,2,69,2,76,0,0,34,32,27,25,0,24,0,24,20,28,33,17,8,9,24,43] + "instructions": "QDgPAQMFAUoAAQAGBQEGZQAFAAMEBQNlAAAAQEsHAQQEQUsAAgJFAkwAACIgGxkAGAAYFBwhEQgJGCs=" }, "uni042F": { "name": "uni042F", "advanceWidth": 500, "contours": [[{"x":52,"y":0,"on":true},{"x":52,"y":105,"on":false},{"x":133,"y":246,"on":true},{"x":155,"y":285,"on":false},{"x":183,"y":324,"on":true},{"x":162,"y":330,"on":false},{"x":144,"y":341,"on":true},{"x":104,"y":364,"on":false},{"x":80,"y":406,"on":true},{"x":52,"y":455,"on":false},{"x":52,"y":596,"on":false},{"x":80,"y":645,"on":true},{"x":104,"y":687,"on":false},{"x":144,"y":710,"on":true},{"x":188,"y":735,"on":false},{"x":249,"y":735,"on":true},{"x":425,"y":735,"on":true},{"x":425,"y":0,"on":true},{"x":345,"y":0,"on":true},{"x":345,"y":315,"on":true},{"x":271,"y":315,"on":true},{"x":231,"y":261,"on":false},{"x":201,"y":210,"on":true},{"x":132,"y":90,"on":false},{"x":132,"y":0,"on":true}],[{"x":132,"y":574,"on":false},{"x":132,"y":476,"on":false},{"x":151,"y":442,"on":true},{"x":182,"y":387,"on":false},{"x":249,"y":387,"on":true},{"x":345,"y":387,"on":true},{"x":345,"y":663,"on":true},{"x":249,"y":663,"on":true},{"x":183,"y":663,"on":false},{"x":151,"y":608,"on":true}]], "references": [], - "instructions": [64,48,4,1,2,4,1,74,0,4,0,2,1,4,2,101,0,5,5,0,93,0,0,0,26,75,6,3,2,1,1,27,1,76,0,0,33,31,30,28,0,24,0,24,17,17,46,7,7,23,43] + "instructions": "QDAEAQIEAUoABAACAQQCZQAFBQBdAAAAGksGAwIBARsBTAAAIR8eHAAYABgRES4HBxcr" }, "uni044F": { "name": "uni044F", "advanceWidth": 500, "contours": [[{"x":52,"y":0,"on":true},{"x":52,"y":48,"on":false},{"x":86,"y":106,"on":true},{"x":114,"y":155,"on":false},{"x":165,"y":211,"on":true},{"x":142,"y":216,"on":false},{"x":123,"y":227,"on":true},{"x":92,"y":245,"on":false},{"x":74,"y":277,"on":true},{"x":52,"y":315,"on":false},{"x":52,"y":422,"on":false},{"x":74,"y":460,"on":true},{"x":93,"y":492,"on":false},{"x":123,"y":510,"on":true},{"x":158,"y":530,"on":false},{"x":205,"y":530,"on":true},{"x":425,"y":530,"on":true},{"x":425,"y":0,"on":true},{"x":345,"y":0,"on":true},{"x":345,"y":207,"on":true},{"x":267,"y":207,"on":true},{"x":191,"y":138,"on":false},{"x":157,"y":79,"on":true},{"x":132,"y":36,"on":false},{"x":132,"y":0,"on":true}],[{"x":132,"y":402,"on":false},{"x":132,"y":335,"on":false},{"x":145,"y":313,"on":true},{"x":155,"y":296,"on":false},{"x":170,"y":288,"on":true},{"x":185,"y":279,"on":false},{"x":205,"y":279,"on":true},{"x":345,"y":279,"on":true},{"x":345,"y":458,"on":true},{"x":205,"y":458,"on":true},{"x":185,"y":458,"on":false},{"x":155,"y":440,"on":false},{"x":145,"y":424,"on":true}]], "references": [], - "instructions": [64,48,4,1,2,4,1,74,0,4,0,2,1,4,2,101,0,5,5,0,93,0,0,0,28,75,6,3,2,1,1,27,1,76,0,0,35,33,32,30,0,24,0,24,17,17,46,7,7,23,43] + "instructions": "QDAEAQIEAUoABAACAQQCZQAFBQBdAAAAHEsGAwIBARsBTAAAIyEgHgAYABgRES4HBxcr" }, "uni0281": { "name": "uni0281", "advanceWidth": 500, "contours": [[{"x":75,"y":0,"on":true},{"x":75,"y":530,"on":true},{"x":155,"y":530,"on":true},{"x":155,"y":323,"on":true},{"x":233,"y":323,"on":true},{"x":309,"y":392,"on":false},{"x":343,"y":451,"on":true},{"x":368,"y":494,"on":false},{"x":368,"y":530,"on":true},{"x":448,"y":530,"on":true},{"x":448,"y":482,"on":false},{"x":414,"y":424,"on":true},{"x":386,"y":375,"on":false},{"x":335,"y":319,"on":true},{"x":358,"y":314,"on":false},{"x":377,"y":303,"on":true},{"x":408,"y":285,"on":false},{"x":426,"y":253,"on":true},{"x":448,"y":215,"on":false},{"x":448,"y":108,"on":false},{"x":426,"y":70,"on":true},{"x":407,"y":38,"on":false},{"x":377,"y":20,"on":true},{"x":342,"y":0,"on":false},{"x":295,"y":0,"on":true}],[{"x":155,"y":72,"on":true},{"x":295,"y":72,"on":true},{"x":315,"y":72,"on":false},{"x":345,"y":90,"on":false},{"x":355,"y":106,"on":true},{"x":368,"y":128,"on":false},{"x":368,"y":195,"on":false},{"x":355,"y":217,"on":true},{"x":345,"y":234,"on":false},{"x":330,"y":242,"on":true},{"x":315,"y":251,"on":false},{"x":295,"y":251,"on":true},{"x":155,"y":251,"on":true}]], "references": [], - "instructions": [64,48,13,1,5,1,1,74,0,1,0,5,4,1,5,101,2,1,0,0,67,75,0,4,4,3,94,6,1,3,3,65,3,76,0,0,37,35,27,25,0,24,0,23,20,17,17,7,9,23,43] + "instructions": "QDANAQUBAUoAAQAFBAEFZQIBAABDSwAEBANeBgEDA0EDTAAAJSMbGQAYABcUEREHCRcr" }, "r": { "name": "r", "advanceWidth": 500, "contours": [[{"x":120,"y":0,"on":true},{"x":120,"y":530,"on":true},{"x":200,"y":530,"on":true},{"x":200,"y":431,"on":true},{"x":207,"y":451,"on":false},{"x":217,"y":467,"on":true},{"x":239,"y":505,"on":false},{"x":270,"y":523,"on":true},{"x":295,"y":538,"on":false},{"x":328,"y":538,"on":true},{"x":363,"y":538,"on":false},{"x":393,"y":521,"on":true},{"x":424,"y":503,"on":false},{"x":442,"y":472,"on":true},{"x":451,"y":457,"on":false},{"x":455,"y":440,"on":true},{"x":380,"y":406,"on":true},{"x":377,"y":418,"on":false},{"x":371,"y":429,"on":true},{"x":360,"y":448,"on":false},{"x":343,"y":458,"on":true},{"x":329,"y":466,"on":false},{"x":311,"y":466,"on":true},{"x":287,"y":466,"on":false},{"x":268,"y":455,"on":true},{"x":245,"y":442,"on":false},{"x":229,"y":414,"on":true},{"x":200,"y":364,"on":false},{"x":200,"y":281,"on":true},{"x":200,"y":0,"on":true}]], "references": [], - "instructions": [183,16,15,3,3,3,2,1,74,75,176,29,80,88,64,18,0,2,2,0,95,1,1,0,0,67,75,4,1,3,3,65,3,76,27,64,22,0,0,0,67,75,0,2,2,1,95,0,1,1,75,75,4,1,3,3,65,3,76,89,64,12,0,0,0,29,0,29,43,38,17,5,9,23,43] + "instructions": "txAPAwMDAgFKS7AdUFhAEgACAgBfAQEAAENLBAEDA0EDTBtAFgAAAENLAAICAV8AAQFLSwQBAwNBA0xZQAwAAAAdAB0rJhEFCRcr" }, "uni0279": { "name": "uni0279", "advanceWidth": 500, "contours": [[{"x":45,"y":90,"on":true},{"x":120,"y":124,"on":true},{"x":123,"y":112,"on":false},{"x":129,"y":101,"on":true},{"x":140,"y":82,"on":false},{"x":157,"y":72,"on":true},{"x":171,"y":64,"on":false},{"x":189,"y":64,"on":true},{"x":213,"y":64,"on":false},{"x":232,"y":75,"on":true},{"x":255,"y":88,"on":false},{"x":271,"y":116,"on":true},{"x":300,"y":166,"on":false},{"x":300,"y":249,"on":true},{"x":300,"y":530,"on":true},{"x":380,"y":530,"on":true},{"x":380,"y":0,"on":true},{"x":300,"y":0,"on":true},{"x":300,"y":99,"on":true},{"x":293,"y":79,"on":false},{"x":283,"y":63,"on":true},{"x":261,"y":25,"on":false},{"x":230,"y":7,"on":true},{"x":205,"y":-8,"on":false},{"x":172,"y":-8,"on":true},{"x":137,"y":-8,"on":false},{"x":107,"y":9,"on":true},{"x":76,"y":27,"on":false},{"x":58,"y":58,"on":true},{"x":49,"y":73,"on":false}]], "references": [], - "instructions": [182,18,1,2,0,1,1,74,75,176,29,80,88,64,17,0,1,1,67,75,0,0,0,2,95,3,1,2,2,65,2,76,27,64,21,0,1,1,67,75,0,2,2,65,75,0,0,0,3,95,0,3,3,73,3,76,89,182,38,17,22,38,4,9,24,43] + "instructions": "thIBAgABAUpLsB1QWEARAAEBQ0sAAAACXwMBAgJBAkwbQBUAAQFDSwACAkFLAAAAA18AAwNJA0xZtiYRFiYECRgr" }, "uni027C": { "name": "uni027C", "advanceWidth": 500, "contours": [[{"x":120,"y":-205,"on":true},{"x":120,"y":530,"on":true},{"x":200,"y":530,"on":true},{"x":200,"y":431,"on":true},{"x":207,"y":451,"on":false},{"x":217,"y":467,"on":true},{"x":239,"y":505,"on":false},{"x":270,"y":523,"on":true},{"x":295,"y":538,"on":false},{"x":328,"y":538,"on":true},{"x":363,"y":538,"on":false},{"x":393,"y":521,"on":true},{"x":424,"y":503,"on":false},{"x":442,"y":472,"on":true},{"x":451,"y":457,"on":false},{"x":455,"y":440,"on":true},{"x":380,"y":406,"on":true},{"x":377,"y":418,"on":false},{"x":371,"y":429,"on":true},{"x":360,"y":448,"on":false},{"x":343,"y":458,"on":true},{"x":329,"y":466,"on":false},{"x":311,"y":466,"on":true},{"x":287,"y":466,"on":false},{"x":268,"y":455,"on":true},{"x":245,"y":442,"on":false},{"x":229,"y":414,"on":true},{"x":200,"y":364,"on":false},{"x":200,"y":281,"on":true},{"x":200,"y":-205,"on":true}]], "references": [], - "instructions": [183,16,15,3,3,3,2,1,74,75,176,29,80,88,64,18,0,2,2,0,95,1,1,0,0,67,75,4,1,3,3,69,3,76,27,64,22,0,0,0,67,75,0,2,2,1,95,0,1,1,75,75,4,1,3,3,69,3,76,89,64,12,0,0,0,29,0,29,43,38,17,5,9,23,43] + "instructions": "txAPAwMDAgFKS7AdUFhAEgACAgBfAQEAAENLBAEDA0UDTBtAFgAAAENLAAICAV8AAQFLSwQBAwNFA0xZQAwAAAAdAB0rJhEFCRcr" }, "uni027A": { "name": "uni027A", "advanceWidth": 500, "contours": [[{"x":45,"y":90,"on":true},{"x":120,"y":124,"on":true},{"x":123,"y":112,"on":false},{"x":129,"y":101,"on":true},{"x":140,"y":82,"on":false},{"x":157,"y":72,"on":true},{"x":171,"y":64,"on":false},{"x":189,"y":64,"on":true},{"x":213,"y":64,"on":false},{"x":232,"y":75,"on":true},{"x":255,"y":88,"on":false},{"x":271,"y":116,"on":true},{"x":300,"y":166,"on":false},{"x":300,"y":249,"on":true},{"x":300,"y":735,"on":true},{"x":380,"y":735,"on":true},{"x":380,"y":0,"on":true},{"x":300,"y":0,"on":true},{"x":300,"y":99,"on":true},{"x":293,"y":79,"on":false},{"x":283,"y":63,"on":true},{"x":261,"y":25,"on":false},{"x":230,"y":7,"on":true},{"x":205,"y":-8,"on":false},{"x":172,"y":-8,"on":true},{"x":137,"y":-8,"on":false},{"x":107,"y":9,"on":true},{"x":76,"y":27,"on":false},{"x":58,"y":58,"on":true},{"x":49,"y":73,"on":false}]], "references": [], - "instructions": [182,18,1,2,0,1,1,74,75,176,29,80,88,64,17,0,1,1,64,75,0,0,0,2,95,3,1,2,2,65,2,76,27,64,21,0,1,1,64,75,0,2,2,65,75,0,0,0,3,95,0,3,3,73,3,76,89,182,38,17,22,38,4,9,24,43] + "instructions": "thIBAgABAUpLsB1QWEARAAEBQEsAAAACXwMBAgJBAkwbQBUAAQFASwACAkFLAAAAA18AAwNJA0xZtiYRFiYECRgr" }, "uni027D": { "name": "uni027D", "advanceWidth": 500, "contours": [[{"x":120,"y":0,"on":true},{"x":120,"y":530,"on":true},{"x":200,"y":530,"on":true},{"x":200,"y":431,"on":true},{"x":207,"y":451,"on":false},{"x":217,"y":467,"on":true},{"x":239,"y":505,"on":false},{"x":270,"y":523,"on":true},{"x":295,"y":538,"on":false},{"x":328,"y":538,"on":true},{"x":363,"y":538,"on":false},{"x":393,"y":521,"on":true},{"x":424,"y":503,"on":false},{"x":442,"y":472,"on":true},{"x":451,"y":457,"on":false},{"x":455,"y":440,"on":true},{"x":380,"y":406,"on":true},{"x":377,"y":418,"on":false},{"x":371,"y":429,"on":true},{"x":360,"y":448,"on":false},{"x":343,"y":458,"on":true},{"x":329,"y":466,"on":false},{"x":311,"y":466,"on":true},{"x":287,"y":466,"on":false},{"x":268,"y":455,"on":true},{"x":245,"y":442,"on":false},{"x":229,"y":414,"on":true},{"x":200,"y":364,"on":false},{"x":200,"y":281,"on":true},{"x":200,"y":0,"on":true},{"x":200,"y":-47,"on":false},{"x":214,"y":-71,"on":true},{"x":226,"y":-91,"on":false},{"x":246,"y":-103,"on":true},{"x":273,"y":-119,"on":false},{"x":330,"y":-119,"on":true},{"x":330,"y":-191,"on":true},{"x":238,"y":-191,"on":false},{"x":194,"y":-166,"on":true},{"x":161,"y":-147,"on":false},{"x":142,"y":-114,"on":true},{"x":120,"y":-75,"on":false}]], "references": [], - "instructions": [183,16,15,3,3,3,2,1,74,75,176,29,80,88,64,22,0,2,2,0,95,1,1,0,0,67,75,0,3,3,4,95,0,4,4,69,4,76,27,75,176,35,80,88,64,26,0,0,0,67,75,0,2,2,1,95,0,1,1,75,75,0,3,3,4,95,0,4,4,69,4,76,27,64,23,0,3,0,4,3,4,99,0,0,0,67,75,0,2,2,1,95,0,1,1,75,2,76,89,89,183,17,27,43,38,17,5,9,25,43] + "instructions": "txAPAwMDAgFKS7AdUFhAFgACAgBfAQEAAENLAAMDBF8ABARFBEwbS7AjUFhAGgAAAENLAAICAV8AAQFLSwADAwRfAAQERQRMG0AXAAMABAMEYwAAAENLAAICAV8AAQFLAkxZWbcRGysmEQUJGSs=" }, "uni027B": { "name": "uni027B", "advanceWidth": 500, "contours": [[{"x":45,"y":90,"on":true},{"x":120,"y":124,"on":true},{"x":123,"y":112,"on":false},{"x":129,"y":101,"on":true},{"x":140,"y":82,"on":false},{"x":157,"y":72,"on":true},{"x":171,"y":64,"on":false},{"x":189,"y":64,"on":true},{"x":213,"y":64,"on":false},{"x":232,"y":75,"on":true},{"x":255,"y":88,"on":false},{"x":271,"y":116,"on":true},{"x":300,"y":166,"on":false},{"x":300,"y":249,"on":true},{"x":300,"y":530,"on":true},{"x":380,"y":530,"on":true},{"x":380,"y":0,"on":true},{"x":380,"y":-47,"on":false},{"x":394,"y":-71,"on":true},{"x":406,"y":-91,"on":false},{"x":426,"y":-103,"on":true},{"x":453,"y":-119,"on":false},{"x":510,"y":-119,"on":true},{"x":510,"y":-191,"on":true},{"x":418,"y":-191,"on":false},{"x":374,"y":-166,"on":true},{"x":341,"y":-147,"on":false},{"x":322,"y":-114,"on":true},{"x":300,"y":-75,"on":false},{"x":300,"y":0,"on":true},{"x":300,"y":99,"on":true},{"x":293,"y":79,"on":false},{"x":283,"y":63,"on":true},{"x":261,"y":25,"on":false},{"x":230,"y":7,"on":true},{"x":205,"y":-8,"on":false},{"x":172,"y":-8,"on":true},{"x":137,"y":-8,"on":false},{"x":107,"y":9,"on":true},{"x":76,"y":27,"on":false},{"x":58,"y":58,"on":true},{"x":49,"y":73,"on":false}]], "references": [], - "instructions": [182,30,1,2,0,1,1,74,75,176,35,80,88,64,26,0,1,1,67,75,0,0,0,4,95,0,4,4,73,75,0,2,2,3,95,0,3,3,69,3,76,27,64,23,0,2,0,3,2,3,99,0,1,1,67,75,0,0,0,4,95,0,4,4,73,4,76,89,183,43,17,22,22,38,5,9,25,43] + "instructions": "th4BAgABAUpLsCNQWEAaAAEBQ0sAAAAEXwAEBElLAAICA18AAwNFA0wbQBcAAgADAgNjAAEBQ0sAAAAEXwAEBEkETFm3KxEWFiYFCRkr" }, "uni027E": { "name": "uni027E", "advanceWidth": 500, "contours": [[{"x":120,"y":0,"on":true},{"x":120,"y":310,"on":true},{"x":120,"y":395,"on":false},{"x":153,"y":452,"on":true},{"x":177,"y":494,"on":false},{"x":216,"y":516,"on":true},{"x":253,"y":538,"on":false},{"x":353,"y":538,"on":false},{"x":391,"y":516,"on":true},{"x":435,"y":490,"on":false},{"x":460,"y":440,"on":true},{"x":388,"y":408,"on":true},{"x":379,"y":427,"on":false},{"x":366,"y":441,"on":true},{"x":341,"y":466,"on":false},{"x":303,"y":466,"on":true},{"x":279,"y":466,"on":false},{"x":260,"y":455,"on":true},{"x":238,"y":443,"on":false},{"x":224,"y":417,"on":true},{"x":200,"y":376,"on":false},{"x":200,"y":310,"on":true},{"x":200,"y":0,"on":true}]], "references": [], - "instructions": [64,35,11,10,2,2,1,1,74,0,1,1,0,95,0,0,0,75,75,3,1,2,2,65,2,76,0,0,0,22,0,22,39,22,4,9,22,43] + "instructions": "QCMLCgICAQFKAAEBAF8AAABLSwMBAgJBAkwAAAAWABYnFgQJFis=" }, "uni2C79": { "name": "uni2C79", "advanceWidth": 500, "contours": [[{"x":170,"y":649,"on":true},{"x":170,"y":721,"on":true},{"x":262,"y":721,"on":false},{"x":306,"y":696,"on":true},{"x":339,"y":677,"on":false},{"x":358,"y":644,"on":true},{"x":380,"y":605,"on":false},{"x":380,"y":530,"on":true},{"x":380,"y":522,"on":true},{"x":300,"y":522,"on":true},{"x":300,"y":530,"on":true},{"x":300,"y":577,"on":false},{"x":286,"y":601,"on":true},{"x":274,"y":621,"on":false},{"x":254,"y":633,"on":true},{"x":227,"y":649,"on":false}],[{"x":45,"y":90,"on":true},{"x":120,"y":124,"on":true},{"x":123,"y":112,"on":false},{"x":129,"y":101,"on":true},{"x":140,"y":82,"on":false},{"x":157,"y":72,"on":true},{"x":171,"y":64,"on":false},{"x":189,"y":64,"on":true},{"x":213,"y":64,"on":false},{"x":232,"y":75,"on":true},{"x":255,"y":88,"on":false},{"x":271,"y":116,"on":true},{"x":300,"y":166,"on":false},{"x":300,"y":249,"on":true},{"x":300,"y":530,"on":true},{"x":380,"y":530,"on":true},{"x":380,"y":0,"on":true},{"x":300,"y":0,"on":true},{"x":300,"y":99,"on":true},{"x":293,"y":79,"on":false},{"x":283,"y":63,"on":true},{"x":261,"y":25,"on":false},{"x":230,"y":7,"on":true},{"x":205,"y":-8,"on":false},{"x":172,"y":-8,"on":true},{"x":137,"y":-8,"on":false},{"x":107,"y":9,"on":true},{"x":76,"y":27,"on":false},{"x":58,"y":58,"on":true},{"x":49,"y":73,"on":false}]], "references": [], - "instructions": [64,13,34,17,9,3,2,3,1,74,7,1,3,1,73,75,176,29,80,88,64,28,6,1,1,1,0,95,0,0,0,64,75,0,3,3,67,75,0,2,2,4,95,5,1,4,4,65,4,76,27,75,176,35,80,88,64,32,6,1,1,1,0,95,0,0,0,64,75,0,3,3,67,75,0,4,4,65,75,0,2,2,5,95,0,5,5,73,5,76,27,64,30,0,0,6,1,1,3,0,1,103,0,3,3,67,75,0,4,4,65,75,0,2,2,5,95,0,5,5,73,5,76,89,89,64,18,0,0,41,39,33,32,31,30,24,22,0,15,0,15,17,7,9,21,43] + "instructions": "QA0iEQkDAgMBSgcBAwFJS7AdUFhAHAYBAQEAXwAAAEBLAAMDQ0sAAgIEXwUBBARBBEwbS7AjUFhAIAYBAQEAXwAAAEBLAAMDQ0sABARBSwACAgVfAAUFSQVMG0AeAAAGAQEDAAFnAAMDQ0sABARBSwACAgVfAAUFSQVMWVlAEgAAKSchIB8eGBYADwAPEQcJFSs=" }, "C": { "name": "C", "advanceWidth": 500, "contours": [[{"x":52,"y":195,"on":true},{"x":52,"y":540,"on":true},{"x":52,"y":606,"on":false},{"x":79,"y":654,"on":true},{"x":102,"y":694,"on":false},{"x":143,"y":717,"on":true},{"x":188,"y":743,"on":false},{"x":312,"y":743,"on":false},{"x":357,"y":717,"on":true},{"x":397,"y":694,"on":false},{"x":420,"y":653,"on":true},{"x":439,"y":619,"on":false},{"x":445,"y":580,"on":true},{"x":367,"y":566,"on":true},{"x":364,"y":594,"on":false},{"x":350,"y":616,"on":true},{"x":335,"y":642,"on":false},{"x":311,"y":656,"on":true},{"x":285,"y":671,"on":false},{"x":215,"y":671,"on":false},{"x":189,"y":656,"on":true},{"x":165,"y":642,"on":false},{"x":150,"y":617,"on":true},{"x":132,"y":585,"on":false},{"x":132,"y":540,"on":true},{"x":132,"y":195,"on":true},{"x":132,"y":150,"on":false},{"x":150,"y":118,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":285,"y":64,"on":false},{"x":311,"y":79,"on":true},{"x":336,"y":93,"on":false},{"x":350,"y":119,"on":true},{"x":363,"y":142,"on":false},{"x":367,"y":169,"on":true},{"x":445,"y":155,"on":true},{"x":440,"y":115,"on":false},{"x":420,"y":82,"on":true},{"x":397,"y":41,"on":false},{"x":357,"y":18,"on":true},{"x":312,"y":-8,"on":false},{"x":188,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":81,"on":true},{"x":52,"y":128,"on":false}]], "references": [], - "instructions": [64,37,37,36,13,12,4,2,1,1,74,0,1,1,0,95,0,0,0,72,75,0,2,2,3,95,0,3,3,73,3,76,27,27,27,22,4,9,24,43] + "instructions": "QCUlJA0MBAIBAUoAAQEAXwAAAEhLAAICA18AAwNJA0wbGxsWBAkYKw==" }, "uni0421": { "name": "uni0421", "advanceWidth": 500, "contours": [], "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni03F9": { "name": "uni03F9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "c": { "name": "c", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":390,"on":false},{"x":84,"y":446,"on":true},{"x":109,"y":490,"on":false},{"x":151,"y":513,"on":true},{"x":194,"y":538,"on":false},{"x":309,"y":538,"on":false},{"x":352,"y":513,"on":true},{"x":394,"y":489,"on":false},{"x":419,"y":446,"on":true},{"x":438,"y":414,"on":false},{"x":445,"y":375,"on":true},{"x":369,"y":353,"on":true},{"x":364,"y":384,"on":false},{"x":349,"y":409,"on":true},{"x":333,"y":437,"on":false},{"x":307,"y":452,"on":true},{"x":283,"y":466,"on":false},{"x":251,"y":466,"on":true},{"x":220,"y":466,"on":false},{"x":196,"y":452,"on":true},{"x":171,"y":437,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true},{"x":132,"y":220,"on":true},{"x":132,"y":160,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":78,"on":true},{"x":220,"y":64,"on":false},{"x":251,"y":64,"on":true},{"x":283,"y":64,"on":false},{"x":307,"y":78,"on":true},{"x":333,"y":93,"on":false},{"x":349,"y":121,"on":true},{"x":363,"y":146,"on":false},{"x":369,"y":177,"on":true},{"x":445,"y":155,"on":true},{"x":438,"y":117,"on":false},{"x":419,"y":84,"on":true},{"x":394,"y":40,"on":false},{"x":352,"y":17,"on":true},{"x":309,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":17,"on":true},{"x":109,"y":41,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":140,"on":false}]], "references": [], - "instructions": [64,37,39,38,13,12,4,2,1,1,74,0,1,1,0,95,0,0,0,75,75,0,2,2,3,95,0,3,3,73,3,76,27,43,43,22,4,9,24,43] + "instructions": "QCUnJg0MBAIBAUoAAQEAXwAAAEtLAAICA18AAwNJA0wbKysWBAkYKw==" }, "uni0441": { "name": "uni0441", "advanceWidth": 500, "contours": [], "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni03F2": { "name": "uni03F2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0186": { "name": "uni0186", "advanceWidth": 500, "contours": [[{"x":55,"y":155,"on":true},{"x":133,"y":169,"on":true},{"x":136,"y":141,"on":false},{"x":150,"y":119,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":285,"y":64,"on":false},{"x":311,"y":79,"on":true},{"x":335,"y":93,"on":false},{"x":350,"y":118,"on":true},{"x":368,"y":150,"on":false},{"x":368,"y":195,"on":true},{"x":368,"y":540,"on":true},{"x":368,"y":585,"on":false},{"x":350,"y":617,"on":true},{"x":335,"y":642,"on":false},{"x":311,"y":656,"on":true},{"x":285,"y":671,"on":false},{"x":215,"y":671,"on":false},{"x":189,"y":656,"on":true},{"x":164,"y":642,"on":false},{"x":150,"y":616,"on":true},{"x":137,"y":593,"on":false},{"x":133,"y":566,"on":true},{"x":55,"y":580,"on":true},{"x":60,"y":620,"on":false},{"x":80,"y":653,"on":true},{"x":103,"y":694,"on":false},{"x":143,"y":717,"on":true},{"x":188,"y":743,"on":false},{"x":312,"y":743,"on":false},{"x":357,"y":717,"on":true},{"x":397,"y":694,"on":false},{"x":421,"y":654,"on":true},{"x":448,"y":607,"on":false},{"x":448,"y":540,"on":true},{"x":448,"y":195,"on":true},{"x":448,"y":129,"on":false},{"x":421,"y":81,"on":true},{"x":398,"y":41,"on":false},{"x":357,"y":18,"on":true},{"x":312,"y":-8,"on":false},{"x":188,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":80,"y":82,"on":true},{"x":61,"y":116,"on":false}]], "references": [], - "instructions": [64,36,25,24,1,3,0,1,1,74,0,1,1,2,95,0,2,2,72,75,0,0,0,3,95,0,3,3,73,3,76,27,27,27,22,4,9,24,43] + "instructions": "QCQZGAEDAAEBSgABAQJfAAICSEsAAAADXwADA0kDTBsbGxYECRgr" }, "uni0254": { "name": "uni0254", "advanceWidth": 500, "contours": [[{"x":55,"y":155,"on":true},{"x":131,"y":177,"on":true},{"x":136,"y":146,"on":false},{"x":151,"y":121,"on":true},{"x":167,"y":93,"on":false},{"x":193,"y":78,"on":true},{"x":217,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":280,"y":64,"on":false},{"x":304,"y":78,"on":true},{"x":329,"y":93,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":370,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":452,"on":true},{"x":280,"y":466,"on":false},{"x":249,"y":466,"on":true},{"x":217,"y":466,"on":false},{"x":193,"y":452,"on":true},{"x":167,"y":437,"on":false},{"x":151,"y":409,"on":true},{"x":137,"y":384,"on":false},{"x":131,"y":353,"on":true},{"x":55,"y":375,"on":true},{"x":62,"y":413,"on":false},{"x":81,"y":446,"on":true},{"x":106,"y":490,"on":false},{"x":148,"y":513,"on":true},{"x":191,"y":538,"on":false},{"x":307,"y":538,"on":false},{"x":349,"y":513,"on":true},{"x":391,"y":489,"on":false},{"x":416,"y":446,"on":true},{"x":448,"y":390,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":140,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":349,"y":17,"on":true},{"x":306,"y":-8,"on":false},{"x":191,"y":-8,"on":false},{"x":148,"y":17,"on":true},{"x":106,"y":41,"on":false},{"x":81,"y":84,"on":true},{"x":62,"y":116,"on":false}]], "references": [], - "instructions": [64,36,27,26,1,3,0,1,1,74,0,1,1,2,95,0,2,2,75,75,0,0,0,3,95,0,3,3,73,3,76,27,27,43,38,4,9,24,43] + "instructions": "QCQbGgEDAAEBSgABAQJfAAICS0sAAAADXwADA0kDTBsbKyYECRgr" }, "uni0297": { "name": "uni0297", "advanceWidth": 500, "contours": [], "references": [{"glyph":"C","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,255,51,176,51,43] + "instructions": "sQABuP8zsDMr" }, "uni0187": { "name": "uni0187", "advanceWidth": 500, "contours": [[{"x":52,"y":195,"on":true},{"x":52,"y":540,"on":true},{"x":52,"y":606,"on":false},{"x":79,"y":654,"on":true},{"x":102,"y":694,"on":false},{"x":143,"y":717,"on":true},{"x":188,"y":743,"on":false},{"x":312,"y":743,"on":false},{"x":357,"y":717,"on":true},{"x":361,"y":715,"on":false},{"x":365,"y":712,"on":true},{"x":365,"y":735,"on":true},{"x":365,"y":792,"on":false},{"x":389,"y":834,"on":true},{"x":412,"y":873,"on":false},{"x":453,"y":897,"on":true},{"x":503,"y":926,"on":false},{"x":575,"y":926,"on":true},{"x":575,"y":854,"on":true},{"x":531,"y":854,"on":false},{"x":500,"y":836,"on":true},{"x":445,"y":804,"on":false},{"x":445,"y":735,"on":true},{"x":445,"y":580,"on":true},{"x":367,"y":566,"on":true},{"x":364,"y":594,"on":false},{"x":350,"y":616,"on":true},{"x":335,"y":642,"on":false},{"x":311,"y":656,"on":true},{"x":285,"y":671,"on":false},{"x":215,"y":671,"on":false},{"x":189,"y":656,"on":true},{"x":165,"y":642,"on":false},{"x":150,"y":617,"on":true},{"x":132,"y":585,"on":false},{"x":132,"y":540,"on":true},{"x":132,"y":195,"on":true},{"x":132,"y":150,"on":false},{"x":150,"y":118,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":285,"y":64,"on":false},{"x":311,"y":79,"on":true},{"x":336,"y":93,"on":false},{"x":350,"y":119,"on":true},{"x":363,"y":142,"on":false},{"x":367,"y":169,"on":true},{"x":445,"y":155,"on":true},{"x":440,"y":115,"on":false},{"x":420,"y":82,"on":true},{"x":397,"y":41,"on":false},{"x":357,"y":18,"on":true},{"x":312,"y":-8,"on":false},{"x":188,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":81,"on":true},{"x":52,"y":128,"on":false}]], "references": [], - "instructions": [64,51,10,1,3,0,48,47,24,23,4,4,3,2,74,0,1,0,2,0,1,2,103,0,3,3,0,95,0,0,0,72,75,0,4,4,5,95,0,5,5,73,5,76,27,27,26,17,25,22,6,9,26,43] + "instructions": "QDMKAQMAMC8YFwQEAwJKAAEAAgABAmcAAwMAXwAAAEhLAAQEBV8ABQVJBUwbGxoRGRYGCRor" }, "uni0188": { "name": "uni0188", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":390,"on":false},{"x":84,"y":446,"on":true},{"x":109,"y":490,"on":false},{"x":151,"y":513,"on":true},{"x":194,"y":538,"on":false},{"x":309,"y":538,"on":false},{"x":352,"y":513,"on":true},{"x":359,"y":509,"on":false},{"x":365,"y":505,"on":true},{"x":365,"y":530,"on":true},{"x":365,"y":587,"on":false},{"x":389,"y":629,"on":true},{"x":412,"y":668,"on":false},{"x":453,"y":692,"on":true},{"x":503,"y":721,"on":false},{"x":575,"y":721,"on":true},{"x":575,"y":649,"on":true},{"x":531,"y":649,"on":false},{"x":500,"y":631,"on":true},{"x":445,"y":599,"on":false},{"x":445,"y":530,"on":true},{"x":445,"y":375,"on":true},{"x":369,"y":353,"on":true},{"x":364,"y":384,"on":false},{"x":349,"y":409,"on":true},{"x":333,"y":437,"on":false},{"x":307,"y":452,"on":true},{"x":283,"y":466,"on":false},{"x":251,"y":466,"on":true},{"x":220,"y":466,"on":false},{"x":196,"y":452,"on":true},{"x":171,"y":437,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true},{"x":132,"y":220,"on":true},{"x":132,"y":160,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":78,"on":true},{"x":220,"y":64,"on":false},{"x":251,"y":64,"on":true},{"x":283,"y":64,"on":false},{"x":307,"y":78,"on":true},{"x":333,"y":93,"on":false},{"x":349,"y":121,"on":true},{"x":363,"y":146,"on":false},{"x":369,"y":177,"on":true},{"x":445,"y":155,"on":true},{"x":438,"y":117,"on":false},{"x":419,"y":84,"on":true},{"x":394,"y":40,"on":false},{"x":352,"y":17,"on":true},{"x":309,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":17,"on":true},{"x":109,"y":41,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":140,"on":false}]], "references": [], - "instructions": [64,13,10,1,3,0,50,49,24,23,4,4,3,2,74,75,176,35,80,88,64,31,0,2,2,1,95,0,1,1,64,75,0,3,3,0,95,0,0,0,75,75,0,4,4,5,95,0,5,5,73,5,76,27,64,29,0,1,0,2,0,1,2,103,0,3,3,0,95,0,0,0,75,75,0,4,4,5,95,0,5,5,73,5,76,89,64,9,27,43,42,17,25,22,6,9,26,43] + "instructions": "QA0KAQMAMjEYFwQEAwJKS7AjUFhAHwACAgFfAAEBQEsAAwMAXwAAAEtLAAQEBV8ABQVJBUwbQB0AAQACAAECZwADAwBfAAAAS0sABAQFXwAFBUkFTFlACRsrKhEZFgYJGis=" }, "uniA792": { "name": "uniA792", "advanceWidth": 500, "contours": [[{"x":18,"y":346,"on":true},{"x":18,"y":418,"on":true},{"x":52,"y":418,"on":true},{"x":52,"y":540,"on":true},{"x":52,"y":606,"on":false},{"x":79,"y":654,"on":true},{"x":102,"y":694,"on":false},{"x":143,"y":717,"on":true},{"x":188,"y":743,"on":false},{"x":312,"y":743,"on":false},{"x":357,"y":717,"on":true},{"x":397,"y":694,"on":false},{"x":420,"y":653,"on":true},{"x":439,"y":619,"on":false},{"x":445,"y":580,"on":true},{"x":367,"y":566,"on":true},{"x":364,"y":594,"on":false},{"x":350,"y":616,"on":true},{"x":335,"y":642,"on":false},{"x":311,"y":656,"on":true},{"x":285,"y":671,"on":false},{"x":215,"y":671,"on":false},{"x":189,"y":656,"on":true},{"x":165,"y":642,"on":false},{"x":150,"y":617,"on":true},{"x":132,"y":585,"on":false},{"x":132,"y":540,"on":true},{"x":132,"y":418,"on":true},{"x":262,"y":418,"on":true},{"x":262,"y":346,"on":true},{"x":132,"y":346,"on":true},{"x":132,"y":195,"on":true},{"x":132,"y":150,"on":false},{"x":150,"y":118,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":285,"y":64,"on":false},{"x":311,"y":79,"on":true},{"x":336,"y":93,"on":false},{"x":350,"y":119,"on":true},{"x":363,"y":142,"on":false},{"x":367,"y":169,"on":true},{"x":445,"y":155,"on":true},{"x":440,"y":115,"on":false},{"x":420,"y":82,"on":true},{"x":397,"y":41,"on":false},{"x":357,"y":18,"on":true},{"x":312,"y":-8,"on":false},{"x":188,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":81,"on":true},{"x":52,"y":128,"on":false},{"x":52,"y":195,"on":true},{"x":52,"y":346,"on":true}]], "references": [], - "instructions": [64,60,15,14,2,0,2,43,42,2,5,4,2,74,3,1,0,8,7,2,4,5,0,4,101,0,2,2,1,95,0,1,1,72,75,0,5,5,6,95,0,6,6,73,6,76,0,0,0,55,0,55,27,22,17,22,27,22,17,9,9,27,43] + "instructions": "QDwPDgIAAisqAgUEAkoDAQAIBwIEBQAEZQACAgFfAAEBSEsABQUGXwAGBkkGTAAAADcANxsWERYbFhEJCRsr" }, "uniA793": { "name": "uniA793", "advanceWidth": 500, "contours": [[{"x":18,"y":240,"on":true},{"x":18,"y":312,"on":true},{"x":52,"y":312,"on":true},{"x":52,"y":391,"on":false},{"x":84,"y":446,"on":true},{"x":109,"y":490,"on":false},{"x":151,"y":513,"on":true},{"x":194,"y":538,"on":false},{"x":309,"y":538,"on":false},{"x":352,"y":513,"on":true},{"x":394,"y":489,"on":false},{"x":419,"y":446,"on":true},{"x":438,"y":414,"on":false},{"x":445,"y":375,"on":true},{"x":369,"y":353,"on":true},{"x":364,"y":384,"on":false},{"x":349,"y":409,"on":true},{"x":333,"y":437,"on":false},{"x":307,"y":452,"on":true},{"x":283,"y":466,"on":false},{"x":251,"y":466,"on":true},{"x":220,"y":466,"on":false},{"x":196,"y":452,"on":true},{"x":171,"y":437,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":371,"on":false},{"x":132,"y":312,"on":true},{"x":262,"y":312,"on":true},{"x":262,"y":240,"on":true},{"x":132,"y":240,"on":true},{"x":132,"y":220,"on":true},{"x":132,"y":160,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":78,"on":true},{"x":220,"y":64,"on":false},{"x":251,"y":64,"on":true},{"x":283,"y":64,"on":false},{"x":307,"y":78,"on":true},{"x":333,"y":93,"on":false},{"x":349,"y":121,"on":true},{"x":363,"y":146,"on":false},{"x":369,"y":177,"on":true},{"x":445,"y":155,"on":true},{"x":438,"y":117,"on":false},{"x":419,"y":84,"on":true},{"x":394,"y":40,"on":false},{"x":352,"y":17,"on":true},{"x":309,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":17,"on":true},{"x":109,"y":41,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":140,"on":false},{"x":52,"y":220,"on":true},{"x":52,"y":240,"on":true}]], "references": [], - "instructions": [64,60,14,13,2,0,2,43,42,2,5,4,2,74,3,1,0,8,7,2,4,5,0,4,101,0,2,2,1,95,0,1,1,75,75,0,5,5,6,95,0,6,6,73,6,76,0,0,0,55,0,55,27,38,17,21,43,21,17,9,9,27,43] + "instructions": "QDwODQIAAisqAgUEAkoDAQAIBwIEBQAEZQACAgFfAAEBS0sABQUGXwAGBkkGTAAAADcANxsmERUrFREJCRsr" }, "uni0255": { "name": "uni0255", "advanceWidth": 500, "contours": [[{"x":4,"y":-8,"on":true},{"x":20,"y":57,"on":false},{"x":55,"y":116,"on":true},{"x":60,"y":125,"on":false},{"x":65,"y":133,"on":true},{"x":52,"y":172,"on":false},{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":386,"on":false},{"x":83,"y":438,"on":true},{"x":108,"y":481,"on":false},{"x":148,"y":505,"on":true},{"x":192,"y":530,"on":false},{"x":311,"y":530,"on":false},{"x":355,"y":505,"on":true},{"x":396,"y":481,"on":false},{"x":421,"y":438,"on":true},{"x":438,"y":409,"on":false},{"x":445,"y":375,"on":true},{"x":369,"y":353,"on":true},{"x":364,"y":380,"on":false},{"x":351,"y":401,"on":true},{"x":335,"y":429,"on":false},{"x":310,"y":444,"on":true},{"x":285,"y":458,"on":false},{"x":219,"y":458,"on":false},{"x":194,"y":444,"on":true},{"x":169,"y":429,"on":false},{"x":153,"y":402,"on":true},{"x":132,"y":365,"on":false},{"x":132,"y":310,"on":true},{"x":132,"y":217,"on":true},{"x":156,"y":240,"on":false},{"x":183,"y":256,"on":true},{"x":230,"y":283,"on":false},{"x":286,"y":283,"on":true},{"x":337,"y":283,"on":false},{"x":377,"y":260,"on":true},{"x":411,"y":241,"on":false},{"x":429,"y":208,"on":true},{"x":448,"y":176,"on":false},{"x":448,"y":98,"on":false},{"x":429,"y":64,"on":true},{"x":411,"y":33,"on":false},{"x":380,"y":16,"on":true},{"x":338,"y":-8,"on":false},{"x":276,"y":-8,"on":true},{"x":205,"y":-8,"on":false},{"x":155,"y":21,"on":true},{"x":131,"y":35,"on":false},{"x":111,"y":55,"on":true},{"x":92,"y":16,"on":false},{"x":82,"y":-26,"on":true}],[{"x":155,"y":127,"on":true},{"x":172,"y":98,"on":false},{"x":201,"y":82,"on":true},{"x":233,"y":64,"on":false},{"x":276,"y":64,"on":true},{"x":336,"y":64,"on":false},{"x":359,"y":102,"on":true},{"x":368,"y":118,"on":false},{"x":368,"y":156,"on":false},{"x":359,"y":172,"on":true},{"x":349,"y":189,"on":false},{"x":332,"y":199,"on":true},{"x":311,"y":211,"on":false},{"x":284,"y":211,"on":true},{"x":252,"y":211,"on":false},{"x":224,"y":194,"on":true},{"x":189,"y":174,"on":false}]], "references": [], - "instructions": [64,61,19,18,2,2,1,31,1,5,2,4,1,4,5,50,1,3,4,4,74,52,1,3,71,0,2,0,5,4,2,5,103,0,1,1,0,95,0,0,0,67,75,0,4,4,3,95,0,3,3,73,3,76,39,41,41,41,27,28,6,9,26,43] + "instructions": "QD0TEgICAR8BBQIEAQQFMgEDBARKNAEDRwACAAUEAgVnAAEBAF8AAABDSwAEBANfAAMDSQNMJykpKRscBgkaKw==" }, "uni042D": { "name": "uni042D", "advanceWidth": 500, "contours": [[{"x":55,"y":155,"on":true},{"x":133,"y":169,"on":true},{"x":136,"y":141,"on":false},{"x":150,"y":119,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":285,"y":64,"on":false},{"x":311,"y":79,"on":true},{"x":335,"y":93,"on":false},{"x":350,"y":118,"on":true},{"x":368,"y":150,"on":false},{"x":368,"y":195,"on":true},{"x":368,"y":332,"on":true},{"x":155,"y":332,"on":true},{"x":155,"y":404,"on":true},{"x":368,"y":404,"on":true},{"x":368,"y":540,"on":true},{"x":368,"y":585,"on":false},{"x":350,"y":617,"on":true},{"x":335,"y":642,"on":false},{"x":311,"y":656,"on":true},{"x":285,"y":671,"on":false},{"x":215,"y":671,"on":false},{"x":189,"y":656,"on":true},{"x":164,"y":642,"on":false},{"x":150,"y":616,"on":true},{"x":137,"y":593,"on":false},{"x":133,"y":566,"on":true},{"x":55,"y":580,"on":true},{"x":60,"y":620,"on":false},{"x":80,"y":653,"on":true},{"x":103,"y":694,"on":false},{"x":143,"y":717,"on":true},{"x":188,"y":743,"on":false},{"x":312,"y":743,"on":false},{"x":357,"y":717,"on":true},{"x":397,"y":694,"on":false},{"x":421,"y":654,"on":true},{"x":448,"y":607,"on":false},{"x":448,"y":540,"on":true},{"x":448,"y":195,"on":true},{"x":448,"y":129,"on":false},{"x":421,"y":81,"on":true},{"x":398,"y":41,"on":false},{"x":357,"y":18,"on":true},{"x":312,"y":-8,"on":false},{"x":188,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":80,"y":82,"on":true},{"x":61,"y":116,"on":false}]], "references": [], - "instructions": [64,49,29,28,2,2,3,1,1,0,1,2,74,0,2,0,1,0,2,1,101,0,3,3,4,95,0,4,4,33,75,0,0,0,5,95,0,5,5,34,5,76,27,27,22,17,22,22,6,7,26,43] + "instructions": "QDEdHAICAwEBAAECSgACAAEAAgFlAAMDBF8ABAQhSwAAAAVfAAUFIgVMGxsWERYWBgcaKw==" }, "uni044D": { "name": "uni044D", "advanceWidth": 500, "contours": [[{"x":55,"y":155,"on":true},{"x":131,"y":177,"on":true},{"x":136,"y":146,"on":false},{"x":151,"y":121,"on":true},{"x":167,"y":93,"on":false},{"x":193,"y":78,"on":true},{"x":217,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":280,"y":64,"on":false},{"x":304,"y":78,"on":true},{"x":329,"y":93,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":229,"on":true},{"x":155,"y":229,"on":true},{"x":155,"y":301,"on":true},{"x":368,"y":301,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":370,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":452,"on":true},{"x":280,"y":466,"on":false},{"x":249,"y":466,"on":true},{"x":217,"y":466,"on":false},{"x":193,"y":452,"on":true},{"x":167,"y":437,"on":false},{"x":151,"y":409,"on":true},{"x":137,"y":384,"on":false},{"x":131,"y":353,"on":true},{"x":55,"y":375,"on":true},{"x":62,"y":413,"on":false},{"x":81,"y":446,"on":true},{"x":106,"y":490,"on":false},{"x":148,"y":513,"on":true},{"x":191,"y":538,"on":false},{"x":307,"y":538,"on":false},{"x":349,"y":513,"on":true},{"x":391,"y":489,"on":false},{"x":416,"y":446,"on":true},{"x":448,"y":390,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":140,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":349,"y":17,"on":true},{"x":306,"y":-8,"on":false},{"x":191,"y":-8,"on":false},{"x":148,"y":17,"on":true},{"x":106,"y":41,"on":false},{"x":81,"y":84,"on":true},{"x":62,"y":116,"on":false}]], "references": [], - "instructions": [64,49,31,30,2,2,3,1,1,0,1,2,74,0,2,0,1,0,2,1,101,0,3,3,4,95,0,4,4,35,75,0,0,0,5,95,0,5,5,34,5,76,27,27,38,17,22,38,6,7,26,43] + "instructions": "QDEfHgICAwEBAAECSgACAAEAAgFlAAMDBF8ABAQjSwAAAAVfAAUFIgVMGxsmERYmBgcaKw==" }, "uni0404": { "name": "uni0404", "advanceWidth": 500, "contours": [[{"x":52,"y":195,"on":true},{"x":52,"y":540,"on":true},{"x":52,"y":606,"on":false},{"x":79,"y":654,"on":true},{"x":102,"y":694,"on":false},{"x":143,"y":717,"on":true},{"x":188,"y":743,"on":false},{"x":312,"y":743,"on":false},{"x":357,"y":717,"on":true},{"x":397,"y":694,"on":false},{"x":420,"y":653,"on":true},{"x":439,"y":619,"on":false},{"x":445,"y":580,"on":true},{"x":367,"y":566,"on":true},{"x":364,"y":594,"on":false},{"x":350,"y":616,"on":true},{"x":335,"y":642,"on":false},{"x":311,"y":656,"on":true},{"x":285,"y":671,"on":false},{"x":215,"y":671,"on":false},{"x":189,"y":656,"on":true},{"x":165,"y":642,"on":false},{"x":150,"y":617,"on":true},{"x":132,"y":585,"on":false},{"x":132,"y":540,"on":true},{"x":132,"y":404,"on":true},{"x":345,"y":404,"on":true},{"x":345,"y":332,"on":true},{"x":132,"y":332,"on":true},{"x":132,"y":195,"on":true},{"x":132,"y":150,"on":false},{"x":150,"y":118,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":285,"y":64,"on":false},{"x":311,"y":79,"on":true},{"x":336,"y":93,"on":false},{"x":350,"y":119,"on":true},{"x":363,"y":142,"on":false},{"x":367,"y":169,"on":true},{"x":445,"y":155,"on":true},{"x":440,"y":115,"on":false},{"x":420,"y":82,"on":true},{"x":397,"y":41,"on":false},{"x":357,"y":18,"on":true},{"x":312,"y":-8,"on":false},{"x":188,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":81,"on":true},{"x":52,"y":128,"on":false}]], "references": [], - "instructions": [64,50,13,12,2,2,1,41,40,2,4,3,2,74,0,2,0,3,4,2,3,101,0,1,1,0,95,0,0,0,33,75,0,4,4,5,95,0,5,5,34,5,76,27,22,17,22,27,22,6,7,26,43] + "instructions": "QDINDAICASkoAgQDAkoAAgADBAIDZQABAQBfAAAAIUsABAQFXwAFBSIFTBsWERYbFgYHGis=" }, "uni0454": { "name": "uni0454", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":390,"on":false},{"x":84,"y":446,"on":true},{"x":109,"y":490,"on":false},{"x":151,"y":513,"on":true},{"x":194,"y":538,"on":false},{"x":309,"y":538,"on":false},{"x":352,"y":513,"on":true},{"x":394,"y":489,"on":false},{"x":419,"y":446,"on":true},{"x":438,"y":414,"on":false},{"x":445,"y":375,"on":true},{"x":369,"y":353,"on":true},{"x":364,"y":384,"on":false},{"x":349,"y":409,"on":true},{"x":333,"y":437,"on":false},{"x":307,"y":452,"on":true},{"x":283,"y":466,"on":false},{"x":251,"y":466,"on":true},{"x":220,"y":466,"on":false},{"x":196,"y":452,"on":true},{"x":171,"y":437,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true},{"x":132,"y":301,"on":true},{"x":345,"y":301,"on":true},{"x":345,"y":229,"on":true},{"x":132,"y":229,"on":true},{"x":132,"y":220,"on":true},{"x":132,"y":160,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":78,"on":true},{"x":220,"y":64,"on":false},{"x":251,"y":64,"on":true},{"x":283,"y":64,"on":false},{"x":307,"y":78,"on":true},{"x":333,"y":93,"on":false},{"x":349,"y":121,"on":true},{"x":363,"y":146,"on":false},{"x":369,"y":177,"on":true},{"x":445,"y":155,"on":true},{"x":438,"y":117,"on":false},{"x":419,"y":84,"on":true},{"x":394,"y":40,"on":false},{"x":352,"y":17,"on":true},{"x":309,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":17,"on":true},{"x":109,"y":41,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":140,"on":false}]], "references": [], - "instructions": [64,50,13,12,2,2,1,43,42,2,4,3,2,74,0,2,0,3,4,2,3,101,0,1,1,0,95,0,0,0,35,75,0,4,4,5,95,0,5,5,34,5,76,27,38,17,22,43,22,6,7,26,43] + "instructions": "QDINDAICASsqAgQDAkoAAgADBAIDZQABAQBfAAAAI0sABAQFXwAFBSIFTBsmERYrFgYHGis=" }, "sigma": { "name": "sigma", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":391,"on":false},{"x":84,"y":446,"on":true},{"x":137,"y":538,"on":false},{"x":250,"y":538,"on":true},{"x":280,"y":538,"on":false},{"x":349,"y":535,"on":false},{"x":432,"y":531,"on":false},{"x":455,"y":530,"on":true},{"x":455,"y":458,"on":true},{"x":378,"y":463,"on":true},{"x":403,"y":444,"on":false},{"x":419,"y":415,"on":true},{"x":444,"y":371,"on":false},{"x":444,"y":310,"on":true},{"x":444,"y":220,"on":true},{"x":444,"y":138,"on":false},{"x":412,"y":82,"on":true},{"x":387,"y":39,"on":false},{"x":305,"y":-8,"on":false},{"x":250,"y":-8,"on":true},{"x":193,"y":-8,"on":false},{"x":151,"y":16,"on":true},{"x":110,"y":40,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":250,"y":64,"on":true},{"x":279,"y":64,"on":false},{"x":301,"y":77,"on":true},{"x":325,"y":91,"on":false},{"x":341,"y":118,"on":true},{"x":364,"y":158,"on":false},{"x":364,"y":220,"on":true},{"x":364,"y":310,"on":true},{"x":364,"y":372,"on":false},{"x":341,"y":412,"on":true},{"x":325,"y":439,"on":false},{"x":301,"y":453,"on":true},{"x":279,"y":466,"on":false},{"x":250,"y":466,"on":true},{"x":219,"y":466,"on":false},{"x":171,"y":438,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [75,176,38,80,88,64,22,4,1,1,1,0,93,0,0,0,47,75,0,3,3,2,95,0,2,2,53,2,76,27,64,28,0,4,0,1,1,4,112,0,1,1,0,94,0,0,0,47,75,0,3,3,2,95,0,2,2,53,2,76,89,183,43,42,41,17,84,5,8,25,43] + "instructions": "S7AmUFhAFgQBAQEAXQAAAC9LAAMDAl8AAgI1AkwbQBwABAABAQRwAAEBAF4AAAAvSwADAwJfAAICNQJMWbcrKikRVAUIGSs=" }, "sigma1": { "name": "sigma1", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":386,"on":false},{"x":83,"y":438,"on":true},{"x":108,"y":481,"on":false},{"x":148,"y":505,"on":true},{"x":192,"y":530,"on":false},{"x":311,"y":530,"on":false},{"x":355,"y":505,"on":true},{"x":396,"y":481,"on":false},{"x":421,"y":438,"on":true},{"x":438,"y":409,"on":false},{"x":445,"y":375,"on":true},{"x":369,"y":353,"on":true},{"x":364,"y":380,"on":false},{"x":351,"y":401,"on":true},{"x":335,"y":429,"on":false},{"x":310,"y":444,"on":true},{"x":285,"y":458,"on":false},{"x":219,"y":458,"on":false},{"x":194,"y":444,"on":true},{"x":169,"y":429,"on":false},{"x":153,"y":402,"on":true},{"x":132,"y":365,"on":false},{"x":132,"y":310,"on":true},{"x":132,"y":220,"on":true},{"x":132,"y":167,"on":false},{"x":153,"y":130,"on":true},{"x":169,"y":102,"on":false},{"x":196,"y":87,"on":true},{"x":217,"y":75,"on":false},{"x":256,"y":72,"on":true},{"x":321,"y":68,"on":false},{"x":363,"y":43,"on":true},{"x":398,"y":23,"on":false},{"x":416,"y":-7,"on":true},{"x":432,"y":-35,"on":false},{"x":432,"y":-68,"on":true},{"x":432,"y":-106,"on":false},{"x":416,"y":-133,"on":true},{"x":399,"y":-162,"on":false},{"x":368,"y":-181,"on":true},{"x":326,"y":-205,"on":false},{"x":262,"y":-205,"on":true},{"x":261,"y":-205,"on":true},{"x":261,"y":-133,"on":true},{"x":262,"y":-133,"on":true},{"x":298,"y":-133,"on":false},{"x":321,"y":-120,"on":true},{"x":337,"y":-111,"on":false},{"x":345,"y":-97,"on":true},{"x":352,"y":-85,"on":false},{"x":352,"y":-68,"on":true},{"x":352,"y":-53,"on":false},{"x":337,"y":-27,"on":false},{"x":322,"y":-18,"on":true},{"x":297,"y":-3,"on":false},{"x":235,"y":1,"on":true},{"x":181,"y":5,"on":false},{"x":150,"y":24,"on":true},{"x":108,"y":49,"on":false},{"x":82,"y":91,"on":true},{"x":52,"y":144,"on":false}]], "references": [], - "instructions": [64,47,13,12,2,2,1,1,74,0,1,1,0,95,0,0,0,47,75,0,2,2,5,95,0,5,5,45,75,0,4,4,3,95,0,3,3,49,3,76,25,34,26,28,27,22,6,8,26,43] + "instructions": "QC8NDAICAQFKAAEBAF8AAAAvSwACAgVfAAUFLUsABAQDXwADAzEDTBkiGhwbFgYIGis=" }, "G": { "name": "G", "advanceWidth": 500, "contours": [[{"x":52,"y":195,"on":true},{"x":52,"y":540,"on":true},{"x":52,"y":606,"on":false},{"x":79,"y":654,"on":true},{"x":102,"y":694,"on":false},{"x":143,"y":717,"on":true},{"x":188,"y":743,"on":false},{"x":312,"y":743,"on":false},{"x":357,"y":717,"on":true},{"x":397,"y":694,"on":false},{"x":420,"y":653,"on":true},{"x":439,"y":619,"on":false},{"x":445,"y":580,"on":true},{"x":367,"y":566,"on":true},{"x":364,"y":594,"on":false},{"x":350,"y":616,"on":true},{"x":335,"y":642,"on":false},{"x":311,"y":656,"on":true},{"x":285,"y":671,"on":false},{"x":215,"y":671,"on":false},{"x":189,"y":656,"on":true},{"x":165,"y":642,"on":false},{"x":150,"y":617,"on":true},{"x":132,"y":585,"on":false},{"x":132,"y":540,"on":true},{"x":132,"y":195,"on":true},{"x":132,"y":150,"on":false},{"x":150,"y":118,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":281,"y":64,"on":false},{"x":327,"y":91,"on":false},{"x":341,"y":115,"on":true},{"x":360,"y":147,"on":false},{"x":360,"y":195,"on":true},{"x":360,"y":328,"on":true},{"x":250,"y":328,"on":true},{"x":250,"y":400,"on":true},{"x":440,"y":400,"on":true},{"x":440,"y":195,"on":true},{"x":440,"y":127,"on":false},{"x":412,"y":79,"on":true},{"x":389,"y":39,"on":false},{"x":350,"y":16,"on":true},{"x":308,"y":-8,"on":false},{"x":249,"y":-8,"on":true},{"x":187,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":82,"on":true},{"x":52,"y":129,"on":false}]], "references": [], - "instructions": [64,45,13,12,2,4,1,1,74,0,4,0,3,2,4,3,101,0,1,1,0,95,0,0,0,72,75,0,2,2,5,95,0,5,5,73,5,76,38,17,21,43,27,22,6,9,26,43] + "instructions": "QC0NDAIEAQFKAAQAAwIEA2UAAQEAXwAAAEhLAAICBV8ABQVJBUwmERUrGxYGCRor" }, "uni0262": { "name": "uni0262", "advanceWidth": 500, "contours": [[{"x":52,"y":195,"on":true},{"x":52,"y":335,"on":true},{"x":52,"y":401,"on":false},{"x":79,"y":449,"on":true},{"x":102,"y":489,"on":false},{"x":143,"y":512,"on":true},{"x":188,"y":538,"on":false},{"x":312,"y":538,"on":false},{"x":357,"y":512,"on":true},{"x":397,"y":489,"on":false},{"x":420,"y":448,"on":true},{"x":439,"y":414,"on":false},{"x":445,"y":375,"on":true},{"x":367,"y":361,"on":true},{"x":364,"y":389,"on":false},{"x":350,"y":411,"on":true},{"x":335,"y":437,"on":false},{"x":311,"y":451,"on":true},{"x":285,"y":466,"on":false},{"x":215,"y":466,"on":false},{"x":189,"y":451,"on":true},{"x":165,"y":437,"on":false},{"x":150,"y":412,"on":true},{"x":132,"y":380,"on":false},{"x":132,"y":335,"on":true},{"x":132,"y":195,"on":true},{"x":132,"y":150,"on":false},{"x":150,"y":118,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":281,"y":64,"on":false},{"x":327,"y":91,"on":false},{"x":341,"y":115,"on":true},{"x":360,"y":147,"on":false},{"x":360,"y":195,"on":true},{"x":360,"y":222,"on":true},{"x":250,"y":222,"on":true},{"x":250,"y":294,"on":true},{"x":440,"y":294,"on":true},{"x":440,"y":195,"on":true},{"x":440,"y":127,"on":false},{"x":412,"y":79,"on":true},{"x":389,"y":39,"on":false},{"x":350,"y":16,"on":true},{"x":308,"y":-8,"on":false},{"x":249,"y":-8,"on":true},{"x":187,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":82,"on":true},{"x":52,"y":129,"on":false}]], "references": [], - "instructions": [64,45,13,12,2,4,1,1,74,0,4,0,3,2,4,3,101,0,1,1,0,95,0,0,0,75,75,0,2,2,5,95,0,5,5,73,5,76,38,17,21,43,27,22,6,9,26,43] + "instructions": "QC0NDAIEAQFKAAQAAwIEA2UAAQEAXwAAAEtLAAICBV8ABQVJBUwmERUrGxYGCRor" }, "uni0193": { "name": "uni0193", "advanceWidth": 500, "contours": [[{"x":52,"y":195,"on":true},{"x":52,"y":540,"on":true},{"x":52,"y":606,"on":false},{"x":79,"y":654,"on":true},{"x":102,"y":694,"on":false},{"x":143,"y":717,"on":true},{"x":188,"y":743,"on":false},{"x":312,"y":743,"on":false},{"x":357,"y":717,"on":true},{"x":361,"y":715,"on":false},{"x":365,"y":712,"on":true},{"x":365,"y":735,"on":true},{"x":365,"y":792,"on":false},{"x":389,"y":834,"on":true},{"x":412,"y":873,"on":false},{"x":453,"y":897,"on":true},{"x":503,"y":926,"on":false},{"x":575,"y":926,"on":true},{"x":575,"y":854,"on":true},{"x":531,"y":854,"on":false},{"x":500,"y":836,"on":true},{"x":445,"y":804,"on":false},{"x":445,"y":735,"on":true},{"x":445,"y":580,"on":true},{"x":367,"y":566,"on":true},{"x":364,"y":594,"on":false},{"x":350,"y":616,"on":true},{"x":335,"y":642,"on":false},{"x":311,"y":656,"on":true},{"x":285,"y":671,"on":false},{"x":215,"y":671,"on":false},{"x":189,"y":656,"on":true},{"x":165,"y":642,"on":false},{"x":150,"y":617,"on":true},{"x":132,"y":585,"on":false},{"x":132,"y":540,"on":true},{"x":132,"y":195,"on":true},{"x":132,"y":150,"on":false},{"x":150,"y":118,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":281,"y":64,"on":false},{"x":327,"y":91,"on":false},{"x":341,"y":115,"on":true},{"x":360,"y":147,"on":false},{"x":360,"y":195,"on":true},{"x":360,"y":328,"on":true},{"x":250,"y":328,"on":true},{"x":250,"y":400,"on":true},{"x":440,"y":400,"on":true},{"x":440,"y":195,"on":true},{"x":440,"y":127,"on":false},{"x":412,"y":79,"on":true},{"x":389,"y":39,"on":false},{"x":350,"y":16,"on":true},{"x":308,"y":-8,"on":false},{"x":249,"y":-8,"on":true},{"x":187,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":82,"on":true},{"x":52,"y":129,"on":false}]], "references": [], - "instructions": [64,59,10,1,3,0,24,23,2,6,3,2,74,0,1,0,2,0,1,2,103,0,6,0,5,4,6,5,101,0,3,3,0,95,0,0,0,72,75,0,4,4,7,95,0,7,7,73,7,76,38,17,21,43,26,17,25,22,8,9,28,43] + "instructions": "QDsKAQMAGBcCBgMCSgABAAIAAQJnAAYABQQGBWUAAwMAXwAAAEhLAAQEB18ABwdJB0wmERUrGhEZFggJHCs=" }, "uni029B": { "name": "uni029B", "advanceWidth": 500, "contours": [[{"x":52,"y":195,"on":true},{"x":52,"y":335,"on":true},{"x":52,"y":401,"on":false},{"x":79,"y":449,"on":true},{"x":102,"y":489,"on":false},{"x":143,"y":512,"on":true},{"x":188,"y":538,"on":false},{"x":312,"y":538,"on":false},{"x":357,"y":512,"on":true},{"x":361,"y":510,"on":false},{"x":365,"y":507,"on":true},{"x":365,"y":530,"on":true},{"x":365,"y":587,"on":false},{"x":389,"y":629,"on":true},{"x":412,"y":668,"on":false},{"x":453,"y":692,"on":true},{"x":503,"y":721,"on":false},{"x":575,"y":721,"on":true},{"x":575,"y":649,"on":true},{"x":531,"y":649,"on":false},{"x":500,"y":631,"on":true},{"x":445,"y":599,"on":false},{"x":445,"y":530,"on":true},{"x":445,"y":375,"on":true},{"x":367,"y":361,"on":true},{"x":364,"y":389,"on":false},{"x":350,"y":411,"on":true},{"x":335,"y":437,"on":false},{"x":311,"y":451,"on":true},{"x":285,"y":466,"on":false},{"x":215,"y":466,"on":false},{"x":189,"y":451,"on":true},{"x":165,"y":437,"on":false},{"x":150,"y":412,"on":true},{"x":132,"y":380,"on":false},{"x":132,"y":335,"on":true},{"x":132,"y":195,"on":true},{"x":132,"y":150,"on":false},{"x":150,"y":118,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":281,"y":64,"on":false},{"x":327,"y":91,"on":false},{"x":341,"y":115,"on":true},{"x":360,"y":147,"on":false},{"x":360,"y":195,"on":true},{"x":360,"y":222,"on":true},{"x":250,"y":222,"on":true},{"x":250,"y":294,"on":true},{"x":440,"y":294,"on":true},{"x":440,"y":195,"on":true},{"x":440,"y":127,"on":false},{"x":412,"y":79,"on":true},{"x":389,"y":39,"on":false},{"x":350,"y":16,"on":true},{"x":308,"y":-8,"on":false},{"x":249,"y":-8,"on":true},{"x":187,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":82,"on":true},{"x":52,"y":129,"on":false}]], "references": [], - "instructions": [64,11,10,1,3,0,24,23,2,6,3,2,74,75,176,35,80,88,64,39,0,6,0,5,4,6,5,101,0,2,2,1,95,0,1,1,64,75,0,3,3,0,95,0,0,0,75,75,0,4,4,7,95,0,7,7,73,7,76,27,64,37,0,1,0,2,0,1,2,103,0,6,0,5,4,6,5,101,0,3,3,0,95,0,0,0,75,75,0,4,4,7,95,0,7,7,73,7,76,89,64,11,38,17,21,43,26,17,25,22,8,9,28,43] + "instructions": "QAsKAQMAGBcCBgMCSkuwI1BYQCcABgAFBAYFZQACAgFfAAEBQEsAAwMAXwAAAEtLAAQEB18ABwdJB0wbQCUAAQACAAECZwAGAAUEBgVlAAMDAF8AAABLSwAEBAdfAAcHSQdMWUALJhEVKxoRGRYICRwr" }, "uni01E4": { "name": "uni01E4", "advanceWidth": 500, "contours": [[{"x":52,"y":195,"on":true},{"x":52,"y":540,"on":true},{"x":52,"y":606,"on":false},{"x":79,"y":654,"on":true},{"x":102,"y":694,"on":false},{"x":143,"y":717,"on":true},{"x":188,"y":743,"on":false},{"x":312,"y":743,"on":false},{"x":357,"y":717,"on":true},{"x":397,"y":694,"on":false},{"x":420,"y":653,"on":true},{"x":439,"y":619,"on":false},{"x":445,"y":580,"on":true},{"x":367,"y":566,"on":true},{"x":364,"y":594,"on":false},{"x":350,"y":616,"on":true},{"x":335,"y":642,"on":false},{"x":311,"y":656,"on":true},{"x":285,"y":671,"on":false},{"x":215,"y":671,"on":false},{"x":189,"y":656,"on":true},{"x":165,"y":642,"on":false},{"x":150,"y":617,"on":true},{"x":132,"y":585,"on":false},{"x":132,"y":540,"on":true},{"x":132,"y":195,"on":true},{"x":132,"y":150,"on":false},{"x":150,"y":118,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":281,"y":64,"on":false},{"x":327,"y":91,"on":false},{"x":341,"y":115,"on":true},{"x":354,"y":137,"on":false},{"x":358,"y":166,"on":true},{"x":250,"y":166,"on":true},{"x":250,"y":238,"on":true},{"x":360,"y":238,"on":true},{"x":360,"y":328,"on":true},{"x":250,"y":328,"on":true},{"x":250,"y":400,"on":true},{"x":440,"y":400,"on":true},{"x":440,"y":238,"on":true},{"x":482,"y":238,"on":true},{"x":482,"y":166,"on":true},{"x":439,"y":166,"on":true},{"x":434,"y":116,"on":false},{"x":412,"y":79,"on":true},{"x":389,"y":39,"on":false},{"x":350,"y":16,"on":true},{"x":308,"y":-8,"on":false},{"x":249,"y":-8,"on":true},{"x":187,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":82,"on":true},{"x":52,"y":129,"on":false}]], "references": [], - "instructions": [64,60,13,12,2,6,1,1,74,0,6,0,5,4,6,5,101,7,1,4,8,1,3,2,4,3,101,0,1,1,0,95,0,0,0,72,75,0,2,2,9,95,0,9,9,73,9,76,54,52,17,17,17,17,17,20,43,27,22,10,9,29,43] + "instructions": "QDwNDAIGAQFKAAYABQQGBWUHAQQIAQMCBANlAAEBAF8AAABISwACAglfAAkJSQlMNjQRERERERQrGxYKCR0r" }, "glyph319": { "name": "glyph319", "advanceWidth": 500, "contours": [[{"x":43,"y":-45,"on":true},{"x":43,"y":-3,"on":false},{"x":61,"y":28,"on":true},{"x":76,"y":53,"on":false},{"x":100,"y":71,"on":true},{"x":91,"y":80,"on":false},{"x":85,"y":91,"on":true},{"x":72,"y":114,"on":false},{"x":72,"y":168,"on":false},{"x":86,"y":193,"on":true},{"x":97,"y":212,"on":false},{"x":113,"y":225,"on":true},{"x":89,"y":244,"on":false},{"x":74,"y":270,"on":true},{"x":52,"y":309,"on":false},{"x":52,"y":416,"on":false},{"x":74,"y":454,"on":true},{"x":95,"y":490,"on":false},{"x":133,"y":512,"on":true},{"x":178,"y":538,"on":false},{"x":241,"y":538,"on":true},{"x":277,"y":538,"on":false},{"x":306,"y":530,"on":true},{"x":463,"y":530,"on":true},{"x":463,"y":458,"on":true},{"x":404,"y":460,"on":true},{"x":406,"y":457,"on":false},{"x":408,"y":454,"on":true},{"x":430,"y":415,"on":false},{"x":430,"y":309,"on":false},{"x":408,"y":270,"on":true},{"x":387,"y":234,"on":false},{"x":349,"y":212,"on":true},{"x":304,"y":186,"on":false},{"x":241,"y":187,"on":true},{"x":202,"y":187,"on":false},{"x":170,"y":196,"on":true},{"x":162,"y":192,"on":false},{"x":157,"y":186,"on":true},{"x":143,"y":172,"on":false},{"x":143,"y":136,"on":false},{"x":156,"y":124,"on":true},{"x":173,"y":107,"on":false},{"x":219,"y":105,"on":true},{"x":247,"y":105,"on":false},{"x":275,"y":105,"on":true},{"x":343,"y":105,"on":false},{"x":389,"y":78,"on":true},{"x":423,"y":58,"on":false},{"x":441,"y":28,"on":true},{"x":459,"y":-3,"on":false},{"x":459,"y":-46,"on":true},{"x":459,"y":-90,"on":false},{"x":419,"y":-160,"on":false},{"x":379,"y":-183,"on":true},{"x":327,"y":-213,"on":false},{"x":173,"y":-213,"on":false},{"x":122,"y":-183,"on":true},{"x":83,"y":-161,"on":false},{"x":43,"y":-91,"on":false}],[{"x":123,"y":-45,"on":true},{"x":123,"y":-70,"on":false},{"x":134,"y":-89,"on":true},{"x":146,"y":-109,"on":false},{"x":168,"y":-122,"on":true},{"x":200,"y":-141,"on":false},{"x":300,"y":-141,"on":false},{"x":333,"y":-122,"on":true},{"x":356,"y":-109,"on":false},{"x":368,"y":-89,"on":true},{"x":379,"y":-70,"on":false},{"x":379,"y":-47,"on":true},{"x":379,"y":-25,"on":false},{"x":369,"y":-9,"on":true},{"x":360,"y":7,"on":false},{"x":342,"y":17,"on":true},{"x":315,"y":33,"on":false},{"x":275,"y":33,"on":true},{"x":248,"y":33,"on":false},{"x":220,"y":33,"on":true},{"x":185,"y":33,"on":false},{"x":160,"y":18,"on":true},{"x":142,"y":7,"on":false},{"x":132,"y":-9,"on":true},{"x":123,"y":-24,"on":false}],[{"x":132,"y":394,"on":false},{"x":132,"y":330,"on":false},{"x":145,"y":307,"on":true},{"x":157,"y":286,"on":false},{"x":179,"y":273,"on":true},{"x":204,"y":258,"on":false},{"x":277,"y":259,"on":false},{"x":303,"y":273,"on":true},{"x":325,"y":286,"on":false},{"x":337,"y":307,"on":true},{"x":350,"y":330,"on":false},{"x":350,"y":394,"on":false},{"x":337,"y":417,"on":true},{"x":325,"y":438,"on":false},{"x":281,"y":464,"on":false},{"x":253,"y":466,"on":true},{"x":241,"y":466,"on":true},{"x":205,"y":466,"on":false},{"x":179,"y":451,"on":true},{"x":157,"y":438,"on":false},{"x":145,"y":417,"on":true}]], "references": [], - "instructions": [64,11,36,11,2,3,8,4,1,7,4,2,74,75,176,29,80,88,64,39,0,8,0,3,4,8,3,103,0,4,0,7,6,4,7,103,9,1,2,2,0,95,1,1,0,0,35,75,0,6,6,5,95,0,5,5,30,5,76,27,75,176,33,80,88,64,49,0,8,0,3,4,8,3,103,0,4,0,7,6,4,7,103,9,1,2,2,0,95,0,0,0,35,75,9,1,2,2,1,93,0,1,1,28,75,0,6,6,5,95,0,5,5,30,5,76,27,64,47,0,8,0,3,4,8,3,103,0,4,0,7,6,4,7,103,0,9,9,0,95,0,0,0,35,75,0,2,2,1,93,0,1,1,28,75,0,6,6,5,95,0,5,5,30,5,76,89,89,64,23,102,100,91,90,80,76,66,65,56,55,46,42,35,33,25,24,23,22,21,19,10,7,20,43] + "instructions": "QAskCwIDCAQBBwQCSkuwHVBYQCcACAADBAgDZwAEAAcGBAdnCQECAgBfAQEAACNLAAYGBV8ABQUeBUwbS7AhUFhAMQAIAAMECANnAAQABwYEB2cJAQICAF8AAAAjSwkBAgIBXQABARxLAAYGBV8ABQUeBUwbQC8ACAADBAgDZwAEAAcGBAdnAAkJAF8AAAAjSwACAgFdAAEBHEsABgYFXwAFBR4FTFlZQBdmZFtaUExCQTg3LiojIRkYFxYVEwoHFCs=" }, "glyph320": { "name": "glyph320", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":398,"on":false},{"x":85,"y":456,"on":true},{"x":109,"y":497,"on":false},{"x":146,"y":518,"on":true},{"x":180,"y":538,"on":false},{"x":225,"y":538,"on":true},{"x":267,"y":538,"on":false},{"x":299,"y":520,"on":true},{"x":334,"y":500,"on":false},{"x":357,"y":460,"on":true},{"x":359,"y":457,"on":false},{"x":360,"y":454,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":15,"on":true},{"x":440,"y":-64,"on":false},{"x":408,"y":-120,"on":true},{"x":383,"y":-164,"on":false},{"x":341,"y":-188,"on":true},{"x":297,"y":-213,"on":false},{"x":178,"y":-213,"on":false},{"x":135,"y":-188,"on":true},{"x":93,"y":-164,"on":false},{"x":67,"y":-119,"on":true},{"x":60,"y":-107,"on":false},{"x":55,"y":-95,"on":true},{"x":127,"y":-63,"on":true},{"x":131,"y":-74,"on":false},{"x":136,"y":-83,"on":true},{"x":152,"y":-111,"on":false},{"x":178,"y":-126,"on":true},{"x":203,"y":-141,"on":false},{"x":238,"y":-141,"on":true},{"x":271,"y":-141,"on":false},{"x":295,"y":-127,"on":true},{"x":321,"y":-112,"on":false},{"x":337,"y":-83,"on":true},{"x":360,"y":-44,"on":false},{"x":360,"y":15,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":225,"y":-8,"on":true},{"x":180,"y":-8,"on":false},{"x":146,"y":12,"on":true},{"x":109,"y":33,"on":false},{"x":85,"y":74,"on":true},{"x":52,"y":132,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":249,"y":466,"on":true},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [64,12,41,13,2,5,6,28,27,2,3,4,2,74,75,176,29,80,88,64,32,0,6,6,0,95,1,1,0,0,35,75,0,5,5,4,95,0,4,4,34,75,0,3,3,2,95,0,2,2,30,2,76,27,64,36,0,1,1,28,75,0,6,6,0,95,0,0,0,35,75,0,5,5,4,95,0,4,4,34,75,0,3,3,2,95,0,2,2,30,2,76,89,64,10,43,42,43,43,22,22,38,7,7,27,43] + "instructions": "QAwpDQIFBhwbAgMEAkpLsB1QWEAgAAYGAF8BAQAAI0sABQUEXwAEBCJLAAMDAl8AAgIeAkwbQCQAAQEcSwAGBgBfAAAAI0sABQUEXwAEBCJLAAMDAl8AAgIeAkxZQAorKisrFhYmBwcbKw==" }, "uni0261": { "name": "uni0261", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph322": { "name": "glyph322", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "g": { "name": "g", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1D77": { "name": "uni1D77", "advanceWidth": 500, "contours": [[{"x":37,"y":-133,"on":true},{"x":96,"y":-135,"on":true},{"x":94,"y":-132,"on":false},{"x":92,"y":-129,"on":true},{"x":70,"y":-90,"on":false},{"x":70,"y":16,"on":false},{"x":92,"y":55,"on":true},{"x":113,"y":91,"on":false},{"x":151,"y":113,"on":true},{"x":196,"y":139,"on":false},{"x":259,"y":138,"on":true},{"x":298,"y":138,"on":false},{"x":330,"y":129,"on":true},{"x":338,"y":133,"on":false},{"x":343,"y":139,"on":true},{"x":357,"y":153,"on":false},{"x":357,"y":189,"on":false},{"x":344,"y":201,"on":true},{"x":327,"y":218,"on":false},{"x":281,"y":220,"on":true},{"x":253,"y":220,"on":false},{"x":225,"y":220,"on":true},{"x":157,"y":220,"on":false},{"x":111,"y":247,"on":true},{"x":77,"y":267,"on":false},{"x":59,"y":297,"on":true},{"x":41,"y":328,"on":false},{"x":41,"y":371,"on":true},{"x":41,"y":415,"on":false},{"x":81,"y":485,"on":false},{"x":121,"y":508,"on":true},{"x":173,"y":538,"on":false},{"x":327,"y":538,"on":false},{"x":378,"y":508,"on":true},{"x":417,"y":486,"on":false},{"x":457,"y":416,"on":false},{"x":457,"y":370,"on":true},{"x":457,"y":328,"on":false},{"x":439,"y":297,"on":true},{"x":424,"y":272,"on":false},{"x":400,"y":254,"on":true},{"x":409,"y":245,"on":false},{"x":415,"y":234,"on":true},{"x":428,"y":211,"on":false},{"x":428,"y":157,"on":false},{"x":414,"y":132,"on":true},{"x":403,"y":113,"on":false},{"x":387,"y":100,"on":true},{"x":411,"y":81,"on":false},{"x":426,"y":55,"on":true},{"x":448,"y":16,"on":false},{"x":448,"y":-91,"on":false},{"x":426,"y":-129,"on":true},{"x":405,"y":-165,"on":false},{"x":367,"y":-187,"on":true},{"x":322,"y":-213,"on":false},{"x":259,"y":-213,"on":true},{"x":223,"y":-213,"on":false},{"x":194,"y":-205,"on":true},{"x":37,"y":-205,"on":true}],[{"x":121,"y":372,"on":true},{"x":121,"y":350,"on":false},{"x":131,"y":334,"on":true},{"x":140,"y":318,"on":false},{"x":158,"y":308,"on":true},{"x":185,"y":292,"on":false},{"x":225,"y":292,"on":true},{"x":252,"y":292,"on":false},{"x":280,"y":292,"on":true},{"x":315,"y":292,"on":false},{"x":340,"y":307,"on":true},{"x":358,"y":318,"on":false},{"x":368,"y":334,"on":true},{"x":377,"y":349,"on":false},{"x":377,"y":370,"on":true},{"x":377,"y":395,"on":false},{"x":366,"y":414,"on":true},{"x":354,"y":434,"on":false},{"x":332,"y":447,"on":true},{"x":300,"y":466,"on":false},{"x":200,"y":466,"on":false},{"x":167,"y":447,"on":true},{"x":144,"y":434,"on":false},{"x":132,"y":414,"on":true},{"x":121,"y":395,"on":false}],[{"x":150,"y":-5,"on":false},{"x":150,"y":-69,"on":false},{"x":163,"y":-92,"on":true},{"x":175,"y":-113,"on":false},{"x":219,"y":-139,"on":false},{"x":247,"y":-141,"on":true},{"x":259,"y":-141,"on":true},{"x":295,"y":-141,"on":false},{"x":321,"y":-126,"on":true},{"x":343,"y":-113,"on":false},{"x":355,"y":-92,"on":true},{"x":368,"y":-69,"on":false},{"x":368,"y":-5,"on":false},{"x":355,"y":18,"on":true},{"x":343,"y":39,"on":false},{"x":321,"y":52,"on":true},{"x":296,"y":67,"on":false},{"x":223,"y":66,"on":false},{"x":197,"y":52,"on":true},{"x":175,"y":39,"on":false},{"x":163,"y":18,"on":true}]], "references": [], - "instructions": [64,11,40,1,2,6,47,12,2,9,1,2,74,75,176,29,80,88,64,39,0,6,0,2,1,6,2,103,0,1,0,9,0,1,9,103,0,7,7,3,95,0,3,3,75,75,8,1,0,0,4,95,5,1,4,4,77,4,76,27,75,176,33,80,88,64,49,0,6,0,2,1,6,2,103,0,1,0,9,0,1,9,103,0,7,7,3,95,0,3,3,75,75,8,1,0,0,5,93,0,5,5,69,75,8,1,0,0,4,95,0,4,4,77,4,76,27,64,47,0,6,0,2,1,6,2,103,0,1,0,9,0,1,9,103,0,7,7,3,95,0,3,3,75,75,0,0,0,5,93,0,5,5,69,75,0,8,8,4,95,0,4,4,77,4,76,89,89,64,19,102,101,92,90,80,79,69,65,59,58,57,55,25,71,40,16,10,9,24,43] + "instructions": "QAsoAQIGLwwCCQECSkuwHVBYQCcABgACAQYCZwABAAkAAQlnAAcHA18AAwNLSwgBAAAEXwUBBARNBEwbS7AhUFhAMQAGAAIBBgJnAAEACQABCWcABwcDXwADA0tLCAEAAAVdAAUFRUsIAQAABF8ABARNBEwbQC8ABgACAQYCZwABAAkAAQlnAAcHA18AAwNLSwAAAAVdAAUFRUsACAgEXwAEBE0ETFlZQBNmZVxaUE9FQTs6OTcZRygQCgkYKw==" }, "uni0260": { "name": "uni0260", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":398,"on":false},{"x":85,"y":456,"on":true},{"x":109,"y":497,"on":false},{"x":146,"y":518,"on":true},{"x":180,"y":538,"on":false},{"x":225,"y":538,"on":true},{"x":267,"y":538,"on":false},{"x":299,"y":520,"on":true},{"x":334,"y":500,"on":false},{"x":357,"y":460,"on":true},{"x":359,"y":457,"on":false},{"x":360,"y":454,"on":true},{"x":360,"y":530,"on":true},{"x":360,"y":587,"on":false},{"x":384,"y":629,"on":true},{"x":407,"y":668,"on":false},{"x":448,"y":692,"on":true},{"x":498,"y":721,"on":false},{"x":570,"y":721,"on":true},{"x":570,"y":649,"on":true},{"x":526,"y":649,"on":false},{"x":495,"y":631,"on":true},{"x":440,"y":599,"on":false},{"x":440,"y":530,"on":true},{"x":440,"y":15,"on":true},{"x":440,"y":-64,"on":false},{"x":408,"y":-120,"on":true},{"x":383,"y":-164,"on":false},{"x":341,"y":-188,"on":true},{"x":297,"y":-213,"on":false},{"x":178,"y":-213,"on":false},{"x":135,"y":-188,"on":true},{"x":93,"y":-164,"on":false},{"x":67,"y":-119,"on":true},{"x":60,"y":-107,"on":false},{"x":55,"y":-95,"on":true},{"x":127,"y":-63,"on":true},{"x":131,"y":-74,"on":false},{"x":136,"y":-83,"on":true},{"x":152,"y":-111,"on":false},{"x":178,"y":-126,"on":true},{"x":203,"y":-141,"on":false},{"x":238,"y":-141,"on":true},{"x":271,"y":-141,"on":false},{"x":295,"y":-127,"on":true},{"x":321,"y":-112,"on":false},{"x":337,"y":-83,"on":true},{"x":360,"y":-44,"on":false},{"x":360,"y":15,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":225,"y":-8,"on":true},{"x":180,"y":-8,"on":false},{"x":146,"y":12,"on":true},{"x":109,"y":33,"on":false},{"x":85,"y":74,"on":true},{"x":52,"y":132,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":249,"y":466,"on":true},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [64,12,51,13,2,6,7,38,37,2,4,5,2,74,75,176,35,80,88,64,41,0,2,2,1,95,0,1,1,64,75,0,7,7,0,95,0,0,0,75,75,0,6,6,5,95,0,5,5,73,75,0,4,4,3,95,0,3,3,77,3,76,27,64,39,0,1,0,2,0,1,2,103,0,7,7,0,95,0,0,0,75,75,0,6,6,5,95,0,5,5,73,75,0,4,4,3,95,0,3,3,77,3,76,89,64,11,43,42,43,43,25,17,27,38,8,9,28,43] + "instructions": "QAwzDQIGByYlAgQFAkpLsCNQWEApAAICAV8AAQFASwAHBwBfAAAAS0sABgYFXwAFBUlLAAQEA18AAwNNA0wbQCcAAQACAAECZwAHBwBfAAAAS0sABgYFXwAFBUlLAAQEA18AAwNNA0xZQAsrKisrGREbJggJHCs=" }, "uni01E5": { "name": "uni01E5", "advanceWidth": 500, "contours": [[{"x":18,"y":-27,"on":true},{"x":44,"y":-27,"on":true},{"x":47,"y":4,"on":false},{"x":61,"y":28,"on":true},{"x":76,"y":53,"on":false},{"x":100,"y":71,"on":true},{"x":91,"y":80,"on":false},{"x":85,"y":91,"on":true},{"x":72,"y":114,"on":false},{"x":72,"y":168,"on":false},{"x":86,"y":193,"on":true},{"x":97,"y":212,"on":false},{"x":113,"y":225,"on":true},{"x":89,"y":244,"on":false},{"x":74,"y":270,"on":true},{"x":52,"y":309,"on":false},{"x":52,"y":416,"on":false},{"x":74,"y":454,"on":true},{"x":95,"y":490,"on":false},{"x":133,"y":512,"on":true},{"x":178,"y":538,"on":false},{"x":241,"y":538,"on":true},{"x":277,"y":538,"on":false},{"x":306,"y":530,"on":true},{"x":463,"y":530,"on":true},{"x":463,"y":458,"on":true},{"x":404,"y":460,"on":true},{"x":406,"y":457,"on":false},{"x":408,"y":454,"on":true},{"x":430,"y":415,"on":false},{"x":430,"y":309,"on":false},{"x":408,"y":270,"on":true},{"x":387,"y":234,"on":false},{"x":349,"y":212,"on":true},{"x":304,"y":186,"on":false},{"x":241,"y":187,"on":true},{"x":202,"y":187,"on":false},{"x":170,"y":196,"on":true},{"x":162,"y":192,"on":false},{"x":157,"y":186,"on":true},{"x":143,"y":172,"on":false},{"x":143,"y":136,"on":false},{"x":156,"y":124,"on":true},{"x":173,"y":107,"on":false},{"x":219,"y":105,"on":true},{"x":247,"y":105,"on":false},{"x":275,"y":105,"on":true},{"x":343,"y":105,"on":false},{"x":389,"y":78,"on":true},{"x":423,"y":58,"on":false},{"x":441,"y":28,"on":true},{"x":455,"y":4,"on":false},{"x":458,"y":-27,"on":true},{"x":482,"y":-27,"on":true},{"x":482,"y":-81,"on":true},{"x":455,"y":-81,"on":true},{"x":450,"y":-105,"on":false},{"x":439,"y":-125,"on":true},{"x":419,"y":-160,"on":false},{"x":379,"y":-183,"on":true},{"x":327,"y":-213,"on":false},{"x":173,"y":-213,"on":false},{"x":122,"y":-183,"on":true},{"x":83,"y":-161,"on":false},{"x":63,"y":-126,"on":true},{"x":51,"y":-106,"on":false},{"x":46,"y":-81,"on":true},{"x":18,"y":-81,"on":true}],[{"x":125,"y":-27,"on":true},{"x":376,"y":-27,"on":true},{"x":374,"y":-17,"on":false},{"x":369,"y":-9,"on":true},{"x":360,"y":7,"on":false},{"x":342,"y":17,"on":true},{"x":315,"y":33,"on":false},{"x":275,"y":33,"on":true},{"x":248,"y":33,"on":false},{"x":220,"y":33,"on":true},{"x":185,"y":33,"on":false},{"x":160,"y":18,"on":true},{"x":142,"y":7,"on":false},{"x":132,"y":-9,"on":true},{"x":127,"y":-17,"on":false}],[{"x":130,"y":-81,"on":true},{"x":132,"y":-85,"on":false},{"x":134,"y":-89,"on":true},{"x":146,"y":-109,"on":false},{"x":168,"y":-122,"on":true},{"x":200,"y":-141,"on":false},{"x":300,"y":-141,"on":false},{"x":333,"y":-122,"on":true},{"x":356,"y":-109,"on":false},{"x":368,"y":-89,"on":true},{"x":369,"y":-85,"on":false},{"x":371,"y":-81,"on":true}],[{"x":132,"y":394,"on":false},{"x":132,"y":330,"on":false},{"x":145,"y":307,"on":true},{"x":157,"y":286,"on":false},{"x":179,"y":273,"on":true},{"x":204,"y":258,"on":false},{"x":277,"y":259,"on":false},{"x":303,"y":273,"on":true},{"x":325,"y":286,"on":false},{"x":337,"y":307,"on":true},{"x":350,"y":330,"on":false},{"x":350,"y":394,"on":false},{"x":337,"y":417,"on":true},{"x":325,"y":438,"on":false},{"x":281,"y":464,"on":false},{"x":253,"y":466,"on":true},{"x":241,"y":466,"on":true},{"x":205,"y":466,"on":false},{"x":179,"y":451,"on":true},{"x":157,"y":438,"on":false},{"x":145,"y":417,"on":true}]], "references": [], - "instructions": [64,11,37,12,2,4,14,5,1,11,5,2,74,75,176,29,80,88,64,52,0,14,0,4,5,14,4,103,0,5,0,11,0,5,11,103,10,6,2,0,16,13,9,3,7,12,0,7,101,15,1,3,3,1,95,2,1,1,1,75,75,0,12,12,8,95,0,8,8,77,8,76,27,75,176,33,80,88,64,62,0,14,0,4,5,14,4,103,0,5,0,11,0,5,11,103,10,6,2,0,16,13,9,3,7,12,0,7,101,15,1,3,3,1,95,0,1,1,75,75,15,1,3,3,2,93,0,2,2,67,75,0,12,12,8,95,0,8,8,77,8,76,27,64,60,0,14,0,4,5,14,4,103,0,5,0,11,0,5,11,103,10,6,2,0,16,13,9,3,7,12,0,7,101,0,15,15,1,95,0,1,1,75,75,0,3,3,2,93,0,2,2,67,75,0,12,12,8,95,0,8,8,77,8,76,89,89,64,38,83,83,112,110,101,100,83,94,83,94,89,88,78,74,69,68,67,66,61,60,55,54,53,52,47,43,36,34,26,25,24,23,22,20,16,17,9,21,43] + "instructions": "QAslDAIEDgUBCwUCSkuwHVBYQDQADgAEBQ4EZwAFAAsABQtnCgYCABANCQMHDAAHZQ8BAwMBXwIBAQFLSwAMDAhfAAgITQhMG0uwIVBYQD4ADgAEBQ4EZwAFAAsABQtnCgYCABANCQMHDAAHZQ8BAwMBXwABAUtLDwEDAwJdAAICQ0sADAwIXwAICE0ITBtAPAAOAAQFDgRnAAUACwAFC2cKBgIAEA0JAwcMAAdlAA8PAV8AAQFLSwADAwJdAAICQ0sADAwIXwAICE0ITFlZQCZTU3BuZWRTXlNeWVhOSkVEQ0I9PDc2NTQvKyQiGhkYFxYUEBEJFSs=" }, "O": { "name": "O", "advanceWidth": 500, "contours": [[{"x":52,"y":195,"on":true},{"x":52,"y":540,"on":true},{"x":52,"y":606,"on":false},{"x":79,"y":653,"on":true},{"x":102,"y":693,"on":false},{"x":143,"y":717,"on":true},{"x":188,"y":743,"on":false},{"x":312,"y":743,"on":false},{"x":357,"y":717,"on":true},{"x":397,"y":694,"on":false},{"x":421,"y":653,"on":true},{"x":448,"y":606,"on":false},{"x":448,"y":540,"on":true},{"x":448,"y":195,"on":true},{"x":448,"y":129,"on":false},{"x":421,"y":82,"on":true},{"x":398,"y":42,"on":false},{"x":357,"y":18,"on":true},{"x":312,"y":-8,"on":false},{"x":188,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":82,"on":true},{"x":52,"y":129,"on":false}],[{"x":132,"y":195,"on":true},{"x":132,"y":150,"on":false},{"x":150,"y":118,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":285,"y":64,"on":false},{"x":311,"y":79,"on":true},{"x":336,"y":93,"on":false},{"x":350,"y":118,"on":true},{"x":368,"y":149,"on":false},{"x":368,"y":195,"on":true},{"x":368,"y":540,"on":true},{"x":368,"y":585,"on":false},{"x":350,"y":617,"on":true},{"x":335,"y":642,"on":false},{"x":311,"y":656,"on":true},{"x":285,"y":671,"on":false},{"x":215,"y":671,"on":false},{"x":189,"y":656,"on":true},{"x":164,"y":642,"on":false},{"x":150,"y":617,"on":true},{"x":132,"y":586,"on":false},{"x":132,"y":540,"on":true}]], "references": [], - "instructions": [64,28,0,3,3,0,95,0,0,0,72,75,0,2,2,1,95,0,1,1,73,1,76,27,26,27,22,4,9,24,43] + "instructions": "QBwAAwMAXwAAAEhLAAICAV8AAQFJAUwbGhsWBAkYKw==" }, "Omicron": { "name": "Omicron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni041E": { "name": "uni041E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "o": { "name": "o", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":391,"on":false},{"x":84,"y":446,"on":true},{"x":109,"y":490,"on":false},{"x":193,"y":538,"on":false},{"x":307,"y":538,"on":false},{"x":349,"y":514,"on":true},{"x":390,"y":490,"on":false},{"x":416,"y":446,"on":true},{"x":448,"y":391,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":307,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":16,"on":true},{"x":110,"y":40,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":371,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":453,"on":true},{"x":281,"y":466,"on":false},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [64,28,0,3,3,0,95,0,0,0,75,75,0,2,2,1,95,0,1,1,73,1,76,27,26,26,21,4,9,24,43] + "instructions": "QBwAAwMAXwAAAEtLAAICAV8AAQFJAUwbGhoVBAkYKw==" }, "omicron": { "name": "omicron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni043E": { "name": "uni043E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Oslash": { "name": "Oslash", "advanceWidth": 500, "contours": [[{"x":51,"y":-23,"on":true},{"x":88,"y":68,"on":true},{"x":84,"y":74,"on":false},{"x":79,"y":82,"on":true},{"x":52,"y":129,"on":false},{"x":52,"y":195,"on":true},{"x":52,"y":540,"on":true},{"x":52,"y":606,"on":false},{"x":79,"y":653,"on":true},{"x":102,"y":693,"on":false},{"x":143,"y":717,"on":true},{"x":188,"y":743,"on":false},{"x":250,"y":743,"on":true},{"x":307,"y":743,"on":false},{"x":349,"y":721,"on":true},{"x":375,"y":785,"on":true},{"x":449,"y":758,"on":true},{"x":412,"y":667,"on":true},{"x":416,"y":661,"on":false},{"x":421,"y":653,"on":true},{"x":448,"y":606,"on":false},{"x":448,"y":540,"on":true},{"x":448,"y":195,"on":true},{"x":448,"y":129,"on":false},{"x":421,"y":82,"on":true},{"x":398,"y":42,"on":false},{"x":357,"y":18,"on":true},{"x":312,"y":-8,"on":false},{"x":250,"y":-8,"on":true},{"x":193,"y":-8,"on":false},{"x":151,"y":14,"on":true},{"x":125,"y":-50,"on":true}],[{"x":132,"y":195,"on":true},{"x":132,"y":187,"on":false},{"x":133,"y":180,"on":true},{"x":321,"y":650,"on":true},{"x":316,"y":654,"on":false},{"x":311,"y":656,"on":true},{"x":285,"y":671,"on":false},{"x":215,"y":671,"on":false},{"x":189,"y":656,"on":true},{"x":164,"y":642,"on":false},{"x":150,"y":617,"on":true},{"x":132,"y":586,"on":false},{"x":132,"y":540,"on":true}],[{"x":179,"y":85,"on":true},{"x":184,"y":81,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":285,"y":64,"on":false},{"x":311,"y":79,"on":true},{"x":336,"y":93,"on":false},{"x":350,"y":118,"on":true},{"x":368,"y":149,"on":false},{"x":368,"y":195,"on":true},{"x":368,"y":540,"on":true},{"x":368,"y":548,"on":false},{"x":367,"y":555,"on":true}]], "references": [], - "instructions": [64,55,14,1,2,0,57,35,34,17,1,5,3,2,30,1,1,3,3,74,16,15,2,0,72,31,1,1,71,0,2,2,0,95,0,0,0,72,75,0,3,3,1,95,0,1,1,73,1,76,25,25,46,43,4,9,24,43] + "instructions": "QDcOAQIAOSMiEQEFAwIeAQEDA0oQDwIASB8BAUcAAgIAXwAAAEhLAAMDAV8AAQFJAUwZGS4rBAkYKw==" }, "oslash": { "name": "oslash", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":391,"on":false},{"x":84,"y":446,"on":true},{"x":109,"y":490,"on":false},{"x":193,"y":538,"on":false},{"x":250,"y":538,"on":true},{"x":304,"y":538,"on":false},{"x":345,"y":516,"on":true},{"x":377,"y":574,"on":true},{"x":447,"y":539,"on":true},{"x":405,"y":463,"on":true},{"x":411,"y":455,"on":false},{"x":416,"y":446,"on":true},{"x":448,"y":391,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":307,"y":-8,"on":false},{"x":250,"y":-8,"on":true},{"x":196,"y":-8,"on":false},{"x":155,"y":14,"on":true},{"x":123,"y":-44,"on":true},{"x":53,"y":-9,"on":true},{"x":95,"y":67,"on":true},{"x":89,"y":75,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":181,"on":false},{"x":142,"y":150,"on":true},{"x":308,"y":450,"on":true},{"x":306,"y":451,"on":false},{"x":304,"y":453,"on":true},{"x":281,"y":466,"on":false},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}],[{"x":192,"y":80,"on":true},{"x":194,"y":79,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":350,"on":false},{"x":358,"y":380,"on":true}]], "references": [], - "instructions": [64,56,8,1,2,0,55,33,32,26,11,5,3,2,23,1,1,3,3,74,10,9,2,0,72,25,24,2,1,71,0,2,2,0,95,0,0,0,75,75,0,3,3,1,95,0,1,1,73,1,76,25,30,45,37,4,9,24,43] + "instructions": "QDgIAQIANyEgGgsFAwIXAQEDA0oKCQIASBkYAgFHAAICAF8AAABLSwADAwFfAAEBSQFMGR4tJQQJGCs=" }, "uni019F": { "name": "uni019F", "advanceWidth": 500, "contours": [[{"x":52,"y":195,"on":true},{"x":52,"y":540,"on":true},{"x":52,"y":606,"on":false},{"x":79,"y":653,"on":true},{"x":102,"y":693,"on":false},{"x":143,"y":717,"on":true},{"x":188,"y":743,"on":false},{"x":312,"y":743,"on":false},{"x":357,"y":717,"on":true},{"x":397,"y":694,"on":false},{"x":421,"y":653,"on":true},{"x":448,"y":606,"on":false},{"x":448,"y":540,"on":true},{"x":448,"y":195,"on":true},{"x":448,"y":129,"on":false},{"x":421,"y":82,"on":true},{"x":398,"y":42,"on":false},{"x":357,"y":18,"on":true},{"x":312,"y":-8,"on":false},{"x":188,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":82,"on":true},{"x":52,"y":129,"on":false}],[{"x":132,"y":195,"on":true},{"x":132,"y":150,"on":false},{"x":150,"y":118,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":285,"y":64,"on":false},{"x":311,"y":79,"on":true},{"x":336,"y":93,"on":false},{"x":350,"y":118,"on":true},{"x":368,"y":149,"on":false},{"x":368,"y":195,"on":true},{"x":368,"y":332,"on":true},{"x":132,"y":332,"on":true}],[{"x":132,"y":404,"on":true},{"x":368,"y":404,"on":true},{"x":368,"y":540,"on":true},{"x":368,"y":585,"on":false},{"x":350,"y":617,"on":true},{"x":335,"y":642,"on":false},{"x":311,"y":656,"on":true},{"x":285,"y":671,"on":false},{"x":215,"y":671,"on":false},{"x":189,"y":656,"on":true},{"x":164,"y":642,"on":false},{"x":150,"y":617,"on":true},{"x":132,"y":586,"on":false},{"x":132,"y":540,"on":true}]], "references": [], - "instructions": [64,38,0,4,0,3,2,4,3,101,0,5,5,0,95,0,0,0,72,75,0,2,2,1,95,0,1,1,73,1,76,22,17,22,26,27,22,6,9,26,43] + "instructions": "QCYABAADAgQDZQAFBQBfAAAASEsAAgIBXwABAUkBTBYRFhobFgYJGis=" }, "uni04E8": { "name": "uni04E8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni019F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni03F4": { "name": "uni03F4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni019F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0275": { "name": "uni0275", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":391,"on":false},{"x":84,"y":446,"on":true},{"x":109,"y":490,"on":false},{"x":193,"y":538,"on":false},{"x":307,"y":538,"on":false},{"x":349,"y":514,"on":true},{"x":390,"y":490,"on":false},{"x":416,"y":446,"on":true},{"x":448,"y":391,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":307,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":16,"on":true},{"x":110,"y":40,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":229,"on":true},{"x":132,"y":229,"on":true}],[{"x":132,"y":301,"on":true},{"x":368,"y":301,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":371,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":453,"on":true},{"x":281,"y":466,"on":false},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [64,38,0,4,0,3,2,4,3,101,0,5,5,0,95,0,0,0,75,75,0,2,2,1,95,0,1,1,73,1,76,22,17,22,26,26,21,6,9,26,43] + "instructions": "QCYABAADAgQDZQAFBQBfAAAAS0sAAgIBXwABAUkBTBYRFhoaFQYJGis=" }, "uni04E9": { "name": "uni04E9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0275","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0298": { "name": "uni0298", "advanceWidth": 500, "contours": [[{"x":52,"y":195,"on":true},{"x":52,"y":540,"on":true},{"x":52,"y":606,"on":false},{"x":79,"y":653,"on":true},{"x":102,"y":693,"on":false},{"x":143,"y":717,"on":true},{"x":188,"y":743,"on":false},{"x":312,"y":743,"on":false},{"x":357,"y":717,"on":true},{"x":397,"y":694,"on":false},{"x":421,"y":653,"on":true},{"x":448,"y":606,"on":false},{"x":448,"y":540,"on":true},{"x":448,"y":195,"on":true},{"x":448,"y":129,"on":false},{"x":421,"y":82,"on":true},{"x":398,"y":42,"on":false},{"x":357,"y":18,"on":true},{"x":312,"y":-8,"on":false},{"x":188,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":82,"on":true},{"x":52,"y":129,"on":false}],[{"x":132,"y":195,"on":true},{"x":132,"y":150,"on":false},{"x":150,"y":118,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":285,"y":64,"on":false},{"x":311,"y":79,"on":true},{"x":336,"y":93,"on":false},{"x":350,"y":118,"on":true},{"x":368,"y":149,"on":false},{"x":368,"y":195,"on":true},{"x":368,"y":540,"on":true},{"x":368,"y":585,"on":false},{"x":350,"y":617,"on":true},{"x":335,"y":642,"on":false},{"x":311,"y":656,"on":true},{"x":285,"y":671,"on":false},{"x":215,"y":671,"on":false},{"x":189,"y":656,"on":true},{"x":164,"y":642,"on":false},{"x":150,"y":617,"on":true},{"x":132,"y":586,"on":false},{"x":132,"y":540,"on":true}],[{"x":191,"y":395,"on":false},{"x":191,"y":340,"on":false},{"x":223,"y":308,"on":false},{"x":277,"y":308,"on":false},{"x":309,"y":340,"on":false},{"x":309,"y":395,"on":false},{"x":277,"y":426,"on":false},{"x":223,"y":426,"on":false}]], "references": [], - "instructions": [64,45,0,5,3,4,3,5,4,126,0,4,2,3,4,2,124,0,3,3,0,95,0,0,0,72,75,0,2,2,1,96,0,1,1,73,1,76,19,24,27,26,27,22,6,9,26,43] + "instructions": "QC0ABQMEAwUEfgAEAgMEAnwAAwMAXwAAAEhLAAICAWAAAQFJAUwTGBsaGxYGCRor" }, "uni1D16": { "name": "uni1D16", "advanceWidth": 500, "contours": [[{"x":52,"y":265,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":391,"on":false},{"x":84,"y":446,"on":true},{"x":109,"y":490,"on":false},{"x":193,"y":538,"on":false},{"x":307,"y":538,"on":false},{"x":349,"y":514,"on":true},{"x":390,"y":490,"on":false},{"x":416,"y":446,"on":true},{"x":448,"y":391,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":265,"on":true},{"x":368,"y":265,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":371,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":453,"on":true},{"x":281,"y":466,"on":false},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true},{"x":132,"y":265,"on":true}]], "references": [], - "instructions": [64,30,4,3,2,1,2,1,132,0,2,2,0,95,0,0,0,75,2,76,0,0,0,26,0,26,22,22,21,5,9,23,43] + "instructions": "QB4EAwIBAgGEAAICAF8AAABLAkwAAAAaABoWFhUFCRcr" }, "uni1D17": { "name": "uni1D17", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":265,"on":true},{"x":132,"y":265,"on":true},{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":265,"on":true},{"x":448,"y":265,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":307,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":16,"on":true},{"x":110,"y":40,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false}]], "references": [], - "instructions": [64,24,2,1,0,1,0,131,0,1,1,3,95,0,3,3,73,3,76,21,22,22,17,4,9,24,43] + "instructions": "QBgCAQABAIMAAQEDXwADA0kDTBUWFhEECRgr" }, "Q": { "name": "Q", "advanceWidth": 500, "contours": [[{"x":52,"y":195,"on":true},{"x":52,"y":540,"on":true},{"x":52,"y":606,"on":false},{"x":79,"y":653,"on":true},{"x":102,"y":693,"on":false},{"x":143,"y":717,"on":true},{"x":188,"y":743,"on":false},{"x":312,"y":743,"on":false},{"x":357,"y":717,"on":true},{"x":397,"y":694,"on":false},{"x":421,"y":653,"on":true},{"x":448,"y":606,"on":false},{"x":448,"y":540,"on":true},{"x":448,"y":195,"on":true},{"x":448,"y":129,"on":false},{"x":421,"y":82,"on":true},{"x":398,"y":42,"on":false},{"x":357,"y":18,"on":true},{"x":340,"y":8,"on":false},{"x":321,"y":2,"on":true},{"x":358,"y":-147,"on":true},{"x":278,"y":-147,"on":true},{"x":242,"y":-8,"on":true},{"x":185,"y":-6,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":82,"on":true},{"x":52,"y":129,"on":false}],[{"x":132,"y":195,"on":true},{"x":132,"y":150,"on":false},{"x":150,"y":118,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":285,"y":64,"on":false},{"x":311,"y":79,"on":true},{"x":336,"y":93,"on":false},{"x":350,"y":118,"on":true},{"x":368,"y":149,"on":false},{"x":368,"y":195,"on":true},{"x":368,"y":540,"on":true},{"x":368,"y":585,"on":false},{"x":350,"y":617,"on":true},{"x":335,"y":642,"on":false},{"x":311,"y":656,"on":true},{"x":285,"y":671,"on":false},{"x":215,"y":671,"on":false},{"x":189,"y":656,"on":true},{"x":164,"y":642,"on":false},{"x":150,"y":617,"on":true},{"x":132,"y":586,"on":false},{"x":132,"y":540,"on":true}]], "references": [], - "instructions": [181,19,1,2,3,1,74,75,176,9,80,88,64,27,0,1,2,2,1,111,0,4,4,0,95,0,0,0,72,75,0,3,3,2,95,0,2,2,73,2,76,27,64,26,0,1,2,1,132,0,4,4,0,95,0,0,0,72,75,0,3,3,2,95,0,2,2,73,2,76,89,183,27,26,17,29,22,5,9,25,43] + "instructions": "tRMBAgMBSkuwCVBYQBsAAQICAW8ABAQAXwAAAEhLAAMDAl8AAgJJAkwbQBoAAQIBhAAEBABfAAAASEsAAwMCXwACAkkCTFm3GxoRHRYFCRkr" }, "uni051A": { "name": "uni051A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Q","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "q": { "name": "q", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":398,"on":false},{"x":85,"y":456,"on":true},{"x":109,"y":497,"on":false},{"x":146,"y":518,"on":true},{"x":180,"y":538,"on":false},{"x":225,"y":538,"on":true},{"x":267,"y":538,"on":false},{"x":299,"y":520,"on":true},{"x":334,"y":500,"on":false},{"x":357,"y":460,"on":true},{"x":359,"y":457,"on":false},{"x":360,"y":454,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":-205,"on":true},{"x":360,"y":-205,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":225,"y":-8,"on":true},{"x":180,"y":-8,"on":false},{"x":146,"y":12,"on":true},{"x":109,"y":33,"on":false},{"x":85,"y":74,"on":true},{"x":52,"y":132,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":249,"y":466,"on":true},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [182,18,13,2,4,5,1,74,75,176,29,80,88,64,27,0,5,5,0,95,1,1,0,0,75,75,0,4,4,3,95,0,3,3,73,75,0,2,2,69,2,76,27,64,31,0,1,1,67,75,0,5,5,0,95,0,0,0,75,75,0,4,4,3,95,0,3,3,73,75,0,2,2,69,2,76,89,64,9,43,42,38,17,22,38,6,9,26,43] + "instructions": "thINAgQFAUpLsB1QWEAbAAUFAF8BAQAAS0sABAQDXwADA0lLAAICRQJMG0AfAAEBQ0sABQUAXwAAAEtLAAQEA18AAwNJSwACAkUCTFlACSsqJhEWJgYJGis=" }, "uni051B": { "name": "uni051B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"q","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni024A": { "name": "uni024A", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":515,"on":true},{"x":52,"y":603,"on":false},{"x":85,"y":661,"on":true},{"x":109,"y":702,"on":false},{"x":146,"y":723,"on":true},{"x":180,"y":743,"on":false},{"x":225,"y":743,"on":true},{"x":267,"y":743,"on":false},{"x":299,"y":725,"on":true},{"x":334,"y":705,"on":false},{"x":357,"y":665,"on":true},{"x":359,"y":662,"on":false},{"x":360,"y":659,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":0,"on":true},{"x":440,"y":-47,"on":false},{"x":454,"y":-71,"on":true},{"x":466,"y":-91,"on":false},{"x":486,"y":-103,"on":true},{"x":513,"y":-119,"on":false},{"x":570,"y":-119,"on":true},{"x":570,"y":-191,"on":true},{"x":478,"y":-191,"on":false},{"x":434,"y":-166,"on":true},{"x":401,"y":-147,"on":false},{"x":382,"y":-114,"on":true},{"x":360,"y":-75,"on":false},{"x":360,"y":0,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":225,"y":-8,"on":true},{"x":180,"y":-8,"on":false},{"x":146,"y":12,"on":true},{"x":109,"y":33,"on":false},{"x":85,"y":74,"on":true},{"x":52,"y":132,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":515,"on":true},{"x":360,"y":578,"on":false},{"x":337,"y":619,"on":true},{"x":322,"y":646,"on":false},{"x":298,"y":659,"on":true},{"x":277,"y":671,"on":false},{"x":249,"y":671,"on":true},{"x":219,"y":671,"on":false},{"x":196,"y":658,"on":true},{"x":171,"y":644,"on":false},{"x":155,"y":615,"on":true},{"x":132,"y":575,"on":false},{"x":132,"y":515,"on":true}]], "references": [], - "instructions": [182,30,13,2,5,6,1,74,75,176,29,80,88,64,32,0,6,6,0,95,1,1,0,0,72,75,0,5,5,4,95,0,4,4,73,75,0,2,2,3,95,0,3,3,69,3,76,27,75,176,35,80,88,64,36,0,1,1,64,75,0,6,6,0,95,0,0,0,72,75,0,5,5,4,95,0,4,4,73,75,0,2,2,3,95,0,3,3,69,3,76,27,64,33,0,2,0,3,2,3,99,0,1,1,64,75,0,6,6,0,95,0,0,0,72,75,0,5,5,4,95,0,4,4,73,4,76,89,89,64,10,43,42,43,17,22,22,38,7,9,27,43] + "instructions": "th4NAgUGAUpLsB1QWEAgAAYGAF8BAQAASEsABQUEXwAEBElLAAICA18AAwNFA0wbS7AjUFhAJAABAUBLAAYGAF8AAABISwAFBQRfAAQESUsAAgIDXwADA0UDTBtAIQACAAMCA2MAAQFASwAGBgBfAAAASEsABQUEXwAEBEkETFlZQAorKisRFhYmBwkbKw==" }, "uni024B": { "name": "uni024B", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":398,"on":false},{"x":85,"y":456,"on":true},{"x":109,"y":497,"on":false},{"x":146,"y":518,"on":true},{"x":180,"y":538,"on":false},{"x":225,"y":538,"on":true},{"x":267,"y":538,"on":false},{"x":299,"y":520,"on":true},{"x":334,"y":500,"on":false},{"x":357,"y":460,"on":true},{"x":359,"y":457,"on":false},{"x":360,"y":454,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":440,"y":-47,"on":false},{"x":454,"y":-71,"on":true},{"x":466,"y":-91,"on":false},{"x":486,"y":-103,"on":true},{"x":513,"y":-119,"on":false},{"x":570,"y":-119,"on":true},{"x":570,"y":-191,"on":true},{"x":478,"y":-191,"on":false},{"x":434,"y":-166,"on":true},{"x":401,"y":-147,"on":false},{"x":382,"y":-114,"on":true},{"x":360,"y":-75,"on":false},{"x":360,"y":0,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":225,"y":-8,"on":true},{"x":180,"y":-8,"on":false},{"x":146,"y":12,"on":true},{"x":109,"y":33,"on":false},{"x":85,"y":74,"on":true},{"x":52,"y":132,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":157,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":249,"y":466,"on":true},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [182,30,13,2,5,6,1,74,75,176,29,80,88,64,32,0,6,6,0,95,1,1,0,0,75,75,0,5,5,4,95,0,4,4,73,75,0,2,2,3,95,0,3,3,69,3,76,27,75,176,35,80,88,64,36,0,1,1,67,75,0,6,6,0,95,0,0,0,75,75,0,5,5,4,95,0,4,4,73,75,0,2,2,3,95,0,3,3,69,3,76,27,64,33,0,2,0,3,2,3,99,0,1,1,67,75,0,6,6,0,95,0,0,0,75,75,0,5,5,4,95,0,4,4,73,4,76,89,89,64,10,43,42,43,17,22,22,38,7,9,27,43] + "instructions": "th4NAgUGAUpLsB1QWEAgAAYGAF8BAQAAS0sABQUEXwAEBElLAAICA18AAwNFA0wbS7AjUFhAJAABAUNLAAYGAF8AAABLSwAFBQRfAAQESUsAAgIDXwADA0UDTBtAIQACAAMCA2MAAQFDSwAGBgBfAAAAS0sABQUEXwAEBEkETFlZQAorKisRFhYmBwkbKw==" }, "uni02A0": { "name": "uni02A0", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":398,"on":false},{"x":85,"y":456,"on":true},{"x":109,"y":497,"on":false},{"x":146,"y":518,"on":true},{"x":180,"y":538,"on":false},{"x":225,"y":538,"on":true},{"x":267,"y":538,"on":false},{"x":299,"y":520,"on":true},{"x":334,"y":500,"on":false},{"x":357,"y":460,"on":true},{"x":359,"y":457,"on":false},{"x":360,"y":454,"on":true},{"x":360,"y":530,"on":true},{"x":360,"y":587,"on":false},{"x":384,"y":629,"on":true},{"x":407,"y":668,"on":false},{"x":448,"y":692,"on":true},{"x":498,"y":721,"on":false},{"x":570,"y":721,"on":true},{"x":570,"y":649,"on":true},{"x":526,"y":649,"on":false},{"x":495,"y":631,"on":true},{"x":440,"y":599,"on":false},{"x":440,"y":530,"on":true},{"x":440,"y":-205,"on":true},{"x":360,"y":-205,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":225,"y":-8,"on":true},{"x":180,"y":-8,"on":false},{"x":146,"y":12,"on":true},{"x":109,"y":33,"on":false},{"x":85,"y":74,"on":true},{"x":52,"y":132,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":157,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":249,"y":466,"on":true},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [182,28,13,2,5,6,1,74,75,176,35,80,88,64,36,0,2,2,1,95,0,1,1,64,75,0,6,6,0,95,0,0,0,75,75,0,5,5,4,95,0,4,4,73,75,0,3,3,69,3,76,27,64,34,0,1,0,2,0,1,2,103,0,6,6,0,95,0,0,0,75,75,0,5,5,4,95,0,4,4,73,75,0,3,3,69,3,76,89,64,10,43,42,38,20,17,27,38,7,9,27,43] + "instructions": "thwNAgUGAUpLsCNQWEAkAAICAV8AAQFASwAGBgBfAAAAS0sABQUEXwAEBElLAAMDRQNMG0AiAAEAAgABAmcABgYAXwAAAEtLAAUFBF8ABARJSwADA0UDTFlACisqJhQRGyYHCRsr" }, "N": { "name": "N", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":171,"y":735,"on":true},{"x":363,"y":134,"on":true},{"x":360,"y":405,"on":false},{"x":360,"y":441,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":0,"on":true},{"x":329,"y":0,"on":true},{"x":137,"y":601,"on":true},{"x":140,"y":322,"on":false},{"x":140,"y":294,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,33,10,3,2,2,0,1,74,1,1,0,0,64,75,4,3,2,2,2,65,2,76,0,0,0,13,0,13,17,20,17,5,9,23,43] + "instructions": "QCEKAwICAAFKAQEAAEBLBAMCAgJBAkwAAAANAA0RFBEFCRcr" }, "Nu": { "name": "Nu", "advanceWidth": 500, "contours": [], "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0274": { "name": "uni0274", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":176,"y":530,"on":true},{"x":360,"y":102,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":324,"y":0,"on":true},{"x":140,"y":428,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,33,8,3,2,2,0,1,74,1,1,0,0,67,75,4,3,2,2,2,65,2,76,0,0,0,9,0,9,17,18,17,5,9,23,43] + "instructions": "QCEIAwICAAFKAQEAAENLBAMCAgJBAkwAAAAJAAkREhEFCRcr" }, "uni019D": { "name": "uni019D", "advanceWidth": 500, "contours": [[{"x":-70,"y":-119,"on":true},{"x":-26,"y":-119,"on":false},{"x":5,"y":-101,"on":true},{"x":60,"y":-69,"on":false},{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":116,"y":735,"on":false},{"x":171,"y":735,"on":true},{"x":363,"y":134,"on":true},{"x":360,"y":405,"on":false},{"x":360,"y":441,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":0,"on":true},{"x":384,"y":0,"on":false},{"x":329,"y":0,"on":true},{"x":137,"y":601,"on":true},{"x":140,"y":323,"on":false},{"x":140,"y":294,"on":true},{"x":140,"y":0,"on":true},{"x":140,"y":-57,"on":false},{"x":116,"y":-99,"on":true},{"x":93,"y":-138,"on":false},{"x":52,"y":-162,"on":true},{"x":2,"y":-191,"on":false},{"x":-70,"y":-191,"on":true}]], "references": [], - "instructions": [182,16,8,2,3,1,1,74,75,176,35,80,88,64,22,2,1,1,1,64,75,0,3,3,65,75,0,0,0,4,95,0,4,4,69,4,76,27,64,19,0,0,0,4,0,4,99,2,1,1,1,64,75,0,3,3,65,3,76,89,183,25,33,20,36,16,5,9,25,43] + "instructions": "thAIAgMBAUpLsCNQWEAWAgEBAUBLAAMDQUsAAAAEXwAEBEUETBtAEwAAAAQABGMCAQEBQEsAAwNBA0xZtxkhFCQQBQkZKw==" }, "n": { "name": "n", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":317,"y":538,"on":false},{"x":348,"y":520,"on":true},{"x":383,"y":500,"on":false},{"x":406,"y":460,"on":true},{"x":440,"y":401,"on":false},{"x":440,"y":310,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":374,"on":false},{"x":140,"y":310,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [181,3,1,2,3,1,74,75,176,29,80,88,64,19,0,3,3,0,95,1,1,0,0,67,75,5,4,2,2,2,65,2,76,27,64,23,0,0,0,67,75,0,3,3,1,95,0,1,1,75,75,5,4,2,2,2,65,2,76,89,64,13,0,0,0,29,0,29,22,22,22,17,6,9,24,43] + "instructions": "tQMBAgMBSkuwHVBYQBMAAwMAXwEBAABDSwUEAgICQQJMG0AXAAAAQ0sAAwMBXwABAUtLBQQCAgJBAkxZQA0AAAAdAB0WFhYRBgkYKw==" }, "glyph355": { "name": "glyph355", "advanceWidth": 500, "contours": [], "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "napostrophe": { "name": "napostrophe", "advanceWidth": 500, "contours": [], "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":310,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "eng": { "name": "eng", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":317,"y":538,"on":false},{"x":348,"y":520,"on":true},{"x":383,"y":500,"on":false},{"x":406,"y":460,"on":true},{"x":440,"y":401,"on":false},{"x":440,"y":310,"on":true},{"x":440,"y":0,"on":true},{"x":440,"y":-57,"on":false},{"x":416,"y":-99,"on":true},{"x":393,"y":-138,"on":false},{"x":352,"y":-162,"on":true},{"x":302,"y":-191,"on":false},{"x":230,"y":-191,"on":true},{"x":230,"y":-119,"on":true},{"x":274,"y":-119,"on":false},{"x":305,"y":-101,"on":true},{"x":360,"y":-69,"on":false},{"x":360,"y":0,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":374,"on":false},{"x":140,"y":310,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [181,3,1,5,4,1,74,75,176,29,80,88,64,28,0,4,4,0,95,1,1,0,0,67,75,6,1,5,5,65,75,0,3,3,2,95,0,2,2,69,2,76,27,75,176,35,80,88,64,32,0,0,0,67,75,0,4,4,1,95,0,1,1,75,75,6,1,5,5,65,75,0,3,3,2,95,0,2,2,69,2,76,27,64,29,0,3,0,2,3,2,99,0,0,0,67,75,0,4,4,1,95,0,1,1,75,75,6,1,5,5,65,5,76,89,89,64,14,0,0,0,39,0,39,25,17,27,22,17,7,9,25,43] + "instructions": "tQMBBQQBSkuwHVBYQBwABAQAXwEBAABDSwYBBQVBSwADAwJfAAICRQJMG0uwI1BYQCAAAABDSwAEBAFfAAEBS0sGAQUFQUsAAwMCXwACAkUCTBtAHQADAAIDAmMAAABDSwAEBAFfAAEBS0sGAQUFQQVMWVlADgAAACcAJxkRGxYRBwkZKw==" }, "Eng": { "name": "Eng", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":679,"on":true},{"x":160,"y":707,"on":false},{"x":188,"y":723,"on":true},{"x":223,"y":743,"on":false},{"x":318,"y":743,"on":false},{"x":353,"y":723,"on":true},{"x":389,"y":702,"on":false},{"x":411,"y":664,"on":true},{"x":440,"y":614,"on":false},{"x":440,"y":540,"on":true},{"x":440,"y":183,"on":true},{"x":440,"y":122,"on":false},{"x":415,"y":79,"on":true},{"x":393,"y":40,"on":false},{"x":354,"y":18,"on":true},{"x":309,"y":-8,"on":false},{"x":246,"y":-8,"on":true},{"x":246,"y":64,"on":true},{"x":281,"y":64,"on":false},{"x":307,"y":79,"on":true},{"x":330,"y":92,"on":false},{"x":344,"y":116,"on":true},{"x":360,"y":144,"on":false},{"x":360,"y":183,"on":true},{"x":360,"y":540,"on":true},{"x":360,"y":586,"on":false},{"x":342,"y":618,"on":true},{"x":327,"y":643,"on":false},{"x":279,"y":671,"on":false},{"x":213,"y":671,"on":false},{"x":189,"y":657,"on":true},{"x":154,"y":637,"on":false},{"x":140,"y":595,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,10,3,1,4,0,35,1,3,4,2,74,75,176,29,80,88,64,24,0,4,4,0,95,1,1,0,0,64,75,0,3,3,2,95,6,5,2,2,2,73,2,76,27,64,32,0,0,0,64,75,0,4,4,1,95,0,1,1,72,75,6,1,5,5,65,75,0,3,3,2,95,0,2,2,73,2,76,89,64,14,0,0,0,36,0,36,26,17,27,20,17,7,9,25,43] + "instructions": "QAoDAQQAIwEDBAJKS7AdUFhAGAAEBABfAQEAAEBLAAMDAl8GBQICAkkCTBtAIAAAAEBLAAQEAV8AAQFISwYBBQVBSwADAwJfAAICSQJMWUAOAAAAJAAkGhEbFBEHCRkr" }, "uni0272": { "name": "uni0272", "advanceWidth": 500, "contours": [[{"x":-70,"y":-119,"on":true},{"x":-26,"y":-119,"on":false},{"x":5,"y":-101,"on":true},{"x":60,"y":-70,"on":false},{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":317,"y":538,"on":false},{"x":348,"y":520,"on":true},{"x":383,"y":500,"on":false},{"x":406,"y":460,"on":true},{"x":440,"y":401,"on":false},{"x":440,"y":310,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":374,"on":false},{"x":140,"y":310,"on":true},{"x":140,"y":0,"on":true},{"x":140,"y":-57,"on":false},{"x":116,"y":-99,"on":true},{"x":93,"y":-138,"on":false},{"x":52,"y":-162,"on":true},{"x":2,"y":-191,"on":false},{"x":-70,"y":-191,"on":true}]], "references": [], - "instructions": [181,7,1,3,4,1,74,75,176,29,80,88,64,27,0,4,4,1,95,2,1,1,1,67,75,0,3,3,65,75,0,0,0,5,95,0,5,5,69,5,76,27,75,176,35,80,88,64,31,0,1,1,67,75,0,4,4,2,95,0,2,2,75,75,0,3,3,65,75,0,0,0,5,95,0,5,5,69,5,76,27,64,28,0,0,0,5,0,5,99,0,1,1,67,75,0,4,4,2,95,0,2,2,75,75,0,3,3,65,3,76,89,89,64,9,27,22,22,22,20,16,6,9,26,43] + "instructions": "tQcBAwQBSkuwHVBYQBsABAQBXwIBAQFDSwADA0FLAAAABV8ABQVFBUwbS7AjUFhAHwABAUNLAAQEAl8AAgJLSwADA0FLAAAABV8ABQVFBUwbQBwAAAAFAAVjAAEBQ0sABAQCXwACAktLAAMDQQNMWVlACRsWFhYUEAYJGis=" }, "uni0235": { "name": "uni0235", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":467,"on":true},{"x":142,"y":472,"on":false},{"x":145,"y":476,"on":true},{"x":164,"y":510,"on":false},{"x":192,"y":525,"on":true},{"x":214,"y":538,"on":false},{"x":270,"y":538,"on":false},{"x":292,"y":525,"on":true},{"x":319,"y":509,"on":false},{"x":339,"y":476,"on":true},{"x":374,"y":415,"on":false},{"x":374,"y":310,"on":true},{"x":374,"y":207,"on":true},{"x":390,"y":210,"on":false},{"x":408,"y":210,"on":true},{"x":444,"y":210,"on":false},{"x":469,"y":195,"on":true},{"x":489,"y":184,"on":false},{"x":500,"y":164,"on":true},{"x":515,"y":137,"on":false},{"x":516,"y":101,"on":true},{"x":516,"y":66,"on":false},{"x":501,"y":40,"on":true},{"x":489,"y":19,"on":false},{"x":468,"y":7,"on":true},{"x":441,"y":-8,"on":false},{"x":407,"y":-8,"on":true},{"x":375,"y":-8,"on":false},{"x":350,"y":7,"on":true},{"x":326,"y":21,"on":false},{"x":312,"y":45,"on":true},{"x":304,"y":60,"on":false},{"x":299,"y":81,"on":true},{"x":274,"y":54,"on":false},{"x":253,"y":16,"on":true},{"x":230,"y":-24,"on":false},{"x":217,"y":-69,"on":true},{"x":144,"y":-50,"on":true},{"x":175,"y":58,"on":false},{"x":254,"y":137,"on":true},{"x":274,"y":157,"on":false},{"x":294,"y":172,"on":true},{"x":294,"y":310,"on":true},{"x":294,"y":388,"on":false},{"x":270,"y":431,"on":true},{"x":259,"y":451,"on":false},{"x":243,"y":459,"on":true},{"x":231,"y":466,"on":false},{"x":203,"y":466,"on":false},{"x":191,"y":459,"on":true},{"x":176,"y":450,"on":false},{"x":165,"y":431,"on":true},{"x":140,"y":388,"on":false},{"x":140,"y":310,"on":true},{"x":140,"y":0,"on":true}],[{"x":374,"y":112,"on":true},{"x":374,"y":82,"on":false},{"x":386,"y":69,"on":true},{"x":395,"y":60,"on":false},{"x":407,"y":61,"on":true},{"x":420,"y":61,"on":false},{"x":429,"y":70,"on":true},{"x":440,"y":81,"on":false},{"x":439,"y":122,"on":false},{"x":419,"y":142,"on":false},{"x":402,"y":142,"on":true},{"x":389,"y":142,"on":false},{"x":374,"y":136,"on":true}]], "references": [], - "instructions": [64,21,3,1,4,0,44,15,2,7,2,70,35,2,6,7,3,74,40,39,2,3,71,75,176,29,80,88,64,32,0,2,0,7,6,2,7,103,0,4,4,0,95,1,1,0,0,67,75,0,6,6,3,95,8,5,2,3,3,73,3,76,27,64,40,0,2,0,7,6,2,7,103,0,0,0,67,75,0,4,4,1,95,0,1,1,75,75,8,1,5,5,65,75,0,6,6,3,95,0,3,3,73,3,76,89,64,19,0,0,69,67,63,62,0,57,0,57,51,50,42,39,22,17,9,9,24,43] + "instructions": "QBUDAQQALA8CBwJGIwIGBwNKKCcCA0dLsB1QWEAgAAIABwYCB2cABAQAXwEBAABDSwAGBgNfCAUCAwNJA0wbQCgAAgAHBgIHZwAAAENLAAQEAV8AAQFLSwgBBQVBSwAGBgNfAAMDSQNMWUATAABFQz8+ADkAOTMyKicWEQkJGCs=" }, "eta": { "name": "eta", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":317,"y":538,"on":false},{"x":348,"y":520,"on":true},{"x":383,"y":500,"on":false},{"x":406,"y":460,"on":true},{"x":440,"y":401,"on":false},{"x":440,"y":310,"on":true},{"x":440,"y":-205,"on":true},{"x":360,"y":-205,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":374,"on":false},{"x":140,"y":310,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [181,3,1,4,3,1,74,75,176,29,80,88,64,23,0,3,3,0,95,1,1,0,0,47,75,5,1,4,4,45,75,0,2,2,49,2,76,27,64,27,0,0,0,47,75,0,3,3,1,95,0,1,1,55,75,5,1,4,4,45,75,0,2,2,49,2,76,89,64,13,0,0,0,29,0,29,22,22,22,17,6,8,24,43] + "instructions": "tQMBBAMBSkuwHVBYQBcAAwMAXwEBAAAvSwUBBAQtSwACAjECTBtAGwAAAC9LAAMDAV8AAQE3SwUBBAQtSwACAjECTFlADQAAAB0AHRYWFhEGCBgr" }, "uni0220": { "name": "uni0220", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":659,"on":true},{"x":142,"y":662,"on":false},{"x":143,"y":665,"on":true},{"x":166,"y":705,"on":false},{"x":201,"y":725,"on":true},{"x":233,"y":743,"on":false},{"x":317,"y":743,"on":false},{"x":348,"y":725,"on":true},{"x":383,"y":705,"on":false},{"x":406,"y":665,"on":true},{"x":440,"y":606,"on":false},{"x":440,"y":515,"on":true},{"x":440,"y":-205,"on":true},{"x":360,"y":-205,"on":true},{"x":360,"y":515,"on":true},{"x":360,"y":578,"on":false},{"x":337,"y":619,"on":true},{"x":322,"y":646,"on":false},{"x":298,"y":659,"on":true},{"x":277,"y":671,"on":false},{"x":223,"y":671,"on":false},{"x":202,"y":659,"on":true},{"x":179,"y":646,"on":false},{"x":163,"y":619,"on":true},{"x":140,"y":579,"on":false},{"x":140,"y":515,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [181,3,1,4,3,1,74,75,176,29,80,88,64,23,0,3,3,0,95,1,1,0,0,64,75,5,1,4,4,65,75,0,2,2,69,2,76,27,64,27,0,0,0,64,75,0,3,3,1,95,0,1,1,72,75,5,1,4,4,65,75,0,2,2,69,2,76,89,64,13,0,0,0,29,0,29,22,22,22,17,6,9,24,43] + "instructions": "tQMBBAMBSkuwHVBYQBcAAwMAXwEBAABASwUBBARBSwACAkUCTBtAGwAAAEBLAAMDAV8AAQFISwUBBARBSwACAkUCTFlADQAAAB0AHRYWFhEGCRgr" }, "uni019E": { "name": "uni019E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "U": { "name": "U", "advanceWidth": 500, "contours": [[{"x":60,"y":195,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":195,"on":true},{"x":140,"y":148,"on":false},{"x":159,"y":115,"on":true},{"x":173,"y":90,"on":false},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":327,"y":91,"on":false},{"x":341,"y":115,"on":true},{"x":360,"y":147,"on":false},{"x":360,"y":195,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":195,"on":true},{"x":440,"y":127,"on":false},{"x":412,"y":79,"on":true},{"x":389,"y":39,"on":false},{"x":350,"y":16,"on":true},{"x":308,"y":-8,"on":false},{"x":192,"y":-8,"on":false},{"x":150,"y":16,"on":true},{"x":111,"y":39,"on":false},{"x":88,"y":79,"on":true},{"x":60,"y":127,"on":false}]], "references": [], - "instructions": [64,24,2,1,0,0,64,75,0,1,1,3,95,0,3,3,73,3,76,22,21,21,17,4,9,24,43] + "instructions": "QBgCAQAAQEsAAQEDXwADA0kDTBYVFREECRgr" }, "uni1D1C": { "name": "uni1D1C", "advanceWidth": 500, "contours": [[{"x":60,"y":195,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":195,"on":true},{"x":140,"y":148,"on":false},{"x":159,"y":115,"on":true},{"x":173,"y":90,"on":false},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":327,"y":91,"on":false},{"x":341,"y":115,"on":true},{"x":360,"y":147,"on":false},{"x":360,"y":195,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":195,"on":true},{"x":440,"y":127,"on":false},{"x":412,"y":79,"on":true},{"x":389,"y":39,"on":false},{"x":350,"y":16,"on":true},{"x":308,"y":-8,"on":false},{"x":192,"y":-8,"on":false},{"x":150,"y":16,"on":true},{"x":111,"y":39,"on":false},{"x":88,"y":79,"on":true},{"x":60,"y":127,"on":false}]], "references": [], - "instructions": [64,24,2,1,0,0,67,75,0,1,1,3,95,0,3,3,73,3,76,22,21,21,17,4,9,24,43] + "instructions": "QBgCAQAAQ0sAAQEDXwADA0kDTBYVFREECRgr" }, "u": { "name": "u", "advanceWidth": 500, "contours": [[{"x":60,"y":220,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":183,"y":-8,"on":false},{"x":152,"y":10,"on":true},{"x":117,"y":30,"on":false},{"x":94,"y":70,"on":true},{"x":60,"y":129,"on":false}]], "references": [], - "instructions": [181,19,1,1,0,1,74,75,176,29,80,88,64,18,2,1,0,0,67,75,0,1,1,3,95,4,1,3,3,65,3,76,27,64,22,2,1,0,0,67,75,0,3,3,65,75,0,1,1,4,95,0,4,4,73,4,76,89,183,22,17,22,22,17,5,9,25,43] + "instructions": "tRMBAQABSkuwHVBYQBICAQAAQ0sAAQEDXwQBAwNBA0wbQBYCAQAAQ0sAAwNBSwABAQRfAAQESQRMWbcWERYWEQUJGSs=" }, "upsilon": { "name": "upsilon", "advanceWidth": 500, "contours": [[{"x":60,"y":220,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":220,"on":true},{"x":440,"y":137,"on":false},{"x":408,"y":81,"on":true},{"x":383,"y":38,"on":false},{"x":343,"y":15,"on":true},{"x":304,"y":-8,"on":false},{"x":197,"y":-8,"on":false},{"x":117,"y":38,"on":false},{"x":92,"y":81,"on":true},{"x":60,"y":137,"on":false}]], "references": [], - "instructions": [64,24,2,1,0,0,47,75,0,1,1,3,95,0,3,3,53,3,76,22,22,22,17,4,8,24,43] + "instructions": "QBgCAQAAL0sAAQEDXwADAzUDTBYWFhEECBgr" }, "uni01B2": { "name": "uni01B2", "advanceWidth": 500, "contours": [[{"x":60,"y":195,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":195,"on":true},{"x":140,"y":148,"on":false},{"x":159,"y":115,"on":true},{"x":173,"y":90,"on":false},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":327,"y":91,"on":false},{"x":341,"y":115,"on":true},{"x":360,"y":147,"on":false},{"x":360,"y":195,"on":true},{"x":360,"y":544,"on":true},{"x":360,"y":584,"on":false},{"x":344,"y":613,"on":true},{"x":315,"y":663,"on":false},{"x":250,"y":663,"on":true},{"x":250,"y":735,"on":true},{"x":311,"y":735,"on":false},{"x":354,"y":710,"on":true},{"x":392,"y":688,"on":false},{"x":415,"y":649,"on":true},{"x":440,"y":605,"on":false},{"x":440,"y":544,"on":true},{"x":440,"y":195,"on":true},{"x":440,"y":127,"on":false},{"x":412,"y":79,"on":true},{"x":389,"y":39,"on":false},{"x":350,"y":16,"on":true},{"x":308,"y":-8,"on":false},{"x":192,"y":-8,"on":false},{"x":150,"y":16,"on":true},{"x":111,"y":39,"on":false},{"x":88,"y":79,"on":true},{"x":60,"y":127,"on":false}]], "references": [], - "instructions": [64,30,0,2,2,0,95,3,1,0,0,64,75,0,1,1,4,95,0,4,4,73,4,76,27,17,24,21,17,5,9,25,43] + "instructions": "QB4AAgIAXwMBAABASwABAQRfAAQESQRMGxEYFREFCRkr" }, "uni028B": { "name": "uni028B", "advanceWidth": 500, "contours": [[{"x":60,"y":220,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":339,"on":true},{"x":360,"y":379,"on":false},{"x":344,"y":408,"on":true},{"x":315,"y":458,"on":false},{"x":250,"y":458,"on":true},{"x":250,"y":530,"on":true},{"x":311,"y":530,"on":false},{"x":354,"y":505,"on":true},{"x":392,"y":483,"on":false},{"x":415,"y":444,"on":true},{"x":440,"y":400,"on":false},{"x":440,"y":339,"on":true},{"x":440,"y":220,"on":true},{"x":440,"y":137,"on":false},{"x":408,"y":81,"on":true},{"x":383,"y":38,"on":false},{"x":343,"y":15,"on":true},{"x":304,"y":-8,"on":false},{"x":197,"y":-8,"on":false},{"x":117,"y":38,"on":false},{"x":92,"y":81,"on":true},{"x":60,"y":137,"on":false}]], "references": [], - "instructions": [64,30,0,2,2,0,95,3,1,0,0,67,75,0,1,1,4,95,0,4,4,73,4,76,27,17,25,22,17,5,9,25,43] + "instructions": "QB4AAgIAXwMBAABDSwABAQRfAAQESQRMGxEZFhEFCRkr" }, "M": { "name": "M", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":148,"y":735,"on":true},{"x":250,"y":339,"on":true},{"x":352,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":147,"on":true},{"x":360,"y":284,"on":false},{"x":370,"y":441,"on":true},{"x":375,"y":521,"on":false},{"x":377,"y":595,"on":true},{"x":280,"y":220,"on":true},{"x":220,"y":220,"on":true},{"x":123,"y":595,"on":true},{"x":125,"y":521,"on":false},{"x":130,"y":441,"on":true},{"x":140,"y":284,"on":false},{"x":140,"y":147,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,43,15,12,3,3,3,0,1,74,0,3,0,2,0,3,2,126,1,1,0,0,64,75,5,4,2,2,2,65,2,76,0,0,0,20,0,20,22,17,18,17,6,9,24,43] + "instructions": "QCsPDAMDAwABSgADAAIAAwJ+AQEAAEBLBQQCAgJBAkwAAAAUABQWERIRBgkYKw==" }, "Mu": { "name": "Mu", "advanceWidth": 500, "contours": [], "references": [{"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni041C": { "name": "uni041C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni043C": { "name": "uni043C", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":148,"y":530,"on":true},{"x":250,"y":245,"on":true},{"x":352,"y":530,"on":true},{"x":396,"y":530,"on":false},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":106,"on":true},{"x":360,"y":205,"on":false},{"x":370,"y":318,"on":true},{"x":375,"y":376,"on":false},{"x":377,"y":429,"on":true},{"x":280,"y":159,"on":true},{"x":220,"y":159,"on":true},{"x":123,"y":429,"on":true},{"x":125,"y":375,"on":false},{"x":130,"y":318,"on":true},{"x":140,"y":205,"on":false},{"x":140,"y":106,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,43,16,13,3,3,3,0,1,74,0,3,0,2,0,3,2,126,1,1,0,0,28,75,5,4,2,2,2,27,2,76,0,0,0,21,0,21,22,17,34,17,6,7,24,43] + "instructions": "QCsQDQMDAwABSgADAAIAAwJ+AQEAABxLBQQCAgIbAkwAAAAVABUWESIRBgcYKw==" }, "m": { "name": "m", "advanceWidth": 500, "contours": [[{"x":52,"y":0,"on":true},{"x":52,"y":530,"on":true},{"x":132,"y":530,"on":true},{"x":132,"y":496,"on":true},{"x":145,"y":519,"on":false},{"x":164,"y":530,"on":true},{"x":178,"y":538,"on":false},{"x":196,"y":538,"on":true},{"x":215,"y":538,"on":false},{"x":230,"y":529,"on":true},{"x":249,"y":518,"on":false},{"x":263,"y":494,"on":true},{"x":271,"y":481,"on":false},{"x":276,"y":465,"on":true},{"x":282,"y":482,"on":false},{"x":290,"y":496,"on":true},{"x":303,"y":519,"on":false},{"x":322,"y":530,"on":true},{"x":336,"y":538,"on":false},{"x":354,"y":538,"on":true},{"x":373,"y":538,"on":false},{"x":388,"y":529,"on":true},{"x":407,"y":518,"on":false},{"x":421,"y":494,"on":true},{"x":448,"y":447,"on":false},{"x":448,"y":365,"on":true},{"x":448,"y":0,"on":true},{"x":368,"y":0,"on":true},{"x":368,"y":365,"on":true},{"x":368,"y":436,"on":false},{"x":345,"y":459,"on":true},{"x":338,"y":466,"on":false},{"x":320,"y":466,"on":false},{"x":313,"y":459,"on":true},{"x":290,"y":436,"on":false},{"x":290,"y":365,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":365,"on":true},{"x":210,"y":436,"on":false},{"x":187,"y":459,"on":true},{"x":180,"y":466,"on":false},{"x":162,"y":466,"on":false},{"x":155,"y":459,"on":true},{"x":132,"y":436,"on":false},{"x":132,"y":365,"on":true},{"x":132,"y":0,"on":true}]], "references": [], - "instructions": [64,10,3,1,4,0,13,1,3,4,2,74,75,176,29,80,88,64,25,6,1,4,0,3,0,4,3,126,2,1,2,0,0,67,75,8,7,5,3,3,3,65,3,76,27,64,29,6,1,4,0,3,0,4,3,126,2,1,1,1,75,75,0,0,0,67,75,8,7,5,3,3,3,65,3,76,89,64,16,0,0,0,46,0,46,20,20,20,22,42,36,17,9,9,27,43] + "instructions": "QAoDAQQADQEDBAJKS7AdUFhAGQYBBAADAAQDfgIBAgAAQ0sIBwUDAwNBA0wbQB0GAQQAAwAEA34CAQEBS0sAAABDSwgHBQMDA0EDTFlAEAAAAC4ALhQUFBYqJBEJCRsr" }, "glyph375": { "name": "glyph375", "advanceWidth": 500, "contours": [], "references": [{"glyph":"m","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph376": { "name": "glyph376", "advanceWidth": 500, "contours": [[{"x":52,"y":0,"on":true},{"x":52,"y":530,"on":true},{"x":132,"y":530,"on":true},{"x":132,"y":496,"on":true},{"x":145,"y":519,"on":false},{"x":164,"y":530,"on":true},{"x":178,"y":538,"on":false},{"x":196,"y":538,"on":true},{"x":215,"y":538,"on":false},{"x":230,"y":529,"on":true},{"x":249,"y":518,"on":false},{"x":263,"y":494,"on":true},{"x":271,"y":481,"on":false},{"x":276,"y":465,"on":true},{"x":282,"y":482,"on":false},{"x":290,"y":496,"on":true},{"x":303,"y":519,"on":false},{"x":322,"y":530,"on":true},{"x":336,"y":538,"on":false},{"x":354,"y":538,"on":true},{"x":373,"y":538,"on":false},{"x":388,"y":529,"on":true},{"x":407,"y":518,"on":false},{"x":421,"y":494,"on":true},{"x":448,"y":447,"on":false},{"x":448,"y":365,"on":true},{"x":448,"y":72,"on":true},{"x":496,"y":72,"on":true},{"x":496,"y":-139,"on":true},{"x":416,"y":-139,"on":true},{"x":416,"y":0,"on":true},{"x":368,"y":0,"on":true},{"x":368,"y":365,"on":true},{"x":368,"y":436,"on":false},{"x":345,"y":459,"on":true},{"x":338,"y":466,"on":false},{"x":320,"y":466,"on":false},{"x":313,"y":459,"on":true},{"x":290,"y":436,"on":false},{"x":290,"y":365,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":365,"on":true},{"x":210,"y":436,"on":false},{"x":187,"y":459,"on":true},{"x":180,"y":466,"on":false},{"x":162,"y":466,"on":false},{"x":155,"y":459,"on":true},{"x":132,"y":436,"on":false},{"x":132,"y":365,"on":true},{"x":132,"y":0,"on":true}]], "references": [], - "instructions": [179,28,6,1,48,43] + "instructions": "sxwGATAr" }, "uni0271": { "name": "uni0271", "advanceWidth": 500, "contours": [[{"x":52,"y":0,"on":true},{"x":52,"y":530,"on":true},{"x":132,"y":530,"on":true},{"x":132,"y":496,"on":true},{"x":145,"y":519,"on":false},{"x":164,"y":530,"on":true},{"x":178,"y":538,"on":false},{"x":196,"y":538,"on":true},{"x":215,"y":538,"on":false},{"x":230,"y":529,"on":true},{"x":249,"y":518,"on":false},{"x":263,"y":494,"on":true},{"x":271,"y":481,"on":false},{"x":276,"y":465,"on":true},{"x":282,"y":482,"on":false},{"x":290,"y":496,"on":true},{"x":303,"y":519,"on":false},{"x":322,"y":530,"on":true},{"x":336,"y":538,"on":false},{"x":354,"y":538,"on":true},{"x":373,"y":538,"on":false},{"x":388,"y":529,"on":true},{"x":407,"y":518,"on":false},{"x":421,"y":494,"on":true},{"x":448,"y":447,"on":false},{"x":448,"y":365,"on":true},{"x":448,"y":0,"on":true},{"x":448,"y":-57,"on":false},{"x":424,"y":-99,"on":true},{"x":401,"y":-138,"on":false},{"x":360,"y":-162,"on":true},{"x":310,"y":-191,"on":false},{"x":238,"y":-191,"on":true},{"x":238,"y":-119,"on":true},{"x":282,"y":-119,"on":false},{"x":313,"y":-101,"on":true},{"x":368,"y":-69,"on":false},{"x":368,"y":0,"on":true},{"x":368,"y":365,"on":true},{"x":368,"y":436,"on":false},{"x":345,"y":459,"on":true},{"x":338,"y":466,"on":false},{"x":320,"y":466,"on":false},{"x":313,"y":459,"on":true},{"x":290,"y":436,"on":false},{"x":290,"y":365,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":365,"on":true},{"x":210,"y":436,"on":false},{"x":187,"y":459,"on":true},{"x":180,"y":466,"on":false},{"x":162,"y":466,"on":false},{"x":155,"y":459,"on":true},{"x":132,"y":436,"on":false},{"x":132,"y":365,"on":true},{"x":132,"y":0,"on":true}]], "references": [], - "instructions": [64,10,3,1,5,0,13,1,6,5,2,74,75,176,29,80,88,64,34,7,1,5,0,6,0,5,6,126,2,1,2,0,0,67,75,9,8,2,6,6,65,75,0,4,4,3,95,0,3,3,69,3,76,27,75,176,35,80,88,64,38,7,1,5,0,6,0,5,6,126,2,1,1,1,75,75,0,0,0,67,75,9,8,2,6,6,65,75,0,4,4,3,95,0,3,3,69,3,76,27,64,35,7,1,5,0,6,0,5,6,126,0,4,0,3,4,3,99,2,1,1,1,75,75,0,0,0,67,75,9,8,2,6,6,65,6,76,89,89,64,17,0,0,0,56,0,56,20,20,23,17,27,42,36,17,10,9,28,43] + "instructions": "QAoDAQUADQEGBQJKS7AdUFhAIgcBBQAGAAUGfgIBAgAAQ0sJCAIGBkFLAAQEA18AAwNFA0wbS7AjUFhAJgcBBQAGAAUGfgIBAQFLSwAAAENLCQgCBgZBSwAEBANfAAMDRQNMG0AjBwEFAAYABQZ+AAQAAwQDYwIBAQFLSwAAAENLCQgCBgZBBkxZWUARAAAAOAA4FBQXERsqJBEKCRwr" }, "uni026F": { "name": "uni026F", "advanceWidth": 500, "contours": [[{"x":52,"y":165,"on":true},{"x":52,"y":530,"on":true},{"x":132,"y":530,"on":true},{"x":132,"y":165,"on":true},{"x":132,"y":94,"on":false},{"x":155,"y":71,"on":true},{"x":162,"y":64,"on":false},{"x":180,"y":64,"on":false},{"x":187,"y":71,"on":true},{"x":210,"y":94,"on":false},{"x":210,"y":165,"on":true},{"x":210,"y":530,"on":true},{"x":290,"y":530,"on":true},{"x":290,"y":165,"on":true},{"x":290,"y":94,"on":false},{"x":313,"y":71,"on":true},{"x":320,"y":64,"on":false},{"x":338,"y":64,"on":false},{"x":345,"y":71,"on":true},{"x":368,"y":94,"on":false},{"x":368,"y":165,"on":true},{"x":368,"y":530,"on":true},{"x":448,"y":530,"on":true},{"x":448,"y":0,"on":true},{"x":368,"y":0,"on":true},{"x":368,"y":34,"on":true},{"x":355,"y":11,"on":false},{"x":336,"y":0,"on":true},{"x":322,"y":-8,"on":false},{"x":304,"y":-8,"on":true},{"x":285,"y":-8,"on":false},{"x":270,"y":1,"on":true},{"x":251,"y":12,"on":false},{"x":237,"y":36,"on":true},{"x":229,"y":49,"on":false},{"x":224,"y":65,"on":true},{"x":218,"y":48,"on":false},{"x":210,"y":34,"on":true},{"x":197,"y":11,"on":false},{"x":178,"y":0,"on":true},{"x":164,"y":-8,"on":false},{"x":146,"y":-8,"on":true},{"x":127,"y":-8,"on":false},{"x":112,"y":1,"on":true},{"x":93,"y":12,"on":false},{"x":79,"y":36,"on":true},{"x":52,"y":83,"on":false}]], "references": [], - "instructions": [64,10,35,1,1,0,25,1,5,1,2,74,75,176,29,80,88,64,24,3,1,1,0,5,0,1,5,126,4,2,2,0,0,67,75,7,6,2,5,5,65,5,76,27,64,28,3,1,1,0,5,0,1,5,126,4,2,2,0,0,67,75,0,5,5,65,75,7,1,6,6,73,6,76,89,64,11,42,36,17,20,20,20,20,17,8,9,28,43] + "instructions": "QAojAQEAGQEFAQJKS7AdUFhAGAMBAQAFAAEFfgQCAgAAQ0sHBgIFBUEFTBtAHAMBAQAFAAEFfgQCAgAAQ0sABQVBSwcBBgZJBkxZQAsqJBEUFBQUEQgJHCs=" }, "uni019C": { "name": "uni019C", "advanceWidth": 500, "contours": [[{"x":52,"y":165,"on":true},{"x":52,"y":735,"on":true},{"x":132,"y":735,"on":true},{"x":132,"y":165,"on":true},{"x":132,"y":94,"on":false},{"x":155,"y":71,"on":true},{"x":162,"y":64,"on":false},{"x":180,"y":64,"on":false},{"x":187,"y":71,"on":true},{"x":210,"y":94,"on":false},{"x":210,"y":165,"on":true},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":165,"on":true},{"x":290,"y":94,"on":false},{"x":313,"y":71,"on":true},{"x":320,"y":64,"on":false},{"x":338,"y":64,"on":false},{"x":345,"y":71,"on":true},{"x":368,"y":94,"on":false},{"x":368,"y":165,"on":true},{"x":368,"y":735,"on":true},{"x":448,"y":735,"on":true},{"x":448,"y":0,"on":true},{"x":368,"y":0,"on":true},{"x":368,"y":34,"on":true},{"x":355,"y":11,"on":false},{"x":336,"y":0,"on":true},{"x":322,"y":-8,"on":false},{"x":304,"y":-8,"on":true},{"x":285,"y":-8,"on":false},{"x":270,"y":1,"on":true},{"x":251,"y":12,"on":false},{"x":237,"y":36,"on":true},{"x":229,"y":49,"on":false},{"x":224,"y":65,"on":true},{"x":218,"y":48,"on":false},{"x":210,"y":34,"on":true},{"x":197,"y":11,"on":false},{"x":178,"y":0,"on":true},{"x":164,"y":-8,"on":false},{"x":146,"y":-8,"on":true},{"x":127,"y":-8,"on":false},{"x":112,"y":1,"on":true},{"x":93,"y":12,"on":false},{"x":79,"y":36,"on":true},{"x":52,"y":83,"on":false}]], "references": [], - "instructions": [64,10,35,1,1,0,25,1,5,1,2,74,75,176,29,80,88,64,24,3,1,1,0,5,0,1,5,126,4,2,2,0,0,64,75,7,6,2,5,5,65,5,76,27,64,28,3,1,1,0,5,0,1,5,126,4,2,2,0,0,64,75,0,5,5,65,75,7,1,6,6,73,6,76,89,64,11,42,36,17,20,20,20,20,17,8,9,28,43] + "instructions": "QAojAQEAGQEFAQJKS7AdUFhAGAMBAQAFAAEFfgQCAgAAQEsHBgIFBUEFTBtAHAMBAQAFAAEFfgQCAgAAQEsABQVBSwcBBgZJBkxZQAsqJBEUFBQUEQgJHCs=" }, "uni0270": { "name": "uni0270", "advanceWidth": 500, "contours": [[{"x":52,"y":165,"on":true},{"x":52,"y":530,"on":true},{"x":132,"y":530,"on":true},{"x":132,"y":165,"on":true},{"x":132,"y":94,"on":false},{"x":155,"y":71,"on":true},{"x":162,"y":64,"on":false},{"x":180,"y":64,"on":false},{"x":187,"y":71,"on":true},{"x":210,"y":94,"on":false},{"x":210,"y":165,"on":true},{"x":210,"y":530,"on":true},{"x":290,"y":530,"on":true},{"x":290,"y":165,"on":true},{"x":290,"y":94,"on":false},{"x":313,"y":71,"on":true},{"x":320,"y":64,"on":false},{"x":338,"y":64,"on":false},{"x":345,"y":71,"on":true},{"x":368,"y":94,"on":false},{"x":368,"y":165,"on":true},{"x":368,"y":530,"on":true},{"x":448,"y":530,"on":true},{"x":448,"y":-205,"on":true},{"x":368,"y":-205,"on":true},{"x":368,"y":34,"on":true},{"x":355,"y":11,"on":false},{"x":336,"y":0,"on":true},{"x":322,"y":-8,"on":false},{"x":304,"y":-8,"on":true},{"x":285,"y":-8,"on":false},{"x":270,"y":1,"on":true},{"x":251,"y":12,"on":false},{"x":237,"y":36,"on":true},{"x":229,"y":49,"on":false},{"x":224,"y":65,"on":true},{"x":218,"y":48,"on":false},{"x":210,"y":34,"on":true},{"x":197,"y":11,"on":false},{"x":178,"y":0,"on":true},{"x":164,"y":-8,"on":false},{"x":146,"y":-8,"on":true},{"x":127,"y":-8,"on":false},{"x":112,"y":1,"on":true},{"x":93,"y":12,"on":false},{"x":79,"y":36,"on":true},{"x":52,"y":83,"on":false}]], "references": [], - "instructions": [64,49,35,1,1,0,25,1,6,1,2,74,3,1,1,0,6,0,1,6,126,4,2,2,0,0,67,75,7,1,6,6,73,75,0,5,5,69,5,76,42,36,17,20,20,20,20,17,8,9,28,43] + "instructions": "QDEjAQEAGQEGAQJKAwEBAAYAAQZ+BAICAABDSwcBBgZJSwAFBUUFTCokERQUFBQRCAkcKw==" }, "H": { "name": "H", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":422,"on":true},{"x":360,"y":422,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":350,"on":true},{"x":140,"y":350,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,36,0,1,0,4,3,1,4,101,2,1,0,0,64,75,6,5,2,3,3,65,3,76,0,0,0,11,0,11,17,17,17,17,17,7,9,25,43] + "instructions": "QCQAAQAEAwEEZQIBAABASwYFAgMDQQNMAAAACwALEREREREHCRkr" }, "Eta": { "name": "Eta", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni041D": { "name": "uni041D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04A2": { "name": "uni04A2", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":422,"on":true},{"x":360,"y":422,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":72,"on":true},{"x":496,"y":72,"on":true},{"x":496,"y":-139,"on":true},{"x":416,"y":-139,"on":true},{"x":416,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":350,"on":true},{"x":140,"y":350,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,45,0,1,0,6,3,1,6,101,0,3,0,4,3,4,97,2,1,0,0,26,75,8,7,2,5,5,27,5,76,0,0,0,15,0,15,17,17,17,17,17,17,17,9,7,27,43] + "instructions": "QC0AAQAGAwEGZQADAAQDBGECAQAAGksIBwIFBRsFTAAAAA8ADxEREREREREJBxsr" }, "uni043D": { "name": "uni043D", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":314,"on":true},{"x":360,"y":314,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":242,"on":true},{"x":140,"y":242,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,36,0,1,0,4,3,1,4,101,2,1,0,0,28,75,6,5,2,3,3,27,3,76,0,0,0,11,0,11,17,17,17,17,17,7,7,25,43] + "instructions": "QCQAAQAEAwEEZQIBAAAcSwYFAgMDGwNMAAAACwALEREREREHBxkr" }, "uni029C": { "name": "uni029C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni043D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04A3": { "name": "uni04A3", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":314,"on":true},{"x":360,"y":314,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":72,"on":true},{"x":496,"y":72,"on":true},{"x":496,"y":-139,"on":true},{"x":416,"y":-139,"on":true},{"x":416,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":242,"on":true},{"x":140,"y":242,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,45,0,1,0,6,3,1,6,101,0,3,0,4,3,4,97,2,1,0,0,28,75,8,7,2,5,5,27,5,76,0,0,0,15,0,15,17,17,17,17,17,17,17,9,7,27,43] + "instructions": "QC0AAQAGAwEGZQADAAQDBGECAQAAHEsIBwIFBRsFTAAAAA8ADxEREREREREJBxsr" }, "Hbar": { "name": "Hbar", "advanceWidth": 500, "contours": [[{"x":18,"y":497,"on":true},{"x":18,"y":569,"on":true},{"x":60,"y":569,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":569,"on":true},{"x":360,"y":569,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":569,"on":true},{"x":482,"y":569,"on":true},{"x":482,"y":497,"on":true},{"x":440,"y":497,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":350,"on":true},{"x":140,"y":350,"on":true},{"x":140,"y":0,"on":true},{"x":60,"y":0,"on":true},{"x":60,"y":497,"on":true}],[{"x":140,"y":422,"on":true},{"x":360,"y":422,"on":true},{"x":360,"y":497,"on":true},{"x":140,"y":497,"on":true}]], "references": [], - "instructions": [64,56,4,2,2,0,11,12,9,3,5,10,0,5,101,0,10,0,7,6,10,7,101,3,1,1,1,64,75,8,1,6,6,65,6,76,0,0,23,22,21,20,0,19,0,19,17,17,17,17,17,17,17,17,17,13,9,29,43] + "instructions": "QDgEAgIACwwJAwUKAAVlAAoABwYKB2UDAQEBQEsIAQYGQQZMAAAXFhUUABMAExEREREREREREQ0JHSs=" }, "h": { "name": "h", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":317,"y":538,"on":false},{"x":348,"y":520,"on":true},{"x":383,"y":500,"on":false},{"x":406,"y":460,"on":true},{"x":440,"y":401,"on":false},{"x":440,"y":310,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":374,"on":false},{"x":140,"y":310,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,42,3,1,2,3,1,74,0,0,0,64,75,0,3,3,1,95,0,1,1,75,75,5,4,2,2,2,65,2,76,0,0,0,29,0,29,22,22,22,17,6,9,24,43] + "instructions": "QCoDAQIDAUoAAABASwADAwFfAAEBS0sFBAICAkECTAAAAB0AHRYWFhEGCRgr" }, "uni04BB": { "name": "uni04BB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0266": { "name": "uni0266", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":515,"on":true},{"x":60,"y":596,"on":false},{"x":92,"y":652,"on":true},{"x":117,"y":695,"on":false},{"x":199,"y":743,"on":false},{"x":311,"y":743,"on":false},{"x":353,"y":719,"on":true},{"x":394,"y":695,"on":false},{"x":419,"y":652,"on":true},{"x":438,"y":619,"on":false},{"x":445,"y":580,"on":true},{"x":369,"y":557,"on":true},{"x":364,"y":590,"on":false},{"x":349,"y":616,"on":true},{"x":333,"y":644,"on":false},{"x":308,"y":658,"on":true},{"x":285,"y":671,"on":false},{"x":225,"y":671,"on":false},{"x":203,"y":658,"on":true},{"x":179,"y":644,"on":false},{"x":163,"y":616,"on":true},{"x":140,"y":576,"on":false},{"x":140,"y":515,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":317,"y":538,"on":false},{"x":348,"y":520,"on":true},{"x":383,"y":500,"on":false},{"x":406,"y":460,"on":true},{"x":440,"y":401,"on":false},{"x":440,"y":310,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":374,"on":false},{"x":140,"y":310,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,53,12,11,2,2,1,24,1,3,4,2,74,0,1,1,0,95,0,0,0,72,75,0,4,4,2,95,0,2,2,75,75,6,5,2,3,3,65,3,76,0,0,0,50,0,50,22,22,27,27,21,7,9,25,43] + "instructions": "QDUMCwICARgBAwQCSgABAQBfAAAASEsABAQCXwACAktLBgUCAwNBA0wAAAAyADIWFhsbFQcJGSs=" }, "uni0267": { "name": "uni0267", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":515,"on":true},{"x":60,"y":596,"on":false},{"x":92,"y":652,"on":true},{"x":117,"y":695,"on":false},{"x":199,"y":743,"on":false},{"x":311,"y":743,"on":false},{"x":353,"y":719,"on":true},{"x":394,"y":695,"on":false},{"x":419,"y":652,"on":true},{"x":438,"y":619,"on":false},{"x":445,"y":580,"on":true},{"x":369,"y":557,"on":true},{"x":364,"y":590,"on":false},{"x":349,"y":616,"on":true},{"x":333,"y":644,"on":false},{"x":308,"y":658,"on":true},{"x":285,"y":671,"on":false},{"x":225,"y":671,"on":false},{"x":203,"y":658,"on":true},{"x":179,"y":644,"on":false},{"x":163,"y":616,"on":true},{"x":140,"y":576,"on":false},{"x":140,"y":515,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":317,"y":538,"on":false},{"x":348,"y":520,"on":true},{"x":383,"y":500,"on":false},{"x":406,"y":460,"on":true},{"x":440,"y":401,"on":false},{"x":440,"y":310,"on":true},{"x":440,"y":0,"on":true},{"x":440,"y":-57,"on":false},{"x":416,"y":-99,"on":true},{"x":393,"y":-138,"on":false},{"x":352,"y":-162,"on":true},{"x":302,"y":-191,"on":false},{"x":230,"y":-191,"on":true},{"x":230,"y":-119,"on":true},{"x":274,"y":-119,"on":false},{"x":305,"y":-101,"on":true},{"x":360,"y":-69,"on":false},{"x":360,"y":0,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":374,"on":false},{"x":140,"y":310,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,11,12,11,2,2,1,24,1,6,5,2,74,75,176,35,80,88,64,37,0,1,1,0,95,0,0,0,72,75,0,5,5,2,95,0,2,2,75,75,7,1,6,6,65,75,0,4,4,3,95,0,3,3,69,3,76,27,64,34,0,4,0,3,4,3,99,0,1,1,0,95,0,0,0,72,75,0,5,5,2,95,0,2,2,75,75,7,1,6,6,65,6,76,89,64,15,0,0,0,60,0,60,25,17,27,27,27,21,8,9,26,43] + "instructions": "QAsMCwICARgBBgUCSkuwI1BYQCUAAQEAXwAAAEhLAAUFAl8AAgJLSwcBBgZBSwAEBANfAAMDRQNMG0AiAAQAAwQDYwABAQBfAAAASEsABQUCXwACAktLBwEGBkEGTFlADwAAADwAPBkRGxsbFQgJGis=" }, "uniA727": { "name": "uniA727", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":317,"y":538,"on":false},{"x":348,"y":520,"on":true},{"x":383,"y":500,"on":false},{"x":406,"y":460,"on":true},{"x":440,"y":401,"on":false},{"x":440,"y":310,"on":true},{"x":440,"y":0,"on":true},{"x":440,"y":-57,"on":false},{"x":416,"y":-99,"on":true},{"x":393,"y":-138,"on":false},{"x":352,"y":-162,"on":true},{"x":302,"y":-191,"on":false},{"x":230,"y":-191,"on":true},{"x":230,"y":-119,"on":true},{"x":274,"y":-119,"on":false},{"x":305,"y":-101,"on":true},{"x":360,"y":-69,"on":false},{"x":360,"y":0,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":374,"on":false},{"x":140,"y":310,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [181,3,1,5,4,1,74,75,176,35,80,88,64,32,0,0,0,64,75,0,4,4,1,95,0,1,1,75,75,6,1,5,5,65,75,0,3,3,2,95,0,2,2,69,2,76,27,64,29,0,3,0,2,3,2,99,0,0,0,64,75,0,4,4,1,95,0,1,1,75,75,6,1,5,5,65,5,76,89,64,14,0,0,0,39,0,39,25,17,27,22,17,7,9,25,43] + "instructions": "tQMBBQQBSkuwI1BYQCAAAABASwAEBAFfAAEBS0sGAQUFQUsAAwMCXwACAkUCTBtAHQADAAIDAmMAAABASwAEBAFfAAEBS0sGAQUFQQVMWUAOAAAAJwAnGREbFhEHCRkr" }, "uni0265": { "name": "uni0265", "advanceWidth": 500, "contours": [[{"x":60,"y":220,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":-205,"on":true},{"x":360,"y":-205,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":183,"y":-8,"on":false},{"x":152,"y":10,"on":true},{"x":117,"y":30,"on":false},{"x":94,"y":70,"on":true},{"x":60,"y":129,"on":false}]], "references": [], - "instructions": [64,36,19,1,1,0,1,74,2,1,0,0,67,75,0,1,1,4,95,0,4,4,73,75,0,3,3,69,3,76,22,17,22,22,17,5,9,25,43] + "instructions": "QCQTAQEAAUoCAQAAQ0sAAQEEXwAEBElLAAMDRQNMFhEWFhEFCRkr" }, "uni02AE": { "name": "uni02AE", "advanceWidth": 500, "contours": [[{"x":-70,"y":458,"on":true},{"x":-70,"y":530,"on":true},{"x":22,"y":530,"on":false},{"x":66,"y":505,"on":true},{"x":99,"y":486,"on":false},{"x":118,"y":453,"on":true},{"x":140,"y":414,"on":false},{"x":140,"y":339,"on":true},{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":-205,"on":true},{"x":360,"y":-205,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":183,"y":-8,"on":false},{"x":152,"y":10,"on":true},{"x":117,"y":30,"on":false},{"x":94,"y":70,"on":true},{"x":60,"y":129,"on":false},{"x":60,"y":220,"on":true},{"x":60,"y":339,"on":true},{"x":60,"y":386,"on":false},{"x":46,"y":410,"on":true},{"x":34,"y":430,"on":false},{"x":14,"y":442,"on":true},{"x":-13,"y":458,"on":false}]], "references": [], - "instructions": [64,48,24,1,1,5,1,74,6,1,5,5,0,95,2,1,0,0,67,75,0,1,1,4,95,0,4,4,73,75,0,3,3,69,3,76,0,0,0,41,0,41,22,17,22,27,17,7,9,25,43] + "instructions": "QDAYAQEFAUoGAQUFAF8CAQAAQ0sAAQEEXwAEBElLAAMDRQNMAAAAKQApFhEWGxEHCRkr" }, "uni02AF": { "name": "uni02AF", "advanceWidth": 500, "contours": [[{"x":-70,"y":458,"on":true},{"x":-70,"y":530,"on":true},{"x":22,"y":530,"on":false},{"x":66,"y":505,"on":true},{"x":99,"y":486,"on":false},{"x":118,"y":453,"on":true},{"x":140,"y":414,"on":false},{"x":140,"y":339,"on":true},{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":440,"y":-47,"on":false},{"x":454,"y":-71,"on":true},{"x":466,"y":-91,"on":false},{"x":486,"y":-103,"on":true},{"x":513,"y":-119,"on":false},{"x":570,"y":-119,"on":true},{"x":570,"y":-191,"on":true},{"x":478,"y":-191,"on":false},{"x":434,"y":-166,"on":true},{"x":401,"y":-147,"on":false},{"x":382,"y":-114,"on":true},{"x":360,"y":-75,"on":false},{"x":360,"y":0,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":183,"y":-8,"on":false},{"x":152,"y":10,"on":true},{"x":117,"y":30,"on":false},{"x":94,"y":70,"on":true},{"x":60,"y":129,"on":false},{"x":60,"y":220,"on":true},{"x":60,"y":339,"on":true},{"x":60,"y":386,"on":false},{"x":46,"y":410,"on":true},{"x":34,"y":430,"on":false},{"x":14,"y":442,"on":true},{"x":-13,"y":458,"on":false}]], "references": [], - "instructions": [181,36,1,1,6,1,74,75,176,35,80,88,64,33,7,1,6,6,0,95,2,1,0,0,67,75,0,1,1,5,95,0,5,5,73,75,0,3,3,4,95,0,4,4,69,4,76,27,64,30,0,3,0,4,3,4,99,7,1,6,6,0,95,2,1,0,0,67,75,0,1,1,5,95,0,5,5,73,5,76,89,64,15,0,0,0,53,0,53,27,17,22,22,27,17,8,9,26,43] + "instructions": "tSQBAQYBSkuwI1BYQCEHAQYGAF8CAQAAQ0sAAQEFXwAFBUlLAAMDBF8ABARFBEwbQB4AAwAEAwRjBwEGBgBfAgEAAENLAAEBBV8ABQVJBUxZQA8AAAA1ADUbERYWGxEICRor" }, "hbar": { "name": "hbar", "advanceWidth": 500, "contours": [[{"x":18,"y":586,"on":true},{"x":18,"y":658,"on":true},{"x":60,"y":658,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":658,"on":true},{"x":250,"y":658,"on":true},{"x":250,"y":586,"on":true},{"x":140,"y":586,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":317,"y":538,"on":false},{"x":348,"y":520,"on":true},{"x":383,"y":500,"on":false},{"x":406,"y":460,"on":true},{"x":440,"y":401,"on":false},{"x":440,"y":310,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":374,"on":false},{"x":140,"y":310,"on":true},{"x":140,"y":0,"on":true},{"x":60,"y":0,"on":true},{"x":60,"y":586,"on":true}]], "references": [], - "instructions": [64,56,9,1,5,6,1,74,2,1,0,9,8,2,3,4,0,3,101,0,1,1,64,75,0,6,6,4,95,0,4,4,75,75,7,1,5,5,65,5,76,0,0,0,37,0,37,22,22,22,22,17,17,17,17,10,9,28,43] + "instructions": "QDgJAQUGAUoCAQAJCAIDBAADZQABAUBLAAYGBF8ABARLSwcBBQVBBUwAAAAlACUWFhYWEREREQoJHCs=" }, "uni045B": { "name": "uni045B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"hbar","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "F": { "name": "F", "advanceWidth": 500, "contours": [[{"x":90,"y":0,"on":true},{"x":90,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":170,"y":663,"on":true},{"x":170,"y":433,"on":true},{"x":383,"y":433,"on":true},{"x":383,"y":361,"on":true},{"x":170,"y":361,"on":true},{"x":170,"y":0,"on":true}]], "references": [], - "instructions": [64,38,0,2,0,3,4,2,3,101,0,1,1,0,93,0,0,0,64,75,5,1,4,4,65,4,76,0,0,0,9,0,9,17,17,17,17,6,9,24,43] + "instructions": "QCYAAgADBAIDZQABAQBdAAAAQEsFAQQEQQRMAAAACQAJEREREQYJGCs=" }, "uni0191": { "name": "uni0191", "advanceWidth": 500, "contours": [[{"x":-40,"y":-119,"on":true},{"x":4,"y":-119,"on":false},{"x":35,"y":-101,"on":true},{"x":90,"y":-70,"on":false},{"x":90,"y":0,"on":true},{"x":90,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":170,"y":663,"on":true},{"x":170,"y":433,"on":true},{"x":383,"y":433,"on":true},{"x":383,"y":361,"on":true},{"x":170,"y":361,"on":true},{"x":170,"y":0,"on":true},{"x":170,"y":-57,"on":false},{"x":146,"y":-99,"on":true},{"x":123,"y":-138,"on":false},{"x":82,"y":-162,"on":true},{"x":32,"y":-191,"on":false},{"x":-40,"y":-191,"on":true}]], "references": [], - "instructions": [75,176,35,80,88,64,29,0,3,0,4,0,3,4,101,0,2,2,1,93,0,1,1,64,75,0,0,0,5,95,0,5,5,69,5,76,27,64,26,0,3,0,4,0,3,4,101,0,0,0,5,0,5,99,0,2,2,1,93,0,1,1,64,2,76,89,64,9,22,17,17,17,20,16,6,9,26,43] + "instructions": "S7AjUFhAHQADAAQAAwRlAAICAV0AAQFASwAAAAVfAAUFRQVMG0AaAAMABAADBGUAAAAFAAVjAAICAV0AAQFAAkxZQAkWERERFBAGCRor" }, "glyph401": { "name": "glyph401", "advanceWidth": 500, "contours": [[{"x":204,"y":0,"on":true},{"x":204,"y":615,"on":true},{"x":204,"y":657,"on":false},{"x":223,"y":689,"on":true},{"x":242,"y":722,"on":false},{"x":280,"y":744,"on":true},{"x":333,"y":775,"on":false},{"x":414,"y":775,"on":true},{"x":414,"y":703,"on":true},{"x":360,"y":703,"on":false},{"x":326,"y":683,"on":true},{"x":304,"y":671,"on":false},{"x":294,"y":653,"on":true},{"x":284,"y":636,"on":false},{"x":284,"y":615,"on":true},{"x":284,"y":0,"on":true}]], "references": [], - "instructions": [179,6,0,1,48,43] + "instructions": "swYAATAr" }, "glyph402": { "name": "glyph402", "advanceWidth": 500, "contours": [[{"x":147,"y":0,"on":true},{"x":147,"y":540,"on":true},{"x":147,"y":613,"on":false},{"x":176,"y":663,"on":true},{"x":198,"y":701,"on":false},{"x":270,"y":743,"on":false},{"x":367,"y":743,"on":false},{"x":438,"y":702,"on":false},{"x":460,"y":663,"on":true},{"x":481,"y":626,"on":false},{"x":487,"y":580,"on":true},{"x":409,"y":564,"on":true},{"x":406,"y":601,"on":false},{"x":390,"y":627,"on":true},{"x":377,"y":650,"on":false},{"x":358,"y":661,"on":true},{"x":341,"y":671,"on":false},{"x":296,"y":671,"on":false},{"x":279,"y":661,"on":true},{"x":260,"y":650,"on":false},{"x":247,"y":628,"on":true},{"x":227,"y":594,"on":false},{"x":227,"y":540,"on":true},{"x":227,"y":0,"on":true}]], "references": [], - "instructions": [64,35,11,10,2,2,1,1,74,0,1,1,0,95,0,0,0,72,75,3,1,2,2,65,2,76,0,0,0,23,0,23,26,21,4,9,22,43] + "instructions": "QCMLCgICAQFKAAEBAF8AAABISwMBAgJBAkwAAAAXABcaFQQJFis=" }, "glyph403": { "name": "glyph403", "advanceWidth": 500, "contours": [[{"x":80,"y":-123,"on":true},{"x":136,"y":-123,"on":false},{"x":163,"y":-107,"on":true},{"x":184,"y":-95,"on":false},{"x":195,"y":-75,"on":true},{"x":210,"y":-50,"on":false},{"x":210,"y":0,"on":true},{"x":210,"y":580,"on":true},{"x":210,"y":658,"on":false},{"x":233,"y":697,"on":true},{"x":252,"y":730,"on":false},{"x":285,"y":750,"on":true},{"x":329,"y":775,"on":false},{"x":420,"y":775,"on":true},{"x":420,"y":703,"on":true},{"x":364,"y":703,"on":false},{"x":337,"y":687,"on":true},{"x":316,"y":675,"on":false},{"x":305,"y":655,"on":true},{"x":290,"y":630,"on":false},{"x":290,"y":580,"on":true},{"x":290,"y":0,"on":true},{"x":290,"y":-78,"on":false},{"x":267,"y":-117,"on":true},{"x":248,"y":-150,"on":false},{"x":215,"y":-170,"on":true},{"x":171,"y":-195,"on":false},{"x":80,"y":-195,"on":true}]], "references": [], - "instructions": [75,176,50,80,88,64,19,0,1,0,2,0,1,2,103,0,0,0,3,95,0,3,3,69,3,76,27,64,24,0,1,0,2,0,1,2,103,0,0,3,3,0,87,0,0,0,3,95,0,3,0,3,79,89,182,27,17,27,16,4,9,24,43] + "instructions": "S7AyUFhAEwABAAIAAQJnAAAAA18AAwNFA0wbQBgAAQACAAECZwAAAwMAVwAAAANfAAMAA09ZthsRGxAECRgr" }, "uni0283": { "name": "uni0283", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph403","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0284": { "name": "uni0284", "advanceWidth": 500, "contours": [[{"x":80,"y":-123,"on":true},{"x":136,"y":-123,"on":false},{"x":163,"y":-107,"on":true},{"x":184,"y":-95,"on":false},{"x":195,"y":-75,"on":true},{"x":210,"y":-50,"on":false},{"x":210,"y":0,"on":true},{"x":210,"y":96,"on":true},{"x":145,"y":96,"on":true},{"x":145,"y":168,"on":true},{"x":210,"y":168,"on":true},{"x":210,"y":580,"on":true},{"x":210,"y":658,"on":false},{"x":233,"y":697,"on":true},{"x":252,"y":730,"on":false},{"x":285,"y":750,"on":true},{"x":329,"y":775,"on":false},{"x":420,"y":775,"on":true},{"x":420,"y":703,"on":true},{"x":364,"y":703,"on":false},{"x":337,"y":687,"on":true},{"x":316,"y":675,"on":false},{"x":305,"y":655,"on":true},{"x":290,"y":630,"on":false},{"x":290,"y":580,"on":true},{"x":290,"y":168,"on":true},{"x":355,"y":168,"on":true},{"x":355,"y":96,"on":true},{"x":290,"y":96,"on":true},{"x":290,"y":0,"on":true},{"x":290,"y":-78,"on":false},{"x":267,"y":-117,"on":true},{"x":248,"y":-150,"on":false},{"x":215,"y":-170,"on":true},{"x":171,"y":-195,"on":false},{"x":80,"y":-195,"on":true}]], "references": [], - "instructions": [75,176,50,80,88,64,29,0,3,0,4,2,3,4,103,5,1,2,6,1,1,0,2,1,101,0,0,0,7,95,0,7,7,69,7,76,27,64,34,0,3,0,4,2,3,4,103,5,1,2,6,1,1,0,2,1,101,0,0,7,7,0,87,0,0,0,7,95,0,7,0,7,79,89,64,11,22,17,22,17,22,17,22,16,8,9,28,43] + "instructions": "S7AyUFhAHQADAAQCAwRnBQECBgEBAAIBZQAAAAdfAAcHRQdMG0AiAAMABAIDBGcFAQIGAQEAAgFlAAAHBwBXAAAAB18ABwAHT1lACxYRFhEWERYQCAkcKw==" }, "longs": { "name": "longs", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph402","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0286": { "name": "uni0286", "advanceWidth": 500, "contours": [[{"x":21,"y":-82,"on":true},{"x":21,"y":-39,"on":false},{"x":40,"y":-6,"on":true},{"x":54,"y":18,"on":false},{"x":78,"y":32,"on":true},{"x":110,"y":50,"on":false},{"x":154,"y":50,"on":true},{"x":179,"y":50,"on":false},{"x":204,"y":44,"on":true},{"x":204,"y":615,"on":true},{"x":204,"y":657,"on":false},{"x":223,"y":689,"on":true},{"x":242,"y":722,"on":false},{"x":280,"y":744,"on":true},{"x":333,"y":775,"on":false},{"x":414,"y":775,"on":true},{"x":414,"y":703,"on":true},{"x":360,"y":703,"on":false},{"x":326,"y":683,"on":true},{"x":304,"y":671,"on":false},{"x":294,"y":653,"on":true},{"x":284,"y":636,"on":false},{"x":284,"y":615,"on":true},{"x":284,"y":12,"on":true},{"x":376,"y":-42,"on":false},{"x":432,"y":-140,"on":true},{"x":445,"y":-162,"on":false},{"x":455,"y":-186,"on":true},{"x":381,"y":-213,"on":true},{"x":372,"y":-192,"on":false},{"x":361,"y":-172,"on":true},{"x":329,"y":-116,"on":false},{"x":282,"y":-78,"on":true},{"x":277,"y":-125,"on":false},{"x":261,"y":-151,"on":true},{"x":244,"y":-180,"on":false},{"x":216,"y":-197,"on":true},{"x":187,"y":-213,"on":false},{"x":153,"y":-213,"on":true},{"x":112,"y":-213,"on":false},{"x":78,"y":-194,"on":true},{"x":53,"y":-180,"on":false},{"x":39,"y":-155,"on":true},{"x":21,"y":-124,"on":false}],[{"x":101,"y":-52,"on":false},{"x":101,"y":-111,"on":false},{"x":117,"y":-127,"on":true},{"x":131,"y":-141,"on":false},{"x":152,"y":-141,"on":true},{"x":171,"y":-141,"on":false},{"x":186,"y":-127,"on":true},{"x":205,"y":-108,"on":false},{"x":204,"y":-60,"on":true},{"x":204,"y":-31,"on":true},{"x":179,"y":-22,"on":false},{"x":158,"y":-22,"on":true},{"x":131,"y":-22,"on":false}]], "references": [], - "instructions": [64,20,23,8,2,5,0,53,32,2,4,5,27,1,3,4,3,74,28,1,3,71,75,176,35,80,88,64,29,0,1,0,2,0,1,2,103,0,0,0,5,95,0,5,5,73,75,0,4,4,3,95,0,3,3,77,3,76,27,64,27,0,1,0,2,0,1,2,103,0,0,0,5,4,0,5,103,0,4,4,3,95,0,3,3,77,3,76,89,64,12,56,54,49,47,39,37,17,23,37,6,9,23,43] + "instructions": "QBQXCAIFADUgAgQFGwEDBANKHAEDR0uwI1BYQB0AAQACAAECZwAAAAVfAAUFSUsABAQDXwADA00DTBtAGwABAAIAAQJnAAAABQQABWcABAQDXwADA00DTFlADDg2MS8nJREXJQYJFys=" }, "uni027F": { "name": "uni027F", "advanceWidth": 500, "contours": [[{"x":89,"y":458,"on":true},{"x":89,"y":530,"on":true},{"x":171,"y":530,"on":false},{"x":224,"y":499,"on":true},{"x":261,"y":478,"on":false},{"x":279,"y":446,"on":true},{"x":297,"y":415,"on":false},{"x":297,"y":375,"on":true},{"x":297,"y":-205,"on":true},{"x":217,"y":-205,"on":true},{"x":217,"y":375,"on":true},{"x":217,"y":394,"on":false},{"x":208,"y":409,"on":true},{"x":198,"y":426,"on":false},{"x":178,"y":438,"on":true},{"x":144,"y":458,"on":false}]], "references": [], - "instructions": [64,28,3,1,2,2,0,95,0,0,0,67,75,0,1,1,69,1,76,0,0,0,15,0,15,22,17,4,9,22,43] + "instructions": "QBwDAQICAF8AAABDSwABAUUBTAAAAA8ADxYRBAkWKw==" }, "uni0285": { "name": "uni0285", "advanceWidth": 500, "contours": [[{"x":75,"y":458,"on":true},{"x":75,"y":530,"on":true},{"x":150,"y":530,"on":false},{"x":202,"y":500,"on":true},{"x":290,"y":449,"on":false},{"x":290,"y":339,"on":true},{"x":290,"y":0,"on":true},{"x":290,"y":-68,"on":false},{"x":345,"y":-100,"on":true},{"x":378,"y":-119,"on":false},{"x":425,"y":-119,"on":true},{"x":425,"y":-191,"on":true},{"x":350,"y":-191,"on":false},{"x":298,"y":-161,"on":true},{"x":210,"y":-110,"on":false},{"x":210,"y":0,"on":true},{"x":210,"y":339,"on":true},{"x":210,"y":407,"on":false},{"x":155,"y":439,"on":true},{"x":122,"y":458,"on":false}]], "references": [], - "instructions": [75,176,35,80,88,64,22,4,1,3,3,0,95,0,0,0,67,75,0,1,1,2,95,0,2,2,69,2,76,27,64,19,0,1,0,2,1,2,99,4,1,3,3,0,95,0,0,0,67,3,76,89,64,12,0,0,0,19,0,19,17,23,17,5,9,23,43] + "instructions": "S7AjUFhAFgQBAwMAXwAAAENLAAEBAl8AAgJFAkwbQBMAAQACAQJjBAEDAwBfAAAAQwNMWUAMAAAAEwATERcRBQkXKw==" }, "glyph410": { "name": "glyph410", "advanceWidth": 500, "contours": [[{"x":60,"y":428,"on":true},{"x":60,"y":500,"on":true},{"x":173,"y":500,"on":true},{"x":173,"y":595,"on":true},{"x":173,"y":652,"on":false},{"x":196,"y":692,"on":true},{"x":214,"y":723,"on":false},{"x":244,"y":741,"on":true},{"x":275,"y":759,"on":false},{"x":360,"y":759,"on":false},{"x":392,"y":741,"on":true},{"x":422,"y":724,"on":false},{"x":440,"y":692,"on":true},{"x":455,"y":666,"on":false},{"x":460,"y":635,"on":true},{"x":383,"y":616,"on":true},{"x":380,"y":639,"on":false},{"x":370,"y":656,"on":true},{"x":361,"y":672,"on":false},{"x":347,"y":680,"on":true},{"x":335,"y":687,"on":false},{"x":318,"y":687,"on":true},{"x":302,"y":687,"on":false},{"x":290,"y":680,"on":true},{"x":276,"y":672,"on":false},{"x":267,"y":656,"on":true},{"x":253,"y":632,"on":false},{"x":253,"y":595,"on":true},{"x":253,"y":500,"on":true},{"x":421,"y":500,"on":true},{"x":421,"y":428,"on":true},{"x":253,"y":428,"on":true},{"x":253,"y":0,"on":true},{"x":173,"y":0,"on":true},{"x":173,"y":428,"on":true}]], "references": [], - "instructions": [182,15,14,2,0,2,1,74,75,176,46,80,88,64,27,3,1,0,7,6,2,4,5,0,4,101,0,2,2,1,95,0,1,1,74,75,0,5,5,65,5,76,27,64,25,0,1,0,2,0,1,2,103,3,1,0,7,6,2,4,5,0,4,101,0,5,5,65,5,76,89,64,15,0,0,0,34,0,34,17,17,22,43,22,17,8,9,26,43] + "instructions": "tg8OAgACAUpLsC5QWEAbAwEABwYCBAUABGUAAgIBXwABAUpLAAUFQQVMG0AZAAEAAgABAmcDAQAHBgIEBQAEZQAFBUEFTFlADwAAACIAIhERFisWEQgJGis=" }, "uniAB35": { "name": "uniAB35", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph410","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph412": { "name": "glyph412", "advanceWidth": 500, "contours": [[{"x":75,"y":428,"on":true},{"x":75,"y":500,"on":true},{"x":210,"y":500,"on":true},{"x":210,"y":580,"on":true},{"x":210,"y":658,"on":false},{"x":233,"y":697,"on":true},{"x":252,"y":730,"on":false},{"x":285,"y":750,"on":true},{"x":329,"y":775,"on":false},{"x":420,"y":775,"on":true},{"x":420,"y":703,"on":true},{"x":364,"y":703,"on":false},{"x":337,"y":687,"on":true},{"x":316,"y":675,"on":false},{"x":305,"y":655,"on":true},{"x":290,"y":630,"on":false},{"x":290,"y":580,"on":true},{"x":290,"y":500,"on":true},{"x":425,"y":500,"on":true},{"x":425,"y":428,"on":true},{"x":290,"y":428,"on":true},{"x":290,"y":0,"on":true},{"x":290,"y":-78,"on":false},{"x":267,"y":-117,"on":true},{"x":248,"y":-150,"on":false},{"x":215,"y":-170,"on":true},{"x":171,"y":-195,"on":false},{"x":80,"y":-195,"on":true},{"x":80,"y":-123,"on":true},{"x":136,"y":-123,"on":false},{"x":163,"y":-107,"on":true},{"x":184,"y":-95,"on":false},{"x":195,"y":-75,"on":true},{"x":210,"y":-50,"on":false},{"x":210,"y":0,"on":true},{"x":210,"y":428,"on":true}]], "references": [], - "instructions": [75,176,50,80,88,64,30,0,1,0,2,0,1,2,103,3,1,0,8,7,2,4,6,0,4,101,0,6,6,5,95,0,5,5,69,5,76,27,64,35,0,1,0,2,0,1,2,103,3,1,0,8,7,2,4,6,0,4,101,0,6,5,5,6,87,0,6,6,5,95,0,5,6,5,79,89,64,16,0,0,0,35,0,35,17,22,17,22,17,22,17,9,9,27,43] + "instructions": "S7AyUFhAHgABAAIAAQJnAwEACAcCBAYABGUABgYFXwAFBUUFTBtAIwABAAIAAQJnAwEACAcCBAYABGUABgUFBlcABgYFXwAFBgVPWUAQAAAAIwAjERYRFhEWEQkJGys=" }, "florin": { "name": "florin", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph412","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "f": { "name": "f", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph410","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni025F": { "name": "uni025F", "advanceWidth": 500, "contours": [[{"x":40,"y":-105,"on":true},{"x":117,"y":-86,"on":true},{"x":120,"y":-109,"on":false},{"x":130,"y":-126,"on":true},{"x":139,"y":-142,"on":false},{"x":153,"y":-150,"on":true},{"x":165,"y":-157,"on":false},{"x":182,"y":-157,"on":true},{"x":198,"y":-157,"on":false},{"x":210,"y":-150,"on":true},{"x":224,"y":-142,"on":false},{"x":233,"y":-126,"on":true},{"x":247,"y":-102,"on":false},{"x":247,"y":-65,"on":true},{"x":247,"y":30,"on":true},{"x":79,"y":30,"on":true},{"x":79,"y":102,"on":true},{"x":247,"y":102,"on":true},{"x":247,"y":530,"on":true},{"x":327,"y":530,"on":true},{"x":327,"y":102,"on":true},{"x":440,"y":102,"on":true},{"x":440,"y":30,"on":true},{"x":327,"y":30,"on":true},{"x":327,"y":-65,"on":true},{"x":327,"y":-122,"on":false},{"x":304,"y":-162,"on":true},{"x":286,"y":-193,"on":false},{"x":256,"y":-211,"on":true},{"x":225,"y":-229,"on":false},{"x":140,"y":-229,"on":false},{"x":108,"y":-211,"on":true},{"x":78,"y":-194,"on":false},{"x":60,"y":-162,"on":true},{"x":45,"y":-136,"on":false}]], "references": [], - "instructions": [181,1,1,0,1,1,74,75,176,31,80,88,64,26,4,1,2,5,1,1,0,2,1,101,0,3,3,67,75,0,0,0,6,95,0,6,6,77,6,76,27,64,23,4,1,2,5,1,1,0,2,1,101,0,0,0,6,0,6,99,0,3,3,67,3,76,89,64,10,22,17,17,17,17,22,38,7,9,27,43] + "instructions": "tQEBAAEBSkuwH1BYQBoEAQIFAQEAAgFlAAMDQ0sAAAAGXwAGBk0GTBtAFwQBAgUBAQACAWUAAAAGAAZjAAMDQwNMWUAKFhEREREWJgcJGys=" }, "uniFB01": { "name": "uniFB01", "advanceWidth": 500, "contours": [[{"x":20,"y":428,"on":true},{"x":20,"y":500,"on":true},{"x":90,"y":500,"on":true},{"x":90,"y":540,"on":true},{"x":90,"y":613,"on":false},{"x":118,"y":663,"on":true},{"x":140,"y":701,"on":false},{"x":212,"y":743,"on":false},{"x":309,"y":743,"on":false},{"x":381,"y":702,"on":false},{"x":403,"y":663,"on":true},{"x":424,"y":626,"on":false},{"x":430,"y":580,"on":true},{"x":352,"y":564,"on":true},{"x":349,"y":601,"on":false},{"x":333,"y":627,"on":true},{"x":320,"y":650,"on":false},{"x":300,"y":661,"on":true},{"x":283,"y":671,"on":false},{"x":238,"y":671,"on":false},{"x":221,"y":661,"on":true},{"x":202,"y":650,"on":false},{"x":189,"y":628,"on":true},{"x":170,"y":594,"on":false},{"x":170,"y":540,"on":true},{"x":170,"y":500,"on":true},{"x":440,"y":500,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":428,"on":true},{"x":170,"y":428,"on":true},{"x":170,"y":0,"on":true},{"x":90,"y":0,"on":true},{"x":90,"y":428,"on":true}]], "references": [], - "instructions": [64,51,13,12,2,0,2,1,74,3,1,0,8,7,2,5,4,0,5,101,0,2,2,1,95,0,1,1,72,75,6,1,4,4,65,4,76,0,0,0,33,0,33,17,17,17,22,26,21,17,9,9,27,43] + "instructions": "QDMNDAIAAgFKAwEACAcCBQQABWUAAgIBXwABAUhLBgEEBEEETAAAACEAIRERERYaFREJCRsr" }, "glyph417": { "name": "glyph417", "advanceWidth": 500, "contours": [[{"x":20,"y":428,"on":true},{"x":20,"y":500,"on":true},{"x":90,"y":500,"on":true},{"x":90,"y":540,"on":true},{"x":90,"y":612,"on":false},{"x":118,"y":661,"on":true},{"x":140,"y":700,"on":false},{"x":177,"y":721,"on":true},{"x":215,"y":743,"on":false},{"x":317,"y":743,"on":false},{"x":355,"y":721,"on":true},{"x":392,"y":700,"on":false},{"x":414,"y":661,"on":true},{"x":435,"y":625,"on":false},{"x":440,"y":580,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":579,"on":true},{"x":355,"y":605,"on":false},{"x":343,"y":625,"on":true},{"x":330,"y":648,"on":false},{"x":309,"y":660,"on":true},{"x":290,"y":671,"on":false},{"x":241,"y":671,"on":false},{"x":223,"y":660,"on":true},{"x":203,"y":648,"on":false},{"x":189,"y":625,"on":true},{"x":170,"y":591,"on":false},{"x":170,"y":540,"on":true},{"x":170,"y":500,"on":true},{"x":288,"y":500,"on":true},{"x":288,"y":428,"on":true},{"x":170,"y":428,"on":true},{"x":170,"y":0,"on":true},{"x":90,"y":0,"on":true},{"x":90,"y":428,"on":true}]], "references": [], - "instructions": [64,51,17,14,2,0,3,1,74,4,1,0,8,7,2,5,2,0,5,101,0,3,3,1,95,0,1,1,72,75,6,1,2,2,65,2,76,0,0,0,35,0,35,17,17,22,22,22,22,17,9,9,27,43] + "instructions": "QDMRDgIAAwFKBAEACAcCBQIABWUAAwMBXwABAUhLBgECAkECTAAAACMAIxERFhYWFhEJCRsr" }, "glyph418": { "name": "glyph418", "advanceWidth": 500, "contours": [[{"x":20,"y":428,"on":true},{"x":20,"y":500,"on":true},{"x":152,"y":500,"on":true},{"x":152,"y":580,"on":true},{"x":152,"y":658,"on":false},{"x":175,"y":697,"on":true},{"x":194,"y":730,"on":false},{"x":228,"y":750,"on":true},{"x":272,"y":775,"on":false},{"x":362,"y":775,"on":true},{"x":362,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":703,"on":true},{"x":306,"y":703,"on":false},{"x":280,"y":687,"on":true},{"x":259,"y":675,"on":false},{"x":247,"y":655,"on":true},{"x":232,"y":630,"on":false},{"x":232,"y":580,"on":true},{"x":232,"y":500,"on":true},{"x":307,"y":500,"on":true},{"x":307,"y":428,"on":true},{"x":232,"y":428,"on":true},{"x":232,"y":0,"on":true},{"x":232,"y":-78,"on":false},{"x":210,"y":-117,"on":true},{"x":191,"y":-150,"on":false},{"x":157,"y":-170,"on":true},{"x":113,"y":-195,"on":false},{"x":23,"y":-195,"on":true},{"x":22,"y":-123,"on":true},{"x":78,"y":-123,"on":false},{"x":105,"y":-107,"on":true},{"x":126,"y":-95,"on":false},{"x":138,"y":-75,"on":true},{"x":152,"y":-50,"on":false},{"x":152,"y":0,"on":true},{"x":152,"y":428,"on":true}]], "references": [], - "instructions": [179,30,8,1,48,43] + "instructions": "sx4IATAr" }, "uniFB02": { "name": "uniFB02", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph417","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "E": { "name": "E", "advanceWidth": 500, "contours": [[{"x":90,"y":0,"on":true},{"x":90,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":170,"y":663,"on":true},{"x":170,"y":433,"on":true},{"x":383,"y":433,"on":true},{"x":383,"y":361,"on":true},{"x":170,"y":361,"on":true},{"x":170,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":0,"on":true}]], "references": [], - "instructions": [64,44,0,2,0,3,4,2,3,101,0,1,1,0,93,0,0,0,64,75,0,4,4,5,93,6,1,5,5,65,5,76,0,0,0,11,0,11,17,17,17,17,17,7,9,25,43] + "instructions": "QCwAAgADBAIDZQABAQBdAAAAQEsABAQFXQYBBQVBBUwAAAALAAsREREREQcJGSs=" }, "Epsilon": { "name": "Epsilon", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0415": { "name": "uni0415", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni018E": { "name": "uni018E", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":330,"y":72,"on":true},{"x":330,"y":302,"on":true},{"x":117,"y":302,"on":true},{"x":117,"y":374,"on":true},{"x":330,"y":374,"on":true},{"x":330,"y":663,"on":true},{"x":60,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":410,"y":735,"on":true},{"x":410,"y":0,"on":true}]], "references": [], - "instructions": [64,44,0,2,0,1,0,2,1,101,0,3,3,4,93,0,4,4,64,75,0,0,0,5,93,6,1,5,5,65,5,76,0,0,0,11,0,11,17,17,17,17,17,7,9,25,43] + "instructions": "QCwAAgABAAIBZQADAwRdAAQEQEsAAAAFXQYBBQVBBUwAAAALAAsREREREQcJGSs=" }, "uni2C7B": { "name": "uni2C7B", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":330,"y":72,"on":true},{"x":330,"y":208,"on":true},{"x":117,"y":208,"on":true},{"x":117,"y":280,"on":true},{"x":330,"y":280,"on":true},{"x":330,"y":458,"on":true},{"x":60,"y":458,"on":true},{"x":60,"y":530,"on":true},{"x":410,"y":530,"on":true},{"x":410,"y":0,"on":true}]], "references": [], - "instructions": [64,44,0,2,0,1,0,2,1,101,0,3,3,4,93,0,4,4,67,75,0,0,0,5,93,6,1,5,5,65,5,76,0,0,0,11,0,11,17,17,17,17,17,7,9,25,43] + "instructions": "QCwAAgABAAIBZQADAwRdAAQEQ0sAAAAFXQYBBQVBBUwAAAALAAsREREREQcJGSs=" }, "e": { "name": "e", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":391,"on":false},{"x":84,"y":446,"on":true},{"x":109,"y":490,"on":false},{"x":193,"y":538,"on":false},{"x":307,"y":538,"on":false},{"x":349,"y":514,"on":true},{"x":390,"y":490,"on":false},{"x":416,"y":446,"on":true},{"x":448,"y":391,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":229,"on":true},{"x":132,"y":229,"on":true},{"x":132,"y":220,"on":true},{"x":132,"y":162,"on":false},{"x":155,"y":123,"on":true},{"x":172,"y":94,"on":false},{"x":222,"y":64,"on":false},{"x":292,"y":64,"on":false},{"x":317,"y":79,"on":true},{"x":344,"y":94,"on":false},{"x":361,"y":123,"on":true},{"x":371,"y":139,"on":false},{"x":376,"y":159,"on":true},{"x":449,"y":130,"on":true},{"x":442,"y":107,"on":false},{"x":430,"y":87,"on":true},{"x":404,"y":43,"on":false},{"x":362,"y":18,"on":true},{"x":318,"y":-8,"on":false},{"x":196,"y":-8,"on":false},{"x":152,"y":18,"on":true},{"x":110,"y":43,"on":false},{"x":84,"y":86,"on":true},{"x":52,"y":141,"on":false}],[{"x":132,"y":301,"on":true},{"x":368,"y":301,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":371,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":453,"on":true},{"x":281,"y":466,"on":false},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [64,45,25,24,2,2,1,1,74,0,4,0,1,2,4,1,101,0,5,5,0,95,0,0,0,75,75,0,2,2,3,95,0,3,3,73,3,76,22,21,27,21,22,21,6,9,26,43] + "instructions": "QC0ZGAICAQFKAAQAAQIEAWUABQUAXwAAAEtLAAICA18AAwNJA0wWFRsVFhUGCRor" }, "uni0435": { "name": "uni0435", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01DD": { "name": "uni01DD", "advanceWidth": 500, "contours": [[{"x":51,"y":400,"on":true},{"x":58,"y":423,"on":false},{"x":70,"y":443,"on":true},{"x":96,"y":487,"on":false},{"x":138,"y":512,"on":true},{"x":182,"y":538,"on":false},{"x":304,"y":538,"on":false},{"x":348,"y":512,"on":true},{"x":390,"y":487,"on":false},{"x":416,"y":444,"on":true},{"x":448,"y":389,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":307,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":16,"on":true},{"x":110,"y":40,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false},{"x":52,"y":220,"on":true},{"x":52,"y":301,"on":true},{"x":368,"y":301,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":368,"on":false},{"x":345,"y":407,"on":true},{"x":328,"y":436,"on":false},{"x":278,"y":466,"on":false},{"x":208,"y":466,"on":false},{"x":183,"y":451,"on":true},{"x":156,"y":436,"on":false},{"x":139,"y":407,"on":true},{"x":129,"y":391,"on":false},{"x":124,"y":371,"on":true}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":229,"on":true},{"x":132,"y":229,"on":true}]], "references": [], - "instructions": [64,44,35,1,2,3,1,74,0,2,0,5,4,2,5,101,0,3,3,0,95,0,0,0,75,75,0,4,4,1,95,0,1,1,73,1,76,22,27,21,22,26,21,6,9,26,43] + "instructions": "QCwjAQIDAUoAAgAFBAIFZQADAwBfAAAAS0sABAQBXwABAUkBTBYbFRYaFQYJGis=" }, "uni0259": { "name": "uni0259", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni01DD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04D9": { "name": "uni04D9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni01DD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni018F": { "name": "uni018F", "advanceWidth": 500, "contours": [[{"x":51,"y":605,"on":true},{"x":58,"y":628,"on":false},{"x":70,"y":648,"on":true},{"x":96,"y":692,"on":false},{"x":138,"y":717,"on":true},{"x":182,"y":743,"on":false},{"x":304,"y":743,"on":false},{"x":348,"y":717,"on":true},{"x":390,"y":692,"on":false},{"x":416,"y":649,"on":true},{"x":448,"y":594,"on":false},{"x":448,"y":515,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":307,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":16,"on":true},{"x":110,"y":40,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false},{"x":52,"y":220,"on":true},{"x":52,"y":404,"on":true},{"x":368,"y":404,"on":true},{"x":368,"y":515,"on":true},{"x":368,"y":573,"on":false},{"x":345,"y":612,"on":true},{"x":328,"y":641,"on":false},{"x":278,"y":671,"on":false},{"x":208,"y":671,"on":false},{"x":183,"y":656,"on":true},{"x":156,"y":641,"on":false},{"x":139,"y":612,"on":true},{"x":129,"y":596,"on":false},{"x":124,"y":576,"on":true}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":332,"on":true},{"x":132,"y":332,"on":true}]], "references": [], - "instructions": [64,44,35,1,2,3,1,74,0,2,0,5,4,2,5,101,0,3,3,0,95,0,0,0,72,75,0,4,4,1,95,0,1,1,73,1,76,22,27,21,22,26,21,6,9,26,43] + "instructions": "QCwjAQIDAUoAAgAFBAIFZQADAwBfAAAASEsABAQBXwABAUkBTBYbFRYaFQYJGis=" }, "uni04D8": { "name": "uni04D8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni018F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0258": { "name": "uni0258", "advanceWidth": 500, "contours": [[{"x":47,"y":130,"on":true},{"x":120,"y":159,"on":true},{"x":125,"y":141,"on":false},{"x":135,"y":124,"on":true},{"x":152,"y":95,"on":false},{"x":179,"y":79,"on":true},{"x":206,"y":64,"on":false},{"x":276,"y":64,"on":false},{"x":302,"y":79,"on":true},{"x":329,"y":94,"on":false},{"x":346,"y":123,"on":true},{"x":368,"y":162,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":229,"on":true},{"x":52,"y":229,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":391,"on":false},{"x":84,"y":446,"on":true},{"x":109,"y":490,"on":false},{"x":193,"y":538,"on":false},{"x":307,"y":538,"on":false},{"x":349,"y":514,"on":true},{"x":390,"y":490,"on":false},{"x":416,"y":446,"on":true},{"x":448,"y":391,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":142,"on":false},{"x":416,"y":87,"on":true},{"x":390,"y":43,"on":false},{"x":348,"y":18,"on":true},{"x":303,"y":-8,"on":false},{"x":179,"y":-8,"on":false},{"x":134,"y":18,"on":true},{"x":91,"y":43,"on":false},{"x":66,"y":87,"on":true},{"x":54,"y":107,"on":false}],[{"x":132,"y":301,"on":true},{"x":368,"y":301,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":371,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":453,"on":true},{"x":281,"y":466,"on":false},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [64,44,1,1,0,1,1,74,0,4,0,1,0,4,1,101,0,5,5,2,95,0,2,2,75,75,0,0,0,3,95,0,3,3,73,3,76,22,21,27,21,22,22,6,9,26,43] + "instructions": "QCwBAQABAUoABAABAAQBZQAFBQJfAAICS0sAAAADXwADA0kDTBYVGxUWFgYJGis=" }, "T": { "name": "T", "advanceWidth": 500, "contours": [[{"x":60,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":290,"y":663,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":663,"on":true}]], "references": [], - "instructions": [64,30,4,3,2,1,1,0,93,0,0,0,64,75,0,2,2,65,2,76,0,0,0,7,0,7,17,17,17,5,9,23,43] + "instructions": "QB4EAwIBAQBdAAAAQEsAAgJBAkwAAAAHAAcREREFCRcr" }, "Tau": { "name": "Tau", "advanceWidth": 500, "contours": [], "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0422": { "name": "uni0422", "advanceWidth": 500, "contours": [], "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04AC": { "name": "uni04AC", "advanceWidth": 500, "contours": [[{"x":60,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":290,"y":663,"on":true},{"x":290,"y":72,"on":true},{"x":346,"y":72,"on":true},{"x":346,"y":-139,"on":true},{"x":266,"y":-139,"on":true},{"x":266,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":663,"on":true}]], "references": [], - "instructions": [64,39,0,2,0,3,2,3,97,6,5,2,1,1,0,93,0,0,0,26,75,0,4,4,27,4,76,0,0,0,11,0,11,17,17,17,17,17,7,7,25,43] + "instructions": "QCcAAgADAgNhBgUCAQEAXQAAABpLAAQEGwRMAAAACwALEREREREHBxkr" }, "uniA7B1": { "name": "uniA7B1", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":210,"y":72,"on":true},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":0,"on":true}]], "references": [], - "instructions": [64,30,0,1,1,64,75,2,1,0,0,3,94,4,1,3,3,65,3,76,0,0,0,7,0,7,17,17,17,5,9,23,43] + "instructions": "QB4AAQFASwIBAAADXgQBAwNBA0wAAAAHAAcREREFCRcr" }, "Tbar": { "name": "Tbar", "advanceWidth": 500, "contours": [[{"x":60,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":290,"y":663,"on":true},{"x":290,"y":367,"on":true},{"x":402,"y":367,"on":true},{"x":402,"y":295,"on":true},{"x":290,"y":295,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":295,"on":true},{"x":98,"y":295,"on":true},{"x":98,"y":367,"on":true},{"x":210,"y":367,"on":true},{"x":210,"y":663,"on":true}]], "references": [], - "instructions": [64,44,6,1,2,5,1,3,4,2,3,101,8,7,2,1,1,0,93,0,0,0,64,75,0,4,4,65,4,76,0,0,0,15,0,15,17,17,17,17,17,17,17,9,9,27,43] + "instructions": "QCwGAQIFAQMEAgNlCAcCAQEAXQAAAEBLAAQEQQRMAAAADwAPEREREREREQkJGys=" }, "uni01AC": { "name": "uni01AC", "advanceWidth": 500, "contours": [[{"x":60,"y":565,"on":true},{"x":60,"y":644,"on":false},{"x":87,"y":690,"on":true},{"x":101,"y":715,"on":false},{"x":120,"y":726,"on":true},{"x":136,"y":735,"on":false},{"x":157,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":290,"y":663,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":670,"on":true},{"x":157,"y":670,"on":true},{"x":153,"y":670,"on":false},{"x":150,"y":667,"on":true},{"x":132,"y":649,"on":false},{"x":132,"y":565,"on":true}]], "references": [], - "instructions": [75,176,33,80,88,64,26,5,1,4,1,2,1,4,2,126,3,1,1,1,0,93,0,0,0,64,75,0,2,2,65,2,76,27,64,32,0,3,0,1,1,3,112,5,1,4,1,2,1,4,2,126,0,1,1,0,94,0,0,0,64,75,0,2,2,65,2,76,89,64,13,0,0,0,17,0,17,17,17,17,37,6,9,24,43] + "instructions": "S7AhUFhAGgUBBAECAQQCfgMBAQEAXQAAAEBLAAICQQJMG0AgAAMAAQEDcAUBBAECAQQCfgABAQBeAAAAQEsAAgJBAkxZQA0AAAARABERERElBgkYKw==" }, "glyph440": { "name": "glyph440", "advanceWidth": 500, "contours": [[{"x":60,"y":458,"on":true},{"x":60,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":458,"on":true},{"x":290,"y":458,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":458,"on":true}]], "references": [], - "instructions": [64,30,4,3,2,1,1,0,93,0,0,0,28,75,0,2,2,27,2,76,0,0,0,7,0,7,17,17,17,5,7,23,43] + "instructions": "QB4EAwIBAQBdAAAAHEsAAgIbAkwAAAAHAAcREREFBxcr" }, "glyph441": { "name": "glyph441", "advanceWidth": 500, "contours": [[{"x":60,"y":458,"on":true},{"x":60,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":458,"on":true},{"x":290,"y":458,"on":true},{"x":290,"y":72,"on":true},{"x":346,"y":72,"on":true},{"x":346,"y":-139,"on":true},{"x":266,"y":-139,"on":true},{"x":266,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":458,"on":true}]], "references": [], - "instructions": [64,39,0,2,0,3,2,3,97,6,5,2,1,1,0,93,0,0,0,28,75,0,4,4,27,4,76,0,0,0,11,0,11,17,17,17,17,17,7,7,25,43] + "instructions": "QCcAAgADAgNhBgUCAQEAXQAAABxLAAQEGwRMAAAACwALEREREREHBxkr" }, "uni04AD": { "name": "uni04AD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph441","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "tau": { "name": "tau", "advanceWidth": 500, "contours": [[{"x":60,"y":458,"on":true},{"x":60,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":458,"on":true},{"x":290,"y":458,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":458,"on":true}]], "references": [], - "instructions": [64,30,4,3,2,1,1,0,93,0,0,0,47,75,0,2,2,45,2,76,0,0,0,7,0,7,17,17,17,5,8,23,43] + "instructions": "QB4EAwIBAQBdAAAAL0sAAgItAkwAAAAHAAcREREFCBcr" }, "t": { "name": "t", "advanceWidth": 500, "contours": [[{"x":51,"y":458,"on":true},{"x":51,"y":530,"on":true},{"x":160,"y":530,"on":true},{"x":160,"y":735,"on":true},{"x":240,"y":735,"on":true},{"x":240,"y":530,"on":true},{"x":401,"y":530,"on":true},{"x":401,"y":458,"on":true},{"x":240,"y":458,"on":true},{"x":240,"y":194,"on":true},{"x":240,"y":139,"on":false},{"x":260,"y":104,"on":true},{"x":272,"y":83,"on":false},{"x":290,"y":73,"on":true},{"x":305,"y":64,"on":false},{"x":346,"y":64,"on":false},{"x":361,"y":73,"on":true},{"x":369,"y":78,"on":false},{"x":377,"y":85,"on":true},{"x":407,"y":115,"on":false},{"x":411,"y":172,"on":true},{"x":489,"y":155,"on":true},{"x":484,"y":107,"on":false},{"x":440,"y":32,"on":false},{"x":405,"y":12,"on":true},{"x":371,"y":-8,"on":false},{"x":280,"y":-8,"on":false},{"x":246,"y":12,"on":true},{"x":211,"y":32,"on":false},{"x":189,"y":69,"on":true},{"x":160,"y":119,"on":false},{"x":160,"y":194,"on":true},{"x":160,"y":458,"on":true}]], "references": [], - "instructions": [64,51,21,20,2,4,3,1,74,0,1,1,64,75,7,6,2,3,3,0,93,2,1,0,0,67,75,0,4,4,5,95,0,5,5,73,5,76,0,0,0,32,0,32,26,22,17,17,17,17,8,9,26,43] + "instructions": "QDMVFAIEAwFKAAEBQEsHBgIDAwBdAgEAAENLAAQEBV8ABQVJBUwAAAAgACAaFhEREREICRor" }, "uni0287": { "name": "uni0287", "advanceWidth": 500, "contours": [[{"x":11,"y":375,"on":true},{"x":16,"y":423,"on":false},{"x":60,"y":498,"on":false},{"x":95,"y":518,"on":true},{"x":129,"y":538,"on":false},{"x":220,"y":538,"on":false},{"x":254,"y":518,"on":true},{"x":289,"y":498,"on":false},{"x":311,"y":461,"on":true},{"x":340,"y":411,"on":false},{"x":340,"y":336,"on":true},{"x":340,"y":72,"on":true},{"x":449,"y":72,"on":true},{"x":449,"y":0,"on":true},{"x":340,"y":0,"on":true},{"x":340,"y":-205,"on":true},{"x":260,"y":-205,"on":true},{"x":260,"y":0,"on":true},{"x":99,"y":0,"on":true},{"x":99,"y":72,"on":true},{"x":260,"y":72,"on":true},{"x":260,"y":336,"on":true},{"x":260,"y":391,"on":false},{"x":240,"y":426,"on":true},{"x":228,"y":447,"on":false},{"x":210,"y":457,"on":true},{"x":195,"y":466,"on":false},{"x":154,"y":466,"on":false},{"x":139,"y":457,"on":true},{"x":131,"y":452,"on":false},{"x":123,"y":445,"on":true},{"x":93,"y":415,"on":false},{"x":89,"y":358,"on":true}]], "references": [], - "instructions": [64,44,32,1,1,6,1,74,0,6,6,0,95,0,0,0,75,75,5,1,1,1,2,93,4,1,2,2,65,75,0,3,3,69,3,76,22,17,17,17,17,22,20,7,9,27,43] + "instructions": "QCwgAQEGAUoABgYAXwAAAEtLBQEBAQJdBAECAkFLAAMDRQNMFhEREREWFAcJGys=" }, "uni01AB": { "name": "uni01AB", "advanceWidth": 500, "contours": [[{"x":51,"y":458,"on":true},{"x":51,"y":530,"on":true},{"x":160,"y":530,"on":true},{"x":160,"y":735,"on":true},{"x":240,"y":735,"on":true},{"x":240,"y":530,"on":true},{"x":401,"y":530,"on":true},{"x":401,"y":458,"on":true},{"x":240,"y":458,"on":true},{"x":240,"y":194,"on":true},{"x":240,"y":139,"on":false},{"x":260,"y":104,"on":true},{"x":272,"y":83,"on":false},{"x":290,"y":73,"on":true},{"x":305,"y":64,"on":false},{"x":346,"y":64,"on":false},{"x":361,"y":73,"on":true},{"x":369,"y":78,"on":false},{"x":377,"y":85,"on":true},{"x":402,"y":110,"on":false},{"x":409,"y":154,"on":true},{"x":409,"y":155,"on":true},{"x":410,"y":163,"on":false},{"x":411,"y":172,"on":true},{"x":489,"y":155,"on":true},{"x":489,"y":0,"on":true},{"x":489,"y":-57,"on":false},{"x":465,"y":-99,"on":true},{"x":442,"y":-138,"on":false},{"x":401,"y":-162,"on":true},{"x":351,"y":-191,"on":false},{"x":279,"y":-191,"on":true},{"x":279,"y":-119,"on":true},{"x":323,"y":-119,"on":false},{"x":354,"y":-101,"on":true},{"x":409,"y":-69,"on":false},{"x":409,"y":0,"on":true},{"x":409,"y":14,"on":true},{"x":407,"y":13,"on":false},{"x":405,"y":12,"on":true},{"x":371,"y":-8,"on":false},{"x":280,"y":-8,"on":false},{"x":246,"y":12,"on":true},{"x":211,"y":32,"on":false},{"x":189,"y":69,"on":true},{"x":160,"y":119,"on":false},{"x":160,"y":194,"on":true},{"x":160,"y":458,"on":true}]], "references": [], - "instructions": [64,11,24,23,2,4,3,37,1,7,4,2,74,75,176,35,80,88,64,39,0,1,1,64,75,9,8,2,3,3,0,93,2,1,0,0,67,75,0,4,4,7,95,0,7,7,73,75,0,6,6,5,95,0,5,5,69,5,76,27,64,36,0,6,0,5,6,5,99,0,1,1,64,75,9,8,2,3,3,0,93,2,1,0,0,67,75,0,4,4,7,95,0,7,7,73,7,76,89,64,17,0,0,0,47,0,47,23,17,31,22,17,17,17,17,10,9,28,43] + "instructions": "QAsYFwIEAyUBBwQCSkuwI1BYQCcAAQFASwkIAgMDAF0CAQAAQ0sABAQHXwAHB0lLAAYGBV8ABQVFBUwbQCQABgAFBgVjAAEBQEsJCAIDAwBdAgEAAENLAAQEB18ABwdJB0xZQBEAAAAvAC8XER8WEREREQoJHCs=" }, "uni01AD": { "name": "uni01AD", "advanceWidth": 500, "contours": [[{"x":51,"y":458,"on":true},{"x":51,"y":530,"on":true},{"x":160,"y":530,"on":true},{"x":160,"y":587,"on":false},{"x":184,"y":629,"on":true},{"x":207,"y":668,"on":false},{"x":248,"y":692,"on":true},{"x":298,"y":721,"on":false},{"x":370,"y":721,"on":true},{"x":370,"y":649,"on":true},{"x":326,"y":649,"on":false},{"x":295,"y":631,"on":true},{"x":240,"y":599,"on":false},{"x":240,"y":530,"on":true},{"x":401,"y":530,"on":true},{"x":401,"y":458,"on":true},{"x":240,"y":458,"on":true},{"x":240,"y":194,"on":true},{"x":240,"y":139,"on":false},{"x":260,"y":104,"on":true},{"x":272,"y":83,"on":false},{"x":290,"y":73,"on":true},{"x":305,"y":64,"on":false},{"x":346,"y":64,"on":false},{"x":361,"y":73,"on":true},{"x":369,"y":78,"on":false},{"x":377,"y":85,"on":true},{"x":407,"y":115,"on":false},{"x":411,"y":172,"on":true},{"x":489,"y":155,"on":true},{"x":484,"y":107,"on":false},{"x":440,"y":32,"on":false},{"x":405,"y":12,"on":true},{"x":371,"y":-8,"on":false},{"x":280,"y":-8,"on":false},{"x":246,"y":12,"on":true},{"x":211,"y":32,"on":false},{"x":189,"y":69,"on":true},{"x":160,"y":119,"on":false},{"x":160,"y":194,"on":true},{"x":160,"y":458,"on":true}]], "references": [], - "instructions": [182,29,28,2,5,4,1,74,75,176,35,80,88,64,34,0,2,2,1,95,0,1,1,64,75,8,7,2,4,4,0,93,3,1,0,0,67,75,0,5,5,6,95,0,6,6,73,6,76,27,64,32,0,1,0,2,0,1,2,103,8,7,2,4,4,0,93,3,1,0,0,67,75,0,5,5,6,95,0,6,6,73,6,76,89,64,16,0,0,0,40,0,40,26,22,17,19,17,21,17,9,9,27,43] + "instructions": "th0cAgUEAUpLsCNQWEAiAAICAV8AAQFASwgHAgQEAF0DAQAAQ0sABQUGXwAGBkkGTBtAIAABAAIAAQJnCAcCBAQAXQMBAABDSwAFBQZfAAYGSQZMWUAQAAAAKAAoGhYRExEVEQkJGys=" }, "uni0288": { "name": "uni0288", "advanceWidth": 500, "contours": [[{"x":51,"y":458,"on":true},{"x":51,"y":530,"on":true},{"x":160,"y":530,"on":true},{"x":160,"y":735,"on":true},{"x":240,"y":735,"on":true},{"x":240,"y":530,"on":true},{"x":401,"y":530,"on":true},{"x":401,"y":458,"on":true},{"x":240,"y":458,"on":true},{"x":240,"y":-11,"on":true},{"x":240,"y":-66,"on":false},{"x":260,"y":-101,"on":true},{"x":272,"y":-122,"on":false},{"x":290,"y":-132,"on":true},{"x":305,"y":-141,"on":false},{"x":346,"y":-141,"on":false},{"x":361,"y":-132,"on":true},{"x":369,"y":-127,"on":false},{"x":377,"y":-120,"on":true},{"x":407,"y":-90,"on":false},{"x":411,"y":-33,"on":true},{"x":489,"y":-50,"on":true},{"x":484,"y":-98,"on":false},{"x":440,"y":-173,"on":false},{"x":405,"y":-193,"on":true},{"x":371,"y":-213,"on":false},{"x":280,"y":-213,"on":false},{"x":246,"y":-193,"on":true},{"x":211,"y":-173,"on":false},{"x":189,"y":-136,"on":true},{"x":160,"y":-86,"on":false},{"x":160,"y":-11,"on":true},{"x":160,"y":458,"on":true}]], "references": [], - "instructions": [64,51,21,20,2,4,3,1,74,0,1,1,64,75,7,6,2,3,3,0,93,2,1,0,0,67,75,0,4,4,5,95,0,5,5,77,5,76,0,0,0,32,0,32,26,22,17,17,17,17,8,9,26,43] + "instructions": "QDMVFAIEAwFKAAEBQEsHBgIDAwBdAgEAAENLAAQEBV8ABQVNBUwAAAAgACAaFhEREREICRor" }, "uni0236": { "name": "uni0236", "advanceWidth": 500, "contours": [[{"x":22,"y":-57,"on":true},{"x":39,"y":22,"on":false},{"x":80,"y":93,"on":true},{"x":118,"y":159,"on":false},{"x":160,"y":198,"on":true},{"x":160,"y":458,"on":true},{"x":51,"y":458,"on":true},{"x":51,"y":530,"on":true},{"x":160,"y":530,"on":true},{"x":160,"y":735,"on":true},{"x":240,"y":735,"on":true},{"x":240,"y":530,"on":true},{"x":401,"y":530,"on":true},{"x":401,"y":458,"on":true},{"x":240,"y":458,"on":true},{"x":240,"y":246,"on":true},{"x":267,"y":255,"on":false},{"x":295,"y":255,"on":true},{"x":334,"y":255,"on":false},{"x":365,"y":237,"on":true},{"x":390,"y":222,"on":false},{"x":404,"y":197,"on":true},{"x":423,"y":165,"on":false},{"x":423,"y":82,"on":false},{"x":405,"y":50,"on":true},{"x":391,"y":25,"on":false},{"x":366,"y":11,"on":true},{"x":333,"y":-8,"on":false},{"x":292,"y":-8,"on":true},{"x":257,"y":-8,"on":false},{"x":228,"y":8,"on":true},{"x":200,"y":24,"on":false},{"x":183,"y":54,"on":true},{"x":175,"y":69,"on":false},{"x":169,"y":89,"on":true},{"x":160,"y":75,"on":false},{"x":151,"y":60,"on":true},{"x":115,"y":-2,"on":false},{"x":100,"y":-72,"on":true}],[{"x":240,"y":145,"on":true},{"x":240,"y":96,"on":false},{"x":258,"y":78,"on":true},{"x":272,"y":64,"on":false},{"x":291,"y":64,"on":true},{"x":313,"y":64,"on":false},{"x":327,"y":78,"on":true},{"x":343,"y":94,"on":false},{"x":343,"y":153,"on":false},{"x":327,"y":169,"on":true},{"x":313,"y":183,"on":false},{"x":290,"y":183,"on":true},{"x":270,"y":183,"on":false},{"x":248,"y":170,"on":true},{"x":244,"y":168,"on":false},{"x":240,"y":165,"on":true}]], "references": [], - "instructions": [64,64,15,4,2,8,5,54,34,2,7,8,2,74,38,1,6,71,0,5,0,8,7,5,8,103,0,2,2,64,75,4,1,0,0,1,93,3,1,1,1,67,75,0,7,7,6,95,0,6,6,73,6,76,37,45,41,34,17,17,17,17,21,9,9,29,43] + "instructions": "QEAPBAIIBTYiAgcIAkomAQZHAAUACAcFCGcAAgJASwQBAAABXQMBAQFDSwAHBwZfAAYGSQZMJS0pIhEREREVCQkdKw==" }, "tbar": { "name": "tbar", "advanceWidth": 500, "contours": [[{"x":51,"y":458,"on":true},{"x":51,"y":530,"on":true},{"x":160,"y":530,"on":true},{"x":160,"y":735,"on":true},{"x":240,"y":735,"on":true},{"x":240,"y":530,"on":true},{"x":401,"y":530,"on":true},{"x":401,"y":458,"on":true},{"x":240,"y":458,"on":true},{"x":240,"y":354,"on":true},{"x":338,"y":354,"on":true},{"x":338,"y":282,"on":true},{"x":240,"y":282,"on":true},{"x":240,"y":194,"on":true},{"x":240,"y":139,"on":false},{"x":260,"y":104,"on":true},{"x":272,"y":83,"on":false},{"x":290,"y":73,"on":true},{"x":305,"y":64,"on":false},{"x":346,"y":64,"on":false},{"x":361,"y":73,"on":true},{"x":369,"y":78,"on":false},{"x":377,"y":85,"on":true},{"x":407,"y":115,"on":false},{"x":411,"y":172,"on":true},{"x":489,"y":155,"on":true},{"x":484,"y":107,"on":false},{"x":440,"y":32,"on":false},{"x":405,"y":12,"on":true},{"x":371,"y":-8,"on":false},{"x":280,"y":-8,"on":false},{"x":246,"y":12,"on":true},{"x":211,"y":32,"on":false},{"x":189,"y":69,"on":true},{"x":160,"y":119,"on":false},{"x":160,"y":194,"on":true},{"x":160,"y":282,"on":true},{"x":72,"y":282,"on":true},{"x":72,"y":354,"on":true},{"x":160,"y":354,"on":true},{"x":160,"y":458,"on":true}]], "references": [], - "instructions": [64,66,25,24,2,6,5,1,74,9,1,4,8,1,5,6,4,5,101,0,1,1,64,75,11,10,2,3,3,0,93,2,1,0,0,67,75,0,6,6,7,95,0,7,7,73,7,76,0,0,0,40,0,40,39,38,22,26,22,17,17,17,17,17,17,12,9,29,43] + "instructions": "QEIZGAIGBQFKCQEECAEFBgQFZQABAUBLCwoCAwMAXQIBAABDSwAGBgdfAAcHSQdMAAAAKAAoJyYWGhYREREREREMCR0r" }, "S": { "name": "S", "advanceWidth": 500, "contours": [[{"x":55,"y":153,"on":true},{"x":55,"y":154,"on":false},{"x":55,"y":155,"on":true},{"x":134,"y":166,"on":true},{"x":134,"y":159,"on":true},{"x":134,"y":135,"on":false},{"x":146,"y":114,"on":true},{"x":159,"y":92,"on":false},{"x":181,"y":80,"on":true},{"x":208,"y":64,"on":false},{"x":247,"y":64,"on":true},{"x":283,"y":64,"on":false},{"x":308,"y":79,"on":true},{"x":331,"y":92,"on":false},{"x":345,"y":115,"on":true},{"x":360,"y":142,"on":false},{"x":360,"y":208,"on":false},{"x":342,"y":240,"on":true},{"x":317,"y":284,"on":false},{"x":235,"y":329,"on":true},{"x":124,"y":392,"on":false},{"x":89,"y":454,"on":true},{"x":60,"y":504,"on":false},{"x":60,"y":559,"on":true},{"x":60,"y":613,"on":false},{"x":85,"y":656,"on":true},{"x":107,"y":695,"on":false},{"x":147,"y":717,"on":true},{"x":191,"y":743,"on":false},{"x":253,"y":743,"on":true},{"x":319,"y":743,"on":false},{"x":366,"y":716,"on":true},{"x":403,"y":694,"on":false},{"x":445,"y":622,"on":false},{"x":445,"y":582,"on":true},{"x":445,"y":581,"on":false},{"x":445,"y":580,"on":true},{"x":366,"y":569,"on":true},{"x":366,"y":576,"on":true},{"x":366,"y":600,"on":false},{"x":354,"y":621,"on":true},{"x":341,"y":643,"on":false},{"x":319,"y":655,"on":true},{"x":292,"y":671,"on":false},{"x":253,"y":671,"on":true},{"x":217,"y":671,"on":false},{"x":192,"y":656,"on":true},{"x":169,"y":643,"on":false},{"x":155,"y":620,"on":true},{"x":140,"y":593,"on":false},{"x":140,"y":527,"on":false},{"x":158,"y":495,"on":true},{"x":183,"y":451,"on":false},{"x":265,"y":406,"on":true},{"x":376,"y":343,"on":false},{"x":411,"y":281,"on":true},{"x":440,"y":231,"on":false},{"x":440,"y":176,"on":true},{"x":440,"y":122,"on":false},{"x":415,"y":79,"on":true},{"x":393,"y":40,"on":false},{"x":353,"y":18,"on":true},{"x":309,"y":-8,"on":false},{"x":247,"y":-8,"on":true},{"x":181,"y":-8,"on":false},{"x":134,"y":19,"on":true},{"x":97,"y":41,"on":false},{"x":55,"y":113,"on":false}]], "references": [], - "instructions": [64,40,37,34,3,0,4,0,2,1,74,0,2,2,1,95,0,1,1,72,75,0,0,0,3,95,0,3,3,73,3,76,64,62,45,43,30,28,41,4,9,21,43] + "instructions": "QCglIgMABAACAUoAAgIBXwABAUhLAAAAA18AAwNJA0xAPi0rHhwpBAkVKw==" }, "uni0405": { "name": "uni0405", "advanceWidth": 500, "contours": [], "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "s": { "name": "s", "advanceWidth": 500, "contours": [[{"x":57,"y":110,"on":true},{"x":132,"y":134,"on":true},{"x":135,"y":125,"on":false},{"x":140,"y":116,"on":true},{"x":153,"y":93,"on":false},{"x":177,"y":80,"on":true},{"x":205,"y":64,"on":false},{"x":248,"y":64,"on":true},{"x":295,"y":64,"on":false},{"x":325,"y":81,"on":true},{"x":344,"y":92,"on":false},{"x":353,"y":108,"on":true},{"x":361,"y":122,"on":false},{"x":361,"y":140,"on":true},{"x":361,"y":159,"on":false},{"x":351,"y":176,"on":true},{"x":341,"y":194,"on":false},{"x":321,"y":206,"on":true},{"x":297,"y":220,"on":false},{"x":241,"y":226,"on":true},{"x":171,"y":234,"on":false},{"x":136,"y":254,"on":true},{"x":100,"y":275,"on":false},{"x":80,"y":310,"on":true},{"x":59,"y":346,"on":false},{"x":59,"y":390,"on":true},{"x":59,"y":429,"on":false},{"x":76,"y":459,"on":true},{"x":94,"y":490,"on":false},{"x":129,"y":510,"on":true},{"x":178,"y":538,"on":false},{"x":252,"y":538,"on":true},{"x":322,"y":538,"on":false},{"x":369,"y":511,"on":true},{"x":407,"y":489,"on":false},{"x":429,"y":451,"on":true},{"x":438,"y":436,"on":false},{"x":443,"y":420,"on":true},{"x":368,"y":396,"on":true},{"x":365,"y":405,"on":false},{"x":360,"y":414,"on":true},{"x":347,"y":437,"on":false},{"x":323,"y":450,"on":true},{"x":295,"y":466,"on":false},{"x":252,"y":466,"on":true},{"x":205,"y":466,"on":false},{"x":175,"y":449,"on":true},{"x":156,"y":438,"on":false},{"x":147,"y":422,"on":true},{"x":139,"y":408,"on":false},{"x":139,"y":390,"on":true},{"x":139,"y":371,"on":false},{"x":149,"y":354,"on":true},{"x":159,"y":336,"on":false},{"x":179,"y":324,"on":true},{"x":203,"y":310,"on":false},{"x":259,"y":304,"on":true},{"x":329,"y":296,"on":false},{"x":364,"y":276,"on":true},{"x":400,"y":255,"on":false},{"x":420,"y":220,"on":true},{"x":441,"y":184,"on":false},{"x":441,"y":140,"on":true},{"x":441,"y":101,"on":false},{"x":424,"y":71,"on":true},{"x":406,"y":40,"on":false},{"x":371,"y":20,"on":true},{"x":322,"y":-8,"on":false},{"x":248,"y":-8,"on":true},{"x":178,"y":-8,"on":false},{"x":131,"y":19,"on":true},{"x":93,"y":41,"on":false},{"x":71,"y":79,"on":true},{"x":62,"y":94,"on":false}]], "references": [], - "instructions": [64,39,38,37,1,3,0,2,1,74,0,2,2,1,95,0,1,1,75,75,0,0,0,3,95,0,3,3,73,3,76,69,67,45,43,32,30,38,4,9,21,43] + "instructions": "QCcmJQEDAAIBSgACAgFfAAEBS0sAAAADXwADA0kDTEVDLSsgHiYECRUr" }, "uni0455": { "name": "uni0455", "advanceWidth": 500, "contours": [], "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01A7": { "name": "uni01A7", "advanceWidth": 500, "contours": [[{"x":55,"y":580,"on":true},{"x":55,"y":582,"on":true},{"x":55,"y":622,"on":false},{"x":76,"y":658,"on":true},{"x":97,"y":695,"on":false},{"x":134,"y":716,"on":true},{"x":180,"y":743,"on":false},{"x":247,"y":743,"on":true},{"x":309,"y":743,"on":false},{"x":353,"y":717,"on":true},{"x":392,"y":695,"on":false},{"x":415,"y":656,"on":true},{"x":440,"y":612,"on":false},{"x":440,"y":559,"on":true},{"x":440,"y":504,"on":false},{"x":411,"y":454,"on":true},{"x":376,"y":393,"on":false},{"x":265,"y":329,"on":true},{"x":183,"y":283,"on":false},{"x":158,"y":240,"on":true},{"x":140,"y":208,"on":false},{"x":140,"y":142,"on":false},{"x":155,"y":115,"on":true},{"x":168,"y":92,"on":false},{"x":192,"y":79,"on":true},{"x":218,"y":64,"on":false},{"x":253,"y":64,"on":true},{"x":292,"y":64,"on":false},{"x":319,"y":80,"on":true},{"x":341,"y":93,"on":false},{"x":354,"y":114,"on":true},{"x":366,"y":135,"on":false},{"x":366,"y":159,"on":true},{"x":366,"y":166,"on":true},{"x":445,"y":155,"on":true},{"x":445,"y":154,"on":false},{"x":445,"y":153,"on":true},{"x":445,"y":113,"on":false},{"x":424,"y":77,"on":true},{"x":403,"y":40,"on":false},{"x":366,"y":19,"on":true},{"x":320,"y":-8,"on":false},{"x":253,"y":-8,"on":true},{"x":191,"y":-8,"on":false},{"x":147,"y":18,"on":true},{"x":108,"y":40,"on":false},{"x":85,"y":79,"on":true},{"x":60,"y":123,"on":false},{"x":60,"y":176,"on":true},{"x":60,"y":231,"on":false},{"x":89,"y":281,"on":true},{"x":124,"y":342,"on":false},{"x":235,"y":406,"on":true},{"x":317,"y":452,"on":false},{"x":342,"y":495,"on":true},{"x":360,"y":527,"on":false},{"x":360,"y":593,"on":false},{"x":345,"y":620,"on":true},{"x":332,"y":643,"on":false},{"x":308,"y":656,"on":true},{"x":282,"y":671,"on":false},{"x":247,"y":671,"on":true},{"x":208,"y":671,"on":false},{"x":181,"y":655,"on":true},{"x":159,"y":642,"on":false},{"x":146,"y":621,"on":true},{"x":134,"y":600,"on":false},{"x":134,"y":576,"on":true},{"x":134,"y":569,"on":true}]], "references": [], - "instructions": [64,55,6,1,5,4,2,4,5,2,126,0,2,1,4,2,1,124,0,4,4,0,95,0,0,0,72,75,0,1,1,3,95,0,3,3,73,3,76,0,0,0,68,0,67,62,60,43,41,34,32,27,25,38,7,9,21,43] + "instructions": "QDcGAQUEAgQFAn4AAgEEAgF8AAQEAF8AAABISwABAQNfAAMDSQNMAAAARABDPjwrKSIgGxkmBwkVKw==" }, "uni01A8": { "name": "uni01A8", "advanceWidth": 500, "contours": [[{"x":55,"y":420,"on":true},{"x":60,"y":436,"on":false},{"x":69,"y":451,"on":true},{"x":91,"y":489,"on":false},{"x":129,"y":511,"on":true},{"x":175,"y":538,"on":false},{"x":246,"y":538,"on":true},{"x":321,"y":538,"on":false},{"x":370,"y":510,"on":true},{"x":405,"y":490,"on":false},{"x":423,"y":458,"on":true},{"x":440,"y":429,"on":false},{"x":440,"y":394,"on":true},{"x":440,"y":356,"on":false},{"x":420,"y":321,"on":true},{"x":398,"y":283,"on":false},{"x":358,"y":260,"on":true},{"x":326,"y":241,"on":false},{"x":260,"y":226,"on":true},{"x":207,"y":214,"on":false},{"x":184,"y":201,"on":true},{"x":160,"y":187,"on":false},{"x":149,"y":168,"on":true},{"x":140,"y":152,"on":false},{"x":140,"y":135,"on":true},{"x":140,"y":120,"on":false},{"x":147,"y":107,"on":true},{"x":156,"y":92,"on":false},{"x":174,"y":82,"on":true},{"x":204,"y":64,"on":false},{"x":254,"y":64,"on":true},{"x":298,"y":64,"on":false},{"x":325,"y":80,"on":true},{"x":348,"y":93,"on":false},{"x":362,"y":116,"on":true},{"x":367,"y":125,"on":false},{"x":370,"y":134,"on":true},{"x":445,"y":110,"on":true},{"x":440,"y":94,"on":false},{"x":431,"y":79,"on":true},{"x":409,"y":41,"on":false},{"x":371,"y":19,"on":true},{"x":325,"y":-8,"on":false},{"x":254,"y":-8,"on":true},{"x":179,"y":-8,"on":false},{"x":130,"y":20,"on":true},{"x":95,"y":40,"on":false},{"x":77,"y":72,"on":true},{"x":60,"y":101,"on":false},{"x":60,"y":136,"on":true},{"x":60,"y":174,"on":false},{"x":80,"y":209,"on":true},{"x":102,"y":247,"on":false},{"x":142,"y":270,"on":true},{"x":174,"y":289,"on":false},{"x":240,"y":304,"on":true},{"x":293,"y":316,"on":false},{"x":316,"y":329,"on":true},{"x":340,"y":343,"on":false},{"x":351,"y":362,"on":true},{"x":360,"y":378,"on":false},{"x":360,"y":395,"on":true},{"x":360,"y":410,"on":false},{"x":353,"y":423,"on":true},{"x":344,"y":438,"on":false},{"x":326,"y":448,"on":true},{"x":296,"y":466,"on":false},{"x":246,"y":466,"on":true},{"x":202,"y":466,"on":false},{"x":175,"y":450,"on":true},{"x":152,"y":437,"on":false},{"x":138,"y":414,"on":true},{"x":133,"y":405,"on":false},{"x":130,"y":396,"on":true}]], "references": [], - "instructions": [64,39,73,37,36,3,1,3,1,74,0,3,3,0,95,0,0,0,75,75,0,1,1,2,95,0,2,2,73,2,76,68,66,44,42,31,29,37,4,9,21,43] + "instructions": "QCdJJSQDAQMBSgADAwBfAAAAS0sAAQECXwACAkkCTERCLCofHSUECRUr" }, "glyph457": { "name": "glyph457", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni01A8","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0282": { "name": "uni0282", "advanceWidth": 500, "contours": [[{"x":55,"y":0,"on":true},{"x":55,"y":110,"on":true},{"x":57,"y":110,"on":true},{"x":132,"y":134,"on":true},{"x":135,"y":125,"on":false},{"x":140,"y":116,"on":true},{"x":153,"y":93,"on":false},{"x":177,"y":80,"on":true},{"x":205,"y":64,"on":false},{"x":248,"y":64,"on":true},{"x":295,"y":64,"on":false},{"x":325,"y":81,"on":true},{"x":344,"y":92,"on":false},{"x":353,"y":108,"on":true},{"x":361,"y":122,"on":false},{"x":361,"y":140,"on":true},{"x":361,"y":159,"on":false},{"x":351,"y":176,"on":true},{"x":341,"y":194,"on":false},{"x":321,"y":206,"on":true},{"x":297,"y":220,"on":false},{"x":241,"y":226,"on":true},{"x":171,"y":234,"on":false},{"x":136,"y":254,"on":true},{"x":100,"y":275,"on":false},{"x":80,"y":310,"on":true},{"x":59,"y":346,"on":false},{"x":59,"y":390,"on":true},{"x":59,"y":429,"on":false},{"x":76,"y":459,"on":true},{"x":94,"y":490,"on":false},{"x":129,"y":510,"on":true},{"x":178,"y":538,"on":false},{"x":252,"y":538,"on":true},{"x":322,"y":538,"on":false},{"x":369,"y":511,"on":true},{"x":407,"y":489,"on":false},{"x":429,"y":451,"on":true},{"x":438,"y":436,"on":false},{"x":443,"y":420,"on":true},{"x":368,"y":396,"on":true},{"x":365,"y":405,"on":false},{"x":360,"y":414,"on":true},{"x":347,"y":437,"on":false},{"x":323,"y":450,"on":true},{"x":295,"y":466,"on":false},{"x":252,"y":466,"on":true},{"x":205,"y":466,"on":false},{"x":175,"y":449,"on":true},{"x":156,"y":438,"on":false},{"x":147,"y":422,"on":true},{"x":139,"y":408,"on":false},{"x":139,"y":390,"on":true},{"x":139,"y":371,"on":false},{"x":149,"y":354,"on":true},{"x":159,"y":336,"on":false},{"x":179,"y":324,"on":true},{"x":203,"y":310,"on":false},{"x":259,"y":304,"on":true},{"x":329,"y":296,"on":false},{"x":364,"y":276,"on":true},{"x":400,"y":255,"on":false},{"x":420,"y":220,"on":true},{"x":441,"y":184,"on":false},{"x":441,"y":140,"on":true},{"x":441,"y":101,"on":false},{"x":424,"y":71,"on":true},{"x":406,"y":40,"on":false},{"x":371,"y":20,"on":true},{"x":322,"y":-8,"on":false},{"x":248,"y":-8,"on":true},{"x":180,"y":-8,"on":false},{"x":135,"y":16,"on":true},{"x":135,"y":0,"on":true},{"x":135,"y":-47,"on":false},{"x":149,"y":-71,"on":true},{"x":161,"y":-91,"on":false},{"x":181,"y":-103,"on":true},{"x":208,"y":-119,"on":false},{"x":265,"y":-119,"on":true},{"x":265,"y":-191,"on":true},{"x":173,"y":-191,"on":false},{"x":129,"y":-166,"on":true},{"x":96,"y":-147,"on":false},{"x":77,"y":-114,"on":true},{"x":55,"y":-75,"on":false}]], "references": [], - "instructions": [64,13,40,39,3,1,4,0,2,72,1,3,0,2,74,75,176,35,80,88,64,31,0,2,2,1,95,0,1,1,75,75,0,0,0,3,95,0,3,3,73,75,0,4,4,5,95,0,5,5,69,5,76,27,64,28,0,4,0,5,4,5,99,0,2,2,1,95,0,1,1,75,75,0,0,0,3,95,0,3,3,73,3,76,89,64,14,81,80,79,78,71,69,47,45,34,32,40,6,9,21,43] + "instructions": "QA0oJwMBBAACSAEDAAJKS7AjUFhAHwACAgFfAAEBS0sAAAADXwADA0lLAAQEBV8ABQVFBUwbQBwABAAFBAVjAAICAV8AAQFLSwAAAANfAAMDSQNMWUAOUVBPTkdFLy0iICgGCRUr" }, "uni2C7E": { "name": "uni2C7E", "advanceWidth": 500, "contours": [[{"x":54,"y":134,"on":true},{"x":54,"y":144,"on":false},{"x":55,"y":155,"on":true},{"x":134,"y":166,"on":true},{"x":134,"y":159,"on":true},{"x":134,"y":135,"on":false},{"x":146,"y":114,"on":true},{"x":159,"y":92,"on":false},{"x":181,"y":80,"on":true},{"x":208,"y":64,"on":false},{"x":247,"y":64,"on":true},{"x":283,"y":64,"on":false},{"x":308,"y":79,"on":true},{"x":331,"y":92,"on":false},{"x":345,"y":115,"on":true},{"x":360,"y":142,"on":false},{"x":360,"y":208,"on":false},{"x":342,"y":240,"on":true},{"x":317,"y":284,"on":false},{"x":235,"y":329,"on":true},{"x":124,"y":392,"on":false},{"x":89,"y":454,"on":true},{"x":60,"y":504,"on":false},{"x":60,"y":559,"on":true},{"x":60,"y":613,"on":false},{"x":85,"y":656,"on":true},{"x":107,"y":695,"on":false},{"x":147,"y":717,"on":true},{"x":191,"y":743,"on":false},{"x":253,"y":743,"on":true},{"x":319,"y":743,"on":false},{"x":366,"y":716,"on":true},{"x":403,"y":694,"on":false},{"x":445,"y":622,"on":false},{"x":445,"y":582,"on":true},{"x":445,"y":581,"on":false},{"x":445,"y":580,"on":true},{"x":366,"y":569,"on":true},{"x":366,"y":576,"on":true},{"x":366,"y":600,"on":false},{"x":354,"y":621,"on":true},{"x":341,"y":643,"on":false},{"x":319,"y":655,"on":true},{"x":292,"y":671,"on":false},{"x":253,"y":671,"on":true},{"x":217,"y":671,"on":false},{"x":192,"y":656,"on":true},{"x":169,"y":643,"on":false},{"x":155,"y":620,"on":true},{"x":140,"y":593,"on":false},{"x":140,"y":527,"on":false},{"x":158,"y":495,"on":true},{"x":183,"y":451,"on":false},{"x":265,"y":406,"on":true},{"x":376,"y":343,"on":false},{"x":411,"y":281,"on":true},{"x":440,"y":231,"on":false},{"x":440,"y":176,"on":true},{"x":440,"y":122,"on":false},{"x":415,"y":79,"on":true},{"x":393,"y":40,"on":false},{"x":353,"y":18,"on":true},{"x":309,"y":-8,"on":false},{"x":247,"y":-8,"on":true},{"x":188,"y":-8,"on":false},{"x":145,"y":13,"on":true},{"x":149,"y":4,"on":false},{"x":154,"y":-4,"on":true},{"x":187,"y":-61,"on":false},{"x":245,"y":-94,"on":true},{"x":312,"y":-133,"on":false},{"x":439,"y":-133,"on":true},{"x":440,"y":-133,"on":true},{"x":440,"y":-205,"on":true},{"x":439,"y":-205,"on":true},{"x":295,"y":-205,"on":false},{"x":218,"y":-160,"on":true},{"x":145,"y":-118,"on":false},{"x":101,"y":-43,"on":true},{"x":54,"y":39,"on":false}]], "references": [], - "instructions": [64,57,37,34,3,3,0,2,65,1,3,0,2,74,0,2,2,1,95,0,1,1,72,75,0,0,0,3,95,0,3,3,73,75,0,4,4,5,95,0,5,5,69,5,76,75,73,71,70,64,62,45,43,30,28,41,6,9,21,43] + "instructions": "QDklIgMDAAJBAQMAAkoAAgIBXwABAUhLAAAAA18AAwNJSwAEBAVfAAUFRQVMS0lHRkA+LSseHCkGCRUr" }, "uni023F": { "name": "uni023F", "advanceWidth": 500, "contours": [[{"x":55,"y":110,"on":true},{"x":58,"y":110,"on":true},{"x":132,"y":134,"on":true},{"x":135,"y":125,"on":false},{"x":140,"y":116,"on":true},{"x":153,"y":93,"on":false},{"x":177,"y":80,"on":true},{"x":205,"y":64,"on":false},{"x":248,"y":64,"on":true},{"x":295,"y":64,"on":false},{"x":325,"y":81,"on":true},{"x":344,"y":92,"on":false},{"x":353,"y":108,"on":true},{"x":361,"y":122,"on":false},{"x":361,"y":140,"on":true},{"x":361,"y":159,"on":false},{"x":351,"y":176,"on":true},{"x":341,"y":194,"on":false},{"x":321,"y":206,"on":true},{"x":297,"y":220,"on":false},{"x":241,"y":226,"on":true},{"x":171,"y":234,"on":false},{"x":136,"y":254,"on":true},{"x":100,"y":275,"on":false},{"x":80,"y":310,"on":true},{"x":59,"y":346,"on":false},{"x":59,"y":390,"on":true},{"x":59,"y":429,"on":false},{"x":76,"y":459,"on":true},{"x":94,"y":490,"on":false},{"x":129,"y":510,"on":true},{"x":178,"y":538,"on":false},{"x":252,"y":538,"on":true},{"x":322,"y":538,"on":false},{"x":369,"y":511,"on":true},{"x":407,"y":489,"on":false},{"x":429,"y":451,"on":true},{"x":438,"y":436,"on":false},{"x":443,"y":420,"on":true},{"x":368,"y":396,"on":true},{"x":365,"y":405,"on":false},{"x":360,"y":414,"on":true},{"x":347,"y":437,"on":false},{"x":323,"y":450,"on":true},{"x":295,"y":466,"on":false},{"x":252,"y":466,"on":true},{"x":205,"y":466,"on":false},{"x":175,"y":449,"on":true},{"x":156,"y":438,"on":false},{"x":147,"y":422,"on":true},{"x":139,"y":408,"on":false},{"x":139,"y":390,"on":true},{"x":139,"y":371,"on":false},{"x":149,"y":354,"on":true},{"x":159,"y":336,"on":false},{"x":179,"y":324,"on":true},{"x":203,"y":310,"on":false},{"x":259,"y":304,"on":true},{"x":329,"y":296,"on":false},{"x":364,"y":276,"on":true},{"x":400,"y":255,"on":false},{"x":420,"y":220,"on":true},{"x":441,"y":184,"on":false},{"x":441,"y":140,"on":true},{"x":441,"y":101,"on":false},{"x":424,"y":71,"on":true},{"x":406,"y":40,"on":false},{"x":371,"y":20,"on":true},{"x":322,"y":-8,"on":false},{"x":248,"y":-8,"on":true},{"x":192,"y":-8,"on":false},{"x":151,"y":9,"on":true},{"x":186,"y":-57,"on":false},{"x":250,"y":-95,"on":true},{"x":316,"y":-133,"on":false},{"x":439,"y":-133,"on":true},{"x":440,"y":-133,"on":true},{"x":440,"y":-205,"on":true},{"x":439,"y":-205,"on":true},{"x":302,"y":-205,"on":false},{"x":150,"y":-117,"on":false},{"x":104,"y":-37,"on":true},{"x":65,"y":31,"on":false}]], "references": [], - "instructions": [64,57,39,38,2,3,0,2,71,1,3,0,2,74,0,2,2,1,95,0,1,1,75,75,0,0,0,3,95,0,3,3,73,75,0,4,4,5,95,0,5,5,69,5,76,79,77,75,74,70,68,46,44,33,31,39,6,9,21,43] + "instructions": "QDknJgIDAAJHAQMAAkoAAgIBXwABAUtLAAAAA18AAwNJSwAEBAVfAAUFRQVMT01LSkZELiwhHycGCRUr" }, "Z": { "name": "Z", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":348,"y":663,"on":true},{"x":60,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":152,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":0,"on":true}]], "references": [], - "instructions": [64,42,6,1,0,1,1,2,2,73,0,0,0,1,93,0,1,1,64,75,0,2,2,3,93,4,1,3,3,65,3,76,0,0,0,9,0,9,18,17,18,5,9,23,43] + "instructions": "QCoGAQABAQICSQAAAAFdAAEBQEsAAgIDXQQBAwNBA0wAAAAJAAkSERIFCRcr" }, "Zeta": { "name": "Zeta", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "z": { "name": "z", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":344,"y":458,"on":true},{"x":60,"y":458,"on":true},{"x":60,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":458,"on":true},{"x":156,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":0,"on":true}]], "references": [], - "instructions": [64,42,6,1,0,1,1,2,2,73,0,0,0,1,93,0,1,1,67,75,0,2,2,3,93,4,1,3,3,65,3,76,0,0,0,9,0,9,18,17,18,5,9,23,43] + "instructions": "QCoGAQABAQICSQAAAAFdAAEBQ0sAAgIDXQQBAwNBA0wAAAAJAAkSERIFCRcr" }, "uni0224": { "name": "uni0224", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":348,"y":663,"on":true},{"x":60,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":152,"y":72,"on":true},{"x":270,"y":72,"on":true},{"x":314,"y":72,"on":false},{"x":348,"y":52,"on":true},{"x":383,"y":32,"on":false},{"x":407,"y":-8,"on":true},{"x":440,"y":-66,"on":false},{"x":440,"y":-155,"on":true},{"x":360,"y":-155,"on":true},{"x":360,"y":-84,"on":false},{"x":336,"y":-42,"on":true},{"x":323,"y":-19,"on":false},{"x":304,"y":-9,"on":true},{"x":289,"y":0,"on":false},{"x":270,"y":0,"on":true}]], "references": [], - "instructions": [64,48,6,1,0,1,1,2,2,73,0,3,4,3,132,0,0,0,1,93,0,1,1,64,75,0,2,2,4,93,5,1,4,4,65,4,76,0,0,0,21,0,20,21,34,17,18,6,9,24,43] + "instructions": "QDAGAQABAQICSQADBAOEAAAAAV0AAQFASwACAgRdBQEEBEEETAAAABUAFBUiERIGCRgr" }, "uni0225": { "name": "uni0225", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":344,"y":458,"on":true},{"x":60,"y":458,"on":true},{"x":60,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":458,"on":true},{"x":156,"y":72,"on":true},{"x":270,"y":72,"on":true},{"x":314,"y":72,"on":false},{"x":348,"y":52,"on":true},{"x":383,"y":32,"on":false},{"x":407,"y":-8,"on":true},{"x":440,"y":-66,"on":false},{"x":440,"y":-155,"on":true},{"x":360,"y":-155,"on":true},{"x":360,"y":-84,"on":false},{"x":336,"y":-42,"on":true},{"x":323,"y":-19,"on":false},{"x":304,"y":-9,"on":true},{"x":289,"y":0,"on":false},{"x":270,"y":0,"on":true}]], "references": [], - "instructions": [64,48,6,1,0,1,1,2,2,73,0,3,4,3,132,0,0,0,1,93,0,1,1,67,75,0,2,2,4,93,5,1,4,4,65,4,76,0,0,0,21,0,20,21,34,17,18,6,9,24,43] + "instructions": "QDAGAQABAQICSQADBAOEAAAAAV0AAQFDSwACAgRdBQEEBEEETAAAABUAFBUiERIGCRgr" }, "uni2C7F": { "name": "uni2C7F", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":357,"y":663,"on":true},{"x":60,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":151,"y":18,"on":true},{"x":248,"y":-74,"on":false},{"x":294,"y":-100,"on":true},{"x":351,"y":-133,"on":false},{"x":439,"y":-133,"on":true},{"x":440,"y":-133,"on":true},{"x":440,"y":-205,"on":true},{"x":439,"y":-205,"on":true},{"x":328,"y":-205,"on":false},{"x":254,"y":-162,"on":true},{"x":183,"y":-121,"on":false}]], "references": [], - "instructions": [64,39,6,1,2,0,1,74,5,1,0,1,73,0,0,0,1,93,0,1,1,64,75,0,2,2,3,95,0,3,3,69,3,76,34,21,17,17,4,9,24,43] + "instructions": "QCcGAQIAAUoFAQABSQAAAAFdAAEBQEsAAgIDXwADA0UDTCIVEREECRgr" }, "uni0240": { "name": "uni0240", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":354,"y":458,"on":true},{"x":60,"y":458,"on":true},{"x":60,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":458,"on":true},{"x":157,"y":17,"on":true},{"x":253,"y":-75,"on":false},{"x":298,"y":-101,"on":true},{"x":353,"y":-133,"on":false},{"x":439,"y":-133,"on":true},{"x":440,"y":-133,"on":true},{"x":440,"y":-205,"on":true},{"x":439,"y":-205,"on":true},{"x":330,"y":-205,"on":false},{"x":258,"y":-163,"on":true},{"x":188,"y":-123,"on":false},{"x":65,"y":0,"on":true}]], "references": [], - "instructions": [64,39,6,1,2,0,1,74,5,1,0,1,73,0,0,0,1,93,0,1,1,67,75,0,2,2,3,95,0,3,3,69,3,76,34,21,17,17,4,9,24,43] + "instructions": "QCcGAQIAAUoFAQABSQAAAAFdAAEBQ0sAAgIDXwADA0UDTCIVEREECRgr" }, "uni2C6B": { "name": "uni2C6B", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":348,"y":663,"on":true},{"x":60,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":152,"y":72,"on":true},{"x":459,"y":72,"on":true},{"x":459,"y":-139,"on":true},{"x":379,"y":-139,"on":true},{"x":379,"y":0,"on":true}]], "references": [], - "instructions": [183,6,1,0,1,1,2,2,73,75,176,9,80,88,64,28,0,3,4,4,3,111,0,0,0,1,93,0,1,1,64,75,0,2,2,4,93,5,1,4,4,65,4,76,27,64,27,0,3,4,3,132,0,0,0,1,93,0,1,1,64,75,0,2,2,4,93,5,1,4,4,65,4,76,89,64,13,0,0,0,11,0,11,17,18,17,18,6,9,24,43] + "instructions": "twYBAAEBAgJJS7AJUFhAHAADBAQDbwAAAAFdAAEBQEsAAgIEXQUBBARBBEwbQBsAAwQDhAAAAAFdAAEBQEsAAgIEXQUBBARBBExZQA0AAAALAAsREhESBgkYKw==" }, "uni2C6C": { "name": "uni2C6C", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":344,"y":458,"on":true},{"x":60,"y":458,"on":true},{"x":60,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":458,"on":true},{"x":156,"y":72,"on":true},{"x":459,"y":72,"on":true},{"x":459,"y":-139,"on":true},{"x":379,"y":-139,"on":true},{"x":379,"y":0,"on":true}]], "references": [], - "instructions": [183,6,1,0,1,1,2,2,73,75,176,9,80,88,64,28,0,3,4,4,3,111,0,0,0,1,93,0,1,1,67,75,0,2,2,4,93,5,1,4,4,65,4,76,27,64,27,0,3,4,3,132,0,0,0,1,93,0,1,1,67,75,0,2,2,4,93,5,1,4,4,65,4,76,89,64,13,0,0,0,11,0,11,17,18,17,18,6,9,24,43] + "instructions": "twYBAAEBAgJJS7AJUFhAHAADBAQDbwAAAAFdAAEBQ0sAAgIEXQUBBARBBEwbQBsAAwQDhAAAAAFdAAEBQ0sAAgIEXQUBBARBBExZQA0AAAALAAsREhESBgkYKw==" }, "uni0291": { "name": "uni0291", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":344,"y":458,"on":true},{"x":60,"y":458,"on":true},{"x":60,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":458,"on":true},{"x":156,"y":72,"on":true},{"x":213,"y":72,"on":true},{"x":214,"y":75,"on":false},{"x":216,"y":77,"on":true},{"x":254,"y":143,"on":false},{"x":302,"y":171,"on":true},{"x":337,"y":191,"on":false},{"x":376,"y":191,"on":true},{"x":412,"y":191,"on":false},{"x":438,"y":176,"on":true},{"x":482,"y":151,"on":false},{"x":482,"y":96,"on":true},{"x":482,"y":69,"on":false},{"x":471,"y":49,"on":true},{"x":459,"y":29,"on":false},{"x":437,"y":17,"on":true},{"x":408,"y":0,"on":false},{"x":366,"y":0,"on":true},{"x":256,"y":0,"on":true},{"x":238,"y":-45,"on":false},{"x":224,"y":-106,"on":true},{"x":150,"y":-91,"on":true},{"x":163,"y":-41,"on":false},{"x":179,"y":0,"on":true}],[{"x":293,"y":72,"on":true},{"x":366,"y":72,"on":true},{"x":389,"y":72,"on":false},{"x":400,"y":83,"on":true},{"x":406,"y":89,"on":false},{"x":406,"y":97,"on":true},{"x":406,"y":107,"on":false},{"x":399,"y":114,"on":true},{"x":391,"y":122,"on":false},{"x":376,"y":122,"on":true},{"x":353,"y":122,"on":false},{"x":334,"y":111,"on":true},{"x":312,"y":98,"on":false}]], "references": [], - "instructions": [64,63,6,1,0,1,1,2,2,73,28,27,2,4,71,0,3,0,7,2,3,7,103,0,0,0,1,93,0,1,1,67,75,6,1,2,2,4,93,8,5,2,4,4,65,4,76,0,0,41,39,33,31,0,30,0,30,40,37,18,17,18,9,9,25,43] + "instructions": "QD8GAQABAQICSRwbAgRHAAMABwIDB2cAAAABXQABAUNLBgECAgRdCAUCBARBBEwAACknIR8AHgAeKCUSERIJCRkr" }, "alpha": { "name": "alpha", "advanceWidth": 500, "contours": [[{"x":44,"y":220,"on":true},{"x":44,"y":310,"on":true},{"x":44,"y":398,"on":false},{"x":77,"y":455,"on":true},{"x":101,"y":496,"on":false},{"x":138,"y":518,"on":true},{"x":173,"y":538,"on":false},{"x":220,"y":538,"on":true},{"x":251,"y":538,"on":false},{"x":276,"y":523,"on":true},{"x":309,"y":504,"on":false},{"x":335,"y":459,"on":true},{"x":345,"y":441,"on":false},{"x":356,"y":415,"on":true},{"x":365,"y":476,"on":false},{"x":374,"y":530,"on":true},{"x":454,"y":530,"on":true},{"x":439,"y":459,"on":false},{"x":423,"y":380,"on":true},{"x":411,"y":319,"on":false},{"x":399,"y":268,"on":true},{"x":412,"y":215,"on":false},{"x":425,"y":150,"on":true},{"x":441,"y":71,"on":false},{"x":456,"y":0,"on":true},{"x":376,"y":0,"on":true},{"x":367,"y":57,"on":false},{"x":357,"y":121,"on":true},{"x":345,"y":90,"on":false},{"x":334,"y":70,"on":true},{"x":308,"y":26,"on":false},{"x":275,"y":6,"on":true},{"x":250,"y":-8,"on":false},{"x":220,"y":-8,"on":true},{"x":173,"y":-8,"on":false},{"x":138,"y":12,"on":true},{"x":101,"y":34,"on":false},{"x":77,"y":75,"on":true},{"x":44,"y":133,"on":false}],[{"x":124,"y":220,"on":true},{"x":124,"y":151,"on":false},{"x":148,"y":109,"on":true},{"x":162,"y":85,"on":false},{"x":182,"y":73,"on":true},{"x":198,"y":64,"on":false},{"x":220,"y":64,"on":true},{"x":236,"y":64,"on":false},{"x":249,"y":72,"on":true},{"x":269,"y":83,"on":false},{"x":284,"y":110,"on":true},{"x":308,"y":151,"on":false},{"x":331,"y":269,"on":true},{"x":308,"y":380,"on":false},{"x":285,"y":420,"on":true},{"x":269,"y":447,"on":false},{"x":250,"y":458,"on":true},{"x":236,"y":466,"on":false},{"x":220,"y":466,"on":true},{"x":199,"y":466,"on":false},{"x":182,"y":457,"on":true},{"x":162,"y":446,"on":false},{"x":148,"y":421,"on":true},{"x":124,"y":379,"on":false},{"x":124,"y":310,"on":true}]], "references": [], - "instructions": [64,9,51,27,20,13,4,4,5,1,74,75,176,29,80,88,64,23,0,5,5,0,95,1,1,0,0,55,75,0,4,4,2,95,3,1,2,2,45,2,76,27,64,31,0,1,1,47,75,0,5,5,0,95,0,0,0,55,75,0,2,2,45,75,0,4,4,3,95,0,3,3,53,3,76,89,64,9,42,42,39,24,23,38,6,8,26,43] + "instructions": "QAkzGxQNBAQFAUpLsB1QWEAXAAUFAF8BAQAAN0sABAQCXwMBAgItAkwbQB8AAQEvSwAFBQBfAAAAN0sAAgItSwAEBANfAAMDNQNMWUAJKionGBcmBggaKw==" }, "uniAB64": { "name": "uniAB64", "advanceWidth": 500, "contours": [], "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Gamma": { "name": "Gamma", "advanceWidth": 500, "contours": [[{"x":90,"y":0,"on":true},{"x":90,"y":735,"on":true},{"x":448,"y":735,"on":true},{"x":448,"y":663,"on":true},{"x":170,"y":663,"on":true},{"x":170,"y":0,"on":true}]], "references": [], - "instructions": [64,28,0,1,1,0,93,0,0,0,44,75,3,1,2,2,45,2,76,0,0,0,5,0,5,17,17,4,8,22,43] + "instructions": "QBwAAQEAXQAAACxLAwECAi0CTAAAAAUABRERBAgWKw==" }, "uni0413": { "name": "uni0413", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Gamma","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph475": { "name": "glyph475", "advanceWidth": 500, "contours": [[{"x":90,"y":0,"on":true},{"x":90,"y":530,"on":true},{"x":448,"y":530,"on":true},{"x":448,"y":458,"on":true},{"x":170,"y":458,"on":true},{"x":170,"y":0,"on":true}]], "references": [], - "instructions": [64,28,0,1,1,0,93,0,0,0,28,75,3,1,2,2,27,2,76,0,0,0,5,0,5,17,17,4,7,22,43] + "instructions": "QBwAAQEAXQAAABxLAwECAhsCTAAAAAUABRERBAcWKw==" }, "glyph476": { "name": "glyph476", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0433": { "name": "uni0433", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph475","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0490": { "name": "uni0490", "advanceWidth": 500, "contours": [[{"x":90,"y":0,"on":true},{"x":90,"y":735,"on":true},{"x":368,"y":735,"on":true},{"x":368,"y":890,"on":true},{"x":448,"y":890,"on":true},{"x":448,"y":663,"on":true},{"x":170,"y":663,"on":true},{"x":170,"y":0,"on":true}]], "references": [], - "instructions": [75,176,9,80,88,64,23,0,1,0,0,1,110,0,2,2,0,93,0,0,0,26,75,4,1,3,3,27,3,76,27,64,22,0,1,0,1,131,0,2,2,0,93,0,0,0,26,75,4,1,3,3,27,3,76,89,64,12,0,0,0,7,0,7,17,17,17,5,7,23,43] + "instructions": "S7AJUFhAFwABAAABbgACAgBdAAAAGksEAQMDGwNMG0AWAAEAAYMAAgIAXQAAABpLBAEDAxsDTFlADAAAAAcABxEREQUHFys=" }, "uni0491": { "name": "uni0491", "advanceWidth": 500, "contours": [[{"x":90,"y":0,"on":true},{"x":90,"y":530,"on":true},{"x":368,"y":530,"on":true},{"x":368,"y":685,"on":true},{"x":448,"y":685,"on":true},{"x":448,"y":458,"on":true},{"x":170,"y":458,"on":true},{"x":170,"y":0,"on":true}]], "references": [], - "instructions": [75,176,9,80,88,64,23,0,1,0,0,1,110,0,2,2,0,93,0,0,0,28,75,4,1,3,3,27,3,76,27,64,22,0,1,0,1,131,0,2,2,0,93,0,0,0,28,75,4,1,3,3,27,3,76,89,64,12,0,0,0,7,0,7,17,17,17,5,7,23,43] + "instructions": "S7AJUFhAFwABAAABbgACAgBdAAAAHEsEAQMDGwNMG0AWAAEAAYMAAgIAXQAAABxLBAEDAxsDTFlADAAAAAcABxEREQUHFys=" }, "uni0492": { "name": "uni0492", "advanceWidth": 500, "contours": [[{"x":18,"y":317,"on":true},{"x":18,"y":389,"on":true},{"x":90,"y":389,"on":true},{"x":90,"y":735,"on":true},{"x":448,"y":735,"on":true},{"x":448,"y":663,"on":true},{"x":170,"y":663,"on":true},{"x":170,"y":389,"on":true},{"x":262,"y":389,"on":true},{"x":262,"y":317,"on":true},{"x":170,"y":317,"on":true},{"x":170,"y":0,"on":true},{"x":90,"y":0,"on":true},{"x":90,"y":317,"on":true}]], "references": [], - "instructions": [64,42,3,1,0,7,6,2,4,5,0,4,101,0,2,2,1,93,0,1,1,26,75,0,5,5,27,5,76,0,0,0,13,0,13,17,17,17,17,17,17,8,7,26,43] + "instructions": "QCoDAQAHBgIEBQAEZQACAgFdAAEBGksABQUbBUwAAAANAA0REREREREIBxor" }, "glyph481": { "name": "glyph481", "advanceWidth": 500, "contours": [[{"x":18,"y":218,"on":true},{"x":18,"y":290,"on":true},{"x":90,"y":290,"on":true},{"x":90,"y":530,"on":true},{"x":448,"y":530,"on":true},{"x":448,"y":458,"on":true},{"x":170,"y":458,"on":true},{"x":170,"y":290,"on":true},{"x":262,"y":290,"on":true},{"x":262,"y":218,"on":true},{"x":170,"y":218,"on":true},{"x":170,"y":0,"on":true},{"x":90,"y":0,"on":true},{"x":90,"y":218,"on":true}]], "references": [], - "instructions": [64,42,3,1,0,7,6,2,4,5,0,4,101,0,2,2,1,93,0,1,1,28,75,0,5,5,27,5,76,0,0,0,13,0,13,17,17,17,17,17,17,8,7,26,43] + "instructions": "QCoDAQAHBgIEBQAEZQACAgFdAAEBHEsABQUbBUwAAAANAA0REREREREIBxor" }, "glyph482": { "name": "glyph482", "advanceWidth": 500, "contours": [[{"x":55,"y":420,"on":true},{"x":60,"y":436,"on":false},{"x":69,"y":451,"on":true},{"x":91,"y":489,"on":false},{"x":129,"y":511,"on":true},{"x":175,"y":538,"on":false},{"x":246,"y":538,"on":true},{"x":321,"y":538,"on":false},{"x":370,"y":510,"on":true},{"x":405,"y":490,"on":false},{"x":423,"y":458,"on":true},{"x":440,"y":429,"on":false},{"x":440,"y":394,"on":true},{"x":440,"y":356,"on":false},{"x":420,"y":321,"on":true},{"x":398,"y":283,"on":false},{"x":358,"y":260,"on":true},{"x":336,"y":247,"on":false},{"x":299,"y":236,"on":true},{"x":324,"y":143,"on":true},{"x":246,"y":124,"on":true},{"x":222,"y":217,"on":true},{"x":198,"y":210,"on":false},{"x":184,"y":201,"on":true},{"x":160,"y":187,"on":false},{"x":149,"y":168,"on":true},{"x":140,"y":152,"on":false},{"x":140,"y":135,"on":true},{"x":140,"y":120,"on":false},{"x":147,"y":107,"on":true},{"x":156,"y":92,"on":false},{"x":174,"y":82,"on":true},{"x":204,"y":64,"on":false},{"x":254,"y":64,"on":true},{"x":298,"y":64,"on":false},{"x":325,"y":80,"on":true},{"x":348,"y":93,"on":false},{"x":362,"y":116,"on":true},{"x":367,"y":125,"on":false},{"x":370,"y":134,"on":true},{"x":445,"y":110,"on":true},{"x":440,"y":94,"on":false},{"x":431,"y":79,"on":true},{"x":409,"y":41,"on":false},{"x":371,"y":19,"on":true},{"x":325,"y":-8,"on":false},{"x":254,"y":-8,"on":true},{"x":179,"y":-8,"on":false},{"x":130,"y":20,"on":true},{"x":95,"y":40,"on":false},{"x":77,"y":72,"on":true},{"x":60,"y":101,"on":false},{"x":60,"y":136,"on":true},{"x":60,"y":174,"on":false},{"x":80,"y":209,"on":true},{"x":102,"y":247,"on":false},{"x":142,"y":270,"on":true},{"x":164,"y":283,"on":false},{"x":201,"y":294,"on":true},{"x":176,"y":387,"on":true},{"x":254,"y":406,"on":true},{"x":278,"y":313,"on":true},{"x":302,"y":320,"on":false},{"x":316,"y":329,"on":true},{"x":340,"y":343,"on":false},{"x":351,"y":362,"on":true},{"x":360,"y":378,"on":false},{"x":360,"y":395,"on":true},{"x":360,"y":410,"on":false},{"x":353,"y":423,"on":true},{"x":344,"y":438,"on":false},{"x":326,"y":448,"on":true},{"x":296,"y":466,"on":false},{"x":246,"y":466,"on":true},{"x":202,"y":466,"on":false},{"x":175,"y":450,"on":true},{"x":152,"y":437,"on":false},{"x":138,"y":414,"on":true},{"x":133,"y":405,"on":false},{"x":130,"y":396,"on":true}]], "references": [], - "instructions": [64,47,79,61,60,59,58,40,39,21,20,19,18,11,1,3,1,74,0,3,3,0,95,0,0,0,75,75,0,1,1,2,95,0,2,2,73,2,76,74,72,47,45,34,32,37,4,9,21,43] + "instructions": "QC9PPTw7OignFRQTEgsBAwFKAAMDAF8AAABLSwABAQJfAAICSQJMSkgvLSIgJQQJFSs=" }, "uni1D24": { "name": "uni1D24", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph482","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0493": { "name": "uni0493", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph481","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "gamma": { "name": "gamma", "advanceWidth": 500, "contours": [[{"x":24,"y":500,"on":true},{"x":92,"y":538,"on":true},{"x":103,"y":520,"on":false},{"x":114,"y":502,"on":true},{"x":226,"y":309,"on":false},{"x":258,"y":137,"on":true},{"x":360,"y":366,"on":false},{"x":360,"y":477,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":477,"on":true},{"x":440,"y":332,"on":false},{"x":271,"y":0,"on":true},{"x":271,"y":-205,"on":true},{"x":191,"y":-205,"on":true},{"x":191,"y":0,"on":true},{"x":191,"y":212,"on":false},{"x":43,"y":469,"on":true},{"x":34,"y":484,"on":false}]], "references": [], - "instructions": [64,27,12,5,2,1,0,1,74,1,1,0,72,0,0,0,47,75,0,1,1,49,1,76,20,24,2,8,22,43] + "instructions": "QBsMBQIBAAFKAQEASAAAAC9LAAEBMQFMFBgCCBYr" }, "Lambda": { "name": "Lambda", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":74,"on":true},{"x":60,"y":135,"on":false},{"x":77,"y":206,"on":true},{"x":86,"y":242,"on":false},{"x":102,"y":314,"on":true},{"x":157,"y":553,"on":false},{"x":214,"y":735,"on":true},{"x":286,"y":735,"on":true},{"x":343,"y":553,"on":false},{"x":398,"y":314,"on":true},{"x":415,"y":242,"on":false},{"x":423,"y":206,"on":true},{"x":440,"y":136,"on":false},{"x":440,"y":74,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":74,"on":true},{"x":360,"y":133,"on":false},{"x":345,"y":202,"on":true},{"x":337,"y":237,"on":false},{"x":323,"y":306,"on":true},{"x":287,"y":481,"on":false},{"x":250,"y":625,"on":true},{"x":213,"y":481,"on":false},{"x":177,"y":306,"on":true},{"x":163,"y":237,"on":false},{"x":155,"y":202,"on":true},{"x":140,"y":134,"on":false},{"x":140,"y":74,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,30,23,1,1,0,1,74,0,0,0,44,75,3,2,2,1,1,45,1,76,0,0,0,30,0,30,23,23,4,8,22,43] + "instructions": "QB4XAQEAAUoAAAAsSwMCAgEBLQFMAAAAHgAeFxcECBYr" }, "uni0245": { "name": "uni0245", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Lambda","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0394": { "name": "uni0394", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":74,"on":true},{"x":60,"y":135,"on":false},{"x":77,"y":206,"on":true},{"x":86,"y":242,"on":false},{"x":102,"y":314,"on":true},{"x":157,"y":553,"on":false},{"x":214,"y":735,"on":true},{"x":286,"y":735,"on":true},{"x":343,"y":553,"on":false},{"x":398,"y":314,"on":true},{"x":415,"y":242,"on":false},{"x":423,"y":206,"on":true},{"x":440,"y":136,"on":false},{"x":440,"y":74,"on":true},{"x":440,"y":0,"on":true}],[{"x":140,"y":72,"on":true},{"x":360,"y":72,"on":true},{"x":360,"y":74,"on":true},{"x":360,"y":133,"on":false},{"x":345,"y":202,"on":true},{"x":337,"y":237,"on":false},{"x":323,"y":306,"on":true},{"x":287,"y":481,"on":false},{"x":250,"y":625,"on":true},{"x":213,"y":481,"on":false},{"x":177,"y":306,"on":true},{"x":163,"y":237,"on":false},{"x":155,"y":202,"on":true},{"x":140,"y":134,"on":false},{"x":140,"y":74,"on":true}]], "references": [], - "instructions": [64,40,24,1,2,0,1,74,0,0,0,44,75,4,1,2,2,1,94,3,1,1,1,45,1,76,17,16,0,0,16,30,17,30,0,15,0,15,23,5,8,21,43] + "instructions": "QCgYAQIAAUoAAAAsSwQBAgIBXgMBAQEtAUwREAAAEB4RHgAPAA8XBQgVKw==" }, "delta": { "name": "delta", "advanceWidth": 500, "contours": [[{"x":52,"y":211,"on":true},{"x":52,"y":298,"on":true},{"x":52,"y":359,"on":false},{"x":77,"y":402,"on":true},{"x":100,"y":443,"on":false},{"x":143,"y":466,"on":true},{"x":142,"y":467,"on":false},{"x":141,"y":467,"on":true},{"x":114,"y":483,"on":false},{"x":98,"y":511,"on":true},{"x":79,"y":545,"on":false},{"x":79,"y":587,"on":true},{"x":79,"y":633,"on":false},{"x":100,"y":670,"on":true},{"x":119,"y":702,"on":false},{"x":150,"y":721,"on":true},{"x":189,"y":743,"on":false},{"x":241,"y":743,"on":true},{"x":322,"y":743,"on":false},{"x":412,"y":694,"on":true},{"x":412,"y":622,"on":true},{"x":319,"y":671,"on":false},{"x":250,"y":671,"on":true},{"x":218,"y":671,"on":false},{"x":196,"y":658,"on":true},{"x":180,"y":648,"on":false},{"x":170,"y":632,"on":true},{"x":159,"y":612,"on":false},{"x":159,"y":589,"on":true},{"x":159,"y":555,"on":false},{"x":179,"y":535,"on":true},{"x":192,"y":522,"on":false},{"x":215,"y":516,"on":true},{"x":225,"y":513,"on":false},{"x":245,"y":510,"on":true},{"x":325,"y":497,"on":false},{"x":364,"y":474,"on":true},{"x":404,"y":451,"on":false},{"x":425,"y":414,"on":true},{"x":448,"y":374,"on":false},{"x":448,"y":298,"on":true},{"x":448,"y":211,"on":true},{"x":448,"y":135,"on":false},{"x":418,"y":83,"on":true},{"x":393,"y":40,"on":false},{"x":352,"y":17,"on":true},{"x":309,"y":-8,"on":false},{"x":191,"y":-8,"on":false},{"x":148,"y":17,"on":true},{"x":107,"y":41,"on":false},{"x":82,"y":83,"on":true},{"x":52,"y":135,"on":false}],[{"x":132,"y":211,"on":true},{"x":132,"y":156,"on":false},{"x":153,"y":119,"on":true},{"x":169,"y":92,"on":false},{"x":194,"y":78,"on":true},{"x":218,"y":64,"on":false},{"x":282,"y":64,"on":false},{"x":306,"y":78,"on":true},{"x":331,"y":92,"on":false},{"x":347,"y":119,"on":true},{"x":368,"y":156,"on":false},{"x":368,"y":211,"on":true},{"x":368,"y":298,"on":true},{"x":368,"y":351,"on":false},{"x":352,"y":378,"on":true},{"x":338,"y":402,"on":false},{"x":313,"y":416,"on":true},{"x":290,"y":429,"on":false},{"x":229,"y":441,"on":true},{"x":216,"y":443,"on":false},{"x":204,"y":446,"on":true},{"x":200,"y":444,"on":false},{"x":196,"y":441,"on":true},{"x":171,"y":427,"on":false},{"x":155,"y":400,"on":true},{"x":132,"y":360,"on":false},{"x":132,"y":298,"on":true}]], "references": [], - "instructions": [64,44,19,1,1,0,72,20,5,3,3,1,2,74,0,1,1,0,95,0,0,0,52,75,0,3,3,2,95,0,2,2,53,2,76,58,57,47,46,23,21,18,16,4,8,20,43] + "instructions": "QCwTAQEASBQFAwMBAkoAAQEAXwAAADRLAAMDAl8AAgI1Akw6OS8uFxUSEAQIFCs=" }, "glyph490": { "name": "glyph490", "advanceWidth": 500, "contours": [], "references": [{"glyph":"delta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E9F": { "name": "uni1E9F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"delta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni018D": { "name": "uni018D", "advanceWidth": 500, "contours": [[{"x":52,"y":232,"on":true},{"x":52,"y":319,"on":true},{"x":52,"y":395,"on":false},{"x":82,"y":447,"on":true},{"x":107,"y":490,"on":false},{"x":148,"y":513,"on":true},{"x":191,"y":538,"on":false},{"x":309,"y":538,"on":false},{"x":352,"y":513,"on":true},{"x":393,"y":489,"on":false},{"x":418,"y":447,"on":true},{"x":448,"y":395,"on":false},{"x":448,"y":319,"on":true},{"x":448,"y":232,"on":true},{"x":448,"y":171,"on":false},{"x":423,"y":128,"on":true},{"x":400,"y":87,"on":false},{"x":357,"y":64,"on":true},{"x":358,"y":63,"on":false},{"x":359,"y":63,"on":true},{"x":386,"y":47,"on":false},{"x":402,"y":19,"on":true},{"x":421,"y":-15,"on":false},{"x":421,"y":-57,"on":true},{"x":421,"y":-103,"on":false},{"x":400,"y":-140,"on":true},{"x":381,"y":-172,"on":false},{"x":350,"y":-191,"on":true},{"x":311,"y":-213,"on":false},{"x":259,"y":-213,"on":true},{"x":178,"y":-213,"on":false},{"x":88,"y":-164,"on":true},{"x":88,"y":-92,"on":true},{"x":181,"y":-141,"on":false},{"x":250,"y":-141,"on":true},{"x":282,"y":-141,"on":false},{"x":304,"y":-128,"on":true},{"x":320,"y":-118,"on":false},{"x":330,"y":-102,"on":true},{"x":341,"y":-82,"on":false},{"x":341,"y":-59,"on":true},{"x":341,"y":-25,"on":false},{"x":321,"y":-5,"on":true},{"x":308,"y":8,"on":false},{"x":285,"y":14,"on":true},{"x":275,"y":17,"on":false},{"x":255,"y":20,"on":true},{"x":175,"y":33,"on":false},{"x":136,"y":56,"on":true},{"x":96,"y":79,"on":false},{"x":75,"y":116,"on":true},{"x":52,"y":156,"on":false}],[{"x":132,"y":232,"on":true},{"x":132,"y":179,"on":false},{"x":148,"y":152,"on":true},{"x":162,"y":128,"on":false},{"x":187,"y":114,"on":true},{"x":210,"y":101,"on":false},{"x":271,"y":89,"on":true},{"x":284,"y":87,"on":false},{"x":296,"y":84,"on":true},{"x":300,"y":86,"on":false},{"x":304,"y":89,"on":true},{"x":329,"y":103,"on":false},{"x":345,"y":130,"on":true},{"x":368,"y":170,"on":false},{"x":368,"y":232,"on":true},{"x":368,"y":319,"on":true},{"x":368,"y":374,"on":false},{"x":347,"y":411,"on":true},{"x":331,"y":438,"on":false},{"x":306,"y":452,"on":true},{"x":282,"y":466,"on":false},{"x":218,"y":466,"on":false},{"x":194,"y":452,"on":true},{"x":169,"y":438,"on":false},{"x":153,"y":411,"on":true},{"x":132,"y":374,"on":false},{"x":132,"y":319,"on":true}]], "references": [], - "instructions": [64,43,60,32,17,3,2,3,31,1,1,2,2,74,0,3,3,0,95,0,0,0,75,75,0,2,2,1,95,0,1,1,77,1,76,73,72,35,33,30,28,22,4,9,21,43] + "instructions": "QCs8IBEDAgMfAQECAkoAAwMAXwAAAEtLAAICAV8AAQFNAUxJSCMhHhwWBAkVKw==" }, "uni0431": { "name": "uni0431", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":370,"on":true},{"x":52,"y":526,"on":false},{"x":90,"y":592,"on":true},{"x":113,"y":631,"on":false},{"x":148,"y":651,"on":true},{"x":171,"y":664,"on":false},{"x":221,"y":678,"on":true},{"x":313,"y":703,"on":false},{"x":400,"y":735,"on":true},{"x":427,"y":667,"on":true},{"x":338,"y":633,"on":false},{"x":244,"y":610,"on":true},{"x":207,"y":601,"on":false},{"x":191,"y":591,"on":true},{"x":168,"y":578,"on":false},{"x":153,"y":552,"on":true},{"x":135,"y":521,"on":false},{"x":131,"y":460,"on":true},{"x":151,"y":489,"on":false},{"x":179,"y":505,"on":true},{"x":210,"y":523,"on":false},{"x":253,"y":523,"on":true},{"x":310,"y":523,"on":false},{"x":354,"y":497,"on":true},{"x":395,"y":473,"on":false},{"x":419,"y":432,"on":true},{"x":448,"y":382,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":307,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":16,"on":true},{"x":110,"y":40,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":361,"on":false},{"x":348,"y":396,"on":true},{"x":333,"y":422,"on":false},{"x":308,"y":436,"on":true},{"x":284,"y":450,"on":false},{"x":251,"y":451,"on":true},{"x":217,"y":451,"on":false},{"x":167,"y":422,"on":false},{"x":152,"y":395,"on":true},{"x":132,"y":361,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [64,43,18,1,3,0,1,74,10,9,2,0,72,0,3,3,0,95,0,0,0,28,75,0,2,2,1,95,0,1,1,34,1,76,58,56,45,44,34,33,23,21,4,7,20,43] + "instructions": "QCsSAQMAAUoKCQIASAADAwBfAAAAHEsAAgIBXwABASIBTDo4LSwiIRcVBAcUKw==" }, "epsilon": { "name": "epsilon", "advanceWidth": 500, "contours": [[{"x":44,"y":151,"on":true},{"x":44,"y":186,"on":false},{"x":59,"y":213,"on":true},{"x":76,"y":243,"on":false},{"x":111,"y":263,"on":true},{"x":125,"y":271,"on":false},{"x":141,"y":277,"on":true},{"x":131,"y":281,"on":false},{"x":122,"y":286,"on":true},{"x":90,"y":305,"on":false},{"x":74,"y":332,"on":true},{"x":60,"y":356,"on":false},{"x":60,"y":390,"on":true},{"x":60,"y":429,"on":false},{"x":77,"y":459,"on":true},{"x":95,"y":490,"on":false},{"x":130,"y":510,"on":true},{"x":178,"y":538,"on":false},{"x":250,"y":538,"on":true},{"x":319,"y":538,"on":false},{"x":364,"y":512,"on":true},{"x":401,"y":490,"on":false},{"x":423,"y":453,"on":true},{"x":432,"y":437,"on":false},{"x":437,"y":420,"on":true},{"x":361,"y":396,"on":true},{"x":358,"y":406,"on":false},{"x":353,"y":416,"on":true},{"x":340,"y":438,"on":false},{"x":318,"y":450,"on":true},{"x":291,"y":466,"on":false},{"x":250,"y":466,"on":true},{"x":205,"y":466,"on":false},{"x":176,"y":449,"on":true},{"x":157,"y":438,"on":false},{"x":149,"y":423,"on":true},{"x":140,"y":408,"on":false},{"x":140,"y":370,"on":false},{"x":148,"y":355,"on":true},{"x":157,"y":339,"on":false},{"x":177,"y":328,"on":true},{"x":206,"y":312,"on":false},{"x":250,"y":312,"on":true},{"x":307,"y":312,"on":true},{"x":307,"y":240,"on":true},{"x":250,"y":240,"on":true},{"x":199,"y":240,"on":false},{"x":166,"y":221,"on":true},{"x":145,"y":209,"on":false},{"x":134,"y":190,"on":true},{"x":124,"y":173,"on":false},{"x":124,"y":152,"on":true},{"x":124,"y":130,"on":false},{"x":134,"y":114,"on":true},{"x":144,"y":96,"on":false},{"x":165,"y":83,"on":true},{"x":198,"y":64,"on":false},{"x":251,"y":64,"on":true},{"x":299,"y":64,"on":false},{"x":331,"y":82,"on":true},{"x":357,"y":97,"on":false},{"x":372,"y":123,"on":true},{"x":376,"y":130,"on":false},{"x":379,"y":137,"on":true},{"x":453,"y":110,"on":true},{"x":448,"y":98,"on":false},{"x":442,"y":86,"on":true},{"x":418,"y":45,"on":false},{"x":376,"y":21,"on":true},{"x":327,"y":-8,"on":false},{"x":251,"y":-8,"on":true},{"x":172,"y":-8,"on":false},{"x":119,"y":22,"on":true},{"x":82,"y":44,"on":false},{"x":63,"y":77,"on":true},{"x":44,"y":109,"on":false}]], "references": [], - "instructions": [64,60,25,24,2,2,1,6,1,3,2,64,63,2,4,3,3,74,0,2,0,3,4,2,3,103,0,1,1,0,95,0,0,0,55,75,0,4,4,5,95,0,5,5,53,5,76,71,69,58,56,46,44,43,41,32,30,19,17,6,8,20,43] + "instructions": "QDwZGAICAQYBAwJAPwIEAwNKAAIAAwQCA2cAAQEAXwAAADdLAAQEBV8ABQU1BUxHRTo4LiwrKSAeExEGCBQr" }, "uni025B": { "name": "uni025B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0190": { "name": "uni0190", "advanceWidth": 500, "contours": [[{"x":44,"y":205,"on":true},{"x":44,"y":265,"on":false},{"x":69,"y":309,"on":true},{"x":92,"y":349,"on":false},{"x":133,"y":372,"on":true},{"x":144,"y":378,"on":false},{"x":155,"y":383,"on":true},{"x":108,"y":405,"on":false},{"x":83,"y":449,"on":true},{"x":60,"y":489,"on":false},{"x":60,"y":545,"on":true},{"x":60,"y":609,"on":false},{"x":86,"y":655,"on":true},{"x":109,"y":695,"on":false},{"x":149,"y":718,"on":true},{"x":193,"y":743,"on":false},{"x":316,"y":743,"on":false},{"x":361,"y":718,"on":true},{"x":401,"y":695,"on":false},{"x":423,"y":655,"on":true},{"x":431,"y":641,"on":false},{"x":437,"y":625,"on":true},{"x":363,"y":598,"on":true},{"x":350,"y":637,"on":false},{"x":316,"y":656,"on":true},{"x":290,"y":671,"on":false},{"x":255,"y":671,"on":true},{"x":221,"y":671,"on":false},{"x":195,"y":657,"on":true},{"x":171,"y":643,"on":false},{"x":157,"y":618,"on":true},{"x":140,"y":588,"on":false},{"x":140,"y":500,"on":false},{"x":158,"y":469,"on":true},{"x":188,"y":418,"on":false},{"x":250,"y":418,"on":true},{"x":307,"y":418,"on":true},{"x":307,"y":346,"on":true},{"x":250,"y":346,"on":true},{"x":177,"y":346,"on":false},{"x":144,"y":288,"on":true},{"x":124,"y":254,"on":false},{"x":124,"y":158,"on":false},{"x":143,"y":125,"on":true},{"x":159,"y":97,"on":false},{"x":187,"y":81,"on":true},{"x":217,"y":64,"on":false},{"x":257,"y":64,"on":true},{"x":301,"y":64,"on":false},{"x":331,"y":82,"on":true},{"x":357,"y":97,"on":false},{"x":372,"y":123,"on":true},{"x":377,"y":131,"on":false},{"x":380,"y":139,"on":true},{"x":453,"y":110,"on":true},{"x":448,"y":97,"on":false},{"x":441,"y":85,"on":true},{"x":417,"y":44,"on":false},{"x":376,"y":20,"on":true},{"x":327,"y":-8,"on":false},{"x":257,"y":-8,"on":true},{"x":189,"y":-8,"on":false},{"x":140,"y":20,"on":true},{"x":97,"y":45,"on":false},{"x":72,"y":88,"on":true},{"x":44,"y":137,"on":false}]], "references": [], - "instructions": [64,54,22,21,2,2,1,6,1,3,2,54,53,2,4,3,3,74,0,2,0,3,4,2,3,103,0,1,1,0,95,0,0,0,72,75,0,4,4,5,95,0,5,5,73,5,76,43,39,33,39,41,31,6,9,26,43] + "instructions": "QDYWFQICAQYBAwI2NQIEAwNKAAIAAwQCA2cAAQEAXwAAAEhLAAQEBV8ABQVJBUwrJyEnKR8GCRor" }, "uni0417": { "name": "uni0417", "advanceWidth": 500, "contours": [[{"x":47,"y":155,"on":true},{"x":125,"y":172,"on":true},{"x":129,"y":145,"on":false},{"x":142,"y":123,"on":true},{"x":158,"y":96,"on":false},{"x":184,"y":80,"on":true},{"x":212,"y":64,"on":false},{"x":250,"y":64,"on":true},{"x":287,"y":64,"on":false},{"x":314,"y":80,"on":true},{"x":340,"y":95,"on":false},{"x":357,"y":122,"on":true},{"x":376,"y":156,"on":false},{"x":376,"y":206,"on":true},{"x":376,"y":254,"on":false},{"x":356,"y":288,"on":true},{"x":322,"y":346,"on":false},{"x":250,"y":346,"on":true},{"x":193,"y":346,"on":true},{"x":193,"y":418,"on":true},{"x":250,"y":418,"on":true},{"x":313,"y":418,"on":false},{"x":342,"y":469,"on":true},{"x":360,"y":500,"on":false},{"x":360,"y":544,"on":true},{"x":360,"y":589,"on":false},{"x":342,"y":620,"on":true},{"x":328,"y":644,"on":false},{"x":305,"y":658,"on":true},{"x":282,"y":671,"on":false},{"x":219,"y":671,"on":false},{"x":195,"y":657,"on":true},{"x":172,"y":644,"on":false},{"x":144,"y":596,"on":false},{"x":142,"y":567,"on":true},{"x":63,"y":580,"on":true},{"x":68,"y":622,"on":false},{"x":88,"y":657,"on":true},{"x":111,"y":696,"on":false},{"x":149,"y":719,"on":true},{"x":191,"y":743,"on":false},{"x":309,"y":743,"on":false},{"x":352,"y":719,"on":true},{"x":391,"y":697,"on":false},{"x":413,"y":657,"on":true},{"x":440,"y":611,"on":false},{"x":440,"y":545,"on":true},{"x":440,"y":489,"on":false},{"x":417,"y":449,"on":true},{"x":392,"y":405,"on":false},{"x":345,"y":383,"on":true},{"x":357,"y":378,"on":false},{"x":367,"y":372,"on":true},{"x":408,"y":348,"on":false},{"x":431,"y":309,"on":true},{"x":456,"y":266,"on":false},{"x":456,"y":204,"on":true},{"x":456,"y":135,"on":false},{"x":428,"y":86,"on":true},{"x":403,"y":43,"on":false},{"x":361,"y":19,"on":true},{"x":315,"y":-8,"on":false},{"x":185,"y":-8,"on":false},{"x":138,"y":19,"on":true},{"x":96,"y":43,"on":false},{"x":72,"y":86,"on":true},{"x":54,"y":118,"on":false}]], "references": [], - "instructions": [64,54,35,34,2,2,3,50,1,1,2,1,1,0,1,3,74,0,2,0,1,0,2,1,103,0,3,3,4,95,0,4,4,33,75,0,0,0,5,95,0,5,5,34,5,76,62,61,26,24,33,40,38,6,7,25,43] + "instructions": "QDYjIgICAzIBAQIBAQABA0oAAgABAAIBZwADAwRfAAQEIUsAAAAFXwAFBSIFTD49GhghKCYGBxkr" }, "uni0437": { "name": "uni0437", "advanceWidth": 500, "contours": [[{"x":47,"y":110,"on":true},{"x":121,"y":137,"on":true},{"x":124,"y":130,"on":false},{"x":128,"y":123,"on":true},{"x":143,"y":97,"on":false},{"x":169,"y":82,"on":true},{"x":200,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":301,"y":64,"on":false},{"x":335,"y":83,"on":true},{"x":356,"y":95,"on":false},{"x":366,"y":114,"on":true},{"x":376,"y":131,"on":false},{"x":376,"y":173,"on":false},{"x":366,"y":190,"on":true},{"x":355,"y":209,"on":false},{"x":334,"y":221,"on":true},{"x":301,"y":240,"on":false},{"x":250,"y":240,"on":true},{"x":193,"y":240,"on":true},{"x":193,"y":312,"on":true},{"x":250,"y":312,"on":true},{"x":295,"y":312,"on":false},{"x":323,"y":328,"on":true},{"x":342,"y":339,"on":false},{"x":352,"y":355,"on":true},{"x":360,"y":370,"on":false},{"x":360,"y":408,"on":false},{"x":351,"y":423,"on":true},{"x":342,"y":439,"on":false},{"x":324,"y":449,"on":true},{"x":295,"y":466,"on":false},{"x":250,"y":466,"on":true},{"x":208,"y":466,"on":false},{"x":182,"y":450,"on":true},{"x":160,"y":437,"on":false},{"x":147,"y":416,"on":true},{"x":142,"y":407,"on":false},{"x":139,"y":396,"on":true},{"x":63,"y":420,"on":true},{"x":68,"y":437,"on":false},{"x":77,"y":453,"on":true},{"x":99,"y":490,"on":false},{"x":136,"y":512,"on":true},{"x":181,"y":538,"on":false},{"x":250,"y":538,"on":true},{"x":322,"y":538,"on":false},{"x":370,"y":510,"on":true},{"x":405,"y":490,"on":false},{"x":423,"y":459,"on":true},{"x":440,"y":429,"on":false},{"x":440,"y":390,"on":true},{"x":440,"y":357,"on":false},{"x":426,"y":332,"on":true},{"x":410,"y":304,"on":false},{"x":378,"y":286,"on":true},{"x":369,"y":281,"on":false},{"x":359,"y":277,"on":true},{"x":375,"y":271,"on":false},{"x":389,"y":263,"on":true},{"x":424,"y":243,"on":false},{"x":441,"y":213,"on":true},{"x":456,"y":187,"on":false},{"x":456,"y":151,"on":true},{"x":456,"y":109,"on":false},{"x":437,"y":77,"on":true},{"x":418,"y":44,"on":false},{"x":381,"y":22,"on":true},{"x":329,"y":-8,"on":false},{"x":249,"y":-8,"on":true},{"x":174,"y":-8,"on":false},{"x":124,"y":21,"on":true},{"x":82,"y":45,"on":false},{"x":58,"y":86,"on":true},{"x":51,"y":98,"on":false}]], "references": [], - "instructions": [64,55,39,38,2,2,3,57,1,1,2,1,0,2,0,1,3,74,0,2,0,1,0,2,1,103,0,3,3,4,95,0,4,4,35,75,0,0,0,5,95,0,5,5,34,5,76,70,68,43,41,33,41,38,6,7,25,43] + "instructions": "QDcnJgICAzkBAQIBAAIAAQNKAAIAAQACAWcAAwMEXwAEBCNLAAAABV8ABQUiBUxGRCspISkmBgcZKw==" }, "uni025C": { "name": "uni025C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0437","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni029A": { "name": "uni029A", "advanceWidth": 500, "contours": [[{"x":52,"y":332,"on":false},{"x":52,"y":421,"on":false},{"x":71,"y":454,"on":true},{"x":91,"y":488,"on":false},{"x":127,"y":510,"on":true},{"x":176,"y":538,"on":false},{"x":247,"y":538,"on":true},{"x":307,"y":538,"on":false},{"x":391,"y":490,"on":false},{"x":416,"y":446,"on":true},{"x":448,"y":391,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":307,"y":-8,"on":false},{"x":248,"y":-8,"on":true},{"x":183,"y":-8,"on":false},{"x":137,"y":18,"on":true},{"x":103,"y":38,"on":false},{"x":85,"y":69,"on":true},{"x":68,"y":99,"on":false},{"x":68,"y":181,"on":false},{"x":85,"y":211,"on":true},{"x":98,"y":233,"on":false},{"x":119,"y":249,"on":true},{"x":88,"y":269,"on":false},{"x":71,"y":299,"on":true}],[{"x":132,"y":400,"on":false},{"x":132,"y":354,"on":false},{"x":142,"y":336,"on":true},{"x":153,"y":317,"on":false},{"x":174,"y":305,"on":true},{"x":204,"y":288,"on":false},{"x":250,"y":288,"on":true},{"x":307,"y":288,"on":true},{"x":307,"y":216,"on":true},{"x":250,"y":216,"on":true},{"x":210,"y":216,"on":false},{"x":184,"y":201,"on":true},{"x":166,"y":191,"on":false},{"x":157,"y":174,"on":true},{"x":148,"y":159,"on":false},{"x":148,"y":120,"on":false},{"x":157,"y":105,"on":true},{"x":166,"y":89,"on":false},{"x":184,"y":79,"on":true},{"x":210,"y":64,"on":false},{"x":247,"y":64,"on":true},{"x":280,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":92,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":370,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":453,"on":true},{"x":281,"y":466,"on":false},{"x":247,"y":466,"on":true},{"x":204,"y":466,"on":false},{"x":174,"y":449,"on":true},{"x":153,"y":437,"on":false},{"x":142,"y":418,"on":true}]], "references": [], - "instructions": [64,48,26,1,3,2,1,74,0,2,0,3,4,2,3,103,0,5,5,0,95,0,0,0,75,75,0,4,4,1,95,0,1,1,73,1,76,63,61,50,48,39,37,36,34,41,37,6,9,22,43] + "instructions": "QDAaAQMCAUoAAgADBAIDZwAFBQBfAAAAS0sABAQBXwABAUkBTD89MjAnJSQiKSUGCRYr" }, "Theta": { "name": "Theta", "advanceWidth": 500, "contours": [[{"x":52,"y":195,"on":true},{"x":52,"y":540,"on":true},{"x":52,"y":606,"on":false},{"x":79,"y":653,"on":true},{"x":102,"y":693,"on":false},{"x":143,"y":717,"on":true},{"x":188,"y":743,"on":false},{"x":312,"y":743,"on":false},{"x":357,"y":717,"on":true},{"x":397,"y":694,"on":false},{"x":421,"y":653,"on":true},{"x":448,"y":606,"on":false},{"x":448,"y":540,"on":true},{"x":448,"y":195,"on":true},{"x":448,"y":129,"on":false},{"x":421,"y":82,"on":true},{"x":398,"y":42,"on":false},{"x":357,"y":18,"on":true},{"x":312,"y":-8,"on":false},{"x":188,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":82,"on":true},{"x":52,"y":129,"on":false}],[{"x":132,"y":195,"on":true},{"x":132,"y":150,"on":false},{"x":150,"y":118,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":285,"y":64,"on":false},{"x":311,"y":79,"on":true},{"x":336,"y":93,"on":false},{"x":350,"y":118,"on":true},{"x":368,"y":149,"on":false},{"x":368,"y":195,"on":true},{"x":368,"y":540,"on":true},{"x":368,"y":585,"on":false},{"x":350,"y":617,"on":true},{"x":335,"y":642,"on":false},{"x":311,"y":656,"on":true},{"x":285,"y":671,"on":false},{"x":215,"y":671,"on":false},{"x":189,"y":656,"on":true},{"x":164,"y":642,"on":false},{"x":150,"y":617,"on":true},{"x":132,"y":586,"on":false},{"x":132,"y":540,"on":true}],[{"x":164,"y":332,"on":true},{"x":164,"y":404,"on":true},{"x":336,"y":404,"on":true},{"x":336,"y":332,"on":true}]], "references": [], - "instructions": [64,44,0,4,6,1,5,2,4,5,101,0,3,3,0,95,0,0,0,52,75,0,2,2,1,95,0,1,1,53,1,76,48,48,48,51,48,51,23,27,26,27,22,7,8,25,43] + "instructions": "QCwABAYBBQIEBWUAAwMAXwAAADRLAAICAV8AAQE1AUwwMDAzMDMXGxobFgcIGSs=" }, "theta": { "name": "theta", "advanceWidth": 500, "contours": [[{"x":60,"y":182,"on":false},{"x":60,"y":554,"on":false},{"x":119,"y":656,"on":true},{"x":147,"y":705,"on":false},{"x":185,"y":726,"on":true},{"x":214,"y":743,"on":false},{"x":286,"y":743,"on":false},{"x":315,"y":726,"on":true},{"x":352,"y":704,"on":false},{"x":381,"y":656,"on":true},{"x":440,"y":553,"on":false},{"x":440,"y":181,"on":false},{"x":381,"y":79,"on":true},{"x":353,"y":30,"on":false},{"x":315,"y":9,"on":true},{"x":286,"y":-8,"on":false},{"x":214,"y":-8,"on":false},{"x":185,"y":9,"on":true},{"x":148,"y":31,"on":false},{"x":119,"y":79,"on":true}],[{"x":141,"y":332,"on":true},{"x":145,"y":182,"on":false},{"x":187,"y":109,"on":true},{"x":202,"y":82,"on":false},{"x":220,"y":72,"on":true},{"x":234,"y":64,"on":false},{"x":266,"y":64,"on":false},{"x":280,"y":72,"on":true},{"x":298,"y":82,"on":false},{"x":313,"y":109,"on":true},{"x":355,"y":182,"on":false},{"x":359,"y":332,"on":true}],[{"x":141,"y":404,"on":true},{"x":359,"y":404,"on":true},{"x":355,"y":554,"on":false},{"x":313,"y":626,"on":true},{"x":298,"y":653,"on":false},{"x":280,"y":663,"on":true},{"x":266,"y":671,"on":false},{"x":234,"y":671,"on":false},{"x":220,"y":663,"on":true},{"x":202,"y":653,"on":false},{"x":187,"y":626,"on":true},{"x":145,"y":554,"on":false}]], "references": [], - "instructions": [64,46,0,4,6,1,3,2,4,3,101,0,5,5,0,95,0,0,0,52,75,0,2,2,1,95,0,1,1,53,1,76,20,20,39,38,33,32,20,31,20,31,25,25,21,7,8,23,43] + "instructions": "QC4ABAYBAwIEA2UABQUAXwAAADRLAAICAV8AAQE1AUwUFCcmISAUHxQfGRkVBwgXKw==" }, "zeta": { "name": "zeta", "advanceWidth": 500, "contours": [[{"x":60,"y":198,"on":true},{"x":60,"y":329,"on":false},{"x":126,"y":444,"on":true},{"x":186,"y":548,"on":false},{"x":316,"y":663,"on":true},{"x":60,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":432,"y":735,"on":true},{"x":432,"y":663,"on":true},{"x":266,"y":532,"on":false},{"x":198,"y":414,"on":true},{"x":140,"y":313,"on":false},{"x":140,"y":198,"on":true},{"x":140,"y":158,"on":false},{"x":157,"y":130,"on":true},{"x":172,"y":104,"on":false},{"x":197,"y":89,"on":true},{"x":225,"y":73,"on":false},{"x":275,"y":72,"on":true},{"x":335,"y":70,"on":false},{"x":375,"y":47,"on":true},{"x":407,"y":29,"on":false},{"x":424,"y":0,"on":true},{"x":440,"y":-28,"on":false},{"x":440,"y":-66,"on":true},{"x":440,"y":-107,"on":false},{"x":423,"y":-138,"on":true},{"x":406,"y":-167,"on":false},{"x":376,"y":-184,"on":true},{"x":340,"y":-205,"on":false},{"x":288,"y":-205,"on":true},{"x":250,"y":-205,"on":true},{"x":250,"y":-133,"on":true},{"x":288,"y":-133,"on":true},{"x":313,"y":-133,"on":false},{"x":329,"y":-123,"on":true},{"x":360,"y":-105,"on":false},{"x":360,"y":-67,"on":true},{"x":360,"y":-50,"on":false},{"x":353,"y":-37,"on":true},{"x":345,"y":-23,"on":false},{"x":329,"y":-14,"on":true},{"x":306,"y":-1,"on":false},{"x":267,"y":0,"on":true},{"x":198,"y":1,"on":false},{"x":150,"y":28,"on":true},{"x":109,"y":52,"on":false},{"x":86,"y":93,"on":true},{"x":60,"y":137,"on":false}]], "references": [], - "instructions": [64,45,8,1,0,1,73,0,0,0,1,93,0,1,1,44,75,0,2,2,5,95,0,5,5,45,75,0,4,4,3,95,0,3,3,49,3,76,40,33,42,42,17,20,6,8,26,43] + "instructions": "QC0IAQABSQAAAAFdAAEBLEsAAgIFXwAFBS1LAAQEA18AAwMxA0woISoqERQGCBor" }, "xi": { "name": "xi", "advanceWidth": 500, "contours": [[{"x":60,"y":177,"on":true},{"x":60,"y":221,"on":false},{"x":83,"y":260,"on":true},{"x":113,"y":311,"on":false},{"x":171,"y":345,"on":true},{"x":189,"y":356,"on":false},{"x":210,"y":364,"on":true},{"x":178,"y":374,"on":false},{"x":152,"y":389,"on":true},{"x":110,"y":413,"on":false},{"x":91,"y":446,"on":true},{"x":76,"y":472,"on":false},{"x":76,"y":510,"on":true},{"x":76,"y":564,"on":false},{"x":102,"y":610,"on":true},{"x":119,"y":640,"on":false},{"x":147,"y":663,"on":true},{"x":60,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":432,"y":735,"on":true},{"x":432,"y":663,"on":true},{"x":383,"y":663,"on":true},{"x":289,"y":663,"on":false},{"x":229,"y":629,"on":true},{"x":191,"y":607,"on":false},{"x":173,"y":574,"on":true},{"x":156,"y":545,"on":false},{"x":156,"y":512,"on":true},{"x":156,"y":489,"on":false},{"x":165,"y":474,"on":true},{"x":176,"y":455,"on":false},{"x":202,"y":440,"on":true},{"x":264,"y":404,"on":false},{"x":383,"y":404,"on":true},{"x":383,"y":332,"on":true},{"x":285,"y":332,"on":false},{"x":219,"y":294,"on":true},{"x":176,"y":269,"on":false},{"x":155,"y":233,"on":true},{"x":140,"y":207,"on":false},{"x":140,"y":178,"on":true},{"x":140,"y":147,"on":false},{"x":155,"y":121,"on":true},{"x":168,"y":99,"on":false},{"x":212,"y":73,"on":false},{"x":255,"y":72,"on":true},{"x":331,"y":69,"on":false},{"x":375,"y":44,"on":true},{"x":408,"y":25,"on":false},{"x":425,"y":-5,"on":true},{"x":440,"y":-32,"on":false},{"x":440,"y":-66,"on":true},{"x":440,"y":-107,"on":false},{"x":423,"y":-138,"on":true},{"x":406,"y":-167,"on":false},{"x":376,"y":-184,"on":true},{"x":340,"y":-205,"on":false},{"x":288,"y":-205,"on":true},{"x":250,"y":-205,"on":true},{"x":250,"y":-133,"on":true},{"x":288,"y":-133,"on":true},{"x":313,"y":-133,"on":false},{"x":329,"y":-123,"on":true},{"x":360,"y":-105,"on":false},{"x":360,"y":-67,"on":true},{"x":360,"y":-53,"on":false},{"x":354,"y":-41,"on":true},{"x":346,"y":-27,"on":false},{"x":329,"y":-18,"on":true},{"x":302,"y":-2,"on":false},{"x":249,"y":0,"on":true},{"x":183,"y":2,"on":false},{"x":144,"y":25,"on":true},{"x":106,"y":47,"on":false},{"x":85,"y":84,"on":true},{"x":60,"y":127,"on":false}]], "references": [], - "instructions": [64,67,6,1,4,3,1,74,0,3,0,4,5,3,4,103,2,1,0,0,1,93,0,1,1,44,75,0,5,5,8,95,0,8,8,45,75,0,7,7,6,95,0,6,6,49,6,76,71,69,61,59,58,56,46,44,35,34,33,32,22,20,19,18,17,16,9,8,20,43] + "instructions": "QEMGAQQDAUoAAwAEBQMEZwIBAAABXQABASxLAAUFCF8ACAgtSwAHBwZfAAYGMQZMR0U9Ozo4LiwjIiEgFhQTEhEQCQgUKw==" }, "uni03BC": { "name": "uni03BC", "advanceWidth": 500, "contours": [[{"x":60,"y":-205,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":183,"y":-8,"on":false},{"x":152,"y":10,"on":true},{"x":145,"y":14,"on":false},{"x":139,"y":19,"on":true},{"x":140,"y":-54,"on":false},{"x":140,"y":-102,"on":true},{"x":140,"y":-205,"on":true}]], "references": [], - "instructions": [64,10,19,1,1,0,28,1,3,1,2,74,75,176,29,80,88,64,24,2,1,0,0,47,75,0,1,1,3,95,4,1,3,3,45,75,6,1,5,5,49,5,76,27,64,28,2,1,0,0,47,75,0,3,3,45,75,0,1,1,4,95,0,4,4,53,75,6,1,5,5,49,5,76,89,64,14,0,0,0,31,0,31,22,17,22,22,17,7,8,25,43] + "instructions": "QAoTAQEAHAEDAQJKS7AdUFhAGAIBAAAvSwABAQNfBAEDAy1LBgEFBTEFTBtAHAIBAAAvSwADAy1LAAEBBF8ABAQ1SwYBBQUxBUxZQA4AAAAfAB8WERYWEQcIGSs=" }, "Xi": { "name": "Xi", "advanceWidth": 500, "contours": [[{"x":52,"y":0,"on":true},{"x":52,"y":72,"on":true},{"x":448,"y":72,"on":true},{"x":448,"y":0,"on":true}],[{"x":52,"y":663,"on":true},{"x":52,"y":735,"on":true},{"x":448,"y":735,"on":true},{"x":448,"y":663,"on":true}],[{"x":108,"y":361,"on":true},{"x":108,"y":433,"on":true},{"x":392,"y":433,"on":true},{"x":392,"y":361,"on":true}]], "references": [], - "instructions": [64,58,0,4,8,1,5,0,4,5,101,7,1,3,3,2,93,0,2,2,44,75,0,0,0,1,93,6,1,1,1,45,1,76,8,8,4,4,0,0,8,11,8,11,10,9,4,7,4,7,6,5,0,3,0,3,17,9,8,21,43] + "instructions": "QDoABAgBBQAEBWUHAQMDAl0AAgIsSwAAAAFdBgEBAS0BTAgIBAQAAAgLCAsKCQQHBAcGBQADAAMRCQgVKw==" }, "Pi": { "name": "Pi", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":663,"on":true},{"x":140,"y":663,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,30,0,2,2,0,93,0,0,0,44,75,4,3,2,1,1,45,1,76,0,0,0,7,0,7,17,17,17,5,8,23,43] + "instructions": "QB4AAgIAXQAAACxLBAMCAQEtAUwAAAAHAAcREREFCBcr" }, "uni041F": { "name": "uni041F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Pi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph509": { "name": "glyph509", "advanceWidth": 500, "contours": [[{"x":50,"y":458,"on":true},{"x":50,"y":530,"on":true},{"x":450,"y":530,"on":true},{"x":450,"y":458,"on":true},{"x":421,"y":458,"on":true},{"x":421,"y":0,"on":true},{"x":341,"y":0,"on":true},{"x":341,"y":458,"on":true},{"x":159,"y":458,"on":true},{"x":159,"y":0,"on":true},{"x":79,"y":0,"on":true},{"x":79,"y":458,"on":true}]], "references": [], - "instructions": [64,34,6,5,3,3,1,1,0,93,0,0,0,28,75,4,1,2,2,27,2,76,0,0,0,11,0,11,17,17,17,17,17,7,7,25,43] + "instructions": "QCIGBQMDAQEAXQAAABxLBAECAhsCTAAAAAsACxERERERBwcZKw==" }, "glyph510": { "name": "glyph510", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni043F": { "name": "uni043F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph509","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "pi": { "name": "pi", "advanceWidth": 500, "contours": [[{"x":49,"y":458,"on":true},{"x":49,"y":530,"on":true},{"x":451,"y":530,"on":true},{"x":451,"y":458,"on":true},{"x":417,"y":458,"on":true},{"x":417,"y":0,"on":true},{"x":337,"y":0,"on":true},{"x":337,"y":458,"on":true},{"x":163,"y":458,"on":true},{"x":163,"y":0,"on":true},{"x":83,"y":0,"on":true},{"x":83,"y":458,"on":true}]], "references": [], - "instructions": [64,34,6,5,3,3,1,1,0,93,0,0,0,47,75,4,1,2,2,45,2,76,0,0,0,11,0,11,17,17,17,17,17,7,8,25,43] + "instructions": "QCIGBQMDAQEAXQAAAC9LBAECAi0CTAAAAAsACxERERERBwgZKw==" }, "Sigma": { "name": "Sigma", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":212,"y":368,"on":true},{"x":60,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":143,"y":663,"on":true},{"x":295,"y":368,"on":true},{"x":143,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":0,"on":true}]], "references": [], - "instructions": [64,49,8,2,2,2,1,1,74,3,1,1,1,1,2,2,73,0,1,1,0,93,0,0,0,44,75,0,2,2,3,93,4,1,3,3,45,3,76,0,0,0,11,0,11,18,17,20,5,8,23,43] + "instructions": "QDEIAgICAQFKAwEBAQECAkkAAQEAXQAAACxLAAICA10EAQMDLQNMAAAACwALEhEUBQgXKw==" }, "uni01A9": { "name": "uni01A9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Sigma","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Phi": { "name": "Phi", "advanceWidth": 500, "contours": [[{"x":52,"y":287,"on":true},{"x":52,"y":448,"on":true},{"x":52,"y":514,"on":false},{"x":79,"y":562,"on":true},{"x":102,"y":602,"on":false},{"x":143,"y":625,"on":true},{"x":173,"y":642,"on":false},{"x":210,"y":648,"on":true},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":648,"on":true},{"x":327,"y":642,"on":false},{"x":357,"y":625,"on":true},{"x":397,"y":602,"on":false},{"x":421,"y":562,"on":true},{"x":448,"y":515,"on":false},{"x":448,"y":448,"on":true},{"x":448,"y":287,"on":true},{"x":448,"y":221,"on":false},{"x":421,"y":173,"on":true},{"x":398,"y":133,"on":false},{"x":357,"y":110,"on":true},{"x":327,"y":93,"on":false},{"x":290,"y":87,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":87,"on":true},{"x":173,"y":93,"on":false},{"x":143,"y":110,"on":true},{"x":103,"y":133,"on":false},{"x":79,"y":173,"on":true},{"x":52,"y":220,"on":false}],[{"x":132,"y":287,"on":true},{"x":132,"y":242,"on":false},{"x":150,"y":210,"on":true},{"x":165,"y":185,"on":false},{"x":189,"y":171,"on":true},{"x":199,"y":165,"on":false},{"x":210,"y":162,"on":true},{"x":210,"y":573,"on":true},{"x":199,"y":570,"on":false},{"x":189,"y":564,"on":true},{"x":164,"y":550,"on":false},{"x":150,"y":525,"on":true},{"x":132,"y":494,"on":false},{"x":132,"y":448,"on":true}],[{"x":290,"y":162,"on":true},{"x":301,"y":165,"on":false},{"x":311,"y":171,"on":true},{"x":336,"y":185,"on":false},{"x":350,"y":210,"on":true},{"x":368,"y":241,"on":false},{"x":368,"y":287,"on":true},{"x":368,"y":448,"on":true},{"x":368,"y":493,"on":false},{"x":350,"y":525,"on":true},{"x":335,"y":550,"on":false},{"x":311,"y":564,"on":true},{"x":301,"y":570,"on":false},{"x":290,"y":573,"on":true}]], "references": [], - "instructions": [64,29,59,46,39,38,26,23,10,7,8,1,0,1,74,0,0,0,44,75,0,1,1,45,1,76,31,24,2,8,22,43] + "instructions": "QB07LicmGhcKBwgBAAFKAAAALEsAAQEtAUwfGAIIFis=" }, "uni0424": { "name": "uni0424", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Phi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2C77": { "name": "uni2C77", "advanceWidth": 500, "contours": [[{"x":44,"y":284,"on":true},{"x":44,"y":409,"on":false},{"x":98,"y":530,"on":true},{"x":171,"y":500,"on":true},{"x":124,"y":395,"on":false},{"x":124,"y":284,"on":true},{"x":124,"y":184,"on":false},{"x":159,"y":123,"on":true},{"x":178,"y":91,"on":false},{"x":204,"y":76,"on":true},{"x":207,"y":74,"on":false},{"x":210,"y":72,"on":true},{"x":210,"y":350,"on":true},{"x":210,"y":427,"on":false},{"x":237,"y":475,"on":true},{"x":254,"y":504,"on":false},{"x":279,"y":518,"on":true},{"x":300,"y":530,"on":false},{"x":327,"y":530,"on":true},{"x":353,"y":530,"on":false},{"x":373,"y":518,"on":true},{"x":399,"y":503,"on":false},{"x":419,"y":470,"on":true},{"x":456,"y":405,"on":false},{"x":456,"y":293,"on":true},{"x":456,"y":168,"on":false},{"x":411,"y":89,"on":true},{"x":382,"y":39,"on":false},{"x":338,"y":14,"on":true},{"x":300,"y":-8,"on":false},{"x":200,"y":-8,"on":false},{"x":162,"y":14,"on":true},{"x":119,"y":39,"on":false},{"x":89,"y":90,"on":true},{"x":44,"y":168,"on":false}],[{"x":290,"y":72,"on":true},{"x":293,"y":73,"on":false},{"x":296,"y":76,"on":true},{"x":322,"y":91,"on":false},{"x":340,"y":123,"on":true},{"x":376,"y":185,"on":false},{"x":376,"y":294,"on":true},{"x":376,"y":418,"on":false},{"x":344,"y":451,"on":true},{"x":337,"y":458,"on":false},{"x":327,"y":458,"on":true},{"x":319,"y":458,"on":false},{"x":313,"y":452,"on":true},{"x":290,"y":429,"on":false},{"x":290,"y":350,"on":true}]], "references": [], - "instructions": [64,40,3,1,2,0,35,11,2,1,2,2,74,2,1,0,72,0,2,2,0,95,0,0,0,67,75,0,1,1,73,1,76,45,44,30,29,19,17,3,9,20,43] + "instructions": "QCgDAQIAIwsCAQICSgIBAEgAAgIAXwAAAENLAAEBSQFMLSweHRMRAwkUKw==" }, "phi": { "name": "phi", "advanceWidth": 500, "contours": [[{"x":44,"y":284,"on":true},{"x":44,"y":409,"on":false},{"x":98,"y":530,"on":true},{"x":171,"y":500,"on":true},{"x":124,"y":395,"on":false},{"x":124,"y":284,"on":true},{"x":124,"y":184,"on":false},{"x":159,"y":123,"on":true},{"x":178,"y":91,"on":false},{"x":204,"y":76,"on":true},{"x":207,"y":74,"on":false},{"x":210,"y":72,"on":true},{"x":210,"y":350,"on":true},{"x":210,"y":427,"on":false},{"x":237,"y":475,"on":true},{"x":254,"y":504,"on":false},{"x":279,"y":518,"on":true},{"x":300,"y":530,"on":false},{"x":327,"y":530,"on":true},{"x":353,"y":530,"on":false},{"x":373,"y":518,"on":true},{"x":399,"y":503,"on":false},{"x":419,"y":470,"on":true},{"x":456,"y":405,"on":false},{"x":456,"y":293,"on":true},{"x":456,"y":168,"on":false},{"x":411,"y":89,"on":true},{"x":382,"y":39,"on":false},{"x":338,"y":14,"on":true},{"x":316,"y":1,"on":false},{"x":290,"y":-4,"on":true},{"x":290,"y":-205,"on":true},{"x":210,"y":-205,"on":true},{"x":210,"y":-4,"on":true},{"x":184,"y":1,"on":false},{"x":162,"y":14,"on":true},{"x":119,"y":39,"on":false},{"x":89,"y":90,"on":true},{"x":44,"y":168,"on":false}],[{"x":290,"y":72,"on":true},{"x":293,"y":73,"on":false},{"x":296,"y":76,"on":true},{"x":322,"y":91,"on":false},{"x":340,"y":123,"on":true},{"x":376,"y":185,"on":false},{"x":376,"y":294,"on":true},{"x":376,"y":418,"on":false},{"x":344,"y":451,"on":true},{"x":337,"y":458,"on":false},{"x":327,"y":458,"on":true},{"x":319,"y":458,"on":false},{"x":313,"y":452,"on":true},{"x":290,"y":429,"on":false},{"x":290,"y":350,"on":true}]], "references": [], - "instructions": [64,42,3,1,2,0,39,33,30,11,4,1,2,2,74,2,1,0,72,0,2,2,0,95,0,0,0,47,75,0,1,1,49,1,76,49,48,32,31,19,17,3,8,20,43] + "instructions": "QCoDAQIAJyEeCwQBAgJKAgEASAACAgBfAAAAL0sAAQExAUwxMCAfExEDCBQr" }, "phi1": { "name": "phi1", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":391,"on":false},{"x":84,"y":446,"on":true},{"x":109,"y":490,"on":false},{"x":151,"y":514,"on":true},{"x":177,"y":529,"on":false},{"x":210,"y":535,"on":true},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":535,"on":true},{"x":323,"y":529,"on":false},{"x":349,"y":514,"on":true},{"x":390,"y":490,"on":false},{"x":416,"y":446,"on":true},{"x":448,"y":391,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":349,"y":16,"on":true},{"x":322,"y":1,"on":false},{"x":290,"y":-5,"on":true},{"x":290,"y":-205,"on":true},{"x":210,"y":-205,"on":true},{"x":210,"y":-5,"on":true},{"x":177,"y":1,"on":false},{"x":151,"y":16,"on":true},{"x":110,"y":40,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":203,"y":74,"on":false},{"x":210,"y":71,"on":true},{"x":210,"y":459,"on":true},{"x":203,"y":456,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}],[{"x":290,"y":71,"on":true},{"x":297,"y":74,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":371,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":453,"on":true},{"x":297,"y":456,"on":false},{"x":290,"y":459,"on":true}]], "references": [], - "instructions": [64,29,59,46,39,38,26,23,10,7,8,1,0,1,74,0,0,0,44,75,0,1,1,49,1,76,31,24,2,8,22,43] + "instructions": "QB07LicmGhcKBwgBAAFKAAAALEsAAQExAUwfGAIIFis=" }, "uni0444": { "name": "uni0444", "advanceWidth": 500, "contours": [], "references": [{"glyph":"phi1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0278": { "name": "uni0278", "advanceWidth": 500, "contours": [], "references": [{"glyph":"phi1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Psi": { "name": "Psi", "advanceWidth": 500, "contours": [[{"x":60,"y":342,"on":true},{"x":60,"y":588,"on":true},{"x":140,"y":588,"on":true},{"x":140,"y":342,"on":true},{"x":140,"y":299,"on":false},{"x":157,"y":270,"on":true},{"x":171,"y":246,"on":false},{"x":194,"y":233,"on":true},{"x":202,"y":229,"on":false},{"x":210,"y":225,"on":true},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":225,"on":true},{"x":299,"y":228,"on":false},{"x":306,"y":233,"on":true},{"x":329,"y":246,"on":false},{"x":343,"y":270,"on":true},{"x":360,"y":300,"on":false},{"x":360,"y":342,"on":true},{"x":360,"y":588,"on":true},{"x":440,"y":588,"on":true},{"x":440,"y":342,"on":true},{"x":440,"y":278,"on":false},{"x":414,"y":233,"on":true},{"x":392,"y":194,"on":false},{"x":353,"y":172,"on":true},{"x":325,"y":156,"on":false},{"x":290,"y":150,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":150,"on":true},{"x":175,"y":156,"on":false},{"x":147,"y":172,"on":true},{"x":108,"y":194,"on":false},{"x":86,"y":233,"on":true},{"x":60,"y":278,"on":false}]], "references": [], - "instructions": [64,36,30,27,12,9,4,3,0,1,74,2,1,0,1,3,1,0,3,126,0,1,1,44,75,0,3,3,45,3,76,24,24,24,17,4,8,24,43] + "instructions": "QCQeGwwJBAMAAUoCAQABAwEAA34AAQEsSwADAy0DTBgYGBEECBgr" }, "uni1D2A": { "name": "uni1D2A", "advanceWidth": 500, "contours": [[{"x":60,"y":354,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":354,"on":true},{"x":140,"y":311,"on":false},{"x":157,"y":282,"on":true},{"x":171,"y":258,"on":false},{"x":194,"y":245,"on":true},{"x":202,"y":241,"on":false},{"x":210,"y":237,"on":true},{"x":210,"y":530,"on":true},{"x":290,"y":530,"on":true},{"x":290,"y":237,"on":true},{"x":299,"y":240,"on":false},{"x":306,"y":245,"on":true},{"x":329,"y":258,"on":false},{"x":343,"y":282,"on":true},{"x":360,"y":312,"on":false},{"x":360,"y":354,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":354,"on":true},{"x":440,"y":290,"on":false},{"x":414,"y":245,"on":true},{"x":392,"y":206,"on":false},{"x":353,"y":184,"on":true},{"x":325,"y":168,"on":false},{"x":290,"y":162,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":162,"on":true},{"x":175,"y":168,"on":false},{"x":147,"y":184,"on":true},{"x":108,"y":206,"on":false},{"x":86,"y":245,"on":true},{"x":60,"y":290,"on":false}]], "references": [], - "instructions": [64,29,30,27,12,9,4,3,0,1,74,2,1,2,0,0,67,75,0,3,3,65,3,76,24,24,24,17,4,9,24,43] + "instructions": "QB0eGwwJBAMAAUoCAQIAAENLAAMDQQNMGBgYEQQJGCs=" }, "psi": { "name": "psi", "advanceWidth": 500, "contours": [[{"x":60,"y":220,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":206,"y":74,"on":false},{"x":210,"y":72,"on":true},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":72,"on":true},{"x":294,"y":74,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":220,"on":true},{"x":440,"y":137,"on":false},{"x":408,"y":81,"on":true},{"x":383,"y":38,"on":false},{"x":343,"y":15,"on":true},{"x":319,"y":1,"on":false},{"x":290,"y":-4,"on":true},{"x":290,"y":-205,"on":true},{"x":210,"y":-205,"on":true},{"x":210,"y":-4,"on":true},{"x":181,"y":1,"on":false},{"x":157,"y":15,"on":true},{"x":117,"y":38,"on":false},{"x":92,"y":81,"on":true},{"x":60,"y":137,"on":false}]], "references": [], - "instructions": [64,33,30,27,12,9,4,3,0,1,74,0,1,1,44,75,2,1,0,0,47,75,0,3,3,49,3,76,24,24,24,17,4,8,24,43] + "instructions": "QCEeGwwJBAMAAUoAAQEsSwIBAAAvSwADAzEDTBgYGBEECBgr" }, "uni03A9": { "name": "uni03A9", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":152,"y":72,"on":true},{"x":152,"y":88,"on":true},{"x":144,"y":91,"on":false},{"x":136,"y":96,"on":true},{"x":105,"y":114,"on":false},{"x":85,"y":148,"on":true},{"x":60,"y":191,"on":false},{"x":60,"y":254,"on":true},{"x":60,"y":540,"on":true},{"x":60,"y":608,"on":false},{"x":88,"y":656,"on":true},{"x":111,"y":696,"on":false},{"x":150,"y":719,"on":true},{"x":192,"y":743,"on":false},{"x":308,"y":743,"on":false},{"x":350,"y":719,"on":true},{"x":389,"y":696,"on":false},{"x":412,"y":656,"on":true},{"x":440,"y":608,"on":false},{"x":440,"y":540,"on":true},{"x":440,"y":254,"on":true},{"x":440,"y":191,"on":false},{"x":415,"y":148,"on":true},{"x":396,"y":114,"on":false},{"x":364,"y":96,"on":true},{"x":356,"y":91,"on":false},{"x":348,"y":88,"on":true},{"x":348,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":0,"on":true},{"x":288,"y":0,"on":true},{"x":288,"y":131,"on":true},{"x":291,"y":131,"on":true},{"x":304,"y":131,"on":false},{"x":315,"y":138,"on":true},{"x":330,"y":147,"on":false},{"x":341,"y":165,"on":true},{"x":360,"y":198,"on":false},{"x":360,"y":254,"on":true},{"x":360,"y":540,"on":true},{"x":360,"y":587,"on":false},{"x":341,"y":620,"on":true},{"x":327,"y":645,"on":false},{"x":281,"y":671,"on":false},{"x":219,"y":671,"on":false},{"x":173,"y":644,"on":false},{"x":159,"y":620,"on":true},{"x":140,"y":588,"on":false},{"x":140,"y":540,"on":true},{"x":140,"y":254,"on":true},{"x":140,"y":198,"on":false},{"x":159,"y":165,"on":true},{"x":170,"y":147,"on":false},{"x":185,"y":138,"on":true},{"x":196,"y":131,"on":false},{"x":209,"y":131,"on":true},{"x":212,"y":131,"on":true},{"x":212,"y":0,"on":true}]], "references": [], - "instructions": [182,28,3,2,0,4,1,74,75,176,22,80,88,64,32,6,1,4,5,0,0,4,112,0,5,5,1,95,0,1,1,52,75,2,1,0,0,3,94,8,7,2,3,3,45,3,76,27,64,33,6,1,4,5,0,5,4,0,126,0,5,5,1,95,0,1,1,52,75,2,1,0,0,3,94,8,7,2,3,3,45,3,76,89,64,16,0,0,0,59,0,59,26,26,33,17,29,29,17,9,8,27,43] + "instructions": "thwDAgAEAUpLsBZQWEAgBgEEBQAABHAABQUBXwABATRLAgEAAANeCAcCAwMtA0wbQCEGAQQFAAUEAH4ABQUBXwABATRLAgEAAANeCAcCAwMtA0xZQBAAAAA7ADsaGiERHR0RCQgbKw==" }, "uni01B1": { "name": "uni01B1", "advanceWidth": 500, "contours": [[{"x":60,"y":195,"on":true},{"x":60,"y":481,"on":true},{"x":60,"y":544,"on":false},{"x":85,"y":587,"on":true},{"x":104,"y":621,"on":false},{"x":136,"y":639,"on":true},{"x":144,"y":644,"on":false},{"x":152,"y":647,"on":true},{"x":152,"y":663,"on":true},{"x":60,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":212,"y":735,"on":true},{"x":212,"y":604,"on":true},{"x":209,"y":604,"on":true},{"x":196,"y":604,"on":false},{"x":185,"y":597,"on":true},{"x":170,"y":588,"on":false},{"x":159,"y":570,"on":true},{"x":140,"y":537,"on":false},{"x":140,"y":481,"on":true},{"x":140,"y":195,"on":true},{"x":140,"y":148,"on":false},{"x":159,"y":115,"on":true},{"x":173,"y":90,"on":false},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":327,"y":91,"on":false},{"x":341,"y":115,"on":true},{"x":360,"y":147,"on":false},{"x":360,"y":195,"on":true},{"x":360,"y":481,"on":true},{"x":360,"y":537,"on":false},{"x":341,"y":570,"on":true},{"x":330,"y":588,"on":false},{"x":315,"y":597,"on":true},{"x":304,"y":604,"on":false},{"x":291,"y":604,"on":true},{"x":288,"y":604,"on":true},{"x":288,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":348,"y":663,"on":true},{"x":348,"y":647,"on":true},{"x":356,"y":644,"on":false},{"x":364,"y":639,"on":true},{"x":395,"y":621,"on":false},{"x":415,"y":587,"on":true},{"x":440,"y":544,"on":false},{"x":440,"y":481,"on":true},{"x":440,"y":195,"on":true},{"x":440,"y":127,"on":false},{"x":412,"y":79,"on":true},{"x":389,"y":39,"on":false},{"x":350,"y":16,"on":true},{"x":308,"y":-8,"on":false},{"x":192,"y":-8,"on":false},{"x":150,"y":16,"on":true},{"x":111,"y":39,"on":false},{"x":88,"y":79,"on":true},{"x":60,"y":127,"on":false}]], "references": [], - "instructions": [182,42,7,2,2,0,1,74,75,176,22,80,88,64,31,4,1,2,0,3,0,2,112,6,1,0,0,1,93,5,1,1,1,64,75,0,3,3,7,95,0,7,7,73,7,76,27,64,32,4,1,2,0,3,0,2,3,126,6,1,0,0,1,93,5,1,1,1,64,75,0,3,3,7,95,0,7,7,73,7,76,89,64,11,29,17,18,26,26,33,17,24,8,9,28,43] + "instructions": "tioHAgIAAUpLsBZQWEAfBAECAAMAAnAGAQAAAV0FAQEBQEsAAwMHXwAHB0kHTBtAIAQBAgADAAIDfgYBAAABXQUBAQFASwADAwdfAAcHSQdMWUALHRESGhohERgICRwr" }, "uniAB65": { "name": "uniAB65", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":152,"y":72,"on":true},{"x":152,"y":73,"on":true},{"x":147,"y":75,"on":false},{"x":142,"y":78,"on":true},{"x":110,"y":96,"on":false},{"x":90,"y":132,"on":true},{"x":60,"y":183,"on":false},{"x":60,"y":262,"on":true},{"x":60,"y":310,"on":true},{"x":60,"y":393,"on":false},{"x":92,"y":449,"on":true},{"x":117,"y":492,"on":false},{"x":157,"y":515,"on":true},{"x":196,"y":538,"on":false},{"x":303,"y":538,"on":false},{"x":383,"y":492,"on":false},{"x":408,"y":449,"on":true},{"x":440,"y":393,"on":false},{"x":440,"y":310,"on":true},{"x":440,"y":262,"on":true},{"x":440,"y":183,"on":false},{"x":410,"y":132,"on":true},{"x":389,"y":96,"on":false},{"x":358,"y":78,"on":true},{"x":353,"y":75,"on":false},{"x":348,"y":73,"on":true},{"x":348,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":0,"on":true},{"x":288,"y":0,"on":true},{"x":288,"y":114,"on":true},{"x":290,"y":114,"on":true},{"x":302,"y":114,"on":false},{"x":312,"y":121,"on":true},{"x":326,"y":129,"on":false},{"x":337,"y":147,"on":true},{"x":360,"y":188,"on":false},{"x":360,"y":262,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":374,"on":false},{"x":140,"y":310,"on":true},{"x":140,"y":262,"on":true},{"x":140,"y":187,"on":false},{"x":163,"y":147,"on":true},{"x":174,"y":129,"on":false},{"x":188,"y":121,"on":true},{"x":198,"y":115,"on":false},{"x":210,"y":114,"on":true},{"x":212,"y":114,"on":true},{"x":212,"y":0,"on":true}]], "references": [], - "instructions": [180,58,1,4,1,73,75,176,29,80,88,64,31,0,4,5,0,0,4,112,0,5,5,1,95,0,1,1,75,75,2,1,0,0,3,94,7,6,2,3,3,65,3,76,27,64,32,0,4,5,0,5,4,0,126,0,5,5,1,95,0,1,1,75,75,2,1,0,0,3,94,7,6,2,3,3,65,3,76,89,64,15,0,0,0,60,0,60,27,33,17,43,29,17,8,9,26,43] + "instructions": "tDoBBAFJS7AdUFhAHwAEBQAABHAABQUBXwABAUtLAgEAAANeBwYCAwNBA0wbQCAABAUABQQAfgAFBQFfAAEBS0sCAQAAA14HBgIDA0EDTFlADwAAADwAPBshESsdEQgJGis=" }, "uni028A": { "name": "uni028A", "advanceWidth": 500, "contours": [[{"x":60,"y":220,"on":true},{"x":60,"y":268,"on":true},{"x":60,"y":347,"on":false},{"x":90,"y":398,"on":true},{"x":111,"y":434,"on":false},{"x":142,"y":452,"on":true},{"x":147,"y":455,"on":false},{"x":152,"y":457,"on":true},{"x":152,"y":458,"on":true},{"x":60,"y":458,"on":true},{"x":60,"y":530,"on":true},{"x":212,"y":530,"on":true},{"x":212,"y":416,"on":true},{"x":210,"y":416,"on":true},{"x":198,"y":416,"on":false},{"x":188,"y":409,"on":true},{"x":174,"y":401,"on":false},{"x":163,"y":383,"on":true},{"x":140,"y":342,"on":false},{"x":140,"y":268,"on":true},{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":268,"on":true},{"x":360,"y":343,"on":false},{"x":337,"y":383,"on":true},{"x":326,"y":401,"on":false},{"x":312,"y":409,"on":true},{"x":302,"y":415,"on":false},{"x":290,"y":416,"on":true},{"x":288,"y":416,"on":true},{"x":288,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":458,"on":true},{"x":348,"y":458,"on":true},{"x":348,"y":457,"on":true},{"x":353,"y":455,"on":false},{"x":358,"y":452,"on":true},{"x":390,"y":434,"on":false},{"x":410,"y":398,"on":true},{"x":440,"y":347,"on":false},{"x":440,"y":268,"on":true},{"x":440,"y":220,"on":true},{"x":440,"y":137,"on":false},{"x":408,"y":81,"on":true},{"x":383,"y":38,"on":false},{"x":343,"y":15,"on":true},{"x":304,"y":-8,"on":false},{"x":197,"y":-8,"on":false},{"x":117,"y":38,"on":false},{"x":92,"y":81,"on":true},{"x":60,"y":137,"on":false}]], "references": [], - "instructions": [180,38,1,2,1,73,75,176,31,80,88,64,30,0,2,0,3,0,2,112,5,1,0,0,1,93,4,1,1,1,67,75,0,3,3,6,95,0,6,6,73,6,76,27,64,31,0,2,0,3,0,2,3,126,5,1,0,0,1,93,4,1,1,1,67,75,0,3,3,6,95,0,6,6,73,6,76,89,64,10,29,17,30,27,33,17,39,7,9,27,43] + "instructions": "tCYBAgFJS7AfUFhAHgACAAMAAnAFAQAAAV0EAQEBQ0sAAwMGXwAGBkkGTBtAHwACAAMAAgN+BQEAAAFdBAEBAUNLAAMDBl8ABgZJBkxZQAodER4bIREnBwkbKw==" }, "omega": { "name": "omega", "advanceWidth": 500, "contours": [[{"x":44,"y":258,"on":true},{"x":44,"y":394,"on":false},{"x":98,"y":516,"on":true},{"x":171,"y":486,"on":true},{"x":124,"y":384,"on":false},{"x":124,"y":257,"on":true},{"x":124,"y":101,"on":false},{"x":155,"y":69,"on":true},{"x":160,"y":64,"on":false},{"x":173,"y":64,"on":false},{"x":179,"y":69,"on":true},{"x":210,"y":100,"on":false},{"x":210,"y":265,"on":true},{"x":210,"y":344,"on":true},{"x":290,"y":344,"on":true},{"x":290,"y":265,"on":true},{"x":290,"y":101,"on":false},{"x":321,"y":69,"on":true},{"x":326,"y":64,"on":false},{"x":339,"y":64,"on":false},{"x":345,"y":69,"on":true},{"x":376,"y":100,"on":false},{"x":376,"y":257,"on":true},{"x":376,"y":385,"on":false},{"x":329,"y":486,"on":true},{"x":402,"y":516,"on":true},{"x":456,"y":394,"on":false},{"x":456,"y":258,"on":true},{"x":456,"y":121,"on":false},{"x":413,"y":47,"on":true},{"x":395,"y":16,"on":false},{"x":372,"y":2,"on":true},{"x":355,"y":-8,"on":false},{"x":334,"y":-8,"on":true},{"x":317,"y":-8,"on":false},{"x":305,"y":-1,"on":true},{"x":287,"y":9,"on":false},{"x":272,"y":35,"on":true},{"x":259,"y":58,"on":false},{"x":250,"y":89,"on":true},{"x":241,"y":58,"on":false},{"x":228,"y":35,"on":true},{"x":213,"y":10,"on":false},{"x":195,"y":-1,"on":true},{"x":182,"y":-8,"on":false},{"x":166,"y":-8,"on":true},{"x":146,"y":-8,"on":false},{"x":128,"y":2,"on":true},{"x":105,"y":16,"on":false},{"x":87,"y":47,"on":true},{"x":44,"y":121,"on":false}]], "references": [], - "instructions": [64,39,39,1,0,1,1,74,25,24,3,2,4,1,72,0,1,0,1,131,2,1,0,0,3,95,4,1,3,3,53,3,76,42,45,20,20,24,5,8,25,43] + "instructions": "QCcnAQABAUoZGAMCBAFIAAEAAYMCAQAAA18EAQMDNQNMKi0UFBgFCBkr" }, "omega1": { "name": "omega1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-191,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,65,176,51,43] + "instructions": "sQEBuP9BsDMr" }, "uni0277": { "name": "uni0277", "advanceWidth": 500, "contours": [[{"x":44,"y":236,"on":true},{"x":44,"y":362,"on":false},{"x":89,"y":441,"on":true},{"x":118,"y":491,"on":false},{"x":162,"y":516,"on":true},{"x":200,"y":538,"on":false},{"x":300,"y":538,"on":false},{"x":338,"y":516,"on":true},{"x":381,"y":491,"on":false},{"x":411,"y":441,"on":true},{"x":456,"y":363,"on":false},{"x":456,"y":236,"on":true},{"x":456,"y":115,"on":false},{"x":417,"y":48,"on":true},{"x":399,"y":17,"on":false},{"x":375,"y":3,"on":true},{"x":356,"y":-8,"on":false},{"x":335,"y":-8,"on":true},{"x":318,"y":-8,"on":false},{"x":305,"y":-1,"on":true},{"x":287,"y":9,"on":false},{"x":272,"y":35,"on":true},{"x":259,"y":58,"on":false},{"x":250,"y":89,"on":true},{"x":241,"y":58,"on":false},{"x":228,"y":35,"on":true},{"x":213,"y":10,"on":false},{"x":195,"y":-1,"on":true},{"x":182,"y":-8,"on":false},{"x":165,"y":-8,"on":true},{"x":144,"y":-8,"on":false},{"x":125,"y":3,"on":true},{"x":101,"y":17,"on":false},{"x":83,"y":48,"on":true},{"x":44,"y":115,"on":false}],[{"x":124,"y":234,"on":true},{"x":124,"y":100,"on":false},{"x":154,"y":70,"on":true},{"x":160,"y":64,"on":false},{"x":174,"y":64,"on":false},{"x":179,"y":69,"on":true},{"x":210,"y":100,"on":false},{"x":210,"y":265,"on":true},{"x":210,"y":344,"on":true},{"x":290,"y":344,"on":true},{"x":290,"y":265,"on":true},{"x":290,"y":101,"on":false},{"x":321,"y":69,"on":true},{"x":326,"y":64,"on":false},{"x":340,"y":64,"on":false},{"x":346,"y":70,"on":true},{"x":376,"y":100,"on":false},{"x":376,"y":234,"on":true},{"x":376,"y":345,"on":false},{"x":340,"y":407,"on":true},{"x":321,"y":439,"on":false},{"x":296,"y":454,"on":true},{"x":276,"y":466,"on":false},{"x":224,"y":466,"on":false},{"x":204,"y":454,"on":true},{"x":178,"y":439,"on":false},{"x":160,"y":407,"on":true},{"x":124,"y":345,"on":false}]], "references": [], - "instructions": [64,47,23,1,3,4,1,74,0,4,6,3,6,4,3,126,0,6,6,0,95,0,0,0,75,75,5,1,3,3,1,95,2,1,1,1,73,1,76,24,20,20,24,42,42,21,7,9,27,43] + "instructions": "QC8XAQMEAUoABAYDBgQDfgAGBgBfAAAAS0sFAQMDAV8CAQEBSQFMGBQUGCoqFQcJGys=" }, "uni042C": { "name": "uni042C", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":440,"on":true},{"x":198,"y":440,"on":true},{"x":286,"y":440,"on":false},{"x":346,"y":405,"on":true},{"x":394,"y":377,"on":false},{"x":421,"y":332,"on":true},{"x":448,"y":285,"on":false},{"x":448,"y":156,"on":false},{"x":421,"y":109,"on":true},{"x":395,"y":63,"on":false},{"x":346,"y":35,"on":true},{"x":286,"y":0,"on":false},{"x":198,"y":0,"on":true}],[{"x":140,"y":72,"on":true},{"x":198,"y":72,"on":true},{"x":258,"y":72,"on":false},{"x":299,"y":96,"on":true},{"x":332,"y":115,"on":false},{"x":350,"y":146,"on":true},{"x":368,"y":178,"on":false},{"x":368,"y":263,"on":false},{"x":350,"y":295,"on":true},{"x":332,"y":326,"on":false},{"x":299,"y":344,"on":true},{"x":258,"y":368,"on":false},{"x":198,"y":368,"on":true},{"x":140,"y":368,"on":true}]], "references": [], - "instructions": [64,40,0,1,0,4,3,1,4,103,0,0,0,26,75,0,3,3,2,94,5,1,2,2,27,2,76,0,0,29,27,18,16,0,15,0,14,33,17,6,7,22,43] + "instructions": "QCgAAQAEAwEEZwAAABpLAAMDAl4FAQICGwJMAAAdGxIQAA8ADiERBgcWKw==" }, "uni044C": { "name": "uni044C", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":328,"on":true},{"x":260,"y":328,"on":true},{"x":326,"y":328,"on":false},{"x":372,"y":301,"on":true},{"x":408,"y":280,"on":false},{"x":428,"y":246,"on":true},{"x":448,"y":211,"on":false},{"x":448,"y":116,"on":false},{"x":428,"y":81,"on":true},{"x":408,"y":47,"on":false},{"x":372,"y":26,"on":true},{"x":326,"y":0,"on":false},{"x":260,"y":0,"on":true}],[{"x":140,"y":72,"on":true},{"x":260,"y":72,"on":true},{"x":299,"y":72,"on":false},{"x":325,"y":87,"on":true},{"x":346,"y":99,"on":false},{"x":368,"y":138,"on":false},{"x":368,"y":190,"on":false},{"x":346,"y":228,"on":false},{"x":325,"y":240,"on":true},{"x":299,"y":256,"on":false},{"x":260,"y":256,"on":true},{"x":140,"y":256,"on":true}]], "references": [], - "instructions": [64,40,0,1,0,4,3,1,4,101,0,0,0,28,75,0,3,3,2,94,5,1,2,2,27,2,76,0,0,27,25,18,16,0,15,0,14,33,17,6,7,22,43] + "instructions": "QCgAAQAEAwEEZQAAABxLAAMDAl4FAQICGwJMAAAbGRIQAA8ADiERBgcWKw==" }, "uni0411": { "name": "uni0411", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":402,"y":735,"on":true},{"x":402,"y":663,"on":true},{"x":140,"y":663,"on":true},{"x":140,"y":440,"on":true},{"x":198,"y":440,"on":true},{"x":286,"y":440,"on":false},{"x":346,"y":405,"on":true},{"x":394,"y":377,"on":false},{"x":421,"y":332,"on":true},{"x":448,"y":285,"on":false},{"x":448,"y":156,"on":false},{"x":421,"y":109,"on":true},{"x":395,"y":63,"on":false},{"x":346,"y":35,"on":true},{"x":286,"y":0,"on":false},{"x":198,"y":0,"on":true}],[{"x":140,"y":72,"on":true},{"x":198,"y":72,"on":true},{"x":258,"y":72,"on":false},{"x":299,"y":96,"on":true},{"x":332,"y":115,"on":false},{"x":350,"y":146,"on":true},{"x":368,"y":178,"on":false},{"x":368,"y":263,"on":false},{"x":350,"y":295,"on":true},{"x":332,"y":326,"on":false},{"x":299,"y":344,"on":true},{"x":258,"y":368,"on":false},{"x":198,"y":368,"on":true},{"x":140,"y":368,"on":true}]], "references": [], - "instructions": [64,46,0,2,0,5,4,2,5,103,0,1,1,0,93,0,0,0,26,75,0,4,4,3,93,6,1,3,3,27,3,76,0,0,31,29,20,18,0,17,0,16,33,17,17,7,7,23,43] + "instructions": "QC4AAgAFBAIFZwABAQBdAAAAGksABAQDXQYBAwMbA0wAAB8dFBIAEQAQIRERBwcXKw==" }, "uni0182": { "name": "uni0182", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0411","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0184": { "name": "uni0184", "advanceWidth": 500, "contours": [[{"x":-12,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":440,"on":true},{"x":198,"y":440,"on":true},{"x":286,"y":440,"on":false},{"x":346,"y":405,"on":true},{"x":394,"y":377,"on":false},{"x":421,"y":332,"on":true},{"x":448,"y":285,"on":false},{"x":448,"y":156,"on":false},{"x":421,"y":109,"on":true},{"x":395,"y":63,"on":false},{"x":346,"y":35,"on":true},{"x":286,"y":0,"on":false},{"x":198,"y":0,"on":true},{"x":60,"y":0,"on":true},{"x":60,"y":591,"on":true}],[{"x":140,"y":72,"on":true},{"x":198,"y":72,"on":true},{"x":258,"y":72,"on":false},{"x":299,"y":96,"on":true},{"x":332,"y":115,"on":false},{"x":350,"y":146,"on":true},{"x":368,"y":178,"on":false},{"x":368,"y":263,"on":false},{"x":350,"y":295,"on":true},{"x":332,"y":326,"on":false},{"x":299,"y":344,"on":true},{"x":258,"y":368,"on":false},{"x":198,"y":368,"on":true},{"x":140,"y":368,"on":true}]], "references": [], - "instructions": [64,38,17,1,1,0,1,74,0,1,0,4,3,1,4,103,0,0,0,64,75,0,3,3,2,94,0,2,2,65,2,76,41,34,41,33,17,5,9,25,43] + "instructions": "QCYRAQEAAUoAAQAEAwEEZwAAAEBLAAMDAl4AAgJBAkwpIikhEQUJGSs=" }, "uni018B": { "name": "uni018B", "advanceWidth": 500, "contours": [[{"x":52,"y":156,"on":false},{"x":52,"y":284,"on":false},{"x":79,"y":332,"on":true},{"x":106,"y":378,"on":false},{"x":154,"y":405,"on":true},{"x":214,"y":440,"on":false},{"x":302,"y":440,"on":true},{"x":360,"y":440,"on":true},{"x":360,"y":663,"on":true},{"x":98,"y":663,"on":true},{"x":98,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":0,"on":true},{"x":302,"y":0,"on":true},{"x":214,"y":0,"on":false},{"x":154,"y":35,"on":true},{"x":106,"y":63,"on":false},{"x":79,"y":109,"on":true}],[{"x":132,"y":263,"on":false},{"x":132,"y":177,"on":false},{"x":168,"y":115,"on":false},{"x":201,"y":96,"on":true},{"x":242,"y":72,"on":false},{"x":302,"y":72,"on":true},{"x":360,"y":72,"on":true},{"x":360,"y":368,"on":true},{"x":302,"y":368,"on":true},{"x":242,"y":368,"on":false},{"x":201,"y":344,"on":true},{"x":168,"y":325,"on":false},{"x":150,"y":295,"on":true}]], "references": [], - "instructions": [64,38,0,0,0,5,4,0,5,103,0,1,1,2,93,0,2,2,64,75,0,4,4,3,93,0,3,3,65,3,76,33,40,33,17,17,37,6,9,26,43] + "instructions": "QCYAAAAFBAAFZwABAQJdAAICQEsABAQDXQADA0EDTCEoIRERJQYJGis=" }, "uni042A": { "name": "uni042A", "advanceWidth": 500, "contours": [[{"x":36,"y":663,"on":true},{"x":36,"y":735,"on":true},{"x":178,"y":735,"on":true},{"x":178,"y":440,"on":true},{"x":210,"y":440,"on":true},{"x":290,"y":440,"on":false},{"x":347,"y":408,"on":true},{"x":394,"y":381,"on":false},{"x":420,"y":335,"on":true},{"x":448,"y":286,"on":false},{"x":448,"y":153,"on":false},{"x":420,"y":105,"on":true},{"x":394,"y":60,"on":false},{"x":347,"y":32,"on":true},{"x":291,"y":0,"on":false},{"x":210,"y":0,"on":true},{"x":98,"y":0,"on":true},{"x":98,"y":663,"on":true}],[{"x":178,"y":72,"on":true},{"x":210,"y":72,"on":true},{"x":263,"y":72,"on":false},{"x":300,"y":93,"on":true},{"x":331,"y":111,"on":false},{"x":349,"y":142,"on":true},{"x":368,"y":175,"on":false},{"x":368,"y":266,"on":false},{"x":349,"y":298,"on":true},{"x":331,"y":328,"on":false},{"x":300,"y":347,"on":true},{"x":263,"y":368,"on":false},{"x":210,"y":368,"on":true},{"x":178,"y":368,"on":true}]], "references": [], - "instructions": [64,46,0,1,0,5,4,1,5,103,6,1,3,3,0,93,0,0,0,26,75,0,4,4,2,93,0,2,2,27,2,76,0,0,31,29,20,18,0,17,0,17,41,33,17,7,7,23,43] + "instructions": "QC4AAQAFBAEFZwYBAwMAXQAAABpLAAQEAl0AAgIbAkwAAB8dFBIAEQARKSERBwcXKw==" }, "uni044A": { "name": "uni044A", "advanceWidth": 500, "contours": [[{"x":36,"y":458,"on":true},{"x":36,"y":530,"on":true},{"x":178,"y":530,"on":true},{"x":178,"y":328,"on":true},{"x":269,"y":328,"on":true},{"x":330,"y":328,"on":false},{"x":373,"y":303,"on":true},{"x":408,"y":283,"on":false},{"x":427,"y":249,"on":true},{"x":448,"y":213,"on":false},{"x":448,"y":114,"on":false},{"x":427,"y":79,"on":true},{"x":407,"y":45,"on":false},{"x":373,"y":25,"on":true},{"x":331,"y":0,"on":false},{"x":269,"y":0,"on":true},{"x":98,"y":0,"on":true},{"x":98,"y":458,"on":true}],[{"x":178,"y":72,"on":true},{"x":269,"y":72,"on":true},{"x":302,"y":72,"on":false},{"x":326,"y":85,"on":true},{"x":346,"y":96,"on":false},{"x":356,"y":116,"on":true},{"x":368,"y":136,"on":false},{"x":368,"y":192,"on":false},{"x":356,"y":212,"on":true},{"x":345,"y":231,"on":false},{"x":326,"y":242,"on":true},{"x":303,"y":256,"on":false},{"x":269,"y":256,"on":true},{"x":178,"y":256,"on":true}]], "references": [], - "instructions": [64,46,0,1,0,5,4,1,5,101,6,1,3,3,0,93,0,0,0,28,75,0,4,4,2,93,0,2,2,27,2,76,0,0,31,29,20,18,0,17,0,17,41,33,17,7,7,23,43] + "instructions": "QC4AAQAFBAEFZQYBAwMAXQAAABxLAAQEAl0AAgIbAkwAAB8dFBIAEQARKSERBwcXKw==" }, "uni042B": { "name": "uni042B", "advanceWidth": 500, "contours": [[{"x":52,"y":0,"on":true},{"x":52,"y":735,"on":true},{"x":132,"y":735,"on":true},{"x":132,"y":440,"on":true},{"x":192,"y":440,"on":false},{"x":236,"y":415,"on":true},{"x":278,"y":391,"on":false},{"x":303,"y":348,"on":true},{"x":333,"y":296,"on":false},{"x":333,"y":145,"on":false},{"x":303,"y":92,"on":true},{"x":278,"y":49,"on":false},{"x":236,"y":25,"on":true},{"x":192,"y":0,"on":false},{"x":132,"y":0,"on":true}],[{"x":132,"y":72,"on":true},{"x":165,"y":72,"on":false},{"x":190,"y":86,"on":true},{"x":215,"y":101,"on":false},{"x":232,"y":129,"on":true},{"x":253,"y":166,"on":false},{"x":253,"y":275,"on":false},{"x":232,"y":312,"on":true},{"x":216,"y":340,"on":false},{"x":190,"y":354,"on":true},{"x":165,"y":368,"on":false},{"x":132,"y":368,"on":true}],[{"x":368,"y":0,"on":true},{"x":368,"y":735,"on":true},{"x":448,"y":735,"on":true},{"x":448,"y":0,"on":true}]], "references": [], - "instructions": [64,51,0,1,0,4,3,1,4,103,5,1,0,0,26,75,0,3,3,2,94,8,6,7,3,2,2,27,2,76,27,27,0,0,27,30,27,30,29,28,26,25,16,15,0,14,0,13,17,17,9,7,22,43] + "instructions": "QDMAAQAEAwEEZwUBAAAaSwADAwJeCAYHAwICGwJMGxsAABseGx4dHBoZEA8ADgANEREJBxYr" }, "uni044B": { "name": "uni044B", "advanceWidth": 500, "contours": [[{"x":52,"y":0,"on":true},{"x":52,"y":530,"on":true},{"x":132,"y":530,"on":true},{"x":132,"y":328,"on":true},{"x":172,"y":328,"on":true},{"x":223,"y":328,"on":false},{"x":259,"y":307,"on":true},{"x":292,"y":288,"on":false},{"x":311,"y":255,"on":true},{"x":333,"y":217,"on":false},{"x":333,"y":111,"on":false},{"x":311,"y":73,"on":true},{"x":292,"y":40,"on":false},{"x":259,"y":21,"on":true},{"x":223,"y":0,"on":false},{"x":172,"y":0,"on":true}],[{"x":132,"y":72,"on":true},{"x":172,"y":72,"on":true},{"x":218,"y":72,"on":false},{"x":240,"y":109,"on":true},{"x":253,"y":131,"on":false},{"x":253,"y":196,"on":false},{"x":240,"y":218,"on":true},{"x":218,"y":256,"on":false},{"x":172,"y":256,"on":true},{"x":132,"y":256,"on":true}],[{"x":368,"y":0,"on":true},{"x":368,"y":530,"on":true},{"x":448,"y":530,"on":true},{"x":448,"y":0,"on":true}]], "references": [], - "instructions": [64,51,0,1,0,4,3,1,4,103,5,1,0,0,28,75,0,3,3,2,94,8,6,7,3,2,2,27,2,76,26,26,0,0,26,29,26,29,28,27,25,23,18,16,0,15,0,14,33,17,9,7,22,43] + "instructions": "QDMAAQAEAwEEZwUBAAAcSwADAwJeCAYHAwICGwJMGhoAABodGh0cGxkXEhAADwAOIREJBxYr" }, "uni0418": { "name": "uni0418", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":441,"on":true},{"x":140,"y":405,"on":false},{"x":137,"y":134,"on":true},{"x":329,"y":735,"on":true},{"x":384,"y":735,"on":false},{"x":440,"y":735,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":294,"on":true},{"x":360,"y":367,"on":false},{"x":362,"y":529,"on":true},{"x":363,"y":574,"on":false},{"x":363,"y":601,"on":true},{"x":171,"y":0,"on":true}]], "references": [], - "instructions": [64,33,15,5,2,2,0,1,74,1,1,0,0,26,75,4,3,2,2,2,27,2,76,0,0,0,16,0,16,17,36,17,5,7,23,43] + "instructions": "QCEPBQICAAFKAQEAABpLBAMCAgIbAkwAAAAQABARJBEFBxcr" }, "glyph543": { "name": "glyph543", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":318,"on":true},{"x":140,"y":292,"on":false},{"x":137,"y":96,"on":true},{"x":329,"y":530,"on":true},{"x":384,"y":530,"on":false},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":212,"on":true},{"x":360,"y":238,"on":false},{"x":363,"y":434,"on":true},{"x":171,"y":0,"on":true}]], "references": [], - "instructions": [64,33,13,5,2,2,0,1,74,1,1,0,0,28,75,4,3,2,2,2,27,2,76,0,0,0,14,0,14,17,36,17,5,7,23,43] + "instructions": "QCENBQICAAFKAQEAABxLBAMCAgIbAkwAAAAOAA4RJBEFBxcr" }, "glyph544": { "name": "glyph544", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0438": { "name": "uni0438", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph543","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0426": { "name": "uni0426", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":72,"on":true},{"x":360,"y":72,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":72,"on":true},{"x":477,"y":72,"on":true},{"x":477,"y":-139,"on":true},{"x":397,"y":-139,"on":true},{"x":397,"y":0,"on":true}]], "references": [], - "instructions": [64,38,0,4,1,4,82,2,1,0,0,26,75,3,1,1,1,5,94,6,1,5,5,27,5,76,0,0,0,11,0,11,17,17,17,17,17,7,7,25,43] + "instructions": "QCYABAEEUgIBAAAaSwMBAQEFXgYBBQUbBUwAAAALAAsREREREQcHGSs=" }, "glyph547": { "name": "glyph547", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":72,"on":true},{"x":360,"y":72,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":72,"on":true},{"x":477,"y":72,"on":true},{"x":477,"y":-139,"on":true},{"x":397,"y":-139,"on":true},{"x":397,"y":0,"on":true}]], "references": [], - "instructions": [64,38,0,4,1,4,82,2,1,0,0,28,75,3,1,1,1,5,94,6,1,5,5,27,5,76,0,0,0,11,0,11,17,17,17,17,17,7,7,25,43] + "instructions": "QCYABAEEUgIBAAAcSwMBAQEFXgYBBQUbBUwAAAALAAsREREREQcHGSs=" }, "glyph548": { "name": "glyph548", "advanceWidth": 500, "contours": [[{"x":60,"y":220,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":72,"on":true},{"x":477,"y":72,"on":true},{"x":477,"y":-139,"on":true},{"x":397,"y":-139,"on":true},{"x":397,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":183,"y":-8,"on":false},{"x":152,"y":10,"on":true},{"x":117,"y":30,"on":false},{"x":94,"y":70,"on":true},{"x":60,"y":129,"on":false}]], "references": [], - "instructions": [179,19,1,1,48,43] + "instructions": "sxMBATAr" }, "uni0446": { "name": "uni0446", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph547","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni040F": { "name": "uni040F", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":72,"on":true},{"x":360,"y":72,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":0,"on":true},{"x":290,"y":0,"on":true},{"x":290,"y":-205,"on":true},{"x":210,"y":-205,"on":true},{"x":210,"y":0,"on":true}]], "references": [], - "instructions": [64,38,2,1,0,0,26,75,0,1,1,3,94,6,5,2,3,3,27,75,0,4,4,30,4,76,0,0,0,11,0,11,17,17,17,17,17,7,7,25,43] + "instructions": "QCYCAQAAGksAAQEDXgYFAgMDG0sABAQeBEwAAAALAAsREREREQcHGSs=" }, "glyph551": { "name": "glyph551", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":72,"on":true},{"x":360,"y":72,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":290,"y":0,"on":true},{"x":290,"y":-205,"on":true},{"x":210,"y":-205,"on":true},{"x":210,"y":0,"on":true}]], "references": [], - "instructions": [64,38,2,1,0,0,28,75,0,1,1,3,94,6,5,2,3,3,27,75,0,4,4,30,4,76,0,0,0,11,0,11,17,17,17,17,17,7,7,25,43] + "instructions": "QCYCAQAAHEsAAQEDXgYFAgMDG0sABAQeBEwAAAALAAsREREREQcHGSs=" }, "glyph552": { "name": "glyph552", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,226,176,51,43] + "instructions": "sQEBuPzisDMr" }, "uni045F": { "name": "uni045F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph551","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0414": { "name": "uni0414", "advanceWidth": 500, "contours": [[{"x":41,"y":72,"on":true},{"x":58,"y":72,"on":true},{"x":68,"y":122,"on":true},{"x":114,"y":354,"on":false},{"x":114,"y":665,"on":true},{"x":114,"y":735,"on":true},{"x":421,"y":735,"on":true},{"x":421,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":-139,"on":true},{"x":360,"y":-139,"on":true},{"x":360,"y":0,"on":true},{"x":121,"y":0,"on":true},{"x":121,"y":-139,"on":true},{"x":41,"y":-139,"on":true}],[{"x":140,"y":72,"on":true},{"x":341,"y":72,"on":true},{"x":341,"y":663,"on":true},{"x":194,"y":663,"on":true},{"x":194,"y":347,"on":false},{"x":147,"y":108,"on":true}]], "references": [], - "instructions": [64,40,5,1,3,0,3,81,0,7,7,1,93,0,1,1,26,75,6,2,2,0,0,4,93,0,4,4,27,4,76,17,17,17,17,17,17,20,16,8,7,28,43] + "instructions": "QCgFAQMAA1EABwcBXQABARpLBgICAAAEXQAEBBsETBERERERERQQCAccKw==" }, "glyph555": { "name": "glyph555", "advanceWidth": 500, "contours": [[{"x":41,"y":72,"on":true},{"x":61,"y":72,"on":true},{"x":69,"y":101,"on":true},{"x":114,"y":262,"on":false},{"x":114,"y":481,"on":true},{"x":114,"y":530,"on":true},{"x":421,"y":530,"on":true},{"x":421,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":-139,"on":true},{"x":360,"y":-139,"on":true},{"x":360,"y":0,"on":true},{"x":121,"y":0,"on":true},{"x":121,"y":-139,"on":true},{"x":41,"y":-139,"on":true}],[{"x":143,"y":72,"on":true},{"x":341,"y":72,"on":true},{"x":341,"y":458,"on":true},{"x":194,"y":458,"on":true},{"x":192,"y":245,"on":false},{"x":146,"y":82,"on":true}]], "references": [], - "instructions": [64,40,5,1,3,0,3,81,0,7,7,1,93,0,1,1,28,75,6,2,2,0,0,4,93,0,4,4,27,4,76,17,17,17,17,17,17,20,16,8,7,28,43] + "instructions": "QCgFAQMAA1EABwcBXQABARxLBgICAAAEXQAEBBsETBERERERERQQCAccKw==" }, "glyph556": { "name": "glyph556", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":382,"on":false},{"x":81,"y":432,"on":true},{"x":105,"y":474,"on":false},{"x":146,"y":497,"on":true},{"x":190,"y":522,"on":false},{"x":247,"y":523,"on":true},{"x":291,"y":523,"on":false},{"x":321,"y":505,"on":true},{"x":326,"y":503,"on":false},{"x":330,"y":500,"on":true},{"x":326,"y":509,"on":false},{"x":320,"y":517,"on":true},{"x":277,"y":591,"on":false},{"x":207,"y":632,"on":true},{"x":168,"y":655,"on":false},{"x":123,"y":664,"on":true},{"x":139,"y":735,"on":true},{"x":199,"y":723,"on":false},{"x":252,"y":692,"on":true},{"x":340,"y":641,"on":false},{"x":393,"y":550,"on":true},{"x":448,"y":454,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":307,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":16,"on":true},{"x":110,"y":40,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":159,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":361,"on":false},{"x":348,"y":395,"on":true},{"x":333,"y":422,"on":false},{"x":283,"y":451,"on":false},{"x":249,"y":451,"on":true},{"x":216,"y":451,"on":false},{"x":192,"y":436,"on":true},{"x":167,"y":422,"on":false},{"x":152,"y":396,"on":true},{"x":132,"y":361,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [181,51,40,29,18,2,48,43] + "instructions": "tTMoHRICMCs=" }, "uni0434": { "name": "uni0434", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph555","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni041B": { "name": "uni041B", "advanceWidth": 500, "contours": [[{"x":45,"y":0,"on":true},{"x":45,"y":72,"on":true},{"x":62,"y":72,"on":false},{"x":72,"y":83,"on":true},{"x":86,"y":97,"on":false},{"x":88,"y":175,"on":true},{"x":108,"y":735,"on":true},{"x":421,"y":735,"on":true},{"x":421,"y":0,"on":true},{"x":341,"y":0,"on":true},{"x":341,"y":663,"on":true},{"x":185,"y":663,"on":true},{"x":168,"y":173,"on":true},{"x":165,"y":83,"on":false},{"x":145,"y":48,"on":true},{"x":132,"y":25,"on":false},{"x":112,"y":13,"on":true},{"x":89,"y":0,"on":false}]], "references": [], - "instructions": [64,36,0,3,3,1,93,0,1,1,26,75,0,0,0,2,95,5,4,2,2,2,27,2,76,0,0,0,17,0,17,17,17,20,17,6,7,24,43] + "instructions": "QCQAAwMBXQABARpLAAAAAl8FBAICAhsCTAAAABEAERERFBEGBxgr" }, "uni043B": { "name": "uni043B", "advanceWidth": 500, "contours": [[{"x":45,"y":0,"on":true},{"x":45,"y":72,"on":true},{"x":61,"y":72,"on":false},{"x":72,"y":82,"on":true},{"x":87,"y":97,"on":false},{"x":88,"y":152,"on":true},{"x":88,"y":175,"on":true},{"x":108,"y":530,"on":true},{"x":421,"y":530,"on":true},{"x":421,"y":0,"on":true},{"x":341,"y":0,"on":true},{"x":341,"y":458,"on":true},{"x":184,"y":458,"on":true},{"x":168,"y":171,"on":true},{"x":163,"y":80,"on":false},{"x":144,"y":47,"on":true},{"x":131,"y":25,"on":false},{"x":111,"y":13,"on":true},{"x":89,"y":0,"on":false}]], "references": [], - "instructions": [64,36,0,3,3,1,93,0,1,1,28,75,0,0,0,2,95,5,4,2,2,2,27,2,76,0,0,0,18,0,18,17,17,21,17,6,7,24,43] + "instructions": "QCQAAwMBXQABARxLAAAAAl8FBAICAhsCTAAAABIAEhERFREGBxgr" }, "uni0416": { "name": "uni0416", "advanceWidth": 500, "contours": [[{"x":28,"y":0,"on":true},{"x":117,"y":368,"on":true},{"x":28,"y":735,"on":true},{"x":108,"y":735,"on":true},{"x":188,"y":404,"on":true},{"x":210,"y":404,"on":true},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":404,"on":true},{"x":312,"y":404,"on":true},{"x":392,"y":735,"on":true},{"x":472,"y":735,"on":true},{"x":383,"y":368,"on":true},{"x":472,"y":0,"on":true},{"x":392,"y":0,"on":true},{"x":312,"y":332,"on":true},{"x":290,"y":332,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":332,"on":true},{"x":188,"y":332,"on":true},{"x":108,"y":0,"on":true}]], "references": [], - "instructions": [64,51,12,1,2,6,1,1,74,3,1,1,8,1,6,5,1,6,101,4,2,2,0,0,26,75,10,9,7,3,5,5,27,5,76,0,0,0,21,0,21,17,17,17,18,17,17,17,17,18,11,7,29,43] + "instructions": "QDMMAQIGAQFKAwEBCAEGBQEGZQQCAgAAGksKCQcDBQUbBUwAAAAVABURERESERERERILBx0r" }, "uni0496": { "name": "uni0496", "advanceWidth": 500, "contours": [[{"x":28,"y":0,"on":true},{"x":117,"y":368,"on":true},{"x":28,"y":735,"on":true},{"x":108,"y":735,"on":true},{"x":188,"y":404,"on":true},{"x":210,"y":404,"on":true},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":404,"on":true},{"x":312,"y":404,"on":true},{"x":392,"y":735,"on":true},{"x":472,"y":735,"on":true},{"x":383,"y":368,"on":true},{"x":455,"y":72,"on":true},{"x":528,"y":72,"on":true},{"x":528,"y":-139,"on":true},{"x":448,"y":-139,"on":true},{"x":448,"y":0,"on":true},{"x":392,"y":0,"on":true},{"x":312,"y":332,"on":true},{"x":290,"y":332,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":332,"on":true},{"x":188,"y":332,"on":true},{"x":108,"y":0,"on":true}]], "references": [], - "instructions": [64,62,12,1,2,8,1,1,74,3,1,1,10,1,8,5,1,8,101,0,5,0,6,5,6,97,4,2,2,0,0,26,75,12,11,9,3,7,7,27,7,76,0,0,0,25,0,25,24,23,22,21,17,17,17,18,17,17,17,17,18,13,7,29,43] + "instructions": "QD4MAQIIAQFKAwEBCgEIBQEIZQAFAAYFBmEEAgIAABpLDAsJAwcHGwdMAAAAGQAZGBcWFRERERIREREREg0HHSs=" }, "uni0436": { "name": "uni0436", "advanceWidth": 500, "contours": [[{"x":28,"y":0,"on":true},{"x":117,"y":265,"on":true},{"x":28,"y":530,"on":true},{"x":108,"y":530,"on":true},{"x":185,"y":301,"on":true},{"x":210,"y":301,"on":true},{"x":210,"y":530,"on":true},{"x":290,"y":530,"on":true},{"x":290,"y":301,"on":true},{"x":315,"y":301,"on":true},{"x":392,"y":530,"on":true},{"x":472,"y":530,"on":true},{"x":383,"y":265,"on":true},{"x":472,"y":0,"on":true},{"x":392,"y":0,"on":true},{"x":315,"y":229,"on":true},{"x":290,"y":229,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":229,"on":true},{"x":185,"y":229,"on":true},{"x":108,"y":0,"on":true}]], "references": [], - "instructions": [64,51,12,1,2,6,1,1,74,3,1,1,8,1,6,5,1,6,101,4,2,2,0,0,28,75,10,9,7,3,5,5,27,5,76,0,0,0,21,0,21,17,17,17,18,17,17,17,17,18,11,7,29,43] + "instructions": "QDMMAQIGAQFKAwEBCAEGBQEGZQQCAgAAHEsKCQcDBQUbBUwAAAAVABURERESERERERILBx0r" }, "uni0497": { "name": "uni0497", "advanceWidth": 500, "contours": [[{"x":28,"y":0,"on":true},{"x":117,"y":265,"on":true},{"x":28,"y":530,"on":true},{"x":108,"y":530,"on":true},{"x":185,"y":301,"on":true},{"x":210,"y":301,"on":true},{"x":210,"y":530,"on":true},{"x":290,"y":530,"on":true},{"x":290,"y":301,"on":true},{"x":315,"y":301,"on":true},{"x":392,"y":530,"on":true},{"x":472,"y":530,"on":true},{"x":383,"y":265,"on":true},{"x":448,"y":72,"on":true},{"x":528,"y":72,"on":true},{"x":528,"y":-139,"on":true},{"x":448,"y":-139,"on":true},{"x":448,"y":0,"on":true},{"x":392,"y":0,"on":true},{"x":315,"y":229,"on":true},{"x":290,"y":229,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":229,"on":true},{"x":185,"y":229,"on":true},{"x":108,"y":0,"on":true}]], "references": [], - "instructions": [64,62,12,1,2,8,1,1,74,3,1,1,10,1,8,5,1,8,101,0,5,0,6,5,6,97,4,2,2,0,0,28,75,12,11,9,3,7,7,27,7,76,0,0,0,25,0,25,24,23,22,21,17,17,17,18,17,17,17,17,18,13,7,29,43] + "instructions": "QD4MAQIIAQFKAwEBCgEIBQEIZQAFAAYFBmEEAgIAABxLDAsJAwcHGwdMAAAAGQAZGBcWFRERERIREREREg0HHSs=" }, "uni046A": { "name": "uni046A", "advanceWidth": 500, "contours": [[{"x":28,"y":0,"on":true},{"x":117,"y":423,"on":true},{"x":170,"y":423,"on":true},{"x":44,"y":735,"on":true},{"x":456,"y":735,"on":true},{"x":330,"y":423,"on":true},{"x":383,"y":423,"on":true},{"x":472,"y":0,"on":true},{"x":392,"y":0,"on":true},{"x":318,"y":351,"on":true},{"x":290,"y":351,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":351,"on":true},{"x":182,"y":351,"on":true},{"x":108,"y":0,"on":true}],[{"x":153,"y":663,"on":true},{"x":250,"y":423,"on":true},{"x":347,"y":663,"on":true}]], "references": [], - "instructions": [64,64,17,1,0,1,73,2,1,0,8,4,8,0,4,126,6,1,4,3,8,4,3,124,10,1,8,8,1,93,0,1,1,26,75,9,7,5,3,3,3,27,3,76,16,16,0,0,16,18,16,18,0,15,0,15,17,17,17,17,17,17,17,11,7,27,43] + "instructions": "QEARAQABSQIBAAgECAAEfgYBBAMIBAN8CgEICAFdAAEBGksJBwUDAwMbA0wQEAAAEBIQEgAPAA8RERERERERCwcbKw==" }, "uni046B": { "name": "uni046B", "advanceWidth": 500, "contours": [[{"x":28,"y":0,"on":true},{"x":117,"y":292,"on":true},{"x":170,"y":292,"on":true},{"x":44,"y":530,"on":true},{"x":456,"y":530,"on":true},{"x":330,"y":292,"on":true},{"x":383,"y":292,"on":true},{"x":472,"y":0,"on":true},{"x":392,"y":0,"on":true},{"x":325,"y":220,"on":true},{"x":290,"y":220,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":220,"on":true},{"x":175,"y":220,"on":true},{"x":108,"y":0,"on":true}],[{"x":162,"y":458,"on":true},{"x":250,"y":292,"on":true},{"x":338,"y":458,"on":true}]], "references": [], - "instructions": [64,64,17,1,0,1,73,2,1,0,8,4,8,0,4,126,6,1,4,3,8,4,3,124,10,1,8,8,1,93,0,1,1,28,75,9,7,5,3,3,3,27,3,76,16,16,0,0,16,18,16,18,0,15,0,15,17,17,17,17,17,17,17,11,7,27,43] + "instructions": "QEARAQABSQIBAAgECAAEfgYBBAMIBAN8CgEICAFdAAEBHEsJBwUDAwMbA0wQEAAAEBIQEgAPAA8RERERERERCwcbKw==" }, "uni0466": { "name": "uni0466", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":74,"on":true},{"x":60,"y":274,"on":false},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":440,"y":274,"on":false},{"x":440,"y":74,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":74,"on":true},{"x":360,"y":160,"on":false},{"x":334,"y":296,"on":true},{"x":290,"y":296,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":296,"on":true},{"x":166,"y":296,"on":true},{"x":140,"y":160,"on":false},{"x":140,"y":74,"on":true},{"x":140,"y":0,"on":true}],[{"x":180,"y":368,"on":true},{"x":320,"y":368,"on":true},{"x":294,"y":490,"on":false},{"x":250,"y":644,"on":true},{"x":206,"y":490,"on":false}]], "references": [], - "instructions": [64,45,23,1,6,0,1,74,0,6,4,1,2,1,6,2,102,0,0,0,26,75,7,5,3,3,1,1,27,1,76,0,0,21,20,0,19,0,19,17,17,19,19,19,8,7,25,43] + "instructions": "QC0XAQYAAUoABgQBAgEGAmYAAAAaSwcFAwMBARsBTAAAFRQAEwATERETExMIBxkr" }, "uni0467": { "name": "uni0467", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":53,"on":true},{"x":60,"y":197,"on":false},{"x":210,"y":530,"on":true},{"x":290,"y":530,"on":true},{"x":440,"y":197,"on":false},{"x":440,"y":53,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":53,"on":true},{"x":360,"y":108,"on":false},{"x":339,"y":193,"on":true},{"x":290,"y":193,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":193,"on":true},{"x":161,"y":193,"on":true},{"x":140,"y":108,"on":false},{"x":140,"y":53,"on":true},{"x":140,"y":0,"on":true}],[{"x":181,"y":265,"on":true},{"x":319,"y":265,"on":true},{"x":293,"y":351,"on":false},{"x":250,"y":460,"on":true},{"x":207,"y":351,"on":false}]], "references": [], - "instructions": [64,45,23,1,6,0,1,74,0,6,4,1,2,1,6,2,102,0,0,0,28,75,7,5,3,3,1,1,27,1,76,0,0,21,20,0,19,0,19,17,17,19,19,19,8,7,25,43] + "instructions": "QC0XAQYAAUoABgQBAgEGAmYAAAAcSwcFAwMBARsBTAAAFRQAEwATERETExMIBxkr" }, "uni0428": { "name": "uni0428", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":72,"on":true},{"x":210,"y":72,"on":true},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":72,"on":true},{"x":360,"y":72,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":0,"on":true}]], "references": [], - "instructions": [64,34,4,2,2,0,0,26,75,3,1,1,1,5,94,6,1,5,5,27,5,76,0,0,0,11,0,11,17,17,17,17,17,7,7,25,43] + "instructions": "QCIEAgIAABpLAwEBAQVeBgEFBRsFTAAAAAsACxERERERBwcZKw==" }, "glyph569": { "name": "glyph569", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":72,"on":true},{"x":210,"y":72,"on":true},{"x":210,"y":530,"on":true},{"x":290,"y":530,"on":true},{"x":290,"y":72,"on":true},{"x":360,"y":72,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true}]], "references": [], - "instructions": [64,34,4,2,2,0,0,28,75,3,1,1,1,5,94,6,1,5,5,27,5,76,0,0,0,11,0,11,17,17,17,17,17,7,7,25,43] + "instructions": "QCIEAgIAABxLAwEBAQVeBgEFBRsFTAAAAAsACxERERERBwcZKw==" }, "glyph570": { "name": "glyph570", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni026F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0448": { "name": "uni0448", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph569","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0429": { "name": "uni0429", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":72,"on":true},{"x":210,"y":72,"on":true},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":72,"on":true},{"x":360,"y":72,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":72,"on":true},{"x":477,"y":72,"on":true},{"x":477,"y":-139,"on":true},{"x":397,"y":-139,"on":true},{"x":397,"y":0,"on":true}]], "references": [], - "instructions": [64,42,0,6,1,6,82,4,2,2,0,0,26,75,5,3,2,1,1,7,94,8,1,7,7,27,7,76,0,0,0,15,0,15,17,17,17,17,17,17,17,9,7,27,43] + "instructions": "QCoABgEGUgQCAgAAGksFAwIBAQdeCAEHBxsHTAAAAA8ADxEREREREREJBxsr" }, "glyph573": { "name": "glyph573", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":72,"on":true},{"x":210,"y":72,"on":true},{"x":210,"y":530,"on":true},{"x":290,"y":530,"on":true},{"x":290,"y":72,"on":true},{"x":360,"y":72,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":72,"on":true},{"x":477,"y":72,"on":true},{"x":477,"y":-139,"on":true},{"x":397,"y":-139,"on":true},{"x":397,"y":0,"on":true}]], "references": [], - "instructions": [64,42,0,6,1,6,82,4,2,2,0,0,28,75,5,3,2,1,1,7,94,8,1,7,7,27,7,76,0,0,0,15,0,15,17,17,17,17,17,17,17,9,7,27,43] + "instructions": "QCoABgEGUgQCAgAAHEsFAwIBAQdeCAEHBxsHTAAAAA8ADxEREREREREJBxsr" }, "glyph574": { "name": "glyph574", "advanceWidth": 500, "contours": [[{"x":52,"y":165,"on":true},{"x":52,"y":530,"on":true},{"x":132,"y":530,"on":true},{"x":132,"y":165,"on":true},{"x":132,"y":94,"on":false},{"x":155,"y":71,"on":true},{"x":162,"y":64,"on":false},{"x":180,"y":64,"on":false},{"x":187,"y":71,"on":true},{"x":210,"y":94,"on":false},{"x":210,"y":165,"on":true},{"x":210,"y":530,"on":true},{"x":290,"y":530,"on":true},{"x":290,"y":165,"on":true},{"x":290,"y":94,"on":false},{"x":313,"y":71,"on":true},{"x":320,"y":64,"on":false},{"x":338,"y":64,"on":false},{"x":345,"y":71,"on":true},{"x":368,"y":94,"on":false},{"x":368,"y":165,"on":true},{"x":368,"y":530,"on":true},{"x":448,"y":530,"on":true},{"x":448,"y":72,"on":true},{"x":477,"y":72,"on":true},{"x":477,"y":-139,"on":true},{"x":397,"y":-139,"on":true},{"x":397,"y":0,"on":true},{"x":368,"y":0,"on":true},{"x":368,"y":34,"on":true},{"x":355,"y":11,"on":false},{"x":336,"y":0,"on":true},{"x":322,"y":-8,"on":false},{"x":304,"y":-8,"on":true},{"x":285,"y":-8,"on":false},{"x":270,"y":1,"on":true},{"x":251,"y":12,"on":false},{"x":237,"y":36,"on":true},{"x":229,"y":49,"on":false},{"x":224,"y":65,"on":true},{"x":218,"y":48,"on":false},{"x":210,"y":34,"on":true},{"x":197,"y":11,"on":false},{"x":178,"y":0,"on":true},{"x":164,"y":-8,"on":false},{"x":146,"y":-8,"on":true},{"x":127,"y":-8,"on":false},{"x":112,"y":1,"on":true},{"x":93,"y":12,"on":false},{"x":79,"y":36,"on":true},{"x":52,"y":83,"on":false}]], "references": [], - "instructions": [179,25,1,1,48,43] + "instructions": "sxkBATAr" }, "uni0449": { "name": "uni0449", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph573","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph576": { "name": "glyph576", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni026F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0442": { "name": "uni0442", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph440","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0427": { "name": "uni0427", "advanceWidth": 500, "contours": [[{"x":60,"y":416,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":416,"on":true},{"x":140,"y":373,"on":false},{"x":157,"y":344,"on":true},{"x":186,"y":293,"on":false},{"x":250,"y":293,"on":true},{"x":360,"y":293,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":221,"on":true},{"x":250,"y":221,"on":true},{"x":190,"y":221,"on":false},{"x":147,"y":246,"on":true},{"x":109,"y":268,"on":false},{"x":86,"y":307,"on":true},{"x":60,"y":352,"on":false}]], "references": [], - "instructions": [64,28,0,1,0,4,3,1,4,101,2,1,0,0,26,75,0,3,3,27,3,76,33,17,17,36,17,5,7,25,43] + "instructions": "QBwAAQAEAwEEZQIBAAAaSwADAxsDTCERESQRBQcZKw==" }, "uni04B6": { "name": "uni04B6", "advanceWidth": 500, "contours": [[{"x":60,"y":416,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":416,"on":true},{"x":140,"y":373,"on":false},{"x":157,"y":344,"on":true},{"x":186,"y":293,"on":false},{"x":250,"y":293,"on":true},{"x":360,"y":293,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":72,"on":true},{"x":496,"y":72,"on":true},{"x":496,"y":-139,"on":true},{"x":416,"y":-139,"on":true},{"x":416,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":221,"on":true},{"x":250,"y":221,"on":true},{"x":190,"y":221,"on":false},{"x":147,"y":246,"on":true},{"x":109,"y":268,"on":false},{"x":86,"y":307,"on":true},{"x":60,"y":352,"on":false}]], "references": [], - "instructions": [64,37,0,1,0,6,3,1,6,101,0,3,0,4,3,4,97,2,1,0,0,26,75,0,5,5,27,5,76,33,17,17,17,17,36,17,7,7,27,43] + "instructions": "QCUAAQAGAwEGZQADAAQDBGECAQAAGksABQUbBUwhERERESQRBwcbKw==" }, "uni0447": { "name": "uni0447", "advanceWidth": 500, "contours": [[{"x":60,"y":371,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":371,"on":true},{"x":140,"y":328,"on":false},{"x":157,"y":299,"on":true},{"x":186,"y":248,"on":false},{"x":250,"y":248,"on":true},{"x":360,"y":248,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":176,"on":true},{"x":250,"y":176,"on":true},{"x":190,"y":176,"on":false},{"x":147,"y":201,"on":true},{"x":109,"y":223,"on":false},{"x":86,"y":262,"on":true},{"x":60,"y":307,"on":false}]], "references": [], - "instructions": [64,28,0,1,0,4,3,1,4,101,2,1,0,0,28,75,0,3,3,27,3,76,33,17,17,36,17,5,7,25,43] + "instructions": "QBwAAQAEAwEEZQIBAAAcSwADAxsDTCERESQRBQcZKw==" }, "uni04B7": { "name": "uni04B7", "advanceWidth": 500, "contours": [[{"x":60,"y":371,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":371,"on":true},{"x":140,"y":328,"on":false},{"x":157,"y":299,"on":true},{"x":186,"y":248,"on":false},{"x":250,"y":248,"on":true},{"x":360,"y":248,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":72,"on":true},{"x":496,"y":72,"on":true},{"x":496,"y":-139,"on":true},{"x":416,"y":-139,"on":true},{"x":416,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":176,"on":true},{"x":250,"y":176,"on":true},{"x":190,"y":176,"on":false},{"x":147,"y":201,"on":true},{"x":109,"y":223,"on":false},{"x":86,"y":262,"on":true},{"x":60,"y":307,"on":false}]], "references": [], - "instructions": [64,37,0,1,0,6,3,1,6,101,0,3,0,4,3,4,97,2,1,0,0,28,75,0,5,5,27,5,76,33,17,17,17,17,36,17,7,7,27,43] + "instructions": "QCUAAQAGAwEGZQADAAQDBGECAQAAHEsABQUbBUwhERERESQRBwcbKw==" }, "uni04BA": { "name": "uni04BA", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":514,"on":true},{"x":250,"y":514,"on":true},{"x":310,"y":514,"on":false},{"x":353,"y":489,"on":true},{"x":391,"y":467,"on":false},{"x":414,"y":428,"on":true},{"x":440,"y":383,"on":false},{"x":440,"y":319,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":319,"on":true},{"x":360,"y":362,"on":false},{"x":343,"y":391,"on":true},{"x":314,"y":442,"on":false},{"x":250,"y":442,"on":true},{"x":140,"y":442,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [75,176,31,80,88,64,23,0,0,0,26,75,0,3,3,1,93,0,1,1,28,75,5,4,2,2,2,27,2,76,27,64,21,0,1,0,3,2,1,3,101,0,0,0,26,75,5,4,2,2,2,27,2,76,89,64,13,0,0,0,19,0,19,36,22,33,17,6,7,24,43] + "instructions": "S7AfUFhAFwAAABpLAAMDAV0AAQEcSwUEAgICGwJMG0AVAAEAAwIBA2UAAAAaSwUEAgICGwJMWUANAAAAEwATJBYhEQYHGCs=" }, "uni04B8": { "name": "uni04B8", "advanceWidth": 500, "contours": [[{"x":60,"y":416,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":416,"on":true},{"x":140,"y":373,"on":false},{"x":157,"y":344,"on":true},{"x":171,"y":320,"on":false},{"x":193,"y":307,"on":true},{"x":201,"y":302,"on":false},{"x":210,"y":300,"on":true},{"x":210,"y":404,"on":true},{"x":290,"y":404,"on":true},{"x":290,"y":293,"on":true},{"x":360,"y":293,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":221,"on":true},{"x":290,"y":221,"on":true},{"x":290,"y":124,"on":true},{"x":210,"y":124,"on":true},{"x":210,"y":224,"on":true},{"x":175,"y":230,"on":false},{"x":147,"y":246,"on":true},{"x":109,"y":268,"on":false},{"x":86,"y":307,"on":true},{"x":60,"y":352,"on":false}]], "references": [], - "instructions": [64,48,9,1,2,1,22,1,5,2,2,74,0,2,0,5,6,2,5,101,0,1,0,6,4,1,6,101,3,1,0,0,26,75,0,4,4,27,4,76,17,17,17,17,17,24,17,7,7,27,43] + "instructions": "QDAJAQIBFgEFAgJKAAIABQYCBWUAAQAGBAEGZQMBAAAaSwAEBBsETBERERERGBEHBxsr" }, "uni04B9": { "name": "uni04B9", "advanceWidth": 500, "contours": [[{"x":60,"y":371,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":371,"on":true},{"x":140,"y":328,"on":false},{"x":157,"y":299,"on":true},{"x":171,"y":275,"on":false},{"x":193,"y":262,"on":true},{"x":201,"y":257,"on":false},{"x":210,"y":254,"on":true},{"x":210,"y":333,"on":true},{"x":290,"y":333,"on":true},{"x":290,"y":248,"on":true},{"x":360,"y":248,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":176,"on":true},{"x":290,"y":176,"on":true},{"x":290,"y":53,"on":true},{"x":210,"y":53,"on":true},{"x":210,"y":179,"on":true},{"x":175,"y":185,"on":false},{"x":147,"y":201,"on":true},{"x":109,"y":223,"on":false},{"x":86,"y":262,"on":true},{"x":60,"y":307,"on":false}]], "references": [], - "instructions": [64,48,9,1,2,1,22,1,5,2,2,74,0,2,0,5,6,2,5,101,0,1,0,6,4,1,6,101,3,1,0,0,28,75,0,4,4,27,4,76,17,17,17,17,17,24,17,7,7,27,43] + "instructions": "QDAJAQIBFgEFAgJKAAIABQYCBWUAAQAGBAEGZQMBAAAcSwAEBBsETBERERERGBEHBxsr" }, "uni042E": { "name": "uni042E", "advanceWidth": 500, "contours": [[{"x":52,"y":0,"on":true},{"x":52,"y":735,"on":true},{"x":132,"y":735,"on":true},{"x":132,"y":404,"on":true},{"x":179,"y":404,"on":true},{"x":179,"y":579,"on":true},{"x":179,"y":638,"on":false},{"x":203,"y":678,"on":true},{"x":221,"y":709,"on":false},{"x":278,"y":743,"on":false},{"x":357,"y":743,"on":false},{"x":415,"y":710,"on":false},{"x":433,"y":678,"on":true},{"x":456,"y":638,"on":false},{"x":456,"y":579,"on":true},{"x":456,"y":156,"on":true},{"x":456,"y":97,"on":false},{"x":433,"y":57,"on":true},{"x":415,"y":26,"on":false},{"x":357,"y":-8,"on":false},{"x":278,"y":-8,"on":false},{"x":220,"y":25,"on":false},{"x":203,"y":57,"on":true},{"x":180,"y":97,"on":false},{"x":179,"y":156,"on":true},{"x":179,"y":332,"on":true},{"x":132,"y":332,"on":true},{"x":132,"y":0,"on":true}],[{"x":259,"y":156,"on":true},{"x":259,"y":102,"on":false},{"x":284,"y":78,"on":true},{"x":298,"y":64,"on":false},{"x":338,"y":64,"on":false},{"x":352,"y":78,"on":true},{"x":376,"y":102,"on":false},{"x":376,"y":156,"on":true},{"x":376,"y":579,"on":true},{"x":376,"y":633,"on":false},{"x":352,"y":657,"on":true},{"x":338,"y":671,"on":false},{"x":298,"y":671,"on":false},{"x":284,"y":657,"on":true},{"x":260,"y":633,"on":false},{"x":259,"y":579,"on":true}]], "references": [], - "instructions": [75,176,29,80,88,64,32,0,1,0,4,6,1,4,101,0,7,7,0,95,2,1,0,0,26,75,0,6,6,3,95,8,5,2,3,3,34,3,76,27,64,40,0,1,0,4,6,1,4,101,0,0,0,26,75,0,7,7,2,95,0,2,2,33,75,8,1,5,5,27,75,0,6,6,3,95,0,3,3,34,3,76,89,64,18,0,0,40,39,32,31,0,27,0,27,21,25,21,17,17,9,7,25,43] + "instructions": "S7AdUFhAIAABAAQGAQRlAAcHAF8CAQAAGksABgYDXwgFAgMDIgNMG0AoAAEABAYBBGUAAAAaSwAHBwJfAAICIUsIAQUFG0sABgYDXwADAyIDTFlAEgAAKCcgHwAbABsVGRUREQkHGSs=" }, "uni044E": { "name": "uni044E", "advanceWidth": 500, "contours": [[{"x":52,"y":0,"on":true},{"x":52,"y":530,"on":true},{"x":132,"y":530,"on":true},{"x":132,"y":301,"on":true},{"x":179,"y":301,"on":true},{"x":179,"y":354,"on":true},{"x":179,"y":426,"on":false},{"x":206,"y":473,"on":true},{"x":225,"y":506,"on":false},{"x":255,"y":522,"on":true},{"x":282,"y":538,"on":false},{"x":354,"y":538,"on":false},{"x":381,"y":522,"on":true},{"x":410,"y":505,"on":false},{"x":429,"y":473,"on":true},{"x":456,"y":426,"on":false},{"x":456,"y":354,"on":true},{"x":456,"y":176,"on":true},{"x":456,"y":104,"on":false},{"x":429,"y":57,"on":true},{"x":410,"y":24,"on":false},{"x":381,"y":8,"on":true},{"x":354,"y":-8,"on":false},{"x":282,"y":-8,"on":false},{"x":255,"y":8,"on":true},{"x":226,"y":25,"on":false},{"x":206,"y":57,"on":true},{"x":179,"y":104,"on":false},{"x":179,"y":176,"on":true},{"x":179,"y":229,"on":true},{"x":132,"y":229,"on":true},{"x":132,"y":0,"on":true}],[{"x":259,"y":176,"on":true},{"x":259,"y":105,"on":false},{"x":288,"y":77,"on":true},{"x":301,"y":64,"on":false},{"x":335,"y":64,"on":false},{"x":348,"y":77,"on":true},{"x":376,"y":105,"on":false},{"x":376,"y":176,"on":true},{"x":376,"y":354,"on":true},{"x":376,"y":425,"on":false},{"x":348,"y":453,"on":true},{"x":335,"y":466,"on":false},{"x":300,"y":466,"on":false},{"x":288,"y":453,"on":true},{"x":260,"y":425,"on":false},{"x":259,"y":354,"on":true}]], "references": [], - "instructions": [75,176,29,80,88,64,32,0,1,0,4,6,1,4,101,0,7,7,0,95,2,1,0,0,28,75,0,6,6,3,95,8,5,2,3,3,34,3,76,27,64,40,0,1,0,4,6,1,4,101,0,0,0,28,75,0,7,7,2,95,0,2,2,35,75,8,1,5,5,27,75,0,6,6,3,95,0,3,3,34,3,76,89,64,18,0,0,44,43,36,35,0,31,0,31,22,27,22,17,17,9,7,25,43] + "instructions": "S7AdUFhAIAABAAQGAQRlAAcHAF8CAQAAHEsABgYDXwgFAgMDIgNMG0AoAAEABAYBBGUAAAAcSwAHBwJfAAICI0sIAQUFG0sABgYDXwADAyIDTFlAEgAALCskIwAfAB8WGxYREQkHGSs=" }, "uni0409": { "name": "uni0409", "advanceWidth": 500, "contours": [[{"x":30,"y":0,"on":true},{"x":30,"y":72,"on":true},{"x":44,"y":72,"on":false},{"x":54,"y":82,"on":true},{"x":69,"y":97,"on":false},{"x":69,"y":153,"on":true},{"x":70,"y":168,"on":false},{"x":70,"y":175,"on":true},{"x":88,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":440,"on":true},{"x":333,"y":440,"on":false},{"x":366,"y":421,"on":true},{"x":401,"y":401,"on":false},{"x":424,"y":362,"on":true},{"x":456,"y":306,"on":false},{"x":456,"y":134,"on":false},{"x":424,"y":78,"on":true},{"x":401,"y":39,"on":false},{"x":366,"y":19,"on":true},{"x":333,"y":0,"on":false},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":663,"on":true},{"x":166,"y":663,"on":true},{"x":149,"y":173,"on":true},{"x":146,"y":81,"on":false},{"x":126,"y":46,"on":true},{"x":113,"y":24,"on":false},{"x":94,"y":13,"on":true},{"x":72,"y":0,"on":false}],[{"x":290,"y":72,"on":true},{"x":308,"y":72,"on":false},{"x":323,"y":80,"on":true},{"x":340,"y":90,"on":false},{"x":353,"y":112,"on":true},{"x":376,"y":152,"on":false},{"x":376,"y":288,"on":false},{"x":353,"y":328,"on":true},{"x":340,"y":350,"on":false},{"x":323,"y":360,"on":true},{"x":308,"y":368,"on":false},{"x":290,"y":368,"on":true}]], "references": [], - "instructions": [64,50,0,2,0,7,0,2,7,103,0,4,4,1,93,0,1,1,26,75,6,1,0,0,3,95,8,5,2,3,3,27,3,76,0,0,42,41,32,31,0,30,0,30,17,41,17,22,17,9,7,25,43] + "instructions": "QDIAAgAHAAIHZwAEBAFdAAEBGksGAQAAA18IBQIDAxsDTAAAKikgHwAeAB4RKREWEQkHGSs=" }, "uni0459": { "name": "uni0459", "advanceWidth": 500, "contours": [[{"x":30,"y":0,"on":true},{"x":30,"y":72,"on":true},{"x":44,"y":72,"on":false},{"x":54,"y":82,"on":true},{"x":68,"y":96,"on":false},{"x":69,"y":148,"on":true},{"x":70,"y":166,"on":false},{"x":70,"y":175,"on":true},{"x":88,"y":530,"on":true},{"x":290,"y":530,"on":true},{"x":290,"y":328,"on":true},{"x":305,"y":328,"on":true},{"x":350,"y":328,"on":false},{"x":384,"y":308,"on":true},{"x":415,"y":290,"on":false},{"x":434,"y":258,"on":true},{"x":456,"y":219,"on":false},{"x":456,"y":108,"on":false},{"x":434,"y":69,"on":true},{"x":415,"y":37,"on":false},{"x":384,"y":19,"on":true},{"x":351,"y":0,"on":false},{"x":305,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":458,"on":true},{"x":165,"y":458,"on":true},{"x":149,"y":171,"on":true},{"x":144,"y":78,"on":false},{"x":125,"y":45,"on":true},{"x":112,"y":23,"on":false},{"x":94,"y":12,"on":true},{"x":72,"y":0,"on":false}],[{"x":290,"y":72,"on":true},{"x":305,"y":72,"on":true},{"x":324,"y":72,"on":false},{"x":338,"y":80,"on":true},{"x":353,"y":89,"on":false},{"x":363,"y":105,"on":true},{"x":376,"y":128,"on":false},{"x":376,"y":199,"on":false},{"x":363,"y":222,"on":true},{"x":353,"y":239,"on":false},{"x":338,"y":247,"on":true},{"x":324,"y":256,"on":false},{"x":305,"y":256,"on":true},{"x":290,"y":256,"on":true}]], "references": [], - "instructions": [64,50,0,2,0,7,0,2,7,103,0,4,4,1,93,0,1,1,28,75,6,1,0,0,3,95,8,5,2,3,3,27,3,76,0,0,45,43,34,32,0,31,0,31,17,41,33,22,17,9,7,25,43] + "instructions": "QDIAAgAHAAIHZwAEBAFdAAEBHEsGAQAAA18IBQIDAxsDTAAALSsiIAAfAB8RKSEWEQkHGSs=" }, "uni040A": { "name": "uni040A", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":404,"on":true},{"x":210,"y":404,"on":true},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":440,"on":true},{"x":333,"y":440,"on":false},{"x":366,"y":421,"on":true},{"x":401,"y":401,"on":false},{"x":424,"y":362,"on":true},{"x":456,"y":306,"on":false},{"x":456,"y":134,"on":false},{"x":424,"y":78,"on":true},{"x":401,"y":39,"on":false},{"x":366,"y":19,"on":true},{"x":333,"y":0,"on":false},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":332,"on":true},{"x":140,"y":332,"on":true},{"x":140,"y":0,"on":true}],[{"x":290,"y":72,"on":true},{"x":308,"y":72,"on":false},{"x":323,"y":80,"on":true},{"x":340,"y":90,"on":false},{"x":353,"y":112,"on":true},{"x":376,"y":152,"on":false},{"x":376,"y":288,"on":false},{"x":353,"y":328,"on":true},{"x":340,"y":350,"on":false},{"x":323,"y":360,"on":true},{"x":308,"y":368,"on":false},{"x":290,"y":368,"on":true}]], "references": [], - "instructions": [64,54,0,3,0,8,5,3,8,103,0,1,0,5,7,1,5,101,2,1,0,0,26,75,0,7,7,4,94,9,6,2,4,4,27,4,76,0,0,34,33,24,23,0,22,0,22,17,41,17,17,17,17,10,7,26,43] + "instructions": "QDYAAwAIBQMIZwABAAUHAQVlAgEAABpLAAcHBF4JBgIEBBsETAAAIiEYFwAWABYRKREREREKBxor" }, "uni045A": { "name": "uni045A", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":301,"on":true},{"x":210,"y":301,"on":true},{"x":210,"y":530,"on":true},{"x":290,"y":530,"on":true},{"x":290,"y":328,"on":true},{"x":305,"y":328,"on":true},{"x":350,"y":328,"on":false},{"x":384,"y":308,"on":true},{"x":415,"y":290,"on":false},{"x":434,"y":258,"on":true},{"x":456,"y":219,"on":false},{"x":456,"y":108,"on":false},{"x":434,"y":69,"on":true},{"x":415,"y":37,"on":false},{"x":384,"y":19,"on":true},{"x":351,"y":0,"on":false},{"x":305,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":229,"on":true},{"x":140,"y":229,"on":true},{"x":140,"y":0,"on":true}],[{"x":290,"y":72,"on":true},{"x":305,"y":72,"on":true},{"x":324,"y":72,"on":false},{"x":338,"y":80,"on":true},{"x":353,"y":89,"on":false},{"x":363,"y":105,"on":true},{"x":376,"y":128,"on":false},{"x":376,"y":199,"on":false},{"x":363,"y":222,"on":true},{"x":353,"y":239,"on":false},{"x":338,"y":247,"on":true},{"x":324,"y":256,"on":false},{"x":305,"y":256,"on":true},{"x":290,"y":256,"on":true}]], "references": [], - "instructions": [64,54,0,3,0,8,5,3,8,103,0,1,0,5,7,1,5,101,2,1,0,0,28,75,0,7,7,4,94,9,6,2,4,4,27,4,76,0,0,37,35,26,24,0,23,0,23,17,41,33,17,17,17,10,7,26,43] + "instructions": "QDYAAwAIBQMIZwABAAUHAQVlAgEAABxLAAcHBF4JBgIEBBsETAAAJSMaGAAXABcRKSEREREKBxor" }, "uni040B": { "name": "uni040B", "advanceWidth": 500, "contours": [[{"x":52,"y":663,"on":true},{"x":52,"y":735,"on":true},{"x":266,"y":735,"on":true},{"x":266,"y":663,"on":true},{"x":189,"y":663,"on":true},{"x":189,"y":461,"on":true},{"x":191,"y":465,"on":false},{"x":193,"y":469,"on":true},{"x":214,"y":505,"on":false},{"x":245,"y":523,"on":true},{"x":270,"y":538,"on":false},{"x":336,"y":538,"on":false},{"x":362,"y":523,"on":true},{"x":392,"y":506,"on":false},{"x":413,"y":469,"on":true},{"x":448,"y":408,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":0,"on":true},{"x":368,"y":0,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":382,"on":false},{"x":344,"y":424,"on":true},{"x":331,"y":447,"on":false},{"x":312,"y":457,"on":true},{"x":297,"y":466,"on":false},{"x":260,"y":466,"on":false},{"x":245,"y":457,"on":true},{"x":227,"y":446,"on":false},{"x":213,"y":424,"on":true},{"x":189,"y":382,"on":false},{"x":189,"y":310,"on":true},{"x":189,"y":0,"on":true},{"x":109,"y":0,"on":true},{"x":109,"y":663,"on":true}]], "references": [], - "instructions": [64,50,5,1,3,4,1,74,7,6,2,1,1,0,93,0,0,0,26,75,0,4,4,2,95,0,2,2,35,75,5,1,3,3,27,3,76,0,0,0,33,0,33,22,22,22,22,17,17,8,7,26,43] + "instructions": "QDIFAQMEAUoHBgIBAQBdAAAAGksABAQCXwACAiNLBQEDAxsDTAAAACEAIRYWFhYREQgHGis=" }, "uni0402": { "name": "uni0402", "advanceWidth": 500, "contours": [[{"x":52,"y":663,"on":true},{"x":52,"y":735,"on":true},{"x":266,"y":735,"on":true},{"x":266,"y":663,"on":true},{"x":189,"y":663,"on":true},{"x":189,"y":469,"on":true},{"x":209,"y":504,"on":false},{"x":240,"y":522,"on":true},{"x":268,"y":538,"on":false},{"x":342,"y":538,"on":false},{"x":370,"y":522,"on":true},{"x":401,"y":504,"on":false},{"x":422,"y":469,"on":true},{"x":452,"y":417,"on":false},{"x":452,"y":335,"on":true},{"x":452,"y":183,"on":true},{"x":452,"y":118,"on":false},{"x":426,"y":73,"on":true},{"x":404,"y":36,"on":false},{"x":368,"y":15,"on":true},{"x":329,"y":-8,"on":false},{"x":277,"y":-8,"on":true},{"x":276,"y":64,"on":true},{"x":302,"y":64,"on":false},{"x":322,"y":76,"on":true},{"x":342,"y":87,"on":false},{"x":355,"y":109,"on":true},{"x":372,"y":139,"on":false},{"x":372,"y":183,"on":true},{"x":372,"y":335,"on":true},{"x":372,"y":389,"on":false},{"x":352,"y":423,"on":true},{"x":339,"y":445,"on":false},{"x":320,"y":456,"on":true},{"x":303,"y":466,"on":false},{"x":258,"y":466,"on":false},{"x":241,"y":456,"on":true},{"x":222,"y":445,"on":false},{"x":209,"y":423,"on":true},{"x":189,"y":389,"on":false},{"x":189,"y":335,"on":true},{"x":189,"y":0,"on":true},{"x":109,"y":0,"on":true},{"x":109,"y":663,"on":true}]], "references": [], - "instructions": [181,5,1,5,2,1,74,75,176,29,80,88,64,34,8,7,2,1,1,0,93,0,0,0,26,75,0,5,5,2,95,0,2,2,35,75,0,4,4,3,95,6,1,3,3,34,3,76,27,64,38,8,7,2,1,1,0,93,0,0,0,26,75,0,5,5,2,95,0,2,2,35,75,0,6,6,27,75,0,4,4,3,95,0,3,3,34,3,76,89,64,16,0,0,0,43,0,43,22,27,17,27,20,17,17,9,7,27,43] + "instructions": "tQUBBQIBSkuwHVBYQCIIBwIBAQBdAAAAGksABQUCXwACAiNLAAQEA18GAQMDIgNMG0AmCAcCAQEAXQAAABpLAAUFAl8AAgIjSwAGBhtLAAQEA18AAwMiA0xZQBAAAAArACsWGxEbFBERCQcbKw==" }, "uni0452": { "name": "uni0452", "advanceWidth": 500, "contours": [[{"x":18,"y":586,"on":true},{"x":18,"y":658,"on":true},{"x":60,"y":658,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":658,"on":true},{"x":250,"y":658,"on":true},{"x":250,"y":586,"on":true},{"x":140,"y":586,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":317,"y":538,"on":false},{"x":348,"y":520,"on":true},{"x":383,"y":500,"on":false},{"x":406,"y":460,"on":true},{"x":440,"y":401,"on":false},{"x":440,"y":310,"on":true},{"x":440,"y":0,"on":true},{"x":440,"y":-54,"on":false},{"x":416,"y":-95,"on":true},{"x":393,"y":-134,"on":false},{"x":351,"y":-159,"on":true},{"x":296,"y":-191,"on":false},{"x":214,"y":-191,"on":true},{"x":214,"y":-119,"on":true},{"x":268,"y":-119,"on":false},{"x":304,"y":-98,"on":true},{"x":331,"y":-82,"on":false},{"x":346,"y":-58,"on":true},{"x":360,"y":-33,"on":false},{"x":360,"y":0,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":374,"on":false},{"x":140,"y":310,"on":true},{"x":140,"y":0,"on":true},{"x":60,"y":0,"on":true},{"x":60,"y":586,"on":true}]], "references": [], - "instructions": [181,9,1,8,7,1,74,75,176,35,80,88,64,42,2,1,0,10,9,2,3,4,0,3,101,0,1,1,26,75,0,7,7,4,95,0,4,4,35,75,0,8,8,27,75,0,6,6,5,95,0,5,5,30,5,76,27,64,39,2,1,0,10,9,2,3,4,0,3,101,0,6,0,5,6,5,99,0,1,1,26,75,0,7,7,4,95,0,4,4,35,75,0,8,8,27,8,76,89,64,18,0,0,0,49,0,49,22,27,17,27,22,17,17,17,17,11,7,29,43] + "instructions": "tQkBCAcBSkuwI1BYQCoCAQAKCQIDBAADZQABARpLAAcHBF8ABAQjSwAICBtLAAYGBV8ABQUeBUwbQCcCAQAKCQIDBAADZQAGAAUGBWMAAQEaSwAHBwRfAAQEI0sACAgbCExZQBIAAAAxADEWGxEbFhERERELBx0r" }, "germandbls": { "name": "germandbls", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":60,"y":611,"on":false},{"x":91,"y":665,"on":true},{"x":113,"y":704,"on":false},{"x":148,"y":724,"on":true},{"x":181,"y":743,"on":false},{"x":271,"y":743,"on":false},{"x":305,"y":724,"on":true},{"x":340,"y":704,"on":false},{"x":362,"y":665,"on":true},{"x":384,"y":628,"on":false},{"x":390,"y":580,"on":true},{"x":313,"y":559,"on":true},{"x":309,"y":600,"on":false},{"x":292,"y":629,"on":true},{"x":279,"y":651,"on":false},{"x":261,"y":662,"on":true},{"x":246,"y":671,"on":false},{"x":208,"y":671,"on":false},{"x":192,"y":662,"on":true},{"x":174,"y":652,"on":false},{"x":162,"y":630,"on":true},{"x":140,"y":592,"on":false},{"x":140,"y":530,"on":true},{"x":140,"y":514,"on":true},{"x":449,"y":514,"on":true},{"x":314,"y":275,"on":true},{"x":352,"y":268,"on":false},{"x":377,"y":253,"on":true},{"x":413,"y":232,"on":false},{"x":433,"y":198,"on":true},{"x":452,"y":165,"on":false},{"x":452,"y":128,"on":true},{"x":452,"y":54,"on":false},{"x":410,"y":-19,"on":true},{"x":354,"y":-116,"on":false},{"x":245,"y":-179,"on":true},{"x":220,"y":-194,"on":false},{"x":193,"y":-205,"on":true},{"x":161,"y":-139,"on":true},{"x":184,"y":-129,"on":false},{"x":206,"y":-117,"on":true},{"x":294,"y":-66,"on":false},{"x":338,"y":12,"on":true},{"x":372,"y":71,"on":false},{"x":372,"y":128,"on":true},{"x":372,"y":145,"on":false},{"x":363,"y":161,"on":true},{"x":352,"y":179,"on":false},{"x":332,"y":191,"on":true},{"x":302,"y":209,"on":false},{"x":234,"y":209,"on":true},{"x":189,"y":209,"on":true},{"x":320,"y":442,"on":true},{"x":140,"y":442,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,16,13,12,2,2,1,27,1,3,4,2,74,40,39,2,5,71,75,176,31,80,88,64,35,0,3,4,5,4,3,5,126,0,1,1,0,95,0,0,0,72,75,0,4,4,2,93,0,2,2,67,75,6,1,5,5,65,5,76,27,64,33,0,3,4,5,4,3,5,126,0,2,0,4,3,2,4,101,0,1,1,0,95,0,0,0,72,75,6,1,5,5,65,5,76,89,64,16,0,0,0,56,0,56,55,54,53,51,22,27,22,7,9,23,43] + "instructions": "QBANDAICARsBAwQCSignAgVHS7AfUFhAIwADBAUEAwV+AAEBAF8AAABISwAEBAJdAAICQ0sGAQUFQQVMG0AhAAMEBQQDBX4AAgAEAwIEZQABAQBfAAAASEsGAQUFQQVMWUAQAAAAOAA4NzY1MxYbFgcJFys=" }, "uni1E9E": { "name": "uni1E9E", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":60,"y":605,"on":false},{"x":90,"y":658,"on":true},{"x":113,"y":699,"on":false},{"x":152,"y":720,"on":true},{"x":191,"y":743,"on":false},{"x":298,"y":743,"on":false},{"x":337,"y":720,"on":true},{"x":375,"y":698,"on":false},{"x":399,"y":657,"on":true},{"x":429,"y":606,"on":false},{"x":429,"y":540,"on":true},{"x":424,"y":540,"on":true},{"x":305,"y":393,"on":true},{"x":331,"y":385,"on":false},{"x":355,"y":372,"on":true},{"x":399,"y":347,"on":false},{"x":423,"y":304,"on":true},{"x":448,"y":261,"on":false},{"x":448,"y":201,"on":true},{"x":448,"y":139,"on":false},{"x":422,"y":94,"on":true},{"x":398,"y":53,"on":false},{"x":356,"y":28,"on":true},{"x":307,"y":0,"on":false},{"x":238,"y":0,"on":true},{"x":156,"y":0,"on":true},{"x":156,"y":72,"on":true},{"x":238,"y":72,"on":true},{"x":298,"y":72,"on":false},{"x":368,"y":142,"on":false},{"x":368,"y":201,"on":true},{"x":368,"y":240,"on":false},{"x":352,"y":268,"on":true},{"x":336,"y":295,"on":false},{"x":308,"y":311,"on":true},{"x":273,"y":331,"on":false},{"x":227,"y":332,"on":true},{"x":222,"y":332,"on":true},{"x":220,"y":404,"on":true},{"x":348,"y":561,"on":true},{"x":344,"y":595,"on":false},{"x":328,"y":622,"on":true},{"x":314,"y":647,"on":false},{"x":292,"y":659,"on":true},{"x":272,"y":671,"on":false},{"x":218,"y":671,"on":false},{"x":197,"y":659,"on":true},{"x":175,"y":646,"on":false},{"x":161,"y":622,"on":true},{"x":140,"y":586,"on":false},{"x":140,"y":530,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,57,41,14,12,3,3,4,1,74,0,3,4,2,4,3,2,126,0,4,4,0,95,0,0,0,72,75,0,2,2,1,93,6,5,2,1,1,65,1,76,0,0,0,53,0,53,47,46,38,37,30,28,27,25,22,7,9,21,43] + "instructions": "QDkpDgwDAwQBSgADBAIEAwJ+AAQEAF8AAABISwACAgFdBgUCAQFBAUwAAAA1ADUvLiYlHhwbGRYHCRUr" }, "AE": { "name": "AE", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":74,"on":true},{"x":60,"y":275,"on":false},{"x":196,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":312,"y":663,"on":true},{"x":312,"y":433,"on":true},{"x":422,"y":433,"on":true},{"x":422,"y":361,"on":true},{"x":312,"y":361,"on":true},{"x":312,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":0,"on":true},{"x":232,"y":0,"on":true},{"x":232,"y":193,"on":true},{"x":148,"y":193,"on":true},{"x":140,"y":126,"on":false},{"x":140,"y":74,"on":true},{"x":140,"y":0,"on":true}],[{"x":158,"y":265,"on":true},{"x":232,"y":265,"on":true},{"x":232,"y":619,"on":true},{"x":181,"y":411,"on":false}]], "references": [], - "instructions": [64,63,22,1,2,1,1,74,0,2,0,3,8,2,3,101,0,8,0,6,4,8,6,101,0,1,1,0,93,0,0,0,64,75,0,4,4,5,93,9,7,2,5,5,65,5,76,0,0,21,20,0,19,0,19,17,17,17,17,17,17,19,10,9,27,43] + "instructions": "QD8WAQIBAUoAAgADCAIDZQAIAAYECAZlAAEBAF0AAABASwAEBAVdCQcCBQVBBUwAABUUABMAExERERERERMKCRsr" }, "uni04D4": { "name": "uni04D4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"AE","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "OE": { "name": "OE", "advanceWidth": 500, "contours": [[{"x":60,"y":195,"on":true},{"x":60,"y":540,"on":true},{"x":60,"y":604,"on":false},{"x":86,"y":649,"on":true},{"x":108,"y":688,"on":false},{"x":147,"y":710,"on":true},{"x":190,"y":735,"on":false},{"x":250,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":330,"y":663,"on":true},{"x":330,"y":433,"on":true},{"x":422,"y":433,"on":true},{"x":422,"y":361,"on":true},{"x":330,"y":361,"on":true},{"x":330,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":0,"on":true},{"x":250,"y":0,"on":true},{"x":190,"y":0,"on":false},{"x":147,"y":25,"on":true},{"x":109,"y":47,"on":false},{"x":86,"y":86,"on":true},{"x":60,"y":131,"on":false}],[{"x":140,"y":195,"on":true},{"x":140,"y":152,"on":false},{"x":157,"y":123,"on":true},{"x":186,"y":72,"on":false},{"x":250,"y":72,"on":true},{"x":250,"y":663,"on":true},{"x":186,"y":663,"on":false},{"x":157,"y":612,"on":true},{"x":140,"y":582,"on":false},{"x":140,"y":540,"on":true}]], "references": [], - "instructions": [64,42,0,2,0,3,4,2,3,101,7,1,1,1,0,93,0,0,0,64,75,6,1,4,4,5,93,0,5,5,65,5,76,17,24,33,17,17,17,17,38,8,9,28,43] + "instructions": "QCoAAgADBAIDZQcBAQEAXQAAAEBLBgEEBAVdAAUFQQVMERghERERESYICRwr" }, "uni0276": { "name": "uni0276", "advanceWidth": 500, "contours": [[{"x":60,"y":195,"on":true},{"x":60,"y":335,"on":true},{"x":60,"y":399,"on":false},{"x":86,"y":444,"on":true},{"x":108,"y":483,"on":false},{"x":147,"y":505,"on":true},{"x":190,"y":530,"on":false},{"x":250,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":458,"on":true},{"x":330,"y":458,"on":true},{"x":330,"y":322,"on":true},{"x":422,"y":322,"on":true},{"x":422,"y":250,"on":true},{"x":330,"y":250,"on":true},{"x":330,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":0,"on":true},{"x":250,"y":0,"on":true},{"x":190,"y":0,"on":false},{"x":147,"y":25,"on":true},{"x":109,"y":47,"on":false},{"x":86,"y":86,"on":true},{"x":60,"y":131,"on":false}],[{"x":140,"y":195,"on":true},{"x":140,"y":152,"on":false},{"x":157,"y":123,"on":true},{"x":186,"y":72,"on":false},{"x":250,"y":72,"on":true},{"x":250,"y":458,"on":true},{"x":186,"y":458,"on":false},{"x":157,"y":407,"on":true},{"x":140,"y":377,"on":false},{"x":140,"y":335,"on":true}]], "references": [], - "instructions": [64,42,0,2,0,3,4,2,3,101,7,1,1,1,0,93,0,0,0,67,75,6,1,4,4,5,93,0,5,5,65,5,76,17,24,33,17,17,17,17,38,8,9,28,43] + "instructions": "QCoAAgADBAIDZQcBAQEAXQAAAENLBgEEBAVdAAUFQQVMERghERERESYICRwr" }, "ae": { "name": "ae", "advanceWidth": 500, "contours": [[{"x":44,"y":142,"on":true},{"x":44,"y":198,"on":false},{"x":67,"y":237,"on":true},{"x":88,"y":273,"on":false},{"x":123,"y":293,"on":true},{"x":160,"y":314,"on":false},{"x":210,"y":317,"on":true},{"x":210,"y":398,"on":true},{"x":210,"y":438,"on":false},{"x":192,"y":456,"on":true},{"x":182,"y":466,"on":false},{"x":155,"y":466,"on":false},{"x":145,"y":456,"on":true},{"x":127,"y":438,"on":false},{"x":127,"y":401,"on":true},{"x":127,"y":400,"on":false},{"x":127,"y":399,"on":true},{"x":47,"y":400,"on":true},{"x":47,"y":402,"on":false},{"x":47,"y":404,"on":true},{"x":47,"y":448,"on":false},{"x":67,"y":482,"on":true},{"x":82,"y":509,"on":false},{"x":107,"y":523,"on":true},{"x":133,"y":538,"on":false},{"x":204,"y":538,"on":false},{"x":229,"y":523,"on":true},{"x":240,"y":516,"on":false},{"x":250,"y":507,"on":true},{"x":259,"y":516,"on":false},{"x":271,"y":523,"on":true},{"x":297,"y":538,"on":false},{"x":369,"y":538,"on":false},{"x":421,"y":508,"on":false},{"x":436,"y":481,"on":true},{"x":456,"y":447,"on":false},{"x":456,"y":398,"on":true},{"x":456,"y":229,"on":true},{"x":290,"y":229,"on":true},{"x":290,"y":132,"on":true},{"x":290,"y":93,"on":false},{"x":308,"y":75,"on":true},{"x":319,"y":64,"on":false},{"x":352,"y":64,"on":false},{"x":363,"y":75,"on":true},{"x":381,"y":93,"on":false},{"x":381,"y":129,"on":true},{"x":381,"y":130,"on":false},{"x":381,"y":131,"on":true},{"x":461,"y":130,"on":true},{"x":461,"y":128,"on":false},{"x":461,"y":126,"on":true},{"x":461,"y":83,"on":false},{"x":442,"y":50,"on":true},{"x":426,"y":23,"on":false},{"x":400,"y":8,"on":true},{"x":373,"y":-8,"on":false},{"x":298,"y":-8,"on":false},{"x":271,"y":8,"on":true},{"x":260,"y":15,"on":false},{"x":250,"y":23,"on":true},{"x":240,"y":14,"on":false},{"x":229,"y":7,"on":true},{"x":203,"y":-8,"on":false},{"x":167,"y":-8,"on":true},{"x":133,"y":-8,"on":false},{"x":108,"y":7,"on":true},{"x":82,"y":22,"on":false},{"x":66,"y":50,"on":true},{"x":44,"y":87,"on":false}],[{"x":124,"y":141,"on":true},{"x":124,"y":93,"on":false},{"x":144,"y":74,"on":true},{"x":154,"y":64,"on":false},{"x":167,"y":64,"on":true},{"x":181,"y":64,"on":false},{"x":192,"y":74,"on":true},{"x":210,"y":92,"on":false},{"x":210,"y":132,"on":true},{"x":210,"y":245,"on":true},{"x":161,"y":241,"on":false},{"x":138,"y":201,"on":true},{"x":124,"y":177,"on":false}],[{"x":290,"y":301,"on":true},{"x":376,"y":301,"on":true},{"x":376,"y":398,"on":true},{"x":376,"y":438,"on":false},{"x":358,"y":456,"on":true},{"x":348,"y":466,"on":false},{"x":318,"y":466,"on":false},{"x":308,"y":456,"on":true},{"x":290,"y":438,"on":false},{"x":290,"y":398,"on":true}]], "references": [], - "instructions": [75,176,9,80,88,64,14,28,1,1,3,79,1,5,0,60,1,8,6,3,74,27,64,14,28,1,1,3,79,1,5,11,60,1,8,6,3,74,89,75,176,9,80,88,64,50,0,2,1,0,1,2,0,126,0,7,5,6,5,7,6,126,11,1,0,0,5,7,0,5,101,12,1,1,1,3,95,4,1,3,3,75,75,10,1,6,6,8,96,9,1,8,8,73,8,76,27,64,56,0,2,1,0,1,2,0,126,0,0,11,1,0,11,124,0,7,5,6,5,7,6,126,0,11,0,5,7,11,5,101,12,1,1,1,3,95,4,1,3,3,75,75,10,1,6,6,8,96,9,1,8,8,73,8,76,89,64,20,89,88,84,83,75,73,65,63,23,51,20,21,22,23,51,20,21,13,9,29,43] + "instructions": "S7AJUFhADhwBAQNPAQUAPAEIBgNKG0AOHAEBA08BBQs8AQgGA0pZS7AJUFhAMgACAQABAgB+AAcFBgUHBn4LAQAABQcABWUMAQEBA18EAQMDS0sKAQYGCGAJAQgISQhMG0A4AAIBAAECAH4AAAsBAAt8AAcFBgUHBn4ACwAFBwsFZQwBAQEDXwQBAwNLSwoBBgYIYAkBCAhJCExZQBRZWFRTS0lBPxczFBUWFzMUFQ0JHSs=" }, "uni04D5": { "name": "uni04D5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ae","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1D02": { "name": "uni1D02", "advanceWidth": 500, "contours": [[{"x":39,"y":400,"on":true},{"x":39,"y":402,"on":false},{"x":39,"y":404,"on":true},{"x":39,"y":447,"on":false},{"x":58,"y":480,"on":true},{"x":74,"y":507,"on":false},{"x":100,"y":522,"on":true},{"x":127,"y":538,"on":false},{"x":202,"y":538,"on":false},{"x":229,"y":522,"on":true},{"x":240,"y":515,"on":false},{"x":250,"y":507,"on":true},{"x":260,"y":516,"on":false},{"x":271,"y":523,"on":true},{"x":297,"y":538,"on":false},{"x":333,"y":538,"on":true},{"x":367,"y":538,"on":false},{"x":392,"y":523,"on":true},{"x":418,"y":508,"on":false},{"x":434,"y":480,"on":true},{"x":456,"y":443,"on":false},{"x":456,"y":388,"on":true},{"x":456,"y":332,"on":false},{"x":433,"y":293,"on":true},{"x":412,"y":257,"on":false},{"x":377,"y":237,"on":true},{"x":340,"y":216,"on":false},{"x":290,"y":213,"on":true},{"x":290,"y":132,"on":true},{"x":290,"y":92,"on":false},{"x":308,"y":74,"on":true},{"x":318,"y":64,"on":false},{"x":345,"y":64,"on":false},{"x":355,"y":74,"on":true},{"x":373,"y":92,"on":false},{"x":373,"y":129,"on":true},{"x":373,"y":130,"on":false},{"x":373,"y":131,"on":true},{"x":453,"y":130,"on":true},{"x":453,"y":128,"on":false},{"x":453,"y":126,"on":true},{"x":453,"y":82,"on":false},{"x":433,"y":48,"on":true},{"x":418,"y":21,"on":false},{"x":393,"y":7,"on":true},{"x":367,"y":-8,"on":false},{"x":296,"y":-8,"on":false},{"x":271,"y":7,"on":true},{"x":260,"y":14,"on":false},{"x":250,"y":23,"on":true},{"x":241,"y":14,"on":false},{"x":229,"y":7,"on":true},{"x":203,"y":-8,"on":false},{"x":131,"y":-8,"on":false},{"x":79,"y":22,"on":false},{"x":64,"y":49,"on":true},{"x":44,"y":83,"on":false},{"x":44,"y":132,"on":true},{"x":44,"y":301,"on":true},{"x":210,"y":301,"on":true},{"x":210,"y":398,"on":true},{"x":210,"y":437,"on":false},{"x":192,"y":455,"on":true},{"x":181,"y":466,"on":false},{"x":148,"y":466,"on":false},{"x":137,"y":455,"on":true},{"x":119,"y":437,"on":false},{"x":119,"y":401,"on":true},{"x":119,"y":400,"on":false},{"x":119,"y":399,"on":true}],[{"x":124,"y":132,"on":true},{"x":124,"y":92,"on":false},{"x":142,"y":74,"on":true},{"x":152,"y":64,"on":false},{"x":182,"y":64,"on":false},{"x":192,"y":74,"on":true},{"x":210,"y":92,"on":false},{"x":210,"y":132,"on":true},{"x":210,"y":229,"on":true},{"x":124,"y":229,"on":true}],[{"x":290,"y":285,"on":true},{"x":339,"y":289,"on":false},{"x":362,"y":329,"on":true},{"x":376,"y":353,"on":false},{"x":376,"y":389,"on":true},{"x":376,"y":437,"on":false},{"x":356,"y":456,"on":true},{"x":346,"y":466,"on":false},{"x":333,"y":466,"on":true},{"x":319,"y":466,"on":false},{"x":308,"y":456,"on":true},{"x":290,"y":438,"on":false},{"x":290,"y":398,"on":true}]], "references": [], - "instructions": [64,95,11,1,8,0,80,1,11,7,49,1,5,3,3,74,13,1,9,8,7,8,9,7,126,0,2,11,4,11,2,4,126,0,4,3,11,4,3,124,0,7,0,11,2,7,11,101,12,1,8,8,0,95,1,1,0,0,75,75,10,1,3,3,5,95,6,1,5,5,73,5,76,0,0,89,87,79,78,74,73,0,69,0,67,20,21,22,23,51,20,26,38,23,14,9,29,43] + "instructions": "QF8LAQgAUAELBzEBBQMDSg0BCQgHCAkHfgACCwQLAgR+AAQDCwQDfAAHAAsCBwtlDAEICABfAQEAAEtLCgEDAwVfBgEFBUkFTAAAWVdPTkpJAEUAQxQVFhczFBomFw4JHSs=" }, "oe": { "name": "oe", "advanceWidth": 500, "contours": [[{"x":44,"y":132,"on":true},{"x":44,"y":398,"on":true},{"x":44,"y":447,"on":false},{"x":64,"y":481,"on":true},{"x":80,"y":508,"on":false},{"x":105,"y":523,"on":true},{"x":131,"y":538,"on":false},{"x":203,"y":538,"on":false},{"x":229,"y":523,"on":true},{"x":240,"y":516,"on":false},{"x":250,"y":507,"on":true},{"x":259,"y":516,"on":false},{"x":271,"y":523,"on":true},{"x":297,"y":538,"on":false},{"x":369,"y":538,"on":false},{"x":421,"y":508,"on":false},{"x":436,"y":481,"on":true},{"x":456,"y":447,"on":false},{"x":456,"y":398,"on":true},{"x":456,"y":229,"on":true},{"x":290,"y":229,"on":true},{"x":290,"y":132,"on":true},{"x":290,"y":93,"on":false},{"x":308,"y":75,"on":true},{"x":319,"y":64,"on":false},{"x":352,"y":64,"on":false},{"x":363,"y":75,"on":true},{"x":381,"y":93,"on":false},{"x":381,"y":129,"on":true},{"x":381,"y":130,"on":false},{"x":381,"y":131,"on":true},{"x":461,"y":130,"on":true},{"x":461,"y":128,"on":false},{"x":461,"y":126,"on":true},{"x":461,"y":83,"on":false},{"x":442,"y":50,"on":true},{"x":426,"y":23,"on":false},{"x":400,"y":8,"on":true},{"x":373,"y":-8,"on":false},{"x":298,"y":-8,"on":false},{"x":271,"y":8,"on":true},{"x":260,"y":15,"on":false},{"x":250,"y":23,"on":true},{"x":240,"y":14,"on":false},{"x":229,"y":7,"on":true},{"x":203,"y":-8,"on":false},{"x":131,"y":-8,"on":false},{"x":79,"y":22,"on":false},{"x":64,"y":49,"on":true},{"x":44,"y":83,"on":false}],[{"x":124,"y":132,"on":true},{"x":124,"y":92,"on":false},{"x":142,"y":74,"on":true},{"x":152,"y":64,"on":false},{"x":182,"y":64,"on":false},{"x":192,"y":74,"on":true},{"x":210,"y":92,"on":false},{"x":210,"y":132,"on":true},{"x":210,"y":398,"on":true},{"x":210,"y":438,"on":false},{"x":192,"y":456,"on":true},{"x":182,"y":466,"on":false},{"x":152,"y":466,"on":false},{"x":142,"y":456,"on":true},{"x":124,"y":438,"on":false},{"x":124,"y":398,"on":true}],[{"x":290,"y":301,"on":true},{"x":376,"y":301,"on":true},{"x":376,"y":398,"on":true},{"x":376,"y":438,"on":false},{"x":358,"y":456,"on":true},{"x":348,"y":466,"on":false},{"x":318,"y":466,"on":false},{"x":308,"y":456,"on":true},{"x":290,"y":438,"on":false},{"x":290,"y":398,"on":true}]], "references": [], - "instructions": [64,67,10,1,8,0,42,1,5,3,2,74,0,4,2,3,2,4,3,126,0,9,0,2,4,9,2,101,10,1,8,8,0,95,1,1,0,0,75,75,7,1,3,3,5,95,6,1,5,5,73,5,76,72,71,67,66,23,23,22,23,51,20,21,22,22,11,9,29,43] + "instructions": "QEMKAQgAKgEFAwJKAAQCAwIEA34ACQACBAkCZQoBCAgAXwEBAABLSwcBAwMFXwYBBQVJBUxIR0NCFxcWFzMUFRYWCwkdKw==" }, "uni1D14": { "name": "uni1D14", "advanceWidth": 500, "contours": [[{"x":39,"y":400,"on":true},{"x":39,"y":402,"on":false},{"x":39,"y":404,"on":true},{"x":39,"y":447,"on":false},{"x":58,"y":480,"on":true},{"x":74,"y":507,"on":false},{"x":100,"y":522,"on":true},{"x":127,"y":538,"on":false},{"x":202,"y":538,"on":false},{"x":229,"y":522,"on":true},{"x":240,"y":515,"on":false},{"x":250,"y":507,"on":true},{"x":260,"y":516,"on":false},{"x":271,"y":523,"on":true},{"x":297,"y":538,"on":false},{"x":369,"y":538,"on":false},{"x":421,"y":508,"on":false},{"x":436,"y":481,"on":true},{"x":456,"y":447,"on":false},{"x":456,"y":398,"on":true},{"x":456,"y":132,"on":true},{"x":456,"y":83,"on":false},{"x":436,"y":49,"on":true},{"x":420,"y":22,"on":false},{"x":395,"y":7,"on":true},{"x":369,"y":-8,"on":false},{"x":297,"y":-8,"on":false},{"x":271,"y":7,"on":true},{"x":260,"y":14,"on":false},{"x":250,"y":23,"on":true},{"x":241,"y":14,"on":false},{"x":229,"y":7,"on":true},{"x":203,"y":-8,"on":false},{"x":131,"y":-8,"on":false},{"x":79,"y":22,"on":false},{"x":64,"y":49,"on":true},{"x":44,"y":83,"on":false},{"x":44,"y":132,"on":true},{"x":44,"y":301,"on":true},{"x":210,"y":301,"on":true},{"x":210,"y":398,"on":true},{"x":210,"y":437,"on":false},{"x":192,"y":455,"on":true},{"x":181,"y":466,"on":false},{"x":148,"y":466,"on":false},{"x":137,"y":455,"on":true},{"x":119,"y":437,"on":false},{"x":119,"y":401,"on":true},{"x":119,"y":400,"on":false},{"x":119,"y":399,"on":true}],[{"x":124,"y":132,"on":true},{"x":124,"y":92,"on":false},{"x":142,"y":74,"on":true},{"x":152,"y":64,"on":false},{"x":182,"y":64,"on":false},{"x":192,"y":74,"on":true},{"x":210,"y":92,"on":false},{"x":210,"y":132,"on":true},{"x":210,"y":229,"on":true},{"x":124,"y":229,"on":true}],[{"x":290,"y":132,"on":true},{"x":290,"y":92,"on":false},{"x":308,"y":74,"on":true},{"x":318,"y":64,"on":false},{"x":348,"y":64,"on":false},{"x":358,"y":74,"on":true},{"x":376,"y":92,"on":false},{"x":376,"y":132,"on":true},{"x":376,"y":398,"on":true},{"x":376,"y":438,"on":false},{"x":358,"y":456,"on":true},{"x":348,"y":466,"on":false},{"x":318,"y":466,"on":false},{"x":308,"y":456,"on":true},{"x":290,"y":438,"on":false},{"x":290,"y":398,"on":true}]], "references": [], - "instructions": [64,75,11,1,5,0,29,1,2,7,2,74,11,1,6,5,4,5,6,4,126,0,4,0,8,7,4,8,101,10,1,5,5,0,95,1,1,0,0,75,75,9,1,7,7,2,95,3,1,2,2,73,2,76,0,0,72,71,64,63,59,58,54,53,0,49,0,47,20,21,22,26,22,23,12,9,26,43] + "instructions": "QEsLAQUAHQECBwJKCwEGBQQFBgR+AAQACAcECGUKAQUFAF8BAQAAS0sJAQcHAl8DAQICSQJMAABIR0A/Ozo2NQAxAC8UFRYaFhcMCRor" }, "uni0238": { "name": "uni0238", "advanceWidth": 500, "contours": [[{"x":44,"y":132,"on":true},{"x":44,"y":398,"on":true},{"x":44,"y":447,"on":false},{"x":64,"y":481,"on":true},{"x":80,"y":508,"on":false},{"x":105,"y":523,"on":true},{"x":131,"y":538,"on":false},{"x":167,"y":538,"on":true},{"x":191,"y":538,"on":false},{"x":210,"y":531,"on":true},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":531,"on":true},{"x":309,"y":538,"on":false},{"x":333,"y":538,"on":true},{"x":369,"y":538,"on":false},{"x":421,"y":508,"on":false},{"x":436,"y":481,"on":true},{"x":456,"y":447,"on":false},{"x":456,"y":398,"on":true},{"x":456,"y":132,"on":true},{"x":456,"y":83,"on":false},{"x":436,"y":49,"on":true},{"x":420,"y":22,"on":false},{"x":395,"y":7,"on":true},{"x":369,"y":-8,"on":false},{"x":297,"y":-8,"on":false},{"x":271,"y":7,"on":true},{"x":260,"y":14,"on":false},{"x":250,"y":23,"on":true},{"x":241,"y":14,"on":false},{"x":229,"y":7,"on":true},{"x":203,"y":-8,"on":false},{"x":131,"y":-8,"on":false},{"x":79,"y":22,"on":false},{"x":64,"y":49,"on":true},{"x":44,"y":83,"on":false}],[{"x":124,"y":132,"on":true},{"x":124,"y":92,"on":false},{"x":142,"y":74,"on":true},{"x":152,"y":64,"on":false},{"x":182,"y":64,"on":false},{"x":192,"y":74,"on":true},{"x":210,"y":92,"on":false},{"x":210,"y":132,"on":true},{"x":210,"y":398,"on":true},{"x":210,"y":438,"on":false},{"x":192,"y":456,"on":true},{"x":182,"y":466,"on":false},{"x":152,"y":466,"on":false},{"x":142,"y":456,"on":true},{"x":124,"y":438,"on":false},{"x":124,"y":398,"on":true}],[{"x":290,"y":132,"on":true},{"x":290,"y":92,"on":false},{"x":308,"y":74,"on":true},{"x":318,"y":64,"on":false},{"x":348,"y":64,"on":false},{"x":358,"y":74,"on":true},{"x":376,"y":92,"on":false},{"x":376,"y":132,"on":true},{"x":376,"y":398,"on":true},{"x":376,"y":438,"on":false},{"x":358,"y":456,"on":true},{"x":348,"y":466,"on":false},{"x":318,"y":466,"on":false},{"x":308,"y":456,"on":true},{"x":290,"y":438,"on":false},{"x":290,"y":398,"on":true}]], "references": [], - "instructions": [64,53,12,9,2,6,0,29,1,3,5,2,74,0,1,1,64,75,8,1,6,6,0,95,2,1,0,0,75,75,7,1,5,5,3,95,4,1,3,3,73,3,76,23,23,23,23,22,26,34,18,38,9,9,29,43] + "instructions": "QDUMCQIGAB0BAwUCSgABAUBLCAEGBgBfAgEAAEtLBwEFBQNfBAEDA0kDTBcXFxcWGiISJgkJHSs=" }, "uni0239": { "name": "uni0239", "advanceWidth": 500, "contours": [[{"x":44,"y":132,"on":true},{"x":44,"y":398,"on":true},{"x":44,"y":447,"on":false},{"x":64,"y":481,"on":true},{"x":80,"y":508,"on":false},{"x":105,"y":523,"on":true},{"x":131,"y":538,"on":false},{"x":203,"y":538,"on":false},{"x":229,"y":523,"on":true},{"x":240,"y":516,"on":false},{"x":250,"y":507,"on":true},{"x":259,"y":516,"on":false},{"x":271,"y":523,"on":true},{"x":297,"y":538,"on":false},{"x":369,"y":538,"on":false},{"x":421,"y":508,"on":false},{"x":436,"y":481,"on":true},{"x":456,"y":447,"on":false},{"x":456,"y":398,"on":true},{"x":456,"y":132,"on":true},{"x":456,"y":83,"on":false},{"x":436,"y":49,"on":true},{"x":420,"y":22,"on":false},{"x":395,"y":7,"on":true},{"x":369,"y":-8,"on":false},{"x":333,"y":-8,"on":true},{"x":309,"y":-8,"on":false},{"x":290,"y":-1,"on":true},{"x":290,"y":-205,"on":true},{"x":210,"y":-205,"on":true},{"x":210,"y":-1,"on":true},{"x":191,"y":-8,"on":false},{"x":167,"y":-8,"on":true},{"x":131,"y":-8,"on":false},{"x":79,"y":22,"on":false},{"x":64,"y":49,"on":true},{"x":44,"y":83,"on":false}],[{"x":124,"y":132,"on":true},{"x":124,"y":92,"on":false},{"x":142,"y":74,"on":true},{"x":152,"y":64,"on":false},{"x":182,"y":64,"on":false},{"x":192,"y":74,"on":true},{"x":210,"y":92,"on":false},{"x":210,"y":132,"on":true},{"x":210,"y":398,"on":true},{"x":210,"y":438,"on":false},{"x":192,"y":456,"on":true},{"x":182,"y":466,"on":false},{"x":152,"y":466,"on":false},{"x":142,"y":456,"on":true},{"x":124,"y":438,"on":false},{"x":124,"y":398,"on":true}],[{"x":290,"y":132,"on":true},{"x":290,"y":92,"on":false},{"x":308,"y":74,"on":true},{"x":318,"y":64,"on":false},{"x":348,"y":64,"on":false},{"x":358,"y":74,"on":true},{"x":376,"y":92,"on":false},{"x":376,"y":132,"on":true},{"x":376,"y":398,"on":true},{"x":376,"y":438,"on":false},{"x":358,"y":456,"on":true},{"x":348,"y":466,"on":false},{"x":318,"y":466,"on":false},{"x":308,"y":456,"on":true},{"x":290,"y":438,"on":false},{"x":290,"y":398,"on":true}]], "references": [], - "instructions": [64,53,10,1,6,0,30,27,2,2,5,2,74,8,1,6,6,0,95,1,1,0,0,75,75,7,1,5,5,2,95,4,1,2,2,73,75,0,3,3,69,3,76,23,23,23,23,34,18,42,22,22,9,9,29,43] + "instructions": "QDUKAQYAHhsCAgUCSggBBgYAXwEBAABLSwcBBQUCXwQBAgJJSwADA0UDTBcXFxciEioWFgkJHSs=" }, "uni0222": { "name": "uni0222", "advanceWidth": 500, "contours": [[{"x":52,"y":195,"on":true},{"x":52,"y":227,"on":true},{"x":52,"y":293,"on":false},{"x":79,"y":340,"on":true},{"x":101,"y":379,"on":false},{"x":140,"y":402,"on":true},{"x":103,"y":424,"on":false},{"x":83,"y":459,"on":true},{"x":60,"y":499,"on":false},{"x":60,"y":553,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":553,"on":true},{"x":140,"y":510,"on":false},{"x":157,"y":481,"on":true},{"x":171,"y":457,"on":false},{"x":194,"y":444,"on":true},{"x":218,"y":430,"on":false},{"x":283,"y":430,"on":false},{"x":306,"y":444,"on":true},{"x":329,"y":457,"on":false},{"x":343,"y":481,"on":true},{"x":360,"y":511,"on":false},{"x":360,"y":553,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":553,"on":true},{"x":440,"y":499,"on":false},{"x":417,"y":459,"on":true},{"x":397,"y":424,"on":false},{"x":360,"y":402,"on":true},{"x":398,"y":379,"on":false},{"x":421,"y":340,"on":true},{"x":448,"y":293,"on":false},{"x":448,"y":227,"on":true},{"x":448,"y":195,"on":true},{"x":448,"y":129,"on":false},{"x":421,"y":82,"on":true},{"x":398,"y":42,"on":false},{"x":357,"y":18,"on":true},{"x":312,"y":-8,"on":false},{"x":188,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":82,"on":true},{"x":52,"y":129,"on":false}],[{"x":132,"y":195,"on":true},{"x":132,"y":150,"on":false},{"x":150,"y":118,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":285,"y":64,"on":false},{"x":311,"y":79,"on":true},{"x":336,"y":93,"on":false},{"x":350,"y":118,"on":true},{"x":368,"y":149,"on":false},{"x":368,"y":195,"on":true},{"x":368,"y":227,"on":true},{"x":368,"y":272,"on":false},{"x":350,"y":303,"on":true},{"x":335,"y":328,"on":false},{"x":311,"y":343,"on":true},{"x":285,"y":358,"on":false},{"x":215,"y":358,"on":false},{"x":189,"y":343,"on":true},{"x":164,"y":329,"on":false},{"x":150,"y":303,"on":true},{"x":132,"y":272,"on":false},{"x":132,"y":227,"on":true}]], "references": [], - "instructions": [64,41,30,5,2,5,1,1,74,0,1,0,5,4,1,5,103,2,1,0,0,64,75,0,4,4,3,95,0,3,3,73,3,76,27,26,31,22,22,26,6,9,26,43] + "instructions": "QCkeBQIFAQFKAAEABQQBBWcCAQAAQEsABAQDXwADA0kDTBsaHxYWGgYJGis=" }, "uni0223": { "name": "uni0223", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":289,"on":true},{"x":52,"y":370,"on":false},{"x":84,"y":425,"on":true},{"x":107,"y":464,"on":false},{"x":143,"y":488,"on":true},{"x":104,"y":510,"on":false},{"x":83,"y":546,"on":true},{"x":60,"y":586,"on":false},{"x":60,"y":640,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":640,"on":true},{"x":140,"y":597,"on":false},{"x":157,"y":568,"on":true},{"x":171,"y":544,"on":false},{"x":194,"y":530,"on":true},{"x":218,"y":516,"on":false},{"x":283,"y":517,"on":false},{"x":329,"y":543,"on":false},{"x":343,"y":568,"on":true},{"x":360,"y":598,"on":false},{"x":360,"y":640,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":640,"on":true},{"x":440,"y":586,"on":false},{"x":417,"y":546,"on":true},{"x":396,"y":509,"on":false},{"x":357,"y":488,"on":true},{"x":393,"y":465,"on":false},{"x":416,"y":425,"on":true},{"x":448,"y":370,"on":false},{"x":448,"y":289,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":307,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":16,"on":true},{"x":110,"y":40,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":289,"on":true},{"x":368,"y":350,"on":false},{"x":345,"y":389,"on":true},{"x":329,"y":417,"on":false},{"x":304,"y":431,"on":true},{"x":281,"y":445,"on":false},{"x":219,"y":445,"on":false},{"x":196,"y":431,"on":true},{"x":171,"y":417,"on":false},{"x":155,"y":389,"on":true},{"x":132,"y":349,"on":false},{"x":132,"y":289,"on":true}]], "references": [], - "instructions": [182,29,5,2,5,1,1,74,75,176,35,80,88,64,27,2,1,0,0,64,75,0,5,5,1,95,0,1,1,67,75,0,4,4,3,95,0,3,3,73,3,76,27,64,25,0,1,0,5,4,1,5,103,2,1,0,0,64,75,0,4,4,3,95,0,3,3,73,3,76,89,64,9,27,26,30,21,22,26,6,9,26,43] + "instructions": "th0FAgUBAUpLsCNQWEAbAgEAAEBLAAUFAV8AAQFDSwAEBANfAAMDSQNMG0AZAAEABQQBBWcCAQAAQEsABAQDXwADA0kDTFlACRsaHhUWGgYJGis=" }, "IJ": { "name": "IJ", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":0,"on":true}],[{"x":199,"y":-8,"on":true},{"x":199,"y":64,"on":true},{"x":270,"y":64,"on":false},{"x":304,"y":83,"on":true},{"x":329,"y":97,"on":false},{"x":343,"y":123,"on":true},{"x":360,"y":152,"on":false},{"x":360,"y":209,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":209,"on":true},{"x":440,"y":124,"on":false},{"x":415,"y":80,"on":true},{"x":393,"y":43,"on":false},{"x":356,"y":21,"on":true},{"x":306,"y":-8,"on":false}]], "references": [], - "instructions": [75,176,29,80,88,64,20,3,1,0,0,64,75,0,2,2,1,95,6,4,5,3,1,1,65,1,76,27,64,24,3,1,0,0,64,75,5,1,1,1,65,75,0,2,2,4,95,6,1,4,4,73,4,76,89,64,20,4,4,0,0,4,19,4,19,13,12,6,5,0,3,0,3,17,7,9,21,43] + "instructions": "S7AdUFhAFAMBAABASwACAgFfBgQFAwEBQQFMG0AYAwEAAEBLBQEBAUFLAAICBF8GAQQESQRMWUAUBAQAAAQTBBMNDAYFAAMAAxEHCRUr" }, "ij": { "name": "ij", "advanceWidth": 500, "contours": [[{"x":68,"y":665,"on":false},{"x":68,"y":705,"on":false},{"x":76,"y":719,"on":true},{"x":83,"y":732,"on":false},{"x":96,"y":739,"on":true},{"x":110,"y":747,"on":false},{"x":150,"y":748,"on":false},{"x":164,"y":739,"on":true},{"x":177,"y":732,"on":false},{"x":184,"y":719,"on":true},{"x":192,"y":705,"on":false},{"x":192,"y":665,"on":false},{"x":184,"y":651,"on":true},{"x":177,"y":638,"on":false},{"x":164,"y":631,"on":true},{"x":150,"y":622,"on":false},{"x":110,"y":622,"on":false},{"x":96,"y":631,"on":true},{"x":83,"y":638,"on":false},{"x":76,"y":651,"on":true}],[{"x":70,"y":-70,"on":true},{"x":146,"y":-46,"on":true},{"x":151,"y":-74,"on":false},{"x":163,"y":-96,"on":true},{"x":176,"y":-119,"on":false},{"x":196,"y":-131,"on":true},{"x":214,"y":-141,"on":false},{"x":260,"y":-141,"on":false},{"x":278,"y":-131,"on":true},{"x":298,"y":-120,"on":false},{"x":310,"y":-97,"on":true},{"x":330,"y":-63,"on":false},{"x":330,"y":-10,"on":true},{"x":330,"y":530,"on":true},{"x":410,"y":530,"on":true},{"x":410,"y":-10,"on":true},{"x":410,"y":-83,"on":false},{"x":381,"y":-133,"on":true},{"x":359,"y":-171,"on":false},{"x":287,"y":-213,"on":false},{"x":188,"y":-213,"on":false},{"x":116,"y":-171,"on":false},{"x":93,"y":-133,"on":true},{"x":77,"y":-104,"on":false}],[{"x":90,"y":0,"on":true},{"x":90,"y":530,"on":true},{"x":170,"y":530,"on":true},{"x":170,"y":0,"on":true}],[{"x":308,"y":665,"on":false},{"x":308,"y":705,"on":false},{"x":316,"y":719,"on":true},{"x":323,"y":732,"on":false},{"x":336,"y":739,"on":true},{"x":350,"y":747,"on":false},{"x":390,"y":748,"on":false},{"x":404,"y":739,"on":true},{"x":417,"y":732,"on":false},{"x":424,"y":719,"on":true},{"x":432,"y":705,"on":false},{"x":432,"y":665,"on":false},{"x":424,"y":651,"on":true},{"x":417,"y":638,"on":false},{"x":404,"y":631,"on":true},{"x":390,"y":622,"on":false},{"x":350,"y":622,"on":false},{"x":336,"y":631,"on":true},{"x":323,"y":638,"on":false},{"x":316,"y":651,"on":true}]], "references": [], - "instructions": [64,60,21,1,2,6,1,74,8,1,1,1,0,95,7,1,0,0,74,75,5,1,3,3,67,75,9,1,6,6,65,75,0,2,2,4,95,0,4,4,77,4,76,44,44,64,63,54,53,44,47,44,47,21,21,22,26,25,21,10,9,26,43] + "instructions": "QDwVAQIGAUoIAQEBAF8HAQAASksFAQMDQ0sJAQYGQUsAAgIEXwAEBE0ETCwsQD82NSwvLC8VFRYaGRUKCRor" }, "uni01B7": { "name": "uni01B7", "advanceWidth": 500, "contours": [[{"x":55,"y":155,"on":true},{"x":131,"y":178,"on":true},{"x":136,"y":150,"on":false},{"x":149,"y":127,"on":true},{"x":165,"y":100,"on":false},{"x":190,"y":86,"on":true},{"x":214,"y":72,"on":false},{"x":244,"y":72,"on":true},{"x":275,"y":72,"on":false},{"x":298,"y":85,"on":true},{"x":322,"y":99,"on":false},{"x":338,"y":126,"on":true},{"x":360,"y":164,"on":false},{"x":360,"y":279,"on":false},{"x":338,"y":317,"on":true},{"x":323,"y":343,"on":false},{"x":300,"y":356,"on":true},{"x":278,"y":369,"on":false},{"x":250,"y":369,"on":true},{"x":136,"y":369,"on":true},{"x":136,"y":441,"on":true},{"x":316,"y":663,"on":true},{"x":60,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":412,"y":735,"on":true},{"x":412,"y":663,"on":true},{"x":232,"y":441,"on":true},{"x":250,"y":441,"on":true},{"x":358,"y":441,"on":false},{"x":409,"y":353,"on":true},{"x":440,"y":299,"on":false},{"x":440,"y":222,"on":true},{"x":440,"y":144,"on":false},{"x":409,"y":91,"on":true},{"x":384,"y":48,"on":false},{"x":344,"y":24,"on":true},{"x":302,"y":0,"on":false},{"x":187,"y":0,"on":false},{"x":145,"y":24,"on":true},{"x":104,"y":47,"on":false},{"x":79,"y":90,"on":true},{"x":62,"y":120,"on":false}]], "references": [], - "instructions": [64,52,1,1,0,1,1,74,25,1,2,20,1,4,2,73,0,4,0,1,0,4,1,101,0,2,2,3,93,0,3,3,64,75,0,0,0,5,95,0,5,5,65,5,76,24,34,17,18,41,38,6,9,26,43] + "instructions": "QDQBAQABAUoZAQIUAQQCSQAEAAEABAFlAAICA10AAwNASwAAAAVfAAUFQQVMGCIREikmBgkaKw==" }, "uni04E0": { "name": "uni04E0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni01B7","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0292": { "name": "uni0292", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni01B7","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,255,51,176,51,43] + "instructions": "sQABuP8zsDMr" }, "uni04E1": { "name": "uni04E1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni01B7","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,255,51,176,51,43] + "instructions": "sQABuP8zsDMr" }, "uni01B8": { "name": "uni01B8", "advanceWidth": 500, "contours": [[{"x":60,"y":222,"on":true},{"x":60,"y":299,"on":false},{"x":91,"y":353,"on":true},{"x":115,"y":395,"on":false},{"x":154,"y":417,"on":true},{"x":195,"y":441,"on":false},{"x":250,"y":441,"on":true},{"x":268,"y":441,"on":true},{"x":88,"y":663,"on":true},{"x":88,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":184,"y":663,"on":true},{"x":364,"y":441,"on":true},{"x":364,"y":369,"on":true},{"x":250,"y":369,"on":true},{"x":222,"y":369,"on":false},{"x":200,"y":356,"on":true},{"x":177,"y":343,"on":false},{"x":162,"y":317,"on":true},{"x":140,"y":279,"on":false},{"x":140,"y":164,"on":false},{"x":162,"y":126,"on":true},{"x":178,"y":99,"on":false},{"x":202,"y":85,"on":true},{"x":225,"y":72,"on":false},{"x":287,"y":72,"on":false},{"x":310,"y":86,"on":true},{"x":335,"y":100,"on":false},{"x":351,"y":127,"on":true},{"x":364,"y":150,"on":false},{"x":369,"y":178,"on":true},{"x":445,"y":155,"on":true},{"x":438,"y":120,"on":false},{"x":421,"y":90,"on":true},{"x":396,"y":47,"on":false},{"x":355,"y":24,"on":true},{"x":313,"y":0,"on":false},{"x":198,"y":0,"on":false},{"x":156,"y":24,"on":true},{"x":115,"y":47,"on":false},{"x":91,"y":91,"on":true},{"x":60,"y":144,"on":false}]], "references": [], - "instructions": [64,53,32,31,2,4,3,1,74,8,1,2,13,1,0,2,73,0,0,0,3,4,0,3,101,0,2,2,1,93,0,1,1,64,75,0,4,4,5,95,0,5,5,65,5,76,27,25,34,17,18,37,6,9,26,43] + "instructions": "QDUgHwIEAwFKCAECDQEAAkkAAAADBAADZQACAgFdAAEBQEsABAQFXwAFBUEFTBsZIhESJQYJGis=" }, "uni01B9": { "name": "uni01B9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni01B8","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,255,51,176,51,43] + "instructions": "sQABuP8zsDMr" }, "uni026E": { "name": "uni026E", "advanceWidth": 500, "contours": [[{"x":55,"y":-50,"on":true},{"x":131,"y":-27,"on":true},{"x":136,"y":-55,"on":false},{"x":149,"y":-78,"on":true},{"x":165,"y":-105,"on":false},{"x":190,"y":-119,"on":true},{"x":214,"y":-133,"on":false},{"x":244,"y":-133,"on":true},{"x":275,"y":-133,"on":false},{"x":298,"y":-120,"on":true},{"x":322,"y":-106,"on":false},{"x":338,"y":-79,"on":true},{"x":360,"y":-41,"on":false},{"x":360,"y":74,"on":false},{"x":338,"y":112,"on":true},{"x":323,"y":138,"on":false},{"x":300,"y":151,"on":true},{"x":278,"y":164,"on":false},{"x":250,"y":164,"on":true},{"x":212,"y":164,"on":true},{"x":212,"y":236,"on":true},{"x":316,"y":458,"on":true},{"x":140,"y":458,"on":true},{"x":140,"y":53,"on":true},{"x":60,"y":53,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":530,"on":true},{"x":412,"y":530,"on":true},{"x":412,"y":458,"on":true},{"x":308,"y":236,"on":true},{"x":308,"y":228,"on":true},{"x":328,"y":222,"on":false},{"x":346,"y":212,"on":true},{"x":385,"y":190,"on":false},{"x":409,"y":148,"on":true},{"x":440,"y":94,"on":false},{"x":440,"y":17,"on":true},{"x":440,"y":-61,"on":false},{"x":409,"y":-114,"on":true},{"x":384,"y":-157,"on":false},{"x":344,"y":-181,"on":true},{"x":302,"y":-205,"on":false},{"x":187,"y":-205,"on":false},{"x":145,"y":-181,"on":true},{"x":104,"y":-158,"on":false},{"x":79,"y":-115,"on":true},{"x":62,"y":-85,"on":false}]], "references": [], - "instructions": [64,65,30,20,2,1,2,1,1,0,3,2,74,29,1,2,1,73,0,1,2,3,2,1,3,126,0,2,2,5,93,0,5,5,67,75,0,3,3,4,93,0,4,4,64,75,0,0,0,6,95,0,6,6,69,6,76,30,17,17,17,18,41,38,7,9,27,43] + "instructions": "QEEeFAIBAgEBAAMCSh0BAgFJAAECAwIBA34AAgIFXQAFBUNLAAMDBF0ABARASwAAAAZfAAYGRQZMHhERERIpJgcJGys=" }, "uni01BA": { "name": "uni01BA", "advanceWidth": 500, "contours": [[{"x":60,"y":-113,"on":false},{"x":60,"y":-41,"on":false},{"x":91,"y":13,"on":false},{"x":120,"y":29,"on":true},{"x":157,"y":51,"on":false},{"x":212,"y":51,"on":true},{"x":231,"y":51,"on":true},{"x":283,"y":51,"on":false},{"x":316,"y":70,"on":true},{"x":338,"y":83,"on":false},{"x":350,"y":103,"on":true},{"x":360,"y":121,"on":false},{"x":360,"y":144,"on":true},{"x":360,"y":147,"on":true},{"x":360,"y":171,"on":false},{"x":349,"y":191,"on":true},{"x":338,"y":210,"on":false},{"x":316,"y":222,"on":true},{"x":289,"y":238,"on":false},{"x":250,"y":238,"on":true},{"x":136,"y":238,"on":true},{"x":136,"y":310,"on":true},{"x":316,"y":458,"on":true},{"x":60,"y":458,"on":true},{"x":60,"y":530,"on":true},{"x":412,"y":530,"on":true},{"x":412,"y":458,"on":true},{"x":232,"y":310,"on":true},{"x":250,"y":310,"on":true},{"x":317,"y":310,"on":false},{"x":363,"y":283,"on":true},{"x":399,"y":262,"on":false},{"x":419,"y":228,"on":true},{"x":440,"y":192,"on":false},{"x":440,"y":149,"on":true},{"x":440,"y":144,"on":true},{"x":440,"y":99,"on":false},{"x":421,"y":66,"on":true},{"x":401,"y":31,"on":false},{"x":362,"y":9,"on":true},{"x":310,"y":-21,"on":false},{"x":231,"y":-21,"on":true},{"x":212,"y":-21,"on":true},{"x":174,"y":-21,"on":false},{"x":154,"y":-41,"on":true},{"x":140,"y":-55,"on":false},{"x":140,"y":-99,"on":false},{"x":154,"y":-113,"on":true},{"x":174,"y":-133,"on":false},{"x":212,"y":-133,"on":true},{"x":440,"y":-133,"on":true},{"x":440,"y":-205,"on":true},{"x":212,"y":-205,"on":true},{"x":157,"y":-205,"on":false},{"x":120,"y":-183,"on":true},{"x":91,"y":-166,"on":false}]], "references": [], - "instructions": [183,26,1,2,21,1,4,2,73,75,176,38,80,88,64,39,0,4,0,1,0,4,1,101,0,2,2,3,93,0,3,3,67,75,0,0,0,5,95,0,5,5,73,75,0,6,6,7,93,0,7,7,69,7,76,27,64,37,0,4,0,1,0,4,1,101,0,0,0,5,6,0,5,103,0,2,2,3,93,0,3,3,67,75,0,6,6,7,93,0,7,7,69,7,76,89,64,11,33,37,59,34,17,18,43,52,8,9,28,43] + "instructions": "txoBAhUBBAJJS7AmUFhAJwAEAAEABAFlAAICA10AAwNDSwAAAAVfAAUFSUsABgYHXQAHB0UHTBtAJQAEAAEABAFlAAAABQYABWcAAgIDXQADA0NLAAYGB10ABwdFB0xZQAshJTsiERIrNAgJHCs=" }, "uni0293": { "name": "uni0293", "advanceWidth": 500, "contours": [[{"x":52,"y":-81,"on":true},{"x":52,"y":-49,"on":false},{"x":68,"y":-21,"on":true},{"x":85,"y":9,"on":false},{"x":117,"y":28,"on":true},{"x":158,"y":52,"on":false},{"x":212,"y":51,"on":true},{"x":272,"y":51,"on":false},{"x":321,"y":23,"on":true},{"x":342,"y":11,"on":false},{"x":360,"y":-4,"on":true},{"x":360,"y":15,"on":true},{"x":440,"y":16,"on":true},{"x":360,"y":16,"on":true},{"x":360,"y":18,"on":false},{"x":360,"y":20,"on":true},{"x":360,"y":74,"on":false},{"x":338,"y":112,"on":true},{"x":323,"y":138,"on":false},{"x":300,"y":151,"on":true},{"x":278,"y":164,"on":false},{"x":250,"y":164,"on":true},{"x":136,"y":164,"on":true},{"x":136,"y":236,"on":true},{"x":316,"y":458,"on":true},{"x":60,"y":458,"on":true},{"x":60,"y":530,"on":true},{"x":412,"y":530,"on":true},{"x":412,"y":458,"on":true},{"x":232,"y":236,"on":true},{"x":250,"y":236,"on":true},{"x":358,"y":236,"on":false},{"x":409,"y":148,"on":true},{"x":440,"y":94,"on":false},{"x":440,"y":22,"on":true},{"x":440,"y":16,"on":true},{"x":440,"y":-38,"on":false},{"x":428,"y":-79,"on":true},{"x":438,"y":-93,"on":false},{"x":447,"y":-109,"on":true},{"x":467,"y":-144,"on":false},{"x":480,"y":-182,"on":true},{"x":404,"y":-205,"on":true},{"x":396,"y":-180,"on":false},{"x":383,"y":-156,"on":true},{"x":367,"y":-171,"on":false},{"x":347,"y":-182,"on":true},{"x":293,"y":-213,"on":false},{"x":221,"y":-213,"on":true},{"x":156,"y":-213,"on":false},{"x":114,"y":-189,"on":true},{"x":85,"y":-172,"on":false},{"x":69,"y":-143,"on":true},{"x":52,"y":-114,"on":false}],[{"x":132,"y":-68,"on":false},{"x":132,"y":-94,"on":false},{"x":139,"y":-106,"on":true},{"x":147,"y":-119,"on":false},{"x":161,"y":-128,"on":true},{"x":184,"y":-141,"on":false},{"x":221,"y":-141,"on":true},{"x":264,"y":-141,"on":false},{"x":297,"y":-122,"on":true},{"x":321,"y":-108,"on":false},{"x":336,"y":-86,"on":true},{"x":309,"y":-55,"on":false},{"x":279,"y":-38,"on":true},{"x":249,"y":-20,"on":false},{"x":213,"y":-21,"on":true},{"x":184,"y":-21,"on":false},{"x":163,"y":-33,"on":true},{"x":147,"y":-42,"on":false},{"x":139,"y":-56,"on":true}]], "references": [], - "instructions": [64,25,10,1,9,1,64,37,2,8,9,44,42,41,3,7,8,3,74,28,1,4,23,1,6,2,73,75,176,31,80,88,64,52,0,1,2,9,2,1,9,126,0,6,0,3,0,6,3,101,0,4,4,5,93,0,5,5,67,75,0,2,2,65,75,0,0,0,9,95,0,9,9,73,75,0,8,8,7,95,0,7,7,77,7,76,27,75,176,38,80,88,64,54,0,2,0,1,0,2,1,126,0,1,9,0,1,9,124,0,6,0,3,0,6,3,101,0,4,4,5,93,0,5,5,67,75,0,0,0,9,95,0,9,9,73,75,0,8,8,7,95,0,7,7,77,7,76,27,64,52,0,2,0,1,0,2,1,126,0,1,9,0,1,9,124,0,6,0,3,0,6,3,101,0,0,0,9,8,0,9,103,0,4,4,5,93,0,5,5,67,75,0,8,8,7,95,0,7,7,77,7,76,89,89,64,16,69,67,61,59,49,47,34,17,18,39,16,20,37,10,9,27,43] + "instructions": "QBkKAQkBQCUCCAksKikDBwgDShwBBBcBBgJJS7AfUFhANAABAgkCAQl+AAYAAwAGA2UABAQFXQAFBUNLAAICQUsAAAAJXwAJCUlLAAgIB18ABwdNB0wbS7AmUFhANgACAAEAAgF+AAEJAAEJfAAGAAMABgNlAAQEBV0ABQVDSwAAAAlfAAkJSUsACAgHXwAHB00HTBtANAACAAEAAgF+AAEJAAEJfAAGAAMABgNlAAAACQgACWcABAQFXQAFBUNLAAgIB18ABwdNB0xZWUAQRUM9OzEvIhESJxAUJQoJGys=" }, "uni0294": { "name": "uni0294", "advanceWidth": 500, "contours": [[{"x":55,"y":580,"on":true},{"x":61,"y":620,"on":false},{"x":81,"y":654,"on":true},{"x":105,"y":696,"on":false},{"x":145,"y":718,"on":true},{"x":188,"y":743,"on":false},{"x":304,"y":743,"on":false},{"x":347,"y":718,"on":true},{"x":387,"y":695,"on":false},{"x":411,"y":654,"on":true},{"x":440,"y":603,"on":false},{"x":440,"y":538,"on":true},{"x":440,"y":465,"on":false},{"x":402,"y":399,"on":true},{"x":387,"y":373,"on":false},{"x":357,"y":335,"on":true},{"x":328,"y":298,"on":false},{"x":317,"y":278,"on":true},{"x":290,"y":231,"on":false},{"x":290,"y":159,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":159,"on":true},{"x":210,"y":249,"on":false},{"x":243,"y":306,"on":true},{"x":256,"y":328,"on":false},{"x":286,"y":368,"on":true},{"x":316,"y":407,"on":false},{"x":329,"y":429,"on":true},{"x":361,"y":484,"on":false},{"x":360,"y":538,"on":true},{"x":360,"y":583,"on":false},{"x":340,"y":618,"on":true},{"x":325,"y":644,"on":false},{"x":301,"y":657,"on":true},{"x":277,"y":671,"on":false},{"x":214,"y":671,"on":false},{"x":166,"y":643,"on":false},{"x":151,"y":617,"on":true},{"x":137,"y":593,"on":false},{"x":133,"y":562,"on":true}]], "references": [], - "instructions": [64,28,40,1,1,2,1,74,0,2,2,0,95,0,0,0,72,75,0,1,1,65,1,76,30,30,21,3,9,23,43] + "instructions": "QBwoAQECAUoAAgIAXwAAAEhLAAEBQQFMHh4VAwkXKw==" }, "uni0241": { "name": "uni0241", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0294","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0295": { "name": "uni0295", "advanceWidth": 500, "contours": [[{"x":60,"y":538,"on":true},{"x":60,"y":604,"on":false},{"x":89,"y":654,"on":true},{"x":113,"y":696,"on":false},{"x":153,"y":718,"on":true},{"x":196,"y":743,"on":false},{"x":313,"y":743,"on":false},{"x":355,"y":718,"on":true},{"x":395,"y":695,"on":false},{"x":419,"y":654,"on":true},{"x":438,"y":620,"on":false},{"x":445,"y":580,"on":true},{"x":367,"y":562,"on":true},{"x":363,"y":592,"on":false},{"x":349,"y":617,"on":true},{"x":334,"y":643,"on":false},{"x":286,"y":671,"on":false},{"x":222,"y":671,"on":false},{"x":199,"y":657,"on":true},{"x":175,"y":643,"on":false},{"x":160,"y":618,"on":true},{"x":140,"y":584,"on":false},{"x":140,"y":538,"on":true},{"x":140,"y":484,"on":false},{"x":171,"y":429,"on":true},{"x":184,"y":407,"on":false},{"x":214,"y":368,"on":true},{"x":244,"y":328,"on":false},{"x":257,"y":306,"on":true},{"x":290,"y":248,"on":false},{"x":290,"y":159,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":159,"on":true},{"x":210,"y":231,"on":false},{"x":183,"y":278,"on":true},{"x":171,"y":298,"on":false},{"x":143,"y":335,"on":true},{"x":113,"y":373,"on":false},{"x":98,"y":399,"on":true},{"x":60,"y":465,"on":false}]], "references": [], - "instructions": [64,29,12,11,2,2,1,1,74,0,1,1,0,95,0,0,0,72,75,0,2,2,65,2,76,30,26,21,3,9,23,43] + "instructions": "QB0MCwICAQFKAAEBAF8AAABISwACAkECTB4aFQMJFys=" }, "uni0242": { "name": "uni0242", "advanceWidth": 500, "contours": [[{"x":55,"y":375,"on":true},{"x":55,"y":380,"on":true},{"x":55,"y":420,"on":false},{"x":75,"y":454,"on":true},{"x":96,"y":490,"on":false},{"x":133,"y":512,"on":true},{"x":179,"y":538,"on":false},{"x":247,"y":538,"on":true},{"x":316,"y":538,"on":false},{"x":364,"y":511,"on":true},{"x":401,"y":490,"on":false},{"x":440,"y":421,"on":false},{"x":440,"y":379,"on":true},{"x":440,"y":331,"on":false},{"x":415,"y":288,"on":true},{"x":398,"y":258,"on":false},{"x":357,"y":220,"on":true},{"x":320,"y":185,"on":false},{"x":308,"y":163,"on":true},{"x":290,"y":132,"on":false},{"x":290,"y":80,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":80,"on":true},{"x":210,"y":152,"on":false},{"x":234,"y":193,"on":true},{"x":249,"y":219,"on":false},{"x":291,"y":261,"on":true},{"x":330,"y":300,"on":false},{"x":344,"y":323,"on":true},{"x":360,"y":351,"on":false},{"x":360,"y":379,"on":true},{"x":360,"y":401,"on":false},{"x":350,"y":419,"on":true},{"x":339,"y":438,"on":false},{"x":318,"y":450,"on":true},{"x":290,"y":466,"on":false},{"x":248,"y":466,"on":true},{"x":207,"y":466,"on":false},{"x":180,"y":450,"on":true},{"x":158,"y":438,"on":false},{"x":146,"y":417,"on":true},{"x":134,"y":397,"on":false},{"x":134,"y":374,"on":true},{"x":134,"y":371,"on":false},{"x":135,"y":368,"on":true}]], "references": [], - "instructions": [64,37,4,1,3,2,1,2,3,1,126,0,2,2,0,95,0,0,0,75,75,0,1,1,65,1,76,0,0,0,45,0,43,46,29,38,5,9,23,43] + "instructions": "QCUEAQMCAQIDAX4AAgIAXwAAAEtLAAEBQQFMAAAALQArLh0mBQkXKw==" }, "uni01BE": { "name": "uni01BE", "advanceWidth": 500, "contours": [[{"x":55,"y":150,"on":true},{"x":55,"y":155,"on":true},{"x":135,"y":162,"on":true},{"x":135,"y":159,"on":false},{"x":134,"y":156,"on":true},{"x":134,"y":133,"on":false},{"x":146,"y":113,"on":true},{"x":158,"y":92,"on":false},{"x":180,"y":80,"on":true},{"x":207,"y":64,"on":false},{"x":247,"y":64,"on":true},{"x":289,"y":64,"on":false},{"x":317,"y":80,"on":true},{"x":338,"y":92,"on":false},{"x":360,"y":130,"on":false},{"x":360,"y":155,"on":true},{"x":360,"y":183,"on":false},{"x":345,"y":208,"on":true},{"x":332,"y":230,"on":false},{"x":294,"y":265,"on":true},{"x":251,"y":304,"on":false},{"x":234,"y":333,"on":true},{"x":227,"y":346,"on":false},{"x":222,"y":362,"on":true},{"x":145,"y":362,"on":true},{"x":145,"y":434,"on":true},{"x":210,"y":434,"on":true},{"x":210,"y":530,"on":true},{"x":290,"y":530,"on":true},{"x":290,"y":434,"on":true},{"x":355,"y":434,"on":true},{"x":355,"y":362,"on":true},{"x":311,"y":362,"on":true},{"x":325,"y":340,"on":false},{"x":360,"y":307,"on":true},{"x":401,"y":269,"on":false},{"x":417,"y":241,"on":true},{"x":440,"y":202,"on":false},{"x":440,"y":155,"on":true},{"x":440,"y":109,"on":false},{"x":420,"y":74,"on":true},{"x":400,"y":40,"on":false},{"x":364,"y":19,"on":true},{"x":317,"y":-8,"on":false},{"x":179,"y":-8,"on":false},{"x":133,"y":18,"on":true},{"x":96,"y":39,"on":false},{"x":75,"y":76,"on":true},{"x":55,"y":110,"on":false}]], "references": [], - "instructions": [64,43,2,0,2,0,1,1,74,4,1,2,5,1,1,0,2,1,102,0,3,3,67,75,0,0,0,6,95,0,6,6,73,6,76,27,17,17,17,17,28,41,7,9,27,43] + "instructions": "QCsCAAIAAQFKBAECBQEBAAIBZgADA0NLAAAABl8ABgZJBkwbERERERwpBwkbKw==" }, "glyph625": { "name": "glyph625", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0294","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph626": { "name": "glyph626", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0295","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0296": { "name": "uni0296", "advanceWidth": 500, "contours": [[{"x":55,"y":155,"on":true},{"x":133,"y":173,"on":true},{"x":137,"y":143,"on":false},{"x":151,"y":118,"on":true},{"x":166,"y":92,"on":false},{"x":214,"y":64,"on":false},{"x":278,"y":64,"on":false},{"x":301,"y":78,"on":true},{"x":325,"y":92,"on":false},{"x":340,"y":117,"on":true},{"x":360,"y":151,"on":false},{"x":360,"y":197,"on":true},{"x":360,"y":251,"on":false},{"x":329,"y":306,"on":true},{"x":316,"y":328,"on":false},{"x":286,"y":367,"on":true},{"x":256,"y":407,"on":false},{"x":243,"y":429,"on":true},{"x":210,"y":487,"on":false},{"x":210,"y":576,"on":true},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":576,"on":true},{"x":290,"y":504,"on":false},{"x":317,"y":457,"on":true},{"x":329,"y":437,"on":false},{"x":357,"y":400,"on":true},{"x":387,"y":362,"on":false},{"x":402,"y":336,"on":true},{"x":440,"y":270,"on":false},{"x":440,"y":197,"on":true},{"x":440,"y":131,"on":false},{"x":411,"y":81,"on":true},{"x":387,"y":39,"on":false},{"x":347,"y":17,"on":true},{"x":304,"y":-8,"on":false},{"x":187,"y":-8,"on":false},{"x":145,"y":17,"on":true},{"x":105,"y":40,"on":false},{"x":81,"y":81,"on":true},{"x":62,"y":115,"on":false}]], "references": [], - "instructions": [64,28,1,1,0,1,1,74,0,1,1,64,75,0,0,0,2,96,0,2,2,73,2,76,30,30,21,3,9,23,43] + "instructions": "QBwBAQABAUoAAQFASwAAAAJgAAICSQJMHh4VAwkXKw==" }, "uni02A1": { "name": "uni02A1", "advanceWidth": 500, "contours": [[{"x":55,"y":580,"on":true},{"x":61,"y":620,"on":false},{"x":81,"y":654,"on":true},{"x":105,"y":696,"on":false},{"x":145,"y":718,"on":true},{"x":188,"y":743,"on":false},{"x":304,"y":743,"on":false},{"x":347,"y":718,"on":true},{"x":387,"y":695,"on":false},{"x":411,"y":654,"on":true},{"x":440,"y":603,"on":false},{"x":440,"y":538,"on":true},{"x":440,"y":465,"on":false},{"x":402,"y":399,"on":true},{"x":387,"y":373,"on":false},{"x":357,"y":335,"on":true},{"x":328,"y":298,"on":false},{"x":317,"y":278,"on":true},{"x":302,"y":252,"on":false},{"x":296,"y":220,"on":true},{"x":355,"y":220,"on":true},{"x":355,"y":148,"on":true},{"x":290,"y":148,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":148,"on":true},{"x":145,"y":148,"on":true},{"x":145,"y":220,"on":true},{"x":214,"y":220,"on":true},{"x":222,"y":270,"on":false},{"x":243,"y":306,"on":true},{"x":256,"y":328,"on":false},{"x":286,"y":368,"on":true},{"x":316,"y":407,"on":false},{"x":329,"y":429,"on":true},{"x":361,"y":484,"on":false},{"x":360,"y":538,"on":true},{"x":360,"y":583,"on":false},{"x":340,"y":618,"on":true},{"x":325,"y":644,"on":false},{"x":301,"y":657,"on":true},{"x":277,"y":671,"on":false},{"x":214,"y":671,"on":false},{"x":166,"y":643,"on":false},{"x":151,"y":617,"on":true},{"x":137,"y":593,"on":false},{"x":133,"y":562,"on":true}]], "references": [], - "instructions": [64,42,46,1,1,6,1,74,5,1,1,4,1,2,3,1,2,101,0,6,6,0,95,0,0,0,72,75,0,3,3,65,3,76,29,17,17,17,17,29,21,7,9,27,43] + "instructions": "QCouAQEGAUoFAQEEAQIDAQJlAAYGAF8AAABISwADA0EDTB0RERERHRUHCRsr" }, "uni02A2": { "name": "uni02A2", "advanceWidth": 500, "contours": [[{"x":60,"y":538,"on":true},{"x":60,"y":604,"on":false},{"x":89,"y":654,"on":true},{"x":113,"y":696,"on":false},{"x":153,"y":718,"on":true},{"x":196,"y":743,"on":false},{"x":313,"y":743,"on":false},{"x":355,"y":718,"on":true},{"x":395,"y":695,"on":false},{"x":419,"y":654,"on":true},{"x":438,"y":620,"on":false},{"x":445,"y":580,"on":true},{"x":367,"y":562,"on":true},{"x":363,"y":592,"on":false},{"x":349,"y":617,"on":true},{"x":334,"y":643,"on":false},{"x":286,"y":671,"on":false},{"x":222,"y":671,"on":false},{"x":199,"y":657,"on":true},{"x":175,"y":643,"on":false},{"x":160,"y":618,"on":true},{"x":140,"y":584,"on":false},{"x":140,"y":538,"on":true},{"x":140,"y":484,"on":false},{"x":171,"y":429,"on":true},{"x":184,"y":407,"on":false},{"x":214,"y":368,"on":true},{"x":244,"y":328,"on":false},{"x":257,"y":306,"on":true},{"x":278,"y":269,"on":false},{"x":286,"y":220,"on":true},{"x":355,"y":220,"on":true},{"x":355,"y":148,"on":true},{"x":290,"y":148,"on":true},{"x":290,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":148,"on":true},{"x":145,"y":148,"on":true},{"x":145,"y":220,"on":true},{"x":204,"y":220,"on":true},{"x":197,"y":253,"on":false},{"x":183,"y":278,"on":true},{"x":171,"y":298,"on":false},{"x":143,"y":335,"on":true},{"x":113,"y":373,"on":false},{"x":98,"y":399,"on":true},{"x":60,"y":465,"on":false}]], "references": [], - "instructions": [64,43,12,11,2,2,1,1,74,6,1,2,5,1,3,4,2,3,101,0,1,1,0,95,0,0,0,72,75,0,4,4,65,4,76,17,17,17,17,29,26,21,7,9,27,43] + "instructions": "QCsMCwICAQFKBgECBQEDBAIDZQABAQBfAAAASEsABARBBEwRERERHRoVBwkbKw==" }, "eth": { "name": "eth", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":221,"on":true},{"x":52,"y":302,"on":false},{"x":84,"y":357,"on":true},{"x":109,"y":401,"on":false},{"x":193,"y":449,"on":false},{"x":250,"y":449,"on":true},{"x":300,"y":449,"on":false},{"x":339,"y":430,"on":true},{"x":323,"y":481,"on":false},{"x":297,"y":523,"on":true},{"x":108,"y":475,"on":true},{"x":88,"y":544,"on":true},{"x":248,"y":585,"on":true},{"x":217,"y":616,"on":false},{"x":180,"y":638,"on":true},{"x":150,"y":655,"on":false},{"x":117,"y":666,"on":true},{"x":139,"y":735,"on":true},{"x":185,"y":722,"on":false},{"x":226,"y":698,"on":true},{"x":288,"y":662,"on":false},{"x":334,"y":607,"on":true},{"x":411,"y":626,"on":true},{"x":431,"y":557,"on":true},{"x":377,"y":543,"on":true},{"x":448,"y":417,"on":false},{"x":448,"y":222,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":307,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":16,"on":true},{"x":110,"y":40,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":222,"on":true},{"x":368,"y":282,"on":false},{"x":345,"y":321,"on":true},{"x":329,"y":349,"on":false},{"x":304,"y":364,"on":true},{"x":281,"y":377,"on":false},{"x":219,"y":377,"on":false},{"x":196,"y":364,"on":true},{"x":171,"y":350,"on":false},{"x":155,"y":321,"on":true},{"x":132,"y":281,"on":false},{"x":132,"y":221,"on":true}]], "references": [], - "instructions": [64,48,8,1,3,0,1,74,25,24,23,22,18,17,13,12,11,10,10,0,72,0,0,0,3,2,0,3,103,0,2,2,1,95,0,1,1,73,1,76,56,55,44,43,33,32,37,4,9,21,43] + "instructions": "QDAIAQMAAUoZGBcWEhENDAsKCgBIAAAAAwIAA2cAAgIBXwABAUkBTDg3LCshICUECRUr" }, "Thorn": { "name": "Thorn", "advanceWidth": 500, "contours": [[{"x":75,"y":0,"on":true},{"x":75,"y":735,"on":true},{"x":155,"y":735,"on":true},{"x":155,"y":595,"on":true},{"x":212,"y":595,"on":true},{"x":290,"y":595,"on":false},{"x":345,"y":564,"on":true},{"x":392,"y":537,"on":false},{"x":419,"y":490,"on":true},{"x":448,"y":439,"on":false},{"x":448,"y":296,"on":false},{"x":419,"y":245,"on":true},{"x":392,"y":198,"on":false},{"x":345,"y":171,"on":true},{"x":290,"y":139,"on":false},{"x":212,"y":140,"on":true},{"x":155,"y":140,"on":true},{"x":155,"y":0,"on":true}],[{"x":155,"y":212,"on":true},{"x":212,"y":212,"on":true},{"x":262,"y":212,"on":false},{"x":298,"y":232,"on":true},{"x":329,"y":250,"on":false},{"x":348,"y":282,"on":true},{"x":368,"y":317,"on":false},{"x":368,"y":417,"on":false},{"x":348,"y":453,"on":true},{"x":330,"y":485,"on":false},{"x":298,"y":503,"on":true},{"x":262,"y":524,"on":false},{"x":212,"y":523,"on":true},{"x":155,"y":523,"on":true}]], "references": [], - "instructions": [64,44,0,1,0,5,4,1,5,103,0,4,0,2,3,4,2,103,0,0,0,64,75,6,1,3,3,65,3,76,0,0,31,29,20,18,0,17,0,17,41,33,17,7,9,23,43] + "instructions": "QCwAAQAFBAEFZwAEAAIDBAJnAAAAQEsGAQMDQQNMAAAfHRQSABEAESkhEQcJFys=" }, "uni03F7": { "name": "uni03F7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Thorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "thorn": { "name": "thorn", "advanceWidth": 500, "contours": [[{"x":60,"y":-205,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":275,"y":538,"on":true},{"x":320,"y":538,"on":false},{"x":354,"y":518,"on":true},{"x":391,"y":497,"on":false},{"x":415,"y":456,"on":true},{"x":448,"y":398,"on":false},{"x":448,"y":310,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":132,"on":false},{"x":415,"y":74,"on":true},{"x":391,"y":33,"on":false},{"x":354,"y":12,"on":true},{"x":320,"y":-8,"on":false},{"x":275,"y":-8,"on":true},{"x":233,"y":-8,"on":false},{"x":201,"y":10,"on":true},{"x":166,"y":30,"on":false},{"x":143,"y":70,"on":true},{"x":141,"y":73,"on":false},{"x":140,"y":76,"on":true},{"x":140,"y":-205,"on":true}],[{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":251,"y":64,"on":true},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":310,"on":true},{"x":368,"y":371,"on":false},{"x":345,"y":410,"on":true},{"x":329,"y":438,"on":false},{"x":304,"y":453,"on":true},{"x":281,"y":466,"on":false},{"x":251,"y":466,"on":true},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":373,"on":false},{"x":140,"y":310,"on":true}]], "references": [], - "instructions": [64,55,28,3,2,4,5,1,74,0,0,0,64,75,0,5,5,1,95,0,1,1,75,75,0,4,4,2,95,0,2,2,73,75,6,1,3,3,69,3,76,0,0,50,48,37,35,0,29,0,29,43,38,17,7,9,23,43] + "instructions": "QDccAwIEBQFKAAAAQEsABQUBXwABAUtLAAQEAl8AAgJJSwYBAwNFA0wAADIwJSMAHQAdKyYRBwkXKw==" }, "uni03F8": { "name": "uni03F8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"thorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01F6": { "name": "uni01F6", "advanceWidth": 500, "contours": [[{"x":52,"y":0,"on":true},{"x":52,"y":735,"on":true},{"x":132,"y":735,"on":true},{"x":132,"y":404,"on":true},{"x":210,"y":404,"on":true},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":132,"on":true},{"x":290,"y":91,"on":false},{"x":308,"y":73,"on":true},{"x":317,"y":64,"on":false},{"x":341,"y":64,"on":false},{"x":350,"y":73,"on":true},{"x":368,"y":91,"on":false},{"x":368,"y":132,"on":true},{"x":368,"y":530,"on":true},{"x":448,"y":530,"on":true},{"x":448,"y":132,"on":true},{"x":448,"y":82,"on":false},{"x":428,"y":47,"on":true},{"x":413,"y":20,"on":false},{"x":363,"y":-8,"on":false},{"x":295,"y":-8,"on":false},{"x":245,"y":21,"on":false},{"x":230,"y":47,"on":true},{"x":210,"y":81,"on":false},{"x":210,"y":132,"on":true},{"x":210,"y":332,"on":true},{"x":132,"y":332,"on":true},{"x":132,"y":0,"on":true}]], "references": [], - "instructions": [75,176,29,80,88,64,32,0,1,0,6,3,1,6,101,2,1,0,0,64,75,0,4,4,67,75,0,3,3,5,95,8,7,2,5,5,73,5,76,27,64,36,0,1,0,6,3,1,6,101,2,1,0,0,64,75,0,4,4,67,75,8,1,7,7,65,75,0,3,3,5,95,0,5,5,73,5,76,89,64,16,0,0,0,29,0,29,21,21,20,20,17,17,17,9,9,27,43] + "instructions": "S7AdUFhAIAABAAYDAQZlAgEAAEBLAAQEQ0sAAwMFXwgHAgUFSQVMG0AkAAEABgMBBmUCAQAAQEsABARDSwgBBwdBSwADAwVfAAUFSQVMWUAQAAAAHQAdFRUUFBEREQkJGys=" }, "uni0195": { "name": "uni0195", "advanceWidth": 500, "contours": [[{"x":52,"y":0,"on":true},{"x":52,"y":735,"on":true},{"x":132,"y":735,"on":true},{"x":132,"y":509,"on":true},{"x":142,"y":521,"on":false},{"x":155,"y":528,"on":true},{"x":172,"y":538,"on":false},{"x":218,"y":538,"on":false},{"x":235,"y":528,"on":true},{"x":255,"y":516,"on":false},{"x":269,"y":493,"on":true},{"x":290,"y":456,"on":false},{"x":290,"y":398,"on":true},{"x":290,"y":132,"on":true},{"x":290,"y":91,"on":false},{"x":308,"y":73,"on":true},{"x":317,"y":64,"on":false},{"x":341,"y":64,"on":false},{"x":350,"y":73,"on":true},{"x":368,"y":91,"on":false},{"x":368,"y":132,"on":true},{"x":368,"y":530,"on":true},{"x":448,"y":530,"on":true},{"x":448,"y":132,"on":true},{"x":448,"y":82,"on":false},{"x":428,"y":47,"on":true},{"x":413,"y":20,"on":false},{"x":363,"y":-8,"on":false},{"x":295,"y":-8,"on":false},{"x":245,"y":21,"on":false},{"x":230,"y":47,"on":true},{"x":210,"y":81,"on":false},{"x":210,"y":132,"on":true},{"x":210,"y":398,"on":true},{"x":210,"y":439,"on":false},{"x":192,"y":457,"on":true},{"x":183,"y":466,"on":false},{"x":159,"y":466,"on":false},{"x":150,"y":457,"on":true},{"x":132,"y":439,"on":false},{"x":132,"y":398,"on":true},{"x":132,"y":0,"on":true}]], "references": [], - "instructions": [75,176,29,80,88,181,3,1,5,1,1,74,27,181,3,1,5,3,1,74,89,75,176,29,80,88,64,29,0,0,0,64,75,0,5,5,1,95,3,1,1,1,75,75,0,2,2,4,95,7,6,2,4,4,73,4,76,27,64,37,0,0,0,64,75,0,3,3,67,75,0,5,5,1,95,0,1,1,75,75,7,1,6,6,65,75,0,2,2,4,95,0,4,4,73,4,76,89,64,15,0,0,0,41,0,41,24,21,20,25,20,17,8,9,26,43] + "instructions": "S7AdUFi1AwEFAQFKG7UDAQUDAUpZS7AdUFhAHQAAAEBLAAUFAV8DAQEBS0sAAgIEXwcGAgQESQRMG0AlAAAAQEsAAwNDSwAFBQFfAAEBS0sHAQYGQUsAAgIEXwAEBEkETFlADwAAACkAKRgVFBkUEQgJGis=" }, "uni01A2": { "name": "uni01A2", "advanceWidth": 500, "contours": [[{"x":44,"y":132,"on":true},{"x":44,"y":603,"on":true},{"x":44,"y":651,"on":false},{"x":63,"y":685,"on":true},{"x":79,"y":712,"on":false},{"x":105,"y":727,"on":true},{"x":133,"y":743,"on":false},{"x":209,"y":743,"on":false},{"x":237,"y":727,"on":true},{"x":267,"y":710,"on":false},{"x":283,"y":677,"on":true},{"x":330,"y":684,"on":false},{"x":358,"y":713,"on":true},{"x":368,"y":723,"on":false},{"x":376,"y":735,"on":true},{"x":456,"y":735,"on":true},{"x":456,"y":-205,"on":true},{"x":376,"y":-205,"on":true},{"x":376,"y":632,"on":true},{"x":374,"y":631,"on":false},{"x":372,"y":630,"on":true},{"x":341,"y":612,"on":false},{"x":298,"y":606,"on":true},{"x":298,"y":132,"on":true},{"x":298,"y":84,"on":false},{"x":279,"y":50,"on":true},{"x":263,"y":23,"on":false},{"x":237,"y":8,"on":true},{"x":209,"y":-8,"on":false},{"x":133,"y":-8,"on":false},{"x":105,"y":8,"on":true},{"x":79,"y":23,"on":false},{"x":63,"y":50,"on":true},{"x":44,"y":83,"on":false}],[{"x":124,"y":132,"on":true},{"x":124,"y":94,"on":false},{"x":142,"y":76,"on":true},{"x":154,"y":64,"on":false},{"x":188,"y":64,"on":false},{"x":200,"y":76,"on":true},{"x":218,"y":94,"on":false},{"x":218,"y":132,"on":true},{"x":218,"y":603,"on":true},{"x":218,"y":641,"on":false},{"x":200,"y":659,"on":true},{"x":188,"y":671,"on":false},{"x":154,"y":671,"on":false},{"x":142,"y":659,"on":true},{"x":124,"y":641,"on":false},{"x":124,"y":603,"on":true}]], "references": [], - "instructions": [75,176,29,80,88,64,11,10,1,5,0,22,18,2,4,5,2,74,27,64,11,10,1,5,1,22,18,2,4,5,2,74,89,75,176,29,80,88,64,27,0,5,5,0,95,1,1,0,0,72,75,0,4,4,3,95,0,3,3,73,75,0,2,2,69,2,76,27,64,31,0,1,1,64,75,0,5,5,0,95,0,0,0,72,75,0,4,4,3,95,0,3,3,73,75,0,2,2,69,2,76,89,64,9,23,24,27,17,23,22,6,9,26,43] + "instructions": "S7AdUFhACwoBBQAWEgIEBQJKG0ALCgEFARYSAgQFAkpZS7AdUFhAGwAFBQBfAQEAAEhLAAQEA18AAwNJSwACAkUCTBtAHwABAUBLAAUFAF8AAABISwAEBANfAAMDSUsAAgJFAkxZQAkXGBsRFxYGCRor" }, "uni01A3": { "name": "uni01A3", "advanceWidth": 500, "contours": [[{"x":44,"y":132,"on":true},{"x":44,"y":398,"on":true},{"x":44,"y":446,"on":false},{"x":63,"y":480,"on":true},{"x":79,"y":507,"on":false},{"x":105,"y":522,"on":true},{"x":133,"y":538,"on":false},{"x":209,"y":538,"on":false},{"x":237,"y":522,"on":true},{"x":267,"y":505,"on":false},{"x":283,"y":472,"on":true},{"x":330,"y":479,"on":false},{"x":358,"y":508,"on":true},{"x":368,"y":518,"on":false},{"x":376,"y":530,"on":true},{"x":456,"y":530,"on":true},{"x":456,"y":-205,"on":true},{"x":376,"y":-205,"on":true},{"x":376,"y":427,"on":true},{"x":374,"y":426,"on":false},{"x":372,"y":425,"on":true},{"x":341,"y":407,"on":false},{"x":298,"y":401,"on":true},{"x":298,"y":132,"on":true},{"x":298,"y":84,"on":false},{"x":279,"y":50,"on":true},{"x":263,"y":23,"on":false},{"x":237,"y":8,"on":true},{"x":209,"y":-8,"on":false},{"x":133,"y":-8,"on":false},{"x":105,"y":8,"on":true},{"x":79,"y":23,"on":false},{"x":63,"y":50,"on":true},{"x":44,"y":83,"on":false}],[{"x":124,"y":132,"on":true},{"x":124,"y":94,"on":false},{"x":142,"y":76,"on":true},{"x":154,"y":64,"on":false},{"x":188,"y":64,"on":false},{"x":200,"y":76,"on":true},{"x":218,"y":94,"on":false},{"x":218,"y":132,"on":true},{"x":218,"y":398,"on":true},{"x":218,"y":436,"on":false},{"x":200,"y":454,"on":true},{"x":188,"y":466,"on":false},{"x":154,"y":466,"on":false},{"x":142,"y":454,"on":true},{"x":124,"y":436,"on":false},{"x":124,"y":398,"on":true}]], "references": [], - "instructions": [75,176,29,80,88,64,11,10,1,5,0,22,18,2,4,5,2,74,27,64,11,10,1,5,1,22,18,2,4,5,2,74,89,75,176,29,80,88,64,27,0,5,5,0,95,1,1,0,0,75,75,0,4,4,3,95,0,3,3,73,75,0,2,2,69,2,76,27,64,31,0,1,1,67,75,0,5,5,0,95,0,0,0,75,75,0,4,4,3,95,0,3,3,73,75,0,2,2,69,2,76,89,64,9,23,24,27,17,23,22,6,9,26,43] + "instructions": "S7AdUFhACwoBBQAWEgIEBQJKG0ALCgEFARYSAgQFAkpZS7AdUFhAGwAFBQBfAQEAAEtLAAQEA18AAwNJSwACAkUCTBtAHwABAUNLAAUFAF8AAABLSwAEBANfAAMDSUsAAgJFAkxZQAkXGBsRFxYGCRor" }, "uni01F7": { "name": "uni01F7", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":695,"on":true},{"x":156,"y":710,"on":false},{"x":175,"y":720,"on":true},{"x":214,"y":743,"on":false},{"x":258,"y":743,"on":true},{"x":307,"y":743,"on":false},{"x":350,"y":718,"on":true},{"x":391,"y":695,"on":false},{"x":416,"y":651,"on":true},{"x":448,"y":595,"on":false},{"x":448,"y":522,"on":true},{"x":448,"y":443,"on":false},{"x":402,"y":363,"on":true},{"x":340,"y":256,"on":false},{"x":140,"y":74,"on":true},{"x":140,"y":0,"on":true}],[{"x":140,"y":176,"on":true},{"x":284,"y":310,"on":false},{"x":329,"y":389,"on":true},{"x":368,"y":456,"on":false},{"x":368,"y":521,"on":true},{"x":368,"y":576,"on":false},{"x":345,"y":615,"on":true},{"x":329,"y":643,"on":false},{"x":281,"y":671,"on":false},{"x":253,"y":671,"on":true},{"x":224,"y":671,"on":false},{"x":198,"y":656,"on":true},{"x":169,"y":639,"on":false},{"x":152,"y":609,"on":true},{"x":144,"y":596,"on":false},{"x":140,"y":581,"on":true}]], "references": [], - "instructions": [64,12,3,1,3,0,34,19,17,3,2,3,2,74,75,176,29,80,88,64,18,0,3,3,0,95,1,1,0,0,64,75,4,1,2,2,65,2,76,27,64,22,0,0,0,64,75,0,3,3,1,95,0,1,1,72,75,4,1,2,2,65,2,76,89,64,13,0,0,29,27,0,18,0,18,36,17,5,9,22,43] + "instructions": "QAwDAQMAIhMRAwIDAkpLsB1QWEASAAMDAF8BAQAAQEsEAQICQQJMG0AWAAAAQEsAAwMBXwABAUhLBAECAkECTFlADQAAHRsAEgASJBEFCRYr" }, "uni01BF": { "name": "uni01BF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni01F7","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,184,255,51,176,51,43] + "instructions": "sQACuP8zsDMr" }, "uni021C": { "name": "uni021C", "advanceWidth": 500, "contours": [[{"x":52,"y":64,"on":true},{"x":166,"y":74,"on":false},{"x":255,"y":126,"on":true},{"x":315,"y":160,"on":false},{"x":341,"y":206,"on":true},{"x":361,"y":241,"on":false},{"x":361,"y":278,"on":true},{"x":361,"y":331,"on":false},{"x":324,"y":368,"on":true},{"x":319,"y":365,"on":false},{"x":313,"y":361,"on":true},{"x":229,"y":312,"on":false},{"x":116,"y":276,"on":true},{"x":92,"y":345,"on":true},{"x":214,"y":383,"on":false},{"x":275,"y":418,"on":true},{"x":320,"y":444,"on":false},{"x":342,"y":482,"on":true},{"x":361,"y":514,"on":false},{"x":360,"y":550,"on":true},{"x":360,"y":588,"on":false},{"x":342,"y":618,"on":true},{"x":328,"y":643,"on":false},{"x":305,"y":657,"on":true},{"x":280,"y":671,"on":false},{"x":246,"y":671,"on":true},{"x":213,"y":671,"on":false},{"x":165,"y":643,"on":false},{"x":150,"y":618,"on":true},{"x":136,"y":594,"on":false},{"x":133,"y":565,"on":true},{"x":55,"y":580,"on":true},{"x":60,"y":621,"on":false},{"x":80,"y":655,"on":true},{"x":103,"y":695,"on":false},{"x":143,"y":718,"on":true},{"x":186,"y":743,"on":false},{"x":306,"y":743,"on":false},{"x":350,"y":718,"on":true},{"x":390,"y":695,"on":false},{"x":412,"y":655,"on":true},{"x":440,"y":607,"on":false},{"x":440,"y":550,"on":true},{"x":440,"y":500,"on":false},{"x":414,"y":454,"on":true},{"x":402,"y":434,"on":false},{"x":385,"y":416,"on":true},{"x":403,"y":398,"on":false},{"x":416,"y":375,"on":true},{"x":441,"y":332,"on":false},{"x":441,"y":280,"on":true},{"x":441,"y":225,"on":false},{"x":412,"y":174,"on":true},{"x":376,"y":111,"on":false},{"x":300,"y":67,"on":true},{"x":193,"y":5,"on":false},{"x":60,"y":-8,"on":true}]], "references": [], - "instructions": [64,28,56,46,31,30,13,12,8,7,0,71,0,0,0,1,95,0,1,1,72,0,76,37,36,26,24,2,9,20,43] + "instructions": "QBw4Lh8eDQwIBwBHAAAAAV8AAQFIAEwlJBoYAgkUKw==" }, "uni021D": { "name": "uni021D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni021C","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,255,51,176,51,43] + "instructions": "sQABuP8zsDMr" }, "uni0263": { "name": "uni0263", "advanceWidth": 500, "contours": [[{"x":52,"y":530,"on":true},{"x":132,"y":530,"on":true},{"x":203,"y":383,"on":false},{"x":250,"y":264,"on":true},{"x":297,"y":383,"on":false},{"x":368,"y":530,"on":true},{"x":448,"y":530,"on":true},{"x":343,"y":315,"on":false},{"x":288,"y":161,"on":true},{"x":347,"y":-9,"on":false},{"x":347,"y":-109,"on":true},{"x":347,"y":-141,"on":false},{"x":335,"y":-162,"on":true},{"x":330,"y":-171,"on":false},{"x":322,"y":-179,"on":true},{"x":296,"y":-205,"on":false},{"x":204,"y":-205,"on":false},{"x":178,"y":-179,"on":true},{"x":170,"y":-171,"on":false},{"x":165,"y":-162,"on":true},{"x":153,"y":-141,"on":false},{"x":153,"y":-109,"on":true},{"x":152,"y":-10,"on":false},{"x":211,"y":160,"on":true},{"x":156,"y":315,"on":false}],[{"x":229,"y":-108,"on":true},{"x":229,"y":-123,"on":false},{"x":236,"y":-131,"on":true},{"x":242,"y":-137,"on":false},{"x":259,"y":-136,"on":false},{"x":264,"y":-131,"on":true},{"x":271,"y":-124,"on":false},{"x":271,"y":-108,"on":true},{"x":271,"y":-49,"on":false},{"x":250,"y":35,"on":true},{"x":233,"y":-34,"on":false},{"x":230,"y":-86,"on":true},{"x":229,"y":-102,"on":false}]], "references": [], - "instructions": [64,33,34,23,8,3,4,3,0,1,74,1,1,0,0,67,75,0,3,3,2,95,0,2,2,69,2,76,28,25,20,16,4,9,24,43] + "instructions": "QCEiFwgDBAMAAUoBAQAAQ0sAAwMCXwACAkUCTBwZFBAECRgr" }, "uni0194": { "name": "uni0194", "advanceWidth": 500, "contours": [[{"x":52,"y":735,"on":true},{"x":132,"y":735,"on":true},{"x":203,"y":541,"on":false},{"x":250,"y":384,"on":true},{"x":297,"y":541,"on":false},{"x":368,"y":735,"on":true},{"x":448,"y":735,"on":true},{"x":343,"y":451,"on":false},{"x":288,"y":249,"on":true},{"x":347,"y":24,"on":false},{"x":347,"y":-106,"on":true},{"x":347,"y":-140,"on":false},{"x":336,"y":-162,"on":true},{"x":325,"y":-181,"on":false},{"x":305,"y":-192,"on":true},{"x":282,"y":-205,"on":false},{"x":218,"y":-205,"on":false},{"x":195,"y":-192,"on":true},{"x":176,"y":-181,"on":false},{"x":164,"y":-162,"on":true},{"x":152,"y":-141,"on":false},{"x":153,"y":-106,"on":true},{"x":152,"y":23,"on":false},{"x":211,"y":247,"on":true},{"x":156,"y":452,"on":false}],[{"x":229,"y":-110,"on":true},{"x":229,"y":-124,"on":false},{"x":236,"y":-131,"on":true},{"x":242,"y":-137,"on":false},{"x":259,"y":-136,"on":false},{"x":264,"y":-131,"on":true},{"x":271,"y":-124,"on":false},{"x":271,"y":-110,"on":true},{"x":271,"y":-29,"on":false},{"x":249,"y":84,"on":true},{"x":230,"y":-15,"on":false},{"x":230,"y":-85,"on":true},{"x":230,"y":-86,"on":false},{"x":229,"y":-108,"on":false}]], "references": [], - "instructions": [64,33,34,23,8,3,4,3,0,1,74,1,1,0,0,64,75,0,3,3,2,95,0,2,2,69,2,76,28,25,20,16,4,9,24,43] + "instructions": "QCEiFwgDBAMAAUoBAQAAQEsAAwMCXwACAkUCTBwZFBAECRgr" }, "uni0264": { "name": "uni0264", "advanceWidth": 500, "contours": [[{"x":52,"y":530,"on":true},{"x":132,"y":530,"on":true},{"x":202,"y":430,"on":false},{"x":250,"y":349,"on":true},{"x":298,"y":431,"on":false},{"x":368,"y":530,"on":true},{"x":448,"y":530,"on":true},{"x":369,"y":420,"on":false},{"x":318,"y":332,"on":true},{"x":302,"y":304,"on":false},{"x":289,"y":278,"on":true},{"x":348,"y":162,"on":false},{"x":347,"y":93,"on":true},{"x":347,"y":64,"on":false},{"x":335,"y":43,"on":true},{"x":324,"y":24,"on":false},{"x":305,"y":13,"on":true},{"x":282,"y":0,"on":false},{"x":218,"y":0,"on":false},{"x":195,"y":13,"on":true},{"x":176,"y":24,"on":false},{"x":165,"y":43,"on":true},{"x":153,"y":64,"on":false},{"x":153,"y":93,"on":true},{"x":152,"y":162,"on":false},{"x":211,"y":278,"on":true},{"x":198,"y":304,"on":false},{"x":182,"y":332,"on":true},{"x":131,"y":420,"on":false}],[{"x":229,"y":95,"on":true},{"x":229,"y":81,"on":false},{"x":236,"y":74,"on":true},{"x":242,"y":68,"on":false},{"x":259,"y":69,"on":false},{"x":264,"y":74,"on":true},{"x":271,"y":81,"on":false},{"x":271,"y":95,"on":true},{"x":271,"y":135,"on":false},{"x":250,"y":192,"on":true},{"x":229,"y":135,"on":false}]], "references": [], - "instructions": [64,33,38,25,10,3,4,3,0,1,74,1,1,0,0,67,75,0,3,3,2,95,0,2,2,65,2,76,30,27,20,16,4,9,24,43] + "instructions": "QCEmGQoDBAMAAUoBAQAAQ0sAAwMCXwACAkECTB4bFBAECRgr" }, "uni02DE": { "name": "uni02DE", "advanceWidth": 500, "contours": [[{"x":-120,"y":265,"on":true},{"x":130,"y":439,"on":true},{"x":210,"y":439,"on":true},{"x":210,"y":265,"on":true},{"x":210,"y":194,"on":false},{"x":236,"y":149,"on":true},{"x":253,"y":119,"on":false},{"x":279,"y":104,"on":true},{"x":302,"y":91,"on":false},{"x":361,"y":91,"on":false},{"x":384,"y":104,"on":true},{"x":410,"y":119,"on":false},{"x":427,"y":148,"on":true},{"x":435,"y":162,"on":false},{"x":440,"y":178,"on":true},{"x":512,"y":146,"on":true},{"x":505,"y":129,"on":false},{"x":496,"y":114,"on":true},{"x":469,"y":67,"on":false},{"x":427,"y":43,"on":true},{"x":386,"y":19,"on":false},{"x":332,"y":19,"on":true},{"x":276,"y":19,"on":false},{"x":192,"y":67,"on":false},{"x":165,"y":113,"on":true},{"x":130,"y":174,"on":false},{"x":130,"y":265,"on":true},{"x":130,"y":348,"on":true},{"x":-74,"y":206,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,36,28,27,15,14,4,1,0,1,74,0,0,1,0,131,0,1,2,2,1,87,0,1,1,2,95,0,2,1,2,79,43,22,17,3,9,23,43,177,6,0,68] + "instructions": "sQZkREAkHBsPDgQBAAFKAAABAIMAAQICAVcAAQECXwACAQJPKxYRAwkXK7EGAEQ=" }, "uni025A": { "name": "uni025A", "advanceWidth": 500, "contours": [[{"x":51,"y":400,"on":true},{"x":59,"y":433,"on":false},{"x":75,"y":460,"on":true},{"x":98,"y":500,"on":false},{"x":133,"y":520,"on":true},{"x":165,"y":538,"on":false},{"x":249,"y":538,"on":false},{"x":281,"y":520,"on":true},{"x":316,"y":500,"on":false},{"x":339,"y":459,"on":true},{"x":371,"y":403,"on":false},{"x":373,"y":319,"on":true},{"x":410,"y":319,"on":true},{"x":410,"y":318,"on":true},{"x":410,"y":279,"on":false},{"x":425,"y":253,"on":true},{"x":437,"y":233,"on":false},{"x":475,"y":211,"on":false},{"x":497,"y":211,"on":true},{"x":500,"y":211,"on":true},{"x":500,"y":146,"on":true},{"x":495,"y":146,"on":true},{"x":450,"y":146,"on":false},{"x":414,"y":167,"on":true},{"x":390,"y":181,"on":false},{"x":373,"y":203,"on":true},{"x":370,"y":122,"on":false},{"x":339,"y":68,"on":true},{"x":316,"y":29,"on":false},{"x":282,"y":9,"on":true},{"x":252,"y":-8,"on":false},{"x":173,"y":-8,"on":false},{"x":143,"y":9,"on":true},{"x":109,"y":29,"on":false},{"x":86,"y":68,"on":true},{"x":52,"y":127,"on":false},{"x":52,"y":220,"on":true},{"x":52,"y":301,"on":true},{"x":293,"y":301,"on":true},{"x":293,"y":310,"on":true},{"x":293,"y":384,"on":false},{"x":269,"y":426,"on":true},{"x":256,"y":448,"on":false},{"x":238,"y":458,"on":true},{"x":224,"y":466,"on":false},{"x":207,"y":466,"on":true},{"x":189,"y":466,"on":false},{"x":174,"y":458,"on":true},{"x":156,"y":447,"on":false},{"x":142,"y":424,"on":true},{"x":128,"y":400,"on":false},{"x":123,"y":368,"on":true}],[{"x":132,"y":220,"on":true},{"x":132,"y":144,"on":false},{"x":157,"y":101,"on":true},{"x":169,"y":80,"on":false},{"x":184,"y":71,"on":true},{"x":196,"y":64,"on":false},{"x":228,"y":64,"on":false},{"x":241,"y":71,"on":true},{"x":257,"y":80,"on":false},{"x":268,"y":101,"on":true},{"x":293,"y":144,"on":false},{"x":293,"y":220,"on":true},{"x":293,"y":229,"on":true},{"x":132,"y":229,"on":true}]], "references": [], - "instructions": [64,67,51,1,1,6,25,1,3,2,2,74,0,1,6,5,6,1,5,126,0,5,0,8,2,5,8,101,0,2,0,3,7,2,3,103,0,6,6,0,95,0,0,0,75,75,0,7,7,4,95,0,4,4,73,4,76,22,27,38,22,24,34,21,21,21,9,9,29,43] + "instructions": "QEMzAQEGGQEDAgJKAAEGBQYBBX4ABQAIAgUIZQACAAMHAgNnAAYGAF8AAABLSwAHBwRfAAQESQRMFhsmFhgiFRUVCQkdKw==" }, "uni025D": { "name": "uni025D", "advanceWidth": 500, "contours": [[{"x":47,"y":110,"on":true},{"x":124,"y":130,"on":true},{"x":126,"y":116,"on":false},{"x":133,"y":104,"on":true},{"x":143,"y":87,"on":false},{"x":160,"y":76,"on":true},{"x":181,"y":64,"on":false},{"x":212,"y":64,"on":true},{"x":241,"y":64,"on":false},{"x":261,"y":76,"on":true},{"x":279,"y":86,"on":false},{"x":290,"y":104,"on":true},{"x":301,"y":124,"on":false},{"x":301,"y":180,"on":false},{"x":289,"y":200,"on":true},{"x":279,"y":218,"on":false},{"x":261,"y":228,"on":true},{"x":240,"y":240,"on":false},{"x":212,"y":240,"on":true},{"x":167,"y":240,"on":true},{"x":167,"y":312,"on":true},{"x":212,"y":312,"on":true},{"x":255,"y":312,"on":false},{"x":274,"y":345,"on":true},{"x":285,"y":363,"on":false},{"x":285,"y":415,"on":false},{"x":275,"y":433,"on":true},{"x":256,"y":466,"on":false},{"x":213,"y":466,"on":true},{"x":189,"y":466,"on":false},{"x":171,"y":456,"on":true},{"x":157,"y":448,"on":false},{"x":141,"y":420,"on":false},{"x":141,"y":405,"on":true},{"x":63,"y":420,"on":true},{"x":65,"y":447,"on":false},{"x":79,"y":471,"on":true},{"x":96,"y":500,"on":false},{"x":125,"y":517,"on":true},{"x":161,"y":538,"on":false},{"x":213,"y":538,"on":true},{"x":262,"y":538,"on":false},{"x":297,"y":518,"on":true},{"x":328,"y":500,"on":false},{"x":346,"y":470,"on":true},{"x":365,"y":436,"on":false},{"x":365,"y":390,"on":true},{"x":365,"y":351,"on":false},{"x":349,"y":323,"on":true},{"x":348,"y":321,"on":false},{"x":346,"y":319,"on":true},{"x":410,"y":319,"on":true},{"x":410,"y":318,"on":true},{"x":410,"y":279,"on":false},{"x":425,"y":253,"on":true},{"x":437,"y":233,"on":false},{"x":475,"y":211,"on":false},{"x":497,"y":211,"on":true},{"x":500,"y":211,"on":true},{"x":500,"y":146,"on":true},{"x":495,"y":146,"on":true},{"x":450,"y":146,"on":false},{"x":414,"y":167,"on":true},{"x":389,"y":181,"on":false},{"x":372,"y":204,"on":true},{"x":381,"y":181,"on":false},{"x":381,"y":151,"on":true},{"x":381,"y":103,"on":false},{"x":361,"y":67,"on":true},{"x":342,"y":34,"on":false},{"x":308,"y":15,"on":true},{"x":268,"y":-8,"on":false},{"x":212,"y":-8,"on":true},{"x":154,"y":-8,"on":false},{"x":114,"y":15,"on":true},{"x":82,"y":34,"on":false},{"x":63,"y":66,"on":true},{"x":51,"y":87,"on":false}]], "references": [], - "instructions": [75,176,27,80,88,64,15,34,33,2,2,3,64,1,7,6,1,1,0,7,3,74,27,64,15,34,33,2,5,3,64,1,7,6,1,1,0,7,3,74,89,75,176,27,80,88,64,38,5,1,2,0,1,6,2,1,103,0,6,0,7,0,6,7,103,0,3,3,4,95,0,4,4,75,75,0,0,0,8,95,0,8,8,73,8,76,27,64,45,0,5,3,2,3,5,2,126,0,2,0,1,6,2,1,103,0,6,0,7,0,6,7,103,0,3,3,4,95,0,4,4,75,75,0,0,0,8,95,0,8,8,73,8,76,89,64,12,42,34,21,55,42,37,33,41,38,9,9,29,43] + "instructions": "S7AbUFhADyIhAgIDQAEHBgEBAAcDShtADyIhAgUDQAEHBgEBAAcDSllLsBtQWEAmBQECAAEGAgFnAAYABwAGB2cAAwMEXwAEBEtLAAAACF8ACAhJCEwbQC0ABQMCAwUCfgACAAEGAgFnAAYABwAGB2cAAwMEXwAEBEtLAAAACF8ACAhJCExZQAwqIhU3KiUhKSYJCR0r" }, "uni02AD": { "name": "uni02AD", "advanceWidth": 500, "contours": [[{"x":60,"y":74,"on":true},{"x":60,"y":294,"on":true},{"x":440,"y":294,"on":true},{"x":440,"y":74,"on":true},{"x":360,"y":74,"on":true},{"x":360,"y":222,"on":true},{"x":140,"y":222,"on":true},{"x":140,"y":74,"on":true}],[{"x":60,"y":441,"on":true},{"x":60,"y":662,"on":true},{"x":440,"y":662,"on":true},{"x":440,"y":441,"on":true},{"x":360,"y":441,"on":true},{"x":360,"y":590,"on":true},{"x":140,"y":590,"on":true},{"x":140,"y":441,"on":true}]], "references": [], - "instructions": [75,176,9,80,88,64,41,9,7,2,5,6,0,6,5,112,8,3,2,1,2,2,1,111,0,4,0,6,5,4,6,101,0,0,2,2,0,85,0,0,0,2,93,0,2,0,2,77,27,64,41,9,7,2,5,6,0,6,5,0,126,8,3,2,1,2,1,132,0,4,0,6,5,4,6,101,0,0,2,2,0,85,0,0,0,2,93,0,2,0,2,77,89,64,24,8,8,0,0,8,15,8,15,14,13,12,11,10,9,0,7,0,7,17,17,17,10,9,23,43] + "instructions": "S7AJUFhAKQkHAgUGAAYFcAgDAgECAgFvAAQABgUEBmUAAAICAFUAAAACXQACAAJNG0ApCQcCBQYABgUAfggDAgECAYQABAAGBQQGZQAAAgIAVQAAAAJdAAIAAk1ZQBgICAAACA8IDw4NDAsKCQAHAAcREREKCRcr" }, "glyph650": { "name": "glyph650", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":515,"on":true},{"x":52,"y":596,"on":false},{"x":84,"y":651,"on":true},{"x":109,"y":695,"on":false},{"x":193,"y":743,"on":false},{"x":307,"y":743,"on":false},{"x":349,"y":719,"on":true},{"x":390,"y":695,"on":false},{"x":416,"y":651,"on":true},{"x":448,"y":596,"on":false},{"x":448,"y":515,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":307,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":16,"on":true},{"x":110,"y":40,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":515,"on":true},{"x":368,"y":576,"on":false},{"x":345,"y":615,"on":true},{"x":329,"y":643,"on":false},{"x":304,"y":658,"on":true},{"x":281,"y":671,"on":false},{"x":219,"y":671,"on":false},{"x":196,"y":658,"on":true},{"x":171,"y":644,"on":false},{"x":155,"y":615,"on":true},{"x":132,"y":575,"on":false},{"x":132,"y":515,"on":true}]], "references": [], - "instructions": [64,28,0,3,3,0,95,0,0,0,33,75,0,2,2,1,95,0,1,1,34,1,76,27,26,26,21,4,7,24,43] + "instructions": "QBwAAwMAXwAAACFLAAICAV8AAQEiAUwbGhoVBAcYKw==" }, "glyph651": { "name": "glyph651", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":515,"on":true},{"x":52,"y":596,"on":false},{"x":84,"y":651,"on":true},{"x":109,"y":695,"on":false},{"x":193,"y":743,"on":false},{"x":307,"y":743,"on":false},{"x":349,"y":719,"on":true},{"x":390,"y":695,"on":false},{"x":416,"y":651,"on":true},{"x":448,"y":596,"on":false},{"x":448,"y":515,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":307,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":16,"on":true},{"x":110,"y":40,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false}],[{"x":132,"y":278,"on":true},{"x":361,"y":574,"on":true},{"x":355,"y":597,"on":false},{"x":345,"y":615,"on":true},{"x":329,"y":643,"on":false},{"x":304,"y":658,"on":true},{"x":281,"y":671,"on":false},{"x":219,"y":671,"on":false},{"x":196,"y":658,"on":true},{"x":171,"y":644,"on":false},{"x":155,"y":615,"on":true},{"x":132,"y":575,"on":false},{"x":132,"y":515,"on":true}],[{"x":139,"y":161,"on":true},{"x":145,"y":138,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":457,"on":true}]], "references": [], - "instructions": [64,36,47,23,22,3,3,2,1,74,0,2,2,0,95,0,0,0,33,75,0,3,3,1,95,0,1,1,34,1,76,27,27,26,21,4,7,24,43] + "instructions": "QCQvFxYDAwIBSgACAgBfAAAAIUsAAwMBXwABASIBTBsbGhUEBxgr" }, "glyph652": { "name": "glyph652", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":515,"on":true},{"x":52,"y":596,"on":false},{"x":84,"y":651,"on":true},{"x":109,"y":695,"on":false},{"x":193,"y":743,"on":false},{"x":307,"y":743,"on":false},{"x":349,"y":719,"on":true},{"x":390,"y":695,"on":false},{"x":416,"y":651,"on":true},{"x":448,"y":596,"on":false},{"x":448,"y":515,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":307,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":16,"on":true},{"x":110,"y":40,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":515,"on":true},{"x":368,"y":576,"on":false},{"x":345,"y":615,"on":true},{"x":329,"y":643,"on":false},{"x":304,"y":658,"on":true},{"x":281,"y":671,"on":false},{"x":219,"y":671,"on":false},{"x":196,"y":658,"on":true},{"x":171,"y":644,"on":false},{"x":155,"y":615,"on":true},{"x":132,"y":575,"on":false},{"x":132,"y":515,"on":true}],[{"x":191,"y":395,"on":false},{"x":191,"y":340,"on":false},{"x":223,"y":308,"on":false},{"x":277,"y":308,"on":false},{"x":309,"y":340,"on":false},{"x":309,"y":395,"on":false},{"x":277,"y":426,"on":false},{"x":223,"y":426,"on":false}]], "references": [], - "instructions": [64,45,0,5,3,4,3,5,4,126,0,4,2,3,4,2,124,0,3,3,0,95,0,0,0,33,75,0,2,2,1,96,0,1,1,34,1,76,19,24,27,26,26,21,6,7,26,43] + "instructions": "QC0ABQMEAwUEfgAEAgMEAnwAAwMAXwAAACFLAAICAWAAAQEiAUwTGBsaGhUGBxor" }, "zero": { "name": "zero", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph651","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "one": { "name": "one", "advanceWidth": 500, "contours": [[{"x":68,"y":619,"on":true},{"x":240,"y":735,"on":true},{"x":320,"y":735,"on":true},{"x":320,"y":0,"on":true},{"x":240,"y":0,"on":true},{"x":240,"y":645,"on":true},{"x":112,"y":559,"on":true}]], "references": [], - "instructions": [64,23,6,5,2,1,0,1,74,0,0,0,64,75,0,1,1,65,1,76,17,17,2,9,22,43] + "instructions": "QBcGBQIBAAFKAAAAQEsAAQFBAUwREQIJFis=" }, "two": { "name": "two", "advanceWidth": 500, "contours": [[{"x":55,"y":580,"on":true},{"x":60,"y":620,"on":false},{"x":80,"y":654,"on":true},{"x":103,"y":694,"on":false},{"x":143,"y":718,"on":true},{"x":187,"y":743,"on":false},{"x":310,"y":743,"on":false},{"x":354,"y":718,"on":true},{"x":394,"y":695,"on":false},{"x":417,"y":654,"on":true},{"x":444,"y":607,"on":false},{"x":444,"y":549,"on":true},{"x":444,"y":489,"on":false},{"x":411,"y":432,"on":true},{"x":382,"y":381,"on":false},{"x":294,"y":307,"on":true},{"x":208,"y":234,"on":false},{"x":178,"y":180,"on":true},{"x":153,"y":137,"on":false},{"x":144,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":0,"on":true},{"x":60,"y":0,"on":true},{"x":60,"y":1,"on":true},{"x":60,"y":138,"on":false},{"x":103,"y":213,"on":true},{"x":138,"y":274,"on":false},{"x":232,"y":350,"on":true},{"x":312,"y":415,"on":false},{"x":339,"y":460,"on":true},{"x":364,"y":504,"on":false},{"x":364,"y":549,"on":true},{"x":364,"y":588,"on":false},{"x":347,"y":618,"on":true},{"x":333,"y":643,"on":false},{"x":309,"y":656,"on":true},{"x":284,"y":671,"on":false},{"x":248,"y":671,"on":true},{"x":214,"y":671,"on":false},{"x":189,"y":656,"on":true},{"x":165,"y":642,"on":false},{"x":150,"y":617,"on":true},{"x":137,"y":594,"on":false},{"x":133,"y":566,"on":true}]], "references": [], - "instructions": [64,34,43,1,1,3,1,74,0,3,3,0,95,0,0,0,72,75,0,1,1,2,93,0,2,2,65,2,76,46,17,29,21,4,9,24,43] + "instructions": "QCIrAQEDAUoAAwMAXwAAAEhLAAEBAl0AAgJBAkwuER0VBAkYKw==" }, "three": { "name": "three", "advanceWidth": 500, "contours": [[{"x":47,"y":155,"on":true},{"x":125,"y":172,"on":true},{"x":129,"y":145,"on":false},{"x":142,"y":123,"on":true},{"x":158,"y":95,"on":false},{"x":184,"y":80,"on":true},{"x":212,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":287,"y":64,"on":false},{"x":315,"y":80,"on":true},{"x":341,"y":95,"on":false},{"x":357,"y":122,"on":true},{"x":376,"y":156,"on":false},{"x":376,"y":240,"on":false},{"x":356,"y":276,"on":true},{"x":336,"y":310,"on":false},{"x":302,"y":329,"on":true},{"x":260,"y":353,"on":false},{"x":179,"y":354,"on":true},{"x":179,"y":426,"on":true},{"x":256,"y":426,"on":false},{"x":295,"y":448,"on":true},{"x":326,"y":466,"on":false},{"x":360,"y":524,"on":false},{"x":360,"y":559,"on":true},{"x":360,"y":593,"on":false},{"x":344,"y":621,"on":true},{"x":331,"y":644,"on":false},{"x":309,"y":657,"on":true},{"x":285,"y":671,"on":false},{"x":251,"y":671,"on":true},{"x":218,"y":671,"on":false},{"x":194,"y":657,"on":true},{"x":171,"y":644,"on":false},{"x":145,"y":598,"on":false},{"x":142,"y":569,"on":true},{"x":63,"y":580,"on":true},{"x":67,"y":622,"on":false},{"x":87,"y":658,"on":true},{"x":109,"y":696,"on":false},{"x":148,"y":718,"on":true},{"x":191,"y":743,"on":false},{"x":311,"y":743,"on":false},{"x":354,"y":718,"on":true},{"x":392,"y":696,"on":false},{"x":415,"y":658,"on":true},{"x":441,"y":614,"on":false},{"x":440,"y":560,"on":true},{"x":440,"y":511,"on":false},{"x":393,"y":429,"on":false},{"x":350,"y":404,"on":true},{"x":336,"y":396,"on":false},{"x":318,"y":390,"on":true},{"x":339,"y":383,"on":false},{"x":356,"y":373,"on":true},{"x":403,"y":346,"on":false},{"x":429,"y":300,"on":true},{"x":456,"y":253,"on":false},{"x":456,"y":197,"on":true},{"x":456,"y":136,"on":false},{"x":427,"y":86,"on":true},{"x":402,"y":43,"on":false},{"x":360,"y":19,"on":true},{"x":314,"y":-8,"on":false},{"x":185,"y":-8,"on":false},{"x":139,"y":19,"on":true},{"x":97,"y":43,"on":false},{"x":72,"y":86,"on":true},{"x":54,"y":118,"on":false}]], "references": [], - "instructions": [64,54,36,35,2,2,3,52,1,1,2,1,1,0,1,3,74,0,2,0,1,0,2,1,103,0,3,3,4,95,0,4,4,72,75,0,0,0,5,95,0,5,5,73,5,76,64,63,26,41,17,25,38,6,9,25,43] + "instructions": "QDYkIwICAzQBAQIBAQABA0oAAgABAAIBZwADAwRfAAQESEsAAAAFXwAFBUkFTEA/GikRGSYGCRkr" }, "four": { "name": "four", "advanceWidth": 500, "contours": [[{"x":52,"y":222,"on":true},{"x":52,"y":294,"on":true},{"x":276,"y":735,"on":true},{"x":374,"y":735,"on":true},{"x":374,"y":294,"on":true},{"x":440,"y":294,"on":true},{"x":440,"y":222,"on":true},{"x":374,"y":222,"on":true},{"x":374,"y":0,"on":true},{"x":294,"y":0,"on":true},{"x":294,"y":222,"on":true}],[{"x":131,"y":294,"on":true},{"x":294,"y":294,"on":true},{"x":294,"y":612,"on":true}]], "references": [], - "instructions": [64,48,13,1,1,0,1,74,1,1,1,1,73,5,1,1,6,4,2,2,3,1,2,102,0,0,0,64,75,0,3,3,65,3,76,0,0,12,11,0,10,0,10,17,17,17,18,7,9,24,43] + "instructions": "QDANAQEAAUoBAQEBSQUBAQYEAgIDAQJmAAAAQEsAAwNBA0wAAAwLAAoAChERERIHCRgr" }, "five": { "name": "five", "advanceWidth": 500, "contours": [[{"x":55,"y":155,"on":true},{"x":129,"y":182,"on":true},{"x":135,"y":149,"on":false},{"x":151,"y":122,"on":true},{"x":168,"y":92,"on":false},{"x":194,"y":77,"on":true},{"x":217,"y":64,"on":false},{"x":277,"y":64,"on":false},{"x":300,"y":77,"on":true},{"x":325,"y":92,"on":false},{"x":342,"y":121,"on":true},{"x":368,"y":166,"on":false},{"x":368,"y":236,"on":true},{"x":368,"y":307,"on":false},{"x":342,"y":351,"on":true},{"x":325,"y":380,"on":false},{"x":301,"y":394,"on":true},{"x":279,"y":406,"on":false},{"x":251,"y":406,"on":true},{"x":222,"y":406,"on":false},{"x":200,"y":394,"on":true},{"x":175,"y":380,"on":false},{"x":158,"y":350,"on":true},{"x":147,"y":331,"on":false},{"x":141,"y":308,"on":true},{"x":70,"y":340,"on":true},{"x":70,"y":735,"on":true},{"x":421,"y":735,"on":true},{"x":421,"y":663,"on":true},{"x":150,"y":663,"on":true},{"x":150,"y":451,"on":true},{"x":154,"y":453,"on":false},{"x":157,"y":455,"on":true},{"x":197,"y":478,"on":false},{"x":305,"y":478,"on":false},{"x":346,"y":455,"on":true},{"x":387,"y":431,"on":false},{"x":413,"y":386,"on":true},{"x":448,"y":325,"on":false},{"x":448,"y":235,"on":true},{"x":448,"y":146,"on":false},{"x":413,"y":86,"on":true},{"x":387,"y":40,"on":false},{"x":303,"y":-8,"on":false},{"x":192,"y":-8,"on":false},{"x":108,"y":40,"on":false},{"x":82,"y":86,"on":true},{"x":64,"y":118,"on":false}]], "references": [], - "instructions": [64,50,30,1,1,4,25,24,1,3,0,1,2,74,0,4,0,1,0,4,1,103,0,3,3,2,93,0,2,2,64,75,0,0,0,5,95,0,5,5,73,5,76,25,20,17,23,42,22,6,9,26,43] + "instructions": "QDIeAQEEGRgBAwABAkoABAABAAQBZwADAwJdAAICQEsAAAAFXwAFBUkFTBkUERcqFgYJGis=" }, "uni01BC": { "name": "uni01BC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"five","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01BD": { "name": "uni01BD", "advanceWidth": 500, "contours": [[{"x":55,"y":155,"on":true},{"x":134,"y":165,"on":true},{"x":134,"y":163,"on":false},{"x":134,"y":161,"on":true},{"x":134,"y":137,"on":false},{"x":146,"y":115,"on":true},{"x":159,"y":93,"on":false},{"x":182,"y":80,"on":true},{"x":210,"y":64,"on":false},{"x":251,"y":64,"on":true},{"x":291,"y":64,"on":false},{"x":319,"y":80,"on":true},{"x":342,"y":93,"on":false},{"x":355,"y":115,"on":true},{"x":368,"y":138,"on":false},{"x":368,"y":201,"on":false},{"x":355,"y":224,"on":true},{"x":342,"y":246,"on":false},{"x":319,"y":259,"on":true},{"x":291,"y":275,"on":false},{"x":252,"y":275,"on":true},{"x":211,"y":275,"on":false},{"x":155,"y":243,"on":false},{"x":142,"y":214,"on":true},{"x":70,"y":245,"on":true},{"x":70,"y":530,"on":true},{"x":421,"y":530,"on":true},{"x":421,"y":458,"on":true},{"x":150,"y":458,"on":true},{"x":150,"y":327,"on":true},{"x":193,"y":348,"on":false},{"x":252,"y":347,"on":true},{"x":320,"y":347,"on":false},{"x":366,"y":320,"on":true},{"x":404,"y":298,"on":false},{"x":426,"y":261,"on":true},{"x":448,"y":222,"on":false},{"x":448,"y":117,"on":false},{"x":426,"y":78,"on":true},{"x":405,"y":41,"on":false},{"x":366,"y":19,"on":true},{"x":319,"y":-8,"on":false},{"x":251,"y":-8,"on":true},{"x":182,"y":-8,"on":false},{"x":135,"y":19,"on":true},{"x":97,"y":41,"on":false},{"x":55,"y":115,"on":false}]], "references": [], - "instructions": [64,51,29,1,1,4,24,23,1,0,4,0,1,2,74,0,4,0,1,0,4,1,103,0,3,3,2,93,0,2,2,67,75,0,0,0,5,95,0,5,5,73,5,76,41,34,17,20,41,40,6,9,26,43] + "instructions": "QDMdAQEEGBcBAAQAAQJKAAQAAQAEAWcAAwMCXQACAkNLAAAABV8ABQVJBUwpIhEUKSgGCRor" }, "six": { "name": "six", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":222,"on":true},{"x":52,"y":429,"on":false},{"x":127,"y":558,"on":true},{"x":181,"y":651,"on":false},{"x":270,"y":702,"on":true},{"x":305,"y":722,"on":false},{"x":343,"y":735,"on":true},{"x":368,"y":666,"on":true},{"x":341,"y":656,"on":false},{"x":316,"y":643,"on":true},{"x":242,"y":600,"on":false},{"x":198,"y":523,"on":true},{"x":174,"y":481,"on":false},{"x":158,"y":429,"on":true},{"x":198,"y":449,"on":false},{"x":250,"y":449,"on":true},{"x":307,"y":449,"on":false},{"x":349,"y":425,"on":true},{"x":390,"y":401,"on":false},{"x":416,"y":357,"on":true},{"x":448,"y":302,"on":false},{"x":448,"y":221,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":307,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":16,"on":true},{"x":110,"y":40,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":221,"on":true},{"x":368,"y":282,"on":false},{"x":345,"y":321,"on":true},{"x":329,"y":349,"on":false},{"x":304,"y":364,"on":true},{"x":281,"y":377,"on":false},{"x":219,"y":377,"on":false},{"x":196,"y":364,"on":true},{"x":171,"y":350,"on":false},{"x":155,"y":321,"on":true},{"x":132,"y":282,"on":false},{"x":132,"y":222,"on":true}]], "references": [], - "instructions": [64,37,14,1,3,0,1,74,8,7,2,0,72,0,0,0,3,2,0,3,103,0,2,2,1,95,0,1,1,73,1,76,27,26,26,47,4,9,24,43] + "instructions": "QCUOAQMAAUoIBwIASAAAAAMCAANnAAICAV8AAQFJAUwbGhovBAkYKw==" }, "seven": { "name": "seven", "advanceWidth": 500, "contours": [[{"x":60,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":209,"y":0,"on":true},{"x":124,"y":0,"on":true},{"x":355,"y":663,"on":true}]], "references": [], - "instructions": [64,33,3,1,2,1,73,3,1,2,2,0,93,0,0,0,64,75,0,1,1,65,1,76,0,0,0,6,0,6,18,17,4,9,22,43] + "instructions": "QCEDAQIBSQMBAgIAXQAAAEBLAAEBQQFMAAAABgAGEhEECRYr" }, "eight": { "name": "eight", "advanceWidth": 500, "contours": [[{"x":52,"y":173,"on":true},{"x":52,"y":225,"on":false},{"x":80,"y":275,"on":true},{"x":108,"y":322,"on":false},{"x":186,"y":377,"on":true},{"x":121,"y":425,"on":false},{"x":96,"y":468,"on":true},{"x":68,"y":517,"on":false},{"x":68,"y":569,"on":true},{"x":68,"y":620,"on":false},{"x":91,"y":661,"on":true},{"x":112,"y":697,"on":false},{"x":149,"y":719,"on":true},{"x":191,"y":743,"on":false},{"x":309,"y":743,"on":false},{"x":351,"y":719,"on":true},{"x":388,"y":698,"on":false},{"x":409,"y":661,"on":true},{"x":433,"y":620,"on":false},{"x":432,"y":569,"on":true},{"x":432,"y":517,"on":false},{"x":404,"y":468,"on":true},{"x":379,"y":425,"on":false},{"x":314,"y":377,"on":true},{"x":392,"y":322,"on":false},{"x":420,"y":275,"on":true},{"x":448,"y":226,"on":false},{"x":448,"y":173,"on":true},{"x":448,"y":122,"on":false},{"x":424,"y":80,"on":true},{"x":402,"y":42,"on":false},{"x":363,"y":19,"on":true},{"x":317,"y":-8,"on":false},{"x":184,"y":-8,"on":false},{"x":137,"y":19,"on":true},{"x":98,"y":42,"on":false},{"x":76,"y":80,"on":true},{"x":52,"y":122,"on":false}],[{"x":132,"y":173,"on":true},{"x":132,"y":142,"on":false},{"x":146,"y":116,"on":true},{"x":159,"y":93,"on":false},{"x":183,"y":80,"on":true},{"x":211,"y":64,"on":false},{"x":289,"y":64,"on":false},{"x":317,"y":80,"on":true},{"x":341,"y":94,"on":false},{"x":354,"y":116,"on":true},{"x":368,"y":141,"on":false},{"x":368,"y":173,"on":true},{"x":368,"y":208,"on":false},{"x":348,"y":242,"on":true},{"x":324,"y":284,"on":false},{"x":250,"y":333,"on":true},{"x":176,"y":284,"on":false},{"x":152,"y":242,"on":true},{"x":132,"y":208,"on":false}],[{"x":148,"y":569,"on":true},{"x":148,"y":534,"on":false},{"x":168,"y":500,"on":true},{"x":189,"y":463,"on":false},{"x":250,"y":420,"on":true},{"x":311,"y":463,"on":false},{"x":332,"y":500,"on":true},{"x":352,"y":534,"on":false},{"x":352,"y":569,"on":true},{"x":352,"y":600,"on":false},{"x":338,"y":625,"on":true},{"x":326,"y":646,"on":false},{"x":305,"y":658,"on":true},{"x":282,"y":671,"on":false},{"x":218,"y":671,"on":false},{"x":195,"y":658,"on":true},{"x":174,"y":646,"on":false},{"x":162,"y":625,"on":true},{"x":148,"y":601,"on":false}]], "references": [], - "instructions": [64,40,61,53,23,4,4,2,3,1,74,0,3,3,0,95,0,0,0,72,75,0,2,2,1,95,0,1,1,73,1,76,71,70,44,43,33,32,29,4,9,21,43] + "instructions": "QCg9NRcEBAIDAUoAAwMAXwAAAEhLAAICAV8AAQFJAUxHRiwrISAdBAkVKw==" }, "glyph664": { "name": "glyph664", "advanceWidth": 500, "contours": [[{"x":52,"y":0,"on":true},{"x":52,"y":160,"on":false},{"x":100,"y":244,"on":true},{"x":130,"y":296,"on":false},{"x":195,"y":355,"on":true},{"x":124,"y":419,"on":false},{"x":98,"y":463,"on":true},{"x":68,"y":516,"on":false},{"x":68,"y":569,"on":true},{"x":68,"y":620,"on":false},{"x":91,"y":661,"on":true},{"x":112,"y":697,"on":false},{"x":149,"y":719,"on":true},{"x":191,"y":743,"on":false},{"x":309,"y":743,"on":false},{"x":351,"y":719,"on":true},{"x":388,"y":698,"on":false},{"x":409,"y":661,"on":true},{"x":433,"y":620,"on":false},{"x":432,"y":569,"on":true},{"x":432,"y":515,"on":false},{"x":402,"y":463,"on":true},{"x":377,"y":419,"on":false},{"x":305,"y":355,"on":true},{"x":370,"y":296,"on":false},{"x":400,"y":244,"on":true},{"x":448,"y":161,"on":false},{"x":448,"y":0,"on":true},{"x":368,"y":0,"on":true},{"x":368,"y":137,"on":false},{"x":324,"y":213,"on":true},{"x":300,"y":254,"on":false},{"x":250,"y":304,"on":true},{"x":200,"y":254,"on":false},{"x":176,"y":213,"on":true},{"x":132,"y":137,"on":false},{"x":132,"y":0,"on":true}],[{"x":148,"y":569,"on":true},{"x":148,"y":530,"on":false},{"x":171,"y":490,"on":true},{"x":191,"y":454,"on":false},{"x":250,"y":403,"on":true},{"x":309,"y":454,"on":false},{"x":329,"y":490,"on":true},{"x":352,"y":529,"on":false},{"x":352,"y":569,"on":true},{"x":352,"y":601,"on":false},{"x":338,"y":625,"on":true},{"x":326,"y":646,"on":false},{"x":305,"y":658,"on":true},{"x":282,"y":671,"on":false},{"x":218,"y":671,"on":false},{"x":195,"y":658,"on":true},{"x":174,"y":646,"on":false},{"x":162,"y":625,"on":true},{"x":148,"y":601,"on":false}]], "references": [], - "instructions": [181,50,41,13,0,2,48,43] + "instructions": "tTIpDQACMCs=" }, "nine": { "name": "nine", "advanceWidth": 500, "contours": [[{"x":52,"y":496,"on":true},{"x":52,"y":515,"on":true},{"x":52,"y":596,"on":false},{"x":84,"y":651,"on":true},{"x":109,"y":695,"on":false},{"x":193,"y":743,"on":false},{"x":250,"y":743,"on":true},{"x":306,"y":743,"on":false},{"x":347,"y":719,"on":true},{"x":389,"y":695,"on":false},{"x":414,"y":651,"on":true},{"x":448,"y":593,"on":false},{"x":448,"y":506,"on":true},{"x":448,"y":257,"on":true},{"x":448,"y":155,"on":false},{"x":409,"y":87,"on":true},{"x":382,"y":39,"on":false},{"x":339,"y":15,"on":true},{"x":299,"y":-8,"on":false},{"x":192,"y":-8,"on":false},{"x":152,"y":15,"on":true},{"x":109,"y":40,"on":false},{"x":82,"y":87,"on":true},{"x":64,"y":118,"on":false},{"x":55,"y":155,"on":true},{"x":127,"y":187,"on":true},{"x":135,"y":151,"on":false},{"x":150,"y":124,"on":true},{"x":168,"y":92,"on":false},{"x":195,"y":77,"on":true},{"x":217,"y":64,"on":false},{"x":246,"y":64,"on":true},{"x":274,"y":64,"on":false},{"x":295,"y":76,"on":true},{"x":320,"y":91,"on":false},{"x":338,"y":122,"on":true},{"x":368,"y":173,"on":false},{"x":368,"y":257,"on":true},{"x":368,"y":334,"on":true},{"x":347,"y":302,"on":false},{"x":289,"y":268,"on":false},{"x":247,"y":268,"on":true},{"x":193,"y":268,"on":false},{"x":150,"y":293,"on":true},{"x":109,"y":317,"on":false},{"x":84,"y":360,"on":true},{"x":52,"y":415,"on":false}],[{"x":132,"y":496,"on":true},{"x":132,"y":435,"on":false},{"x":155,"y":396,"on":true},{"x":171,"y":368,"on":false},{"x":196,"y":354,"on":true},{"x":219,"y":341,"on":false},{"x":249,"y":340,"on":true},{"x":280,"y":340,"on":false},{"x":304,"y":354,"on":true},{"x":329,"y":369,"on":false},{"x":345,"y":397,"on":true},{"x":368,"y":436,"on":false},{"x":368,"y":496,"on":true},{"x":368,"y":506,"on":true},{"x":368,"y":573,"on":false},{"x":343,"y":615,"on":true},{"x":326,"y":644,"on":false},{"x":302,"y":658,"on":true},{"x":280,"y":671,"on":false},{"x":220,"y":671,"on":false},{"x":196,"y":658,"on":true},{"x":171,"y":644,"on":false},{"x":155,"y":615,"on":true},{"x":132,"y":575,"on":false},{"x":132,"y":515,"on":true}]], "references": [], - "instructions": [64,49,38,1,3,4,25,24,2,2,3,2,74,0,4,0,3,2,4,3,103,0,5,5,0,95,0,0,0,72,75,0,2,2,1,95,0,1,1,73,1,76,27,42,40,43,27,37,6,9,26,43] + "instructions": "QDEmAQMEGRgCAgMCSgAEAAMCBANnAAUFAF8AAABISwACAgFfAAEBSQFMGyooKxslBgkaKw==" }, "glyph666": { "name": "glyph666", "advanceWidth": 1000, "contours": [], "references": [{"glyph":"one","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph651","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2000": { "name": "uni2000", "advanceWidth": 500, "contours": [], "references": [], - "instructions": [] + "instructions": "" }, "uni2002": { "name": "uni2002", "advanceWidth": 500, "contours": [], "references": [], - "instructions": [] + "instructions": "" }, "uni2004": { "name": "uni2004", "advanceWidth": 500, "contours": [], "references": [], - "instructions": [] + "instructions": "" }, "uni2005": { "name": "uni2005", "advanceWidth": 500, "contours": [], "references": [], - "instructions": [] + "instructions": "" }, "uni2006": { "name": "uni2006", "advanceWidth": 500, "contours": [], "references": [], - "instructions": [] + "instructions": "" }, "uni2007": { "name": "uni2007", "advanceWidth": 500, "contours": [], "references": [], - "instructions": [] + "instructions": "" }, "uni200B": { "name": "uni200B", "advanceWidth": 0, "contours": [], "references": [], - "instructions": [] + "instructions": "" }, "uni00A0": { "name": "uni00A0", "advanceWidth": 500, "contours": [], "references": [], - "instructions": [] + "instructions": "" }, "uni2001": { "name": "uni2001", "advanceWidth": 500, "contours": [], "references": [], - "instructions": [] + "instructions": "" }, "uni2003": { "name": "uni2003", "advanceWidth": 500, "contours": [], "references": [], - "instructions": [] + "instructions": "" }, "parenleft": { "name": "parenleft", "advanceWidth": 500, "contours": [[{"x":117,"y":112,"on":false},{"x":117,"y":550,"on":false},{"x":214,"y":718,"on":true},{"x":253,"y":786,"on":false},{"x":307,"y":844,"on":true},{"x":365,"y":795,"on":true},{"x":319,"y":745,"on":false},{"x":285,"y":685,"on":true},{"x":197,"y":532,"on":false},{"x":197,"y":130,"on":false},{"x":285,"y":-23,"on":true},{"x":319,"y":-82,"on":false},{"x":365,"y":-132,"on":true},{"x":307,"y":-181,"on":true},{"x":253,"y":-124,"on":false},{"x":214,"y":-56,"on":true}]], "references": [], - "instructions": [179,13,4,1,48,43] + "instructions": "sw0EATAr" }, "parenright": { "name": "parenright", "advanceWidth": 500, "contours": [[{"x":135,"y":-132,"on":true},{"x":181,"y":-82,"on":false},{"x":215,"y":-23,"on":true},{"x":303,"y":130,"on":false},{"x":303,"y":532,"on":false},{"x":215,"y":685,"on":true},{"x":181,"y":744,"on":false},{"x":135,"y":795,"on":true},{"x":193,"y":844,"on":true},{"x":247,"y":787,"on":false},{"x":286,"y":718,"on":true},{"x":383,"y":550,"on":false},{"x":383,"y":112,"on":false},{"x":286,"y":-56,"on":true},{"x":247,"y":-124,"on":false},{"x":193,"y":-181,"on":true}]], "references": [], - "instructions": [179,15,8,1,48,43] + "instructions": "sw8IATAr" }, "bracketleft": { "name": "bracketleft", "advanceWidth": 500, "contours": [[{"x":117,"y":-181,"on":true},{"x":117,"y":844,"on":true},{"x":402,"y":844,"on":true},{"x":402,"y":772,"on":true},{"x":197,"y":772,"on":true},{"x":197,"y":-109,"on":true},{"x":402,"y":-109,"on":true},{"x":402,"y":-181,"on":true}]], "references": [], - "instructions": [75,176,22,80,88,64,20,0,0,0,1,2,0,1,101,0,2,2,3,93,4,1,3,3,69,3,76,27,64,25,0,0,0,1,2,0,1,101,0,2,3,3,2,85,0,2,2,3,93,4,1,3,2,3,77,89,64,12,0,0,0,7,0,7,17,17,17,5,9,23,43] + "instructions": "S7AWUFhAFAAAAAECAAFlAAICA10EAQMDRQNMG0AZAAAAAQIAAWUAAgMDAlUAAgIDXQQBAwIDTVlADAAAAAcABxEREQUJFys=" }, "bracketright": { "name": "bracketright", "advanceWidth": 500, "contours": [[{"x":98,"y":-109,"on":true},{"x":303,"y":-109,"on":true},{"x":303,"y":772,"on":true},{"x":98,"y":772,"on":true},{"x":98,"y":844,"on":true},{"x":383,"y":844,"on":true},{"x":383,"y":-181,"on":true},{"x":98,"y":-181,"on":true}]], "references": [], - "instructions": [75,176,22,80,88,64,19,0,2,0,1,0,2,1,101,0,0,0,3,93,0,3,3,69,3,76,27,64,24,0,2,0,1,0,2,1,101,0,0,3,3,0,85,0,0,0,3,93,0,3,0,3,77,89,182,17,17,17,16,4,9,24,43] + "instructions": "S7AWUFhAEwACAAEAAgFlAAAAA10AAwNFA0wbQBgAAgABAAIBZQAAAwMAVQAAAANdAAMAA01ZthERERAECRgr" }, "braceleft": { "name": "braceleft", "advanceWidth": 500, "contours": [[{"x":98,"y":295,"on":true},{"x":98,"y":367,"on":true},{"x":133,"y":367,"on":false},{"x":158,"y":382,"on":true},{"x":181,"y":395,"on":false},{"x":194,"y":418,"on":true},{"x":210,"y":445,"on":false},{"x":210,"y":483,"on":true},{"x":210,"y":692,"on":true},{"x":210,"y":733,"on":false},{"x":246,"y":796,"on":false},{"x":282,"y":816,"on":true},{"x":330,"y":844,"on":false},{"x":402,"y":844,"on":true},{"x":402,"y":772,"on":true},{"x":357,"y":772,"on":false},{"x":328,"y":755,"on":true},{"x":309,"y":744,"on":false},{"x":299,"y":727,"on":true},{"x":290,"y":711,"on":false},{"x":290,"y":692,"on":true},{"x":290,"y":483,"on":true},{"x":290,"y":424,"on":false},{"x":265,"y":381,"on":true},{"x":248,"y":351,"on":false},{"x":221,"y":331,"on":true},{"x":248,"y":311,"on":false},{"x":265,"y":281,"on":true},{"x":290,"y":238,"on":false},{"x":290,"y":179,"on":true},{"x":290,"y":-29,"on":true},{"x":290,"y":-49,"on":false},{"x":299,"y":-65,"on":true},{"x":309,"y":-82,"on":false},{"x":328,"y":-93,"on":true},{"x":357,"y":-110,"on":false},{"x":402,"y":-109,"on":true},{"x":402,"y":-181,"on":true},{"x":330,"y":-181,"on":false},{"x":282,"y":-153,"on":true},{"x":247,"y":-133,"on":false},{"x":210,"y":-70,"on":false},{"x":210,"y":-29,"on":true},{"x":210,"y":179,"on":true},{"x":210,"y":217,"on":false},{"x":194,"y":244,"on":true},{"x":181,"y":267,"on":false},{"x":158,"y":281,"on":true},{"x":133,"y":296,"on":false}]], "references": [], - "instructions": [181,25,1,5,0,1,74,75,176,22,80,88,64,28,0,1,0,2,0,1,2,103,0,0,6,1,5,3,0,5,103,0,3,3,4,95,0,4,4,69,4,76,27,64,33,0,1,0,2,0,1,2,103,0,0,6,1,5,3,0,5,103,0,3,4,4,3,87,0,3,3,4,95,0,4,3,4,79,89,64,16,0,0,0,48,0,48,38,37,36,35,17,26,17,7,9,23,43] + "instructions": "tRkBBQABSkuwFlBYQBwAAQACAAECZwAABgEFAwAFZwADAwRfAAQERQRMG0AhAAEAAgABAmcAAAYBBQMABWcAAwQEA1cAAwMEXwAEAwRPWUAQAAAAMAAwJiUkIxEaEQcJFys=" }, "braceright": { "name": "braceright", "advanceWidth": 500, "contours": [[{"x":98,"y":-109,"on":true},{"x":143,"y":-109,"on":false},{"x":172,"y":-93,"on":true},{"x":191,"y":-82,"on":false},{"x":201,"y":-65,"on":true},{"x":210,"y":-49,"on":false},{"x":210,"y":-29,"on":true},{"x":210,"y":179,"on":true},{"x":210,"y":238,"on":false},{"x":235,"y":281,"on":true},{"x":252,"y":311,"on":false},{"x":279,"y":331,"on":true},{"x":252,"y":351,"on":false},{"x":235,"y":381,"on":true},{"x":210,"y":424,"on":false},{"x":210,"y":483,"on":true},{"x":210,"y":692,"on":true},{"x":210,"y":712,"on":false},{"x":201,"y":727,"on":true},{"x":191,"y":744,"on":false},{"x":172,"y":755,"on":true},{"x":143,"y":772,"on":false},{"x":98,"y":772,"on":true},{"x":98,"y":844,"on":true},{"x":170,"y":844,"on":false},{"x":218,"y":816,"on":true},{"x":253,"y":796,"on":false},{"x":290,"y":733,"on":false},{"x":290,"y":692,"on":true},{"x":290,"y":483,"on":true},{"x":290,"y":445,"on":false},{"x":306,"y":418,"on":true},{"x":319,"y":395,"on":false},{"x":342,"y":382,"on":true},{"x":367,"y":367,"on":false},{"x":402,"y":367,"on":true},{"x":402,"y":295,"on":true},{"x":367,"y":295,"on":false},{"x":342,"y":281,"on":true},{"x":319,"y":268,"on":false},{"x":306,"y":244,"on":true},{"x":290,"y":217,"on":false},{"x":290,"y":179,"on":true},{"x":290,"y":-29,"on":true},{"x":290,"y":-70,"on":false},{"x":254,"y":-133,"on":false},{"x":218,"y":-153,"on":true},{"x":170,"y":-181,"on":false},{"x":98,"y":-181,"on":true}]], "references": [], - "instructions": [181,11,1,4,3,1,74,75,176,22,80,88,64,27,0,2,0,1,3,2,1,103,0,3,0,4,0,3,4,103,0,0,0,5,95,0,5,5,69,5,76,27,64,32,0,2,0,1,3,2,1,103,0,3,0,4,0,3,4,103,0,0,5,5,0,87,0,0,0,5,95,0,5,0,5,79,89,64,14,48,47,37,36,35,34,24,23,22,21,16,6,9,21,43] + "instructions": "tQsBBAMBSkuwFlBYQBsAAgABAwIBZwADAAQAAwRnAAAABV8ABQVFBUwbQCAAAgABAwIBZwADAAQAAwRnAAAFBQBXAAAABV8ABQAFT1lADjAvJSQjIhgXFhUQBgkVKw==" }, "angleleft": { "name": "angleleft", "advanceWidth": 500, "contours": [[{"x":109,"y":331,"on":true},{"x":307,"y":844,"on":true},{"x":382,"y":818,"on":true},{"x":199,"y":331,"on":true},{"x":382,"y":-155,"on":true},{"x":307,"y":-181,"on":true}]], "references": [], - "instructions": [179,5,1,1,48,43] + "instructions": "swUBATAr" }, "uni27E8": { "name": "uni27E8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"angleleft","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "angleright": { "name": "angleright", "advanceWidth": 500, "contours": [[{"x":118,"y":-155,"on":true},{"x":301,"y":331,"on":true},{"x":118,"y":818,"on":true},{"x":193,"y":844,"on":true},{"x":391,"y":331,"on":true},{"x":193,"y":-181,"on":true}]], "references": [], - "instructions": [179,5,3,1,48,43] + "instructions": "swUDATAr" }, "uni27E9": { "name": "uni27E9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"angleright","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni27EA": { "name": "uni27EA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"angleleft","x":88,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"angleleft","x":-88,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni27EB": { "name": "uni27EB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"angleright","x":88,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"angleright","x":-88,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2308": { "name": "uni2308", "advanceWidth": 500, "contours": [[{"x":117,"y":-181,"on":true},{"x":117,"y":844,"on":true},{"x":402,"y":844,"on":true},{"x":402,"y":772,"on":true},{"x":197,"y":772,"on":true},{"x":197,"y":-181,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni230A": { "name": "uni230A", "advanceWidth": 500, "contours": [[{"x":117,"y":-181,"on":true},{"x":117,"y":844,"on":true},{"x":197,"y":844,"on":true},{"x":197,"y":-109,"on":true},{"x":402,"y":-109,"on":true},{"x":402,"y":-181,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni230B": { "name": "uni230B", "advanceWidth": 500, "contours": [[{"x":98,"y":-109,"on":true},{"x":303,"y":-109,"on":true},{"x":303,"y":844,"on":true},{"x":383,"y":844,"on":true},{"x":383,"y":-181,"on":true},{"x":98,"y":-181,"on":true}]], "references": [], - "instructions": [179,4,2,1,48,43] + "instructions": "swQCATAr" }, "uni2309": { "name": "uni2309", "advanceWidth": 500, "contours": [[{"x":98,"y":772,"on":true},{"x":98,"y":844,"on":true},{"x":383,"y":844,"on":true},{"x":383,"y":-181,"on":true},{"x":303,"y":-181,"on":true},{"x":303,"y":772,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "period": { "name": "period", "advanceWidth": 500, "contours": [[{"x":172,"y":45,"on":false},{"x":172,"y":95,"on":false},{"x":182,"y":113,"on":true},{"x":191,"y":129,"on":false},{"x":207,"y":138,"on":true},{"x":225,"y":148,"on":false},{"x":275,"y":148,"on":false},{"x":293,"y":138,"on":true},{"x":309,"y":129,"on":false},{"x":318,"y":113,"on":true},{"x":328,"y":95,"on":false},{"x":328,"y":45,"on":false},{"x":318,"y":27,"on":true},{"x":309,"y":11,"on":false},{"x":293,"y":2,"on":true},{"x":275,"y":-8,"on":false},{"x":225,"y":-8,"on":false},{"x":207,"y":2,"on":true},{"x":191,"y":11,"on":false},{"x":182,"y":27,"on":true}]], "references": [], - "instructions": [64,16,0,0,0,1,95,0,1,1,73,1,76,25,21,2,9,22,43] + "instructions": "QBAAAAABXwABAUkBTBkVAgkWKw==" }, "glyph694": { "name": "glyph694", "advanceWidth": 500, "contours": [], "references": [{"glyph":"period","x":0,"y":390,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,1,134,176,51,43] + "instructions": "sQABuAGGsDMr" }, "comma": { "name": "comma", "advanceWidth": 500, "contours": [[{"x":166,"y":-164,"on":true},{"x":183,"y":-141,"on":false},{"x":196,"y":-118,"on":true},{"x":228,"y":-63,"on":false},{"x":241,"y":-8,"on":true},{"x":201,"y":-5,"on":false},{"x":182,"y":27,"on":true},{"x":172,"y":45,"on":false},{"x":172,"y":95,"on":false},{"x":182,"y":113,"on":true},{"x":191,"y":129,"on":false},{"x":207,"y":138,"on":true},{"x":225,"y":148,"on":false},{"x":275,"y":148,"on":false},{"x":293,"y":138,"on":true},{"x":309,"y":129,"on":false},{"x":318,"y":113,"on":true},{"x":328,"y":95,"on":false},{"x":328,"y":70,"on":true},{"x":328,"y":-40,"on":false},{"x":264,"y":-150,"on":true},{"x":248,"y":-177,"on":false},{"x":229,"y":-205,"on":true}]], "references": [], - "instructions": [64,13,22,4,2,0,71,0,0,0,116,28,1,9,21,43] + "instructions": "QA0WBAIARwAAAHQcAQkVKw==" }, "glyph696": { "name": "glyph696", "advanceWidth": 500, "contours": [[{"x":172,"y":70,"on":true},{"x":172,"y":95,"on":false},{"x":182,"y":113,"on":true},{"x":191,"y":129,"on":false},{"x":207,"y":138,"on":true},{"x":225,"y":148,"on":false},{"x":275,"y":148,"on":false},{"x":293,"y":138,"on":true},{"x":309,"y":129,"on":false},{"x":318,"y":113,"on":true},{"x":328,"y":95,"on":false},{"x":328,"y":45,"on":false},{"x":318,"y":27,"on":true},{"x":299,"y":-5,"on":false},{"x":259,"y":-8,"on":true},{"x":272,"y":-63,"on":false},{"x":304,"y":-118,"on":true},{"x":318,"y":-141,"on":false},{"x":334,"y":-164,"on":true},{"x":271,"y":-205,"on":true},{"x":251,"y":-178,"on":false},{"x":236,"y":-150,"on":true},{"x":172,"y":-40,"on":false}]], "references": [], - "instructions": [179,19,5,1,48,43] + "instructions": "sxMFATAr" }, "colon": { "name": "colon", "advanceWidth": 500, "contours": [], "references": [{"glyph":"period","x":0,"y":390,"a":1,"b":0,"c":0,"d":1},{"glyph":"period","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,1,134,176,51,43] + "instructions": "sQABuAGGsDMr" }, "semicolon": { "name": "semicolon", "advanceWidth": 500, "contours": [[{"x":166,"y":-164,"on":true},{"x":183,"y":-141,"on":false},{"x":196,"y":-118,"on":true},{"x":228,"y":-63,"on":false},{"x":241,"y":-8,"on":true},{"x":201,"y":-5,"on":false},{"x":182,"y":27,"on":true},{"x":172,"y":45,"on":false},{"x":172,"y":95,"on":false},{"x":182,"y":113,"on":true},{"x":191,"y":129,"on":false},{"x":207,"y":138,"on":true},{"x":225,"y":148,"on":false},{"x":275,"y":148,"on":false},{"x":293,"y":138,"on":true},{"x":309,"y":129,"on":false},{"x":318,"y":113,"on":true},{"x":328,"y":95,"on":false},{"x":328,"y":70,"on":true},{"x":328,"y":-40,"on":false},{"x":264,"y":-150,"on":true},{"x":248,"y":-177,"on":false},{"x":229,"y":-205,"on":true}],[{"x":172,"y":435,"on":false},{"x":172,"y":485,"on":false},{"x":182,"y":503,"on":true},{"x":191,"y":519,"on":false},{"x":207,"y":528,"on":true},{"x":225,"y":538,"on":false},{"x":275,"y":538,"on":false},{"x":293,"y":528,"on":true},{"x":309,"y":519,"on":false},{"x":318,"y":503,"on":true},{"x":328,"y":485,"on":false},{"x":328,"y":435,"on":false},{"x":318,"y":417,"on":true},{"x":309,"y":401,"on":false},{"x":293,"y":392,"on":true},{"x":275,"y":382,"on":false},{"x":225,"y":382,"on":false},{"x":207,"y":392,"on":true},{"x":191,"y":401,"on":false},{"x":182,"y":417,"on":true}]], "references": [], - "instructions": [64,27,22,4,2,0,71,0,0,2,0,132,0,2,2,1,95,0,1,1,75,2,76,25,31,28,3,9,23,43] + "instructions": "QBsWBAIARwAAAgCEAAICAV8AAQFLAkwZHxwDCRcr" }, "uni037E": { "name": "uni037E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"semicolon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "question": { "name": "question", "advanceWidth": 500, "contours": [[{"x":55,"y":580,"on":true},{"x":55,"y":581,"on":false},{"x":55,"y":582,"on":true},{"x":55,"y":622,"on":false},{"x":97,"y":696,"on":false},{"x":134,"y":716,"on":true},{"x":180,"y":743,"on":false},{"x":247,"y":743,"on":true},{"x":311,"y":743,"on":false},{"x":356,"y":717,"on":true},{"x":394,"y":695,"on":false},{"x":416,"y":657,"on":true},{"x":440,"y":616,"on":false},{"x":440,"y":565,"on":true},{"x":440,"y":507,"on":false},{"x":408,"y":453,"on":true},{"x":393,"y":426,"on":false},{"x":353,"y":379,"on":true},{"x":325,"y":345,"on":false},{"x":313,"y":325,"on":true},{"x":290,"y":285,"on":false},{"x":290,"y":221,"on":true},{"x":210,"y":220,"on":true},{"x":210,"y":307,"on":false},{"x":241,"y":360,"on":true},{"x":256,"y":385,"on":false},{"x":293,"y":431,"on":true},{"x":325,"y":469,"on":false},{"x":338,"y":491,"on":true},{"x":360,"y":530,"on":false},{"x":360,"y":567,"on":true},{"x":360,"y":597,"on":false},{"x":346,"y":621,"on":true},{"x":333,"y":643,"on":false},{"x":311,"y":656,"on":true},{"x":285,"y":671,"on":false},{"x":247,"y":671,"on":true},{"x":207,"y":671,"on":false},{"x":180,"y":655,"on":true},{"x":158,"y":642,"on":false},{"x":134,"y":600,"on":false},{"x":134,"y":577,"on":true},{"x":134,"y":570,"on":true}],[{"x":180,"y":40,"on":false},{"x":180,"y":85,"on":false},{"x":189,"y":101,"on":true},{"x":197,"y":115,"on":false},{"x":211,"y":124,"on":true},{"x":227,"y":133,"on":false},{"x":273,"y":133,"on":false},{"x":289,"y":124,"on":true},{"x":303,"y":116,"on":false},{"x":311,"y":101,"on":true},{"x":320,"y":85,"on":false},{"x":320,"y":40,"on":false},{"x":311,"y":24,"on":true},{"x":303,"y":10,"on":false},{"x":289,"y":1,"on":true},{"x":273,"y":-8,"on":false},{"x":227,"y":-8,"on":false},{"x":211,"y":1,"on":true},{"x":197,"y":9,"on":false},{"x":189,"y":24,"on":true}]], "references": [], - "instructions": [64,53,6,1,3,2,1,2,3,1,126,0,1,4,2,1,4,124,0,2,2,0,95,0,0,0,72,75,0,4,4,5,95,0,5,5,73,5,76,0,0,59,58,49,48,0,42,0,41,45,29,38,7,9,23,43] + "instructions": "QDUGAQMCAQIDAX4AAQQCAQR8AAICAF8AAABISwAEBAVfAAUFSQVMAAA7OjEwACoAKS0dJgcJFys=" }, "uniFF1F": { "name": "uniFF1F", "advanceWidth": 1000, "contours": [[{"x":245,"y":580,"on":true},{"x":252,"y":606,"on":false},{"x":266,"y":630,"on":true},{"x":295,"y":679,"on":false},{"x":343,"y":708,"on":true},{"x":404,"y":743,"on":false},{"x":497,"y":743,"on":true},{"x":598,"y":743,"on":false},{"x":663,"y":705,"on":true},{"x":707,"y":680,"on":false},{"x":730,"y":641,"on":true},{"x":750,"y":606,"on":false},{"x":750,"y":563,"on":true},{"x":750,"y":515,"on":false},{"x":724,"y":470,"on":true},{"x":699,"y":427,"on":false},{"x":623,"y":371,"on":true},{"x":575,"y":336,"on":false},{"x":558,"y":307,"on":true},{"x":540,"y":276,"on":false},{"x":540,"y":221,"on":true},{"x":460,"y":220,"on":true},{"x":460,"y":300,"on":false},{"x":486,"y":346,"on":true},{"x":509,"y":385,"on":false},{"x":575,"y":434,"on":true},{"x":636,"y":479,"on":false},{"x":655,"y":511,"on":true},{"x":671,"y":538,"on":false},{"x":670,"y":565,"on":true},{"x":670,"y":588,"on":false},{"x":659,"y":607,"on":true},{"x":646,"y":629,"on":false},{"x":619,"y":644,"on":true},{"x":573,"y":671,"on":false},{"x":497,"y":671,"on":true},{"x":431,"y":671,"on":false},{"x":389,"y":647,"on":true},{"x":355,"y":627,"on":false},{"x":336,"y":593,"on":true},{"x":327,"y":577,"on":false},{"x":322,"y":559,"on":true}],[{"x":430,"y":40,"on":false},{"x":430,"y":85,"on":false},{"x":439,"y":101,"on":true},{"x":447,"y":115,"on":false},{"x":461,"y":124,"on":true},{"x":477,"y":133,"on":false},{"x":523,"y":133,"on":false},{"x":539,"y":124,"on":true},{"x":553,"y":116,"on":false},{"x":561,"y":101,"on":true},{"x":570,"y":85,"on":false},{"x":570,"y":40,"on":false},{"x":561,"y":24,"on":true},{"x":553,"y":10,"on":false},{"x":539,"y":1,"on":true},{"x":523,"y":-8,"on":false},{"x":477,"y":-8,"on":false},{"x":461,"y":1,"on":true},{"x":447,"y":9,"on":false},{"x":439,"y":24,"on":true}]], "references": [], - "instructions": [181,57,47,21,5,2,48,43] + "instructions": "tTkvFQUCMCs=" }, "questiondown": { "name": "questiondown", "advanceWidth": 500, "contours": [[{"x":60,"y":-35,"on":true},{"x":60,"y":23,"on":false},{"x":92,"y":77,"on":true},{"x":107,"y":104,"on":false},{"x":147,"y":151,"on":true},{"x":175,"y":185,"on":false},{"x":187,"y":205,"on":true},{"x":210,"y":245,"on":false},{"x":210,"y":309,"on":true},{"x":290,"y":310,"on":true},{"x":290,"y":223,"on":false},{"x":259,"y":170,"on":true},{"x":244,"y":145,"on":false},{"x":207,"y":99,"on":true},{"x":175,"y":61,"on":false},{"x":162,"y":39,"on":true},{"x":140,"y":0,"on":false},{"x":140,"y":-37,"on":true},{"x":140,"y":-67,"on":false},{"x":154,"y":-91,"on":true},{"x":167,"y":-113,"on":false},{"x":189,"y":-126,"on":true},{"x":215,"y":-141,"on":false},{"x":253,"y":-141,"on":true},{"x":293,"y":-141,"on":false},{"x":320,"y":-125,"on":true},{"x":342,"y":-112,"on":false},{"x":366,"y":-70,"on":false},{"x":366,"y":-47,"on":true},{"x":366,"y":-40,"on":true},{"x":445,"y":-50,"on":true},{"x":445,"y":-51,"on":false},{"x":445,"y":-52,"on":true},{"x":445,"y":-92,"on":false},{"x":403,"y":-166,"on":false},{"x":366,"y":-186,"on":true},{"x":320,"y":-213,"on":false},{"x":253,"y":-213,"on":true},{"x":189,"y":-213,"on":false},{"x":144,"y":-187,"on":true},{"x":106,"y":-165,"on":false},{"x":84,"y":-127,"on":true},{"x":60,"y":-86,"on":false}],[{"x":180,"y":445,"on":false},{"x":180,"y":490,"on":false},{"x":189,"y":506,"on":true},{"x":197,"y":520,"on":false},{"x":211,"y":529,"on":true},{"x":227,"y":538,"on":false},{"x":273,"y":538,"on":false},{"x":289,"y":529,"on":true},{"x":303,"y":521,"on":false},{"x":311,"y":506,"on":true},{"x":320,"y":490,"on":false},{"x":320,"y":445,"on":false},{"x":311,"y":429,"on":true},{"x":303,"y":415,"on":false},{"x":289,"y":406,"on":true},{"x":273,"y":397,"on":false},{"x":227,"y":397,"on":false},{"x":211,"y":406,"on":true},{"x":197,"y":414,"on":false},{"x":189,"y":429,"on":true}]], "references": [], - "instructions": [64,45,0,0,5,2,5,0,2,126,0,2,1,5,2,1,124,0,5,5,4,95,0,4,4,75,75,0,1,1,3,96,0,3,3,77,3,76,25,26,38,36,45,24,6,9,26,43] + "instructions": "QC0AAAUCBQACfgACAQUCAXwABQUEXwAEBEtLAAEBA2AAAwNNA0wZGiYkLRgGCRor" }, "exclam": { "name": "exclam", "advanceWidth": 500, "contours": [[{"x":180,"y":40,"on":false},{"x":180,"y":85,"on":false},{"x":189,"y":101,"on":true},{"x":197,"y":115,"on":false},{"x":211,"y":124,"on":true},{"x":227,"y":133,"on":false},{"x":273,"y":133,"on":false},{"x":289,"y":124,"on":true},{"x":303,"y":116,"on":false},{"x":311,"y":101,"on":true},{"x":320,"y":85,"on":false},{"x":320,"y":40,"on":false},{"x":311,"y":24,"on":true},{"x":303,"y":10,"on":false},{"x":289,"y":1,"on":true},{"x":273,"y":-8,"on":false},{"x":227,"y":-8,"on":false},{"x":211,"y":1,"on":true},{"x":197,"y":9,"on":false},{"x":189,"y":24,"on":true}],[{"x":210,"y":260,"on":true},{"x":210,"y":735,"on":true},{"x":290,"y":735,"on":true},{"x":290,"y":260,"on":true}]], "references": [], - "instructions": [64,34,4,1,3,3,2,93,0,2,2,64,75,0,0,0,1,95,0,1,1,73,1,76,20,20,20,23,20,23,21,25,21,5,9,23,43] + "instructions": "QCIEAQMDAl0AAgJASwAAAAFfAAEBSQFMFBQUFxQXFRkVBQkXKw==" }, "exclamdown": { "name": "exclamdown", "advanceWidth": 500, "contours": [[{"x":180,"y":445,"on":false},{"x":180,"y":490,"on":false},{"x":189,"y":506,"on":true},{"x":197,"y":520,"on":false},{"x":211,"y":529,"on":true},{"x":227,"y":538,"on":false},{"x":273,"y":538,"on":false},{"x":289,"y":529,"on":true},{"x":303,"y":521,"on":false},{"x":311,"y":506,"on":true},{"x":320,"y":490,"on":false},{"x":320,"y":445,"on":false},{"x":311,"y":429,"on":true},{"x":303,"y":415,"on":false},{"x":289,"y":406,"on":true},{"x":273,"y":397,"on":false},{"x":227,"y":397,"on":false},{"x":211,"y":406,"on":true},{"x":197,"y":414,"on":false},{"x":189,"y":429,"on":true}],[{"x":210,"y":-205,"on":true},{"x":210,"y":270,"on":true},{"x":290,"y":270,"on":true},{"x":290,"y":-205,"on":true}]], "references": [], - "instructions": [64,34,0,1,1,0,95,0,0,0,75,75,0,2,2,3,93,4,1,3,3,69,3,76,20,20,20,23,20,23,21,25,21,5,9,23,43] + "instructions": "QCIAAQEAXwAAAEtLAAICA10EAQMDRQNMFBQUFxQXFRkVBQkXKw==" }, "exclamdbl": { "name": "exclamdbl", "advanceWidth": 500, "contours": [], "references": [{"glyph":"exclam","x":125,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"exclam","x":-125,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "bar": { "name": "bar", "advanceWidth": 500, "contours": [[{"x":210,"y":-181,"on":true},{"x":210,"y":844,"on":true},{"x":290,"y":844,"on":true},{"x":290,"y":-181,"on":true}]], "references": [], - "instructions": [75,176,22,80,88,64,12,0,0,1,0,131,2,1,1,1,69,1,76,27,64,10,0,0,1,0,131,2,1,1,1,116,89,64,10,0,0,0,3,0,3,17,3,9,21,43] + "instructions": "S7AWUFhADAAAAQCDAgEBAUUBTBtACgAAAQCDAgEBAXRZQAoAAAADAAMRAwkVKw==" }, "brokenbar": { "name": "brokenbar", "advanceWidth": 500, "contours": [[{"x":210,"y":-181,"on":true},{"x":210,"y":285,"on":true},{"x":290,"y":285,"on":true},{"x":290,"y":-181,"on":true}],[{"x":210,"y":377,"on":true},{"x":210,"y":844,"on":true},{"x":290,"y":844,"on":true},{"x":290,"y":377,"on":true}]], "references": [], - "instructions": [75,176,22,80,88,64,21,0,2,5,1,3,0,2,3,101,0,0,0,1,93,4,1,1,1,69,1,76,27,64,26,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,89,64,18,4,4,0,0,4,7,4,7,6,5,0,3,0,3,17,6,9,21,43] + "instructions": "S7AWUFhAFQACBQEDAAIDZQAAAAFdBAEBAUUBTBtAGgACBQEDAAIDZQAAAQEAVQAAAAFdBAEBAAFNWUASBAQAAAQHBAcGBQADAAMRBgkVKw==" }, "uni01C0": { "name": "uni01C0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"bar","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01C1": { "name": "uni01C1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"bar","x":88,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"bar","x":-88,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01C3": { "name": "uni01C3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"exclam","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01C2": { "name": "uni01C2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"bar","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-443,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-265,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,254,69,176,51,43,177,2,1,184,254,247,176,51,43] + "instructions": "sQEBuP5FsDMrsQIBuP73sDMr" }, "ampersand": { "name": "ampersand", "advanceWidth": 500, "contours": [[{"x":52,"y":188,"on":true},{"x":52,"y":244,"on":false},{"x":82,"y":295,"on":true},{"x":103,"y":331,"on":false},{"x":154,"y":376,"on":true},{"x":139,"y":397,"on":false},{"x":128,"y":416,"on":true},{"x":79,"y":501,"on":false},{"x":79,"y":578,"on":true},{"x":79,"y":631,"on":false},{"x":102,"y":671,"on":true},{"x":121,"y":704,"on":false},{"x":153,"y":723,"on":true},{"x":188,"y":743,"on":false},{"x":284,"y":743,"on":false},{"x":318,"y":723,"on":true},{"x":350,"y":704,"on":false},{"x":370,"y":671,"on":true},{"x":393,"y":631,"on":false},{"x":393,"y":580,"on":true},{"x":393,"y":526,"on":false},{"x":363,"y":475,"on":true},{"x":337,"y":429,"on":false},{"x":260,"y":368,"on":true},{"x":290,"y":331,"on":false},{"x":329,"y":287,"on":true},{"x":350,"y":263,"on":false},{"x":368,"y":242,"on":true},{"x":368,"y":368,"on":true},{"x":448,"y":368,"on":true},{"x":448,"y":195,"on":true},{"x":448,"y":164,"on":false},{"x":442,"y":137,"on":true},{"x":478,"y":68,"on":false},{"x":478,"y":0,"on":true},{"x":398,"y":0,"on":true},{"x":398,"y":23,"on":false},{"x":393,"y":46,"on":true},{"x":377,"y":30,"on":false},{"x":357,"y":18,"on":true},{"x":312,"y":-8,"on":false},{"x":188,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":82,"on":true},{"x":52,"y":129,"on":false}],[{"x":132,"y":187,"on":true},{"x":132,"y":148,"on":false},{"x":149,"y":118,"on":true},{"x":163,"y":93,"on":false},{"x":188,"y":79,"on":true},{"x":214,"y":64,"on":false},{"x":250,"y":64,"on":true},{"x":285,"y":64,"on":false},{"x":311,"y":79,"on":true},{"x":344,"y":98,"on":false},{"x":358,"y":135,"on":true},{"x":330,"y":180,"on":false},{"x":259,"y":254,"on":true},{"x":226,"y":289,"on":false},{"x":200,"y":319,"on":true},{"x":168,"y":289,"on":false},{"x":154,"y":265,"on":true},{"x":132,"y":227,"on":false}],[{"x":159,"y":578,"on":true},{"x":159,"y":523,"on":false},{"x":198,"y":456,"on":true},{"x":205,"y":443,"on":false},{"x":216,"y":427,"on":true},{"x":271,"y":473,"on":false},{"x":291,"y":506,"on":true},{"x":312,"y":543,"on":false},{"x":313,"y":580,"on":true},{"x":313,"y":611,"on":false},{"x":299,"y":635,"on":true},{"x":289,"y":652,"on":false},{"x":273,"y":662,"on":true},{"x":257,"y":671,"on":false},{"x":215,"y":671,"on":false},{"x":183,"y":653,"on":false},{"x":173,"y":635,"on":true},{"x":159,"y":611,"on":false}]], "references": [], - "instructions": [64,23,68,4,2,1,5,60,56,32,27,4,4,1,37,1,2,4,3,74,23,1,1,1,73,75,176,29,80,88,64,33,0,5,5,0,95,0,0,0,72,75,0,1,1,2,95,3,1,2,2,65,75,0,4,4,2,95,3,1,2,2,65,2,76,27,64,31,0,5,5,0,95,0,0,0,72,75,0,1,1,2,93,0,2,2,65,75,0,4,4,3,95,0,3,3,73,3,76,89,64,10,78,77,42,21,21,30,29,6,9,25,43] + "instructions": "QBdEBAIBBTw4IBsEBAElAQIEA0oXAQEBSUuwHVBYQCEABQUAXwAAAEhLAAEBAl8DAQICQUsABAQCXwMBAgJBAkwbQB8ABQUAXwAAAEhLAAEBAl0AAgJBSwAEBANfAAMDSQNMWUAKTk0qFRUeHQYJGSs=" }, "at": { "name": "at", "advanceWidth": 500, "contours": [[{"x":60,"y":14,"on":true},{"x":60,"y":649,"on":true},{"x":60,"y":717,"on":false},{"x":88,"y":765,"on":true},{"x":111,"y":805,"on":false},{"x":150,"y":828,"on":true},{"x":192,"y":852,"on":false},{"x":308,"y":852,"on":false},{"x":350,"y":828,"on":true},{"x":389,"y":805,"on":false},{"x":412,"y":765,"on":true},{"x":440,"y":717,"on":false},{"x":440,"y":649,"on":true},{"x":440,"y":155,"on":true},{"x":440,"y":103,"on":false},{"x":420,"y":68,"on":true},{"x":405,"y":42,"on":false},{"x":381,"y":29,"on":true},{"x":358,"y":16,"on":false},{"x":327,"y":16,"on":true},{"x":293,"y":16,"on":false},{"x":267,"y":31,"on":true},{"x":242,"y":46,"on":false},{"x":226,"y":72,"on":true},{"x":206,"y":106,"on":false},{"x":207,"y":155,"on":true},{"x":207,"y":456,"on":true},{"x":207,"y":505,"on":false},{"x":226,"y":539,"on":true},{"x":258,"y":596,"on":false},{"x":328,"y":596,"on":true},{"x":360,"y":596,"on":true},{"x":360,"y":649,"on":true},{"x":360,"y":696,"on":false},{"x":341,"y":728,"on":true},{"x":327,"y":753,"on":false},{"x":281,"y":780,"on":false},{"x":219,"y":780,"on":false},{"x":173,"y":753,"on":false},{"x":159,"y":728,"on":true},{"x":140,"y":696,"on":false},{"x":140,"y":649,"on":true},{"x":140,"y":14,"on":true},{"x":140,"y":-33,"on":false},{"x":159,"y":-66,"on":true},{"x":173,"y":-91,"on":false},{"x":196,"y":-104,"on":true},{"x":219,"y":-118,"on":false},{"x":250,"y":-117,"on":true},{"x":404,"y":-117,"on":true},{"x":404,"y":-189,"on":true},{"x":250,"y":-189,"on":true},{"x":192,"y":-189,"on":false},{"x":149,"y":-165,"on":true},{"x":110,"y":-143,"on":false},{"x":88,"y":-102,"on":true},{"x":60,"y":-54,"on":false}],[{"x":287,"y":155,"on":true},{"x":287,"y":115,"on":false},{"x":305,"y":97,"on":true},{"x":315,"y":87,"on":false},{"x":327,"y":88,"on":true},{"x":337,"y":88,"on":false},{"x":343,"y":94,"on":true},{"x":360,"y":111,"on":false},{"x":360,"y":155,"on":true},{"x":360,"y":524,"on":true},{"x":328,"y":524,"on":true},{"x":314,"y":524,"on":false},{"x":305,"y":514,"on":true},{"x":287,"y":496,"on":false},{"x":287,"y":456,"on":true}]], "references": [], - "instructions": [75,176,31,80,88,64,37,0,0,0,3,2,0,3,103,0,2,0,7,6,2,7,103,0,6,6,1,95,0,1,1,65,75,0,4,4,5,93,0,5,5,69,5,76,27,64,40,0,0,0,3,2,0,3,103,0,2,0,7,6,2,7,103,0,6,0,1,4,6,1,103,0,4,5,5,4,85,0,4,4,5,93,0,5,4,5,77,89,64,11,36,25,33,42,21,41,43,22,8,9,28,43] + "instructions": "S7AfUFhAJQAAAAMCAANnAAIABwYCB2cABgYBXwABAUFLAAQEBV0ABQVFBUwbQCgAAAADAgADZwACAAcGAgdnAAYAAQQGAWcABAUFBFUABAQFXQAFBAVNWUALJBkhKhUpKxYICRwr" }, "glyph714": { "name": "glyph714", "advanceWidth": 500, "contours": [[{"x":56,"y":462,"on":false},{"x":56,"y":604,"on":false},{"x":84,"y":653,"on":true},{"x":106,"y":692,"on":false},{"x":143,"y":713,"on":true},{"x":179,"y":734,"on":false},{"x":228,"y":735,"on":true},{"x":308,"y":735,"on":true},{"x":308,"y":0,"on":true},{"x":228,"y":0,"on":true},{"x":228,"y":332,"on":true},{"x":179,"y":333,"on":false},{"x":107,"y":375,"on":false},{"x":84,"y":413,"on":true}],[{"x":136,"y":585,"on":false},{"x":136,"y":482,"on":false},{"x":155,"y":449,"on":true},{"x":168,"y":426,"on":false},{"x":188,"y":415,"on":true},{"x":206,"y":405,"on":false},{"x":228,"y":404,"on":true},{"x":228,"y":663,"on":true},{"x":206,"y":662,"on":false},{"x":188,"y":652,"on":true},{"x":168,"y":640,"on":false},{"x":155,"y":618,"on":true}],[{"x":364,"y":0,"on":true},{"x":364,"y":735,"on":true},{"x":444,"y":735,"on":true},{"x":444,"y":0,"on":true}]], "references": [], - "instructions": [64,42,0,3,0,2,1,3,2,103,0,4,4,0,93,5,1,0,0,26,75,7,6,2,1,1,27,1,76,26,26,26,29,26,29,21,17,24,17,17,37,8,7,26,43] + "instructions": "QCoAAwACAQMCZwAEBABdBQEAABpLBwYCAQEbAUwaGhodGh0VERgRESUIBxor" }, "glyph715": { "name": "glyph715", "advanceWidth": 500, "contours": [[{"x":56,"y":462,"on":false},{"x":56,"y":604,"on":false},{"x":84,"y":653,"on":true},{"x":106,"y":692,"on":false},{"x":143,"y":713,"on":true},{"x":179,"y":734,"on":false},{"x":228,"y":735,"on":true},{"x":308,"y":735,"on":true},{"x":308,"y":-205,"on":true},{"x":228,"y":-205,"on":true},{"x":228,"y":332,"on":true},{"x":179,"y":333,"on":false},{"x":107,"y":375,"on":false},{"x":84,"y":413,"on":true}],[{"x":136,"y":585,"on":false},{"x":136,"y":482,"on":false},{"x":155,"y":449,"on":true},{"x":168,"y":426,"on":false},{"x":188,"y":415,"on":true},{"x":206,"y":405,"on":false},{"x":228,"y":404,"on":true},{"x":228,"y":663,"on":true},{"x":206,"y":662,"on":false},{"x":188,"y":652,"on":true},{"x":168,"y":640,"on":false},{"x":155,"y":618,"on":true}],[{"x":364,"y":-205,"on":true},{"x":364,"y":735,"on":true},{"x":444,"y":735,"on":true},{"x":444,"y":-205,"on":true}]], "references": [], - "instructions": [64,42,0,3,0,2,1,3,2,103,0,4,4,0,93,5,1,0,0,26,75,7,6,2,1,1,30,1,76,26,26,26,29,26,29,21,17,24,17,17,37,8,7,26,43] + "instructions": "QCoAAwACAQMCZwAEBABdBQEAABpLBwYCAQEeAUwaGhodGh0VERgRESUIBxor" }, "paragraph": { "name": "paragraph", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph714","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "section": { "name": "section", "advanceWidth": 500, "contours": [[{"x":55,"y":-26,"on":true},{"x":133,"y":-12,"on":true},{"x":136,"y":-37,"on":false},{"x":148,"y":-57,"on":true},{"x":162,"y":-81,"on":false},{"x":186,"y":-95,"on":true},{"x":211,"y":-110,"on":false},{"x":246,"y":-109,"on":true},{"x":282,"y":-109,"on":false},{"x":307,"y":-94,"on":true},{"x":330,"y":-81,"on":false},{"x":344,"y":-58,"on":true},{"x":360,"y":-30,"on":false},{"x":360,"y":3,"on":true},{"x":360,"y":33,"on":false},{"x":344,"y":61,"on":true},{"x":326,"y":93,"on":false},{"x":287,"y":115,"on":true},{"x":269,"y":126,"on":false},{"x":230,"y":142,"on":true},{"x":180,"y":163,"on":false},{"x":157,"y":176,"on":true},{"x":107,"y":205,"on":false},{"x":82,"y":247,"on":true},{"x":60,"y":285,"on":false},{"x":60,"y":331,"on":true},{"x":60,"y":381,"on":false},{"x":87,"y":427,"on":true},{"x":111,"y":469,"on":false},{"x":151,"y":496,"on":true},{"x":108,"y":523,"on":false},{"x":85,"y":564,"on":true},{"x":60,"y":608,"on":false},{"x":60,"y":657,"on":true},{"x":60,"y":711,"on":false},{"x":86,"y":756,"on":true},{"x":109,"y":795,"on":false},{"x":148,"y":818,"on":true},{"x":192,"y":844,"on":false},{"x":316,"y":844,"on":false},{"x":360,"y":818,"on":true},{"x":399,"y":795,"on":false},{"x":422,"y":756,"on":true},{"x":440,"y":725,"on":false},{"x":445,"y":689,"on":true},{"x":367,"y":674,"on":true},{"x":364,"y":699,"on":false},{"x":352,"y":719,"on":true},{"x":338,"y":743,"on":false},{"x":314,"y":757,"on":true},{"x":289,"y":772,"on":false},{"x":254,"y":772,"on":true},{"x":218,"y":772,"on":false},{"x":193,"y":757,"on":true},{"x":170,"y":744,"on":false},{"x":156,"y":720,"on":true},{"x":140,"y":692,"on":false},{"x":140,"y":659,"on":true},{"x":140,"y":629,"on":false},{"x":156,"y":601,"on":true},{"x":174,"y":569,"on":false},{"x":213,"y":547,"on":true},{"x":231,"y":536,"on":false},{"x":270,"y":521,"on":true},{"x":320,"y":500,"on":false},{"x":343,"y":487,"on":true},{"x":393,"y":458,"on":false},{"x":418,"y":415,"on":true},{"x":440,"y":377,"on":false},{"x":440,"y":332,"on":true},{"x":440,"y":282,"on":false},{"x":413,"y":235,"on":true},{"x":389,"y":193,"on":false},{"x":349,"y":166,"on":true},{"x":392,"y":139,"on":false},{"x":415,"y":99,"on":true},{"x":440,"y":55,"on":false},{"x":440,"y":5,"on":true},{"x":440,"y":-49,"on":false},{"x":414,"y":-94,"on":true},{"x":391,"y":-133,"on":false},{"x":352,"y":-156,"on":true},{"x":308,"y":-182,"on":false},{"x":184,"y":-181,"on":false},{"x":140,"y":-156,"on":true},{"x":101,"y":-133,"on":false},{"x":78,"y":-94,"on":true},{"x":60,"y":-63,"on":false}],[{"x":140,"y":331,"on":true},{"x":140,"y":303,"on":false},{"x":154,"y":279,"on":true},{"x":170,"y":251,"on":false},{"x":204,"y":231,"on":true},{"x":223,"y":220,"on":false},{"x":264,"y":205,"on":true},{"x":277,"y":210,"on":false},{"x":289,"y":217,"on":true},{"x":323,"y":237,"on":false},{"x":343,"y":270,"on":true},{"x":360,"y":300,"on":false},{"x":360,"y":332,"on":true},{"x":360,"y":360,"on":false},{"x":346,"y":384,"on":true},{"x":330,"y":412,"on":false},{"x":296,"y":431,"on":true},{"x":277,"y":442,"on":false},{"x":236,"y":457,"on":true},{"x":223,"y":452,"on":false},{"x":211,"y":446,"on":true},{"x":177,"y":426,"on":false},{"x":157,"y":393,"on":true},{"x":140,"y":363,"on":false}]], "references": [], - "instructions": [64,12,106,94,73,45,44,29,1,7,0,2,1,74,75,176,22,80,88,64,19,0,1,0,2,0,1,2,103,0,0,0,3,95,0,3,3,69,3,76,27,64,24,0,1,0,2,0,1,2,103,0,0,3,3,0,87,0,0,0,3,95,0,3,0,3,79,89,64,10,83,82,52,50,39,38,38,4,9,21,43] + "instructions": "QAxqXkktLB0BBwACAUpLsBZQWEATAAEAAgABAmcAAAADXwADA0UDTBtAGAABAAIAAQJnAAADAwBXAAAAA18AAwADT1lAClNSNDInJiYECRUr" }, "glyph718": { "name": "glyph718", "advanceWidth": 500, "contours": [[{"x":38,"y":612,"on":true},{"x":63,"y":680,"on":true},{"x":216,"y":624,"on":true},{"x":210,"y":791,"on":true},{"x":290,"y":791,"on":true},{"x":284,"y":624,"on":true},{"x":437,"y":680,"on":true},{"x":462,"y":612,"on":true},{"x":301,"y":566,"on":true},{"x":406,"y":433,"on":true},{"x":341,"y":390,"on":true},{"x":250,"y":526,"on":true},{"x":159,"y":390,"on":true},{"x":94,"y":433,"on":true},{"x":199,"y":566,"on":true}]], "references": [], - "instructions": [64,23,14,13,12,11,10,9,8,7,6,5,2,1,12,0,71,0,0,0,116,19,1,7,21,43] + "instructions": "QBcODQwLCgkIBwYFAgEMAEcAAAB0EwEHFSs=" }, "glyph719": { "name": "glyph719", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph718","x":0,"y":-250,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,255,6,176,51,43] + "instructions": "sQABuP8GsDMr" }, "asterisk": { "name": "asterisk", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph718","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "numbersign": { "name": "numbersign", "advanceWidth": 500, "contours": [[{"x":60,"y":124,"on":true},{"x":60,"y":196,"on":true},{"x":134,"y":196,"on":true},{"x":134,"y":466,"on":true},{"x":60,"y":466,"on":true},{"x":60,"y":538,"on":true},{"x":134,"y":538,"on":true},{"x":134,"y":772,"on":true},{"x":214,"y":772,"on":true},{"x":214,"y":538,"on":true},{"x":286,"y":538,"on":true},{"x":286,"y":772,"on":true},{"x":366,"y":772,"on":true},{"x":366,"y":538,"on":true},{"x":440,"y":538,"on":true},{"x":440,"y":466,"on":true},{"x":366,"y":466,"on":true},{"x":366,"y":196,"on":true},{"x":440,"y":196,"on":true},{"x":440,"y":124,"on":true},{"x":366,"y":124,"on":true},{"x":366,"y":-109,"on":true},{"x":286,"y":-109,"on":true},{"x":286,"y":124,"on":true},{"x":214,"y":124,"on":true},{"x":214,"y":-109,"on":true},{"x":134,"y":-109,"on":true},{"x":134,"y":124,"on":true}],[{"x":214,"y":196,"on":true},{"x":286,"y":196,"on":true},{"x":286,"y":466,"on":true},{"x":214,"y":466,"on":true}]], "references": [], - "instructions": [64,70,5,1,3,2,3,131,12,1,10,9,10,132,14,8,2,0,16,13,11,3,9,10,0,9,101,15,7,2,1,1,2,93,6,4,2,2,2,67,1,76,0,0,31,30,29,28,0,27,0,27,26,25,24,23,22,21,20,19,17,17,17,17,17,17,17,17,17,17,9,29,43] + "instructions": "QEYFAQMCA4MMAQoJCoQOCAIAEA0LAwkKAAllDwcCAQECXQYEAgICQwFMAAAfHh0cABsAGxoZGBcWFRQTEREREREREREREQkdKw==" }, "slash": { "name": "slash", "advanceWidth": 500, "contours": [[{"x":60,"y":-181,"on":true},{"x":356,"y":844,"on":true},{"x":440,"y":844,"on":true},{"x":144,"y":-181,"on":true}]], "references": [], - "instructions": [75,176,22,80,88,64,12,0,0,1,0,131,2,1,1,1,69,1,76,27,64,10,0,0,1,0,131,2,1,1,1,116,89,64,10,0,0,0,3,0,3,17,3,9,21,43] + "instructions": "S7AWUFhADAAAAQCDAgEBAUUBTBtACgAAAQCDAgEBAXRZQAoAAAADAAMRAwkVKw==" }, "backslash": { "name": "backslash", "advanceWidth": 500, "contours": [[{"x":60,"y":844,"on":true},{"x":356,"y":-181,"on":true},{"x":440,"y":-181,"on":true},{"x":144,"y":844,"on":true}]], "references": [], - "instructions": [75,176,22,80,88,64,12,2,1,1,0,1,131,0,0,0,69,0,76,27,64,10,2,1,1,0,1,131,0,0,0,116,89,64,10,0,0,0,3,0,3,17,3,9,21,43] + "instructions": "S7AWUFhADAIBAQABgwAAAEUATBtACgIBAQABgwAAAHRZQAoAAAADAAMRAwkVKw==" }, "fraction": { "name": "fraction", "advanceWidth": 500, "contours": [], "references": [{"glyph":"slash","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph725": { "name": "glyph725", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0305","x":500,"y":-649,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,253,119,176,51,43] + "instructions": "sQABuP13sDMr" }, "glyph726": { "name": "glyph726", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0305","x":500,"y":-834,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,190,176,51,43] + "instructions": "sQABuPy+sDMr" }, "underscore": { "name": "underscore", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0305","x":500,"y":-649,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,253,119,176,51,43] + "instructions": "sQABuP13sDMr" }, "uni203E": { "name": "uni203E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0305","x":500,"y":14,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,14,176,51,43] + "instructions": "sQABsA6wMys=" }, "hyphen": { "name": "hyphen", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,158,176,51,43] + "instructions": "sQABuP6esDMr" }, "uni00AD": { "name": "uni00AD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,158,176,51,43] + "instructions": "sQABuP6esDMr" }, "uni2010": { "name": "uni2010", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,158,176,51,43] + "instructions": "sQABuP6esDMr" }, "uni2011": { "name": "uni2011", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,158,176,51,43] + "instructions": "sQABuP6esDMr" }, "figuredash": { "name": "figuredash", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,158,176,51,43] + "instructions": "sQABuP6esDMr" }, "endash": { "name": "endash", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,158,176,51,43] + "instructions": "sQABuP6esDMr" }, "emdash": { "name": "emdash", "advanceWidth": 500, "contours": [[{"x":0,"y":295,"on":true},{"x":0,"y":367,"on":true},{"x":500,"y":367,"on":true},{"x":500,"y":295,"on":true}]], "references": [], - "instructions": [64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,9,21,43] + "instructions": "QBsAAAEBAFUAAAABXQIBAQABTQAAAAMAAxEDCRUr" }, "glyph736": { "name": "glyph736", "advanceWidth": 1000, "contours": [[{"x":0,"y":295,"on":true},{"x":0,"y":367,"on":true},{"x":1000,"y":367,"on":true},{"x":1000,"y":295,"on":true}]], "references": [], - "instructions": [64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,7,21,43] + "instructions": "QBsAAAEBAFUAAAABXQIBAQABTQAAAAMAAxEDBxUr" }, "uni2015": { "name": "uni2015", "advanceWidth": 500, "contours": [], "references": [{"glyph":"emdash","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "periodcentered": { "name": "periodcentered", "advanceWidth": 500, "contours": [], "references": [{"glyph":"period","x":0,"y":261,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,1,5,176,51,43] + "instructions": "sQABuAEFsDMr" }, "bullet": { "name": "bullet", "advanceWidth": 500, "contours": [], "references": [{"glyph":"period","x":0,"y":261,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,1,5,176,51,43] + "instructions": "sQABuAEFsDMr" }, "uni2027": { "name": "uni2027", "advanceWidth": 500, "contours": [], "references": [{"glyph":"period","x":0,"y":261,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,1,5,176,51,43] + "instructions": "sQABuAEFsDMr" }, "anoteleia": { "name": "anoteleia", "advanceWidth": 500, "contours": [], "references": [{"glyph":"period","x":0,"y":261,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,1,5,176,51,43] + "instructions": "sQABuAEFsDMr" }, "quotesingle": { "name": "quotesingle", "advanceWidth": 500, "contours": [[{"x":206,"y":772,"on":true},{"x":294,"y":772,"on":true},{"x":294,"y":610,"on":false},{"x":288,"y":450,"on":true},{"x":212,"y":450,"on":true},{"x":206,"y":611,"on":false}]], "references": [], - "instructions": [64,21,0,0,1,1,0,85,0,0,0,1,93,0,1,0,1,77,18,16,2,9,22,43] + "instructions": "QBUAAAEBAFUAAAABXQABAAFNEhACCRYr" }, "quotedbl": { "name": "quotedbl", "advanceWidth": 500, "contours": [], "references": [{"glyph":"quotesingle","x":100,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"quotesingle","x":-100,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph744": { "name": "glyph744", "advanceWidth": 500, "contours": [[{"x":167,"y":-162,"on":true},{"x":183,"y":-139,"on":false},{"x":197,"y":-116,"on":true},{"x":228,"y":-62,"on":false},{"x":241,"y":-8,"on":true},{"x":201,"y":-5,"on":false},{"x":183,"y":27,"on":true},{"x":173,"y":45,"on":false},{"x":173,"y":94,"on":false},{"x":183,"y":112,"on":true},{"x":192,"y":128,"on":false},{"x":208,"y":136,"on":true},{"x":226,"y":146,"on":false},{"x":275,"y":147,"on":false},{"x":292,"y":136,"on":true},{"x":308,"y":127,"on":false},{"x":317,"y":112,"on":true},{"x":327,"y":94,"on":false},{"x":327,"y":69,"on":true},{"x":327,"y":-40,"on":false},{"x":264,"y":-149,"on":true},{"x":248,"y":-176,"on":false},{"x":229,"y":-203,"on":true}]], "references": [], - "instructions": [64,13,22,4,2,0,71,0,0,0,116,28,1,9,21,43] + "instructions": "QA0WBAIARwAAAHQcAQkVKw==" }, "glyph745": { "name": "glyph745", "advanceWidth": 500, "contours": [[{"x":173,"y":520,"on":true},{"x":173,"y":629,"on":false},{"x":236,"y":738,"on":true},{"x":252,"y":765,"on":false},{"x":271,"y":792,"on":true},{"x":333,"y":751,"on":true},{"x":317,"y":728,"on":false},{"x":303,"y":705,"on":true},{"x":272,"y":651,"on":false},{"x":259,"y":596,"on":true},{"x":299,"y":593,"on":false},{"x":317,"y":562,"on":true},{"x":327,"y":544,"on":false},{"x":327,"y":495,"on":false},{"x":317,"y":477,"on":true},{"x":308,"y":461,"on":false},{"x":292,"y":453,"on":true},{"x":274,"y":443,"on":false},{"x":225,"y":442,"on":false},{"x":208,"y":453,"on":true},{"x":192,"y":462,"on":false},{"x":183,"y":477,"on":true},{"x":173,"y":495,"on":false}]], "references": [], - "instructions": [64,15,9,5,4,3,0,72,0,0,0,116,18,17,1,9,20,43] + "instructions": "QA8JBQQDAEgAAAB0EhEBCRQr" }, "glyph746": { "name": "glyph746", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph744","x":0,"y":633,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,2,121,176,51,43] + "instructions": "sQABuAJ5sDMr" }, "glyph747": { "name": "glyph747", "advanceWidth": 500, "contours": [[{"x":173,"y":703,"on":true},{"x":173,"y":728,"on":false},{"x":183,"y":745,"on":true},{"x":192,"y":761,"on":false},{"x":208,"y":770,"on":true},{"x":226,"y":780,"on":false},{"x":275,"y":780,"on":false},{"x":292,"y":770,"on":true},{"x":308,"y":761,"on":false},{"x":317,"y":745,"on":true},{"x":327,"y":727,"on":false},{"x":327,"y":678,"on":false},{"x":317,"y":660,"on":true},{"x":299,"y":629,"on":false},{"x":259,"y":626,"on":true},{"x":272,"y":572,"on":false},{"x":303,"y":517,"on":true},{"x":316,"y":494,"on":false},{"x":333,"y":471,"on":true},{"x":271,"y":430,"on":true},{"x":252,"y":457,"on":false},{"x":236,"y":484,"on":true},{"x":173,"y":593,"on":false}]], "references": [], - "instructions": [64,14,19,18,14,3,0,71,0,0,0,116,21,1,9,21,43] + "instructions": "QA4TEg4DAEcAAAB0FQEJFSs=" }, "glyph748": { "name": "glyph748", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph744","x":112,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph744","x":-112,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph749": { "name": "glyph749", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph745","x":-112,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph745","x":112,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph750": { "name": "glyph750", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph748","x":0,"y":633,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph751": { "name": "glyph751", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph747","x":112,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph747","x":-112,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "quotesinglbase": { "name": "quotesinglbase", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph744","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "quoteleft": { "name": "quoteleft", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph745","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "quoteright": { "name": "quoteright", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph744","x":0,"y":633,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,2,121,176,51,43] + "instructions": "sQABuAJ5sDMr" }, "quotereversed": { "name": "quotereversed", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph747","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "quotedblbase": { "name": "quotedblbase", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph748","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "quotedblleft": { "name": "quotedblleft", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph749","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "quotedblright": { "name": "quotedblright", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph748","x":0,"y":633,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni201F": { "name": "uni201F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph751","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "minute": { "name": "minute", "advanceWidth": 500, "contours": [[{"x":160,"y":450,"on":true},{"x":252,"y":772,"on":true},{"x":348,"y":772,"on":true},{"x":240,"y":450,"on":true}]], "references": [], - "instructions": [64,20,0,0,1,0,131,2,1,1,1,116,0,0,0,3,0,3,17,3,9,21,43] + "instructions": "QBQAAAEAgwIBAQF0AAAAAwADEQMJFSs=" }, "second": { "name": "second", "advanceWidth": 500, "contours": [], "references": [{"glyph":"minute","x":95,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"minute","x":-95,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2034": { "name": "uni2034", "advanceWidth": 500, "contours": [], "references": [{"glyph":"minute","x":150,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"minute","x":-150,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"minute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2035": { "name": "uni2035", "advanceWidth": 500, "contours": [[{"x":152,"y":772,"on":true},{"x":248,"y":772,"on":true},{"x":340,"y":450,"on":true},{"x":260,"y":450,"on":true}]], "references": [], - "instructions": [64,14,0,0,1,0,131,0,1,1,116,17,16,2,9,22,43] + "instructions": "QA4AAAEAgwABAXQREAIJFis=" }, "uni2036": { "name": "uni2036", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2035","x":95,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2035","x":-95,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2037": { "name": "uni2037", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2035","x":150,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2035","x":-150,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2035","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "guilsinglleft": { "name": "guilsinglleft", "advanceWidth": 500, "contours": [[{"x":126,"y":295,"on":true},{"x":126,"y":367,"on":true},{"x":198,"y":411,"on":false},{"x":252,"y":503,"on":true},{"x":279,"y":550,"on":false},{"x":299,"y":601,"on":true},{"x":372,"y":574,"on":true},{"x":357,"y":541,"on":false},{"x":339,"y":509,"on":true},{"x":273,"y":394,"on":false},{"x":187,"y":331,"on":true},{"x":273,"y":269,"on":false},{"x":339,"y":154,"on":true},{"x":357,"y":122,"on":false},{"x":372,"y":89,"on":true},{"x":299,"y":61,"on":true},{"x":280,"y":112,"on":false},{"x":252,"y":160,"on":true},{"x":198,"y":252,"on":false}]], "references": [], - "instructions": [179,15,5,1,48,43] + "instructions": "sw8FATAr" }, "guillemotleft": { "name": "guillemotleft", "advanceWidth": 500, "contours": [], "references": [{"glyph":"guilsinglleft","x":-95,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"guilsinglleft","x":95,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "guilsinglright": { "name": "guilsinglright", "advanceWidth": 500, "contours": [[{"x":128,"y":89,"on":true},{"x":143,"y":122,"on":false},{"x":161,"y":154,"on":true},{"x":227,"y":269,"on":false},{"x":313,"y":331,"on":true},{"x":227,"y":393,"on":false},{"x":161,"y":509,"on":true},{"x":143,"y":541,"on":false},{"x":128,"y":574,"on":true},{"x":201,"y":601,"on":true},{"x":220,"y":550,"on":false},{"x":248,"y":503,"on":true},{"x":302,"y":411,"on":false},{"x":374,"y":367,"on":true},{"x":374,"y":295,"on":true},{"x":302,"y":251,"on":false},{"x":248,"y":160,"on":true},{"x":221,"y":113,"on":false},{"x":201,"y":61,"on":true}]], "references": [], - "instructions": [179,18,9,1,48,43] + "instructions": "sxIJATAr" }, "guillemotright": { "name": "guillemotright", "advanceWidth": 500, "contours": [], "references": [{"glyph":"guilsinglright","x":95,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"guilsinglright","x":-95,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "dagger": { "name": "dagger", "advanceWidth": 500, "contours": [], "references": [{"glyph":"bar","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-180,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,76,176,51,43] + "instructions": "sQEBuP9MsDMr" }, "daggerdbl": { "name": "daggerdbl", "advanceWidth": 500, "contours": [], "references": [{"glyph":"dagger","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-528,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,76,176,51,43] + "instructions": "sQEBuP9MsDMr" }, "onedotenleader": { "name": "onedotenleader", "advanceWidth": 500, "contours": [[{"x":202,"y":18,"on":false},{"x":202,"y":63,"on":false},{"x":228,"y":89,"on":false},{"x":272,"y":89,"on":false},{"x":298,"y":63,"on":false},{"x":298,"y":18,"on":false},{"x":272,"y":-8,"on":false},{"x":228,"y":-8,"on":false}]], "references": [], - "instructions": [64,16,0,0,0,1,95,0,1,1,73,1,76,19,18,2,9,22,43] + "instructions": "QBAAAAABXwABAUkBTBMSAgkWKw==" }, "twodotenleader": { "name": "twodotenleader", "advanceWidth": 500, "contours": [], "references": [{"glyph":"onedotenleader","x":125,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"onedotenleader","x":-125,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "ellipsis": { "name": "ellipsis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"onedotenleader","x":167,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"onedotenleader","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"onedotenleader","x":-167,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "percent": { "name": "percent", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":148,"y":0,"on":true},{"x":440,"y":735,"on":true},{"x":352,"y":735,"on":true}],[{"x":60,"y":514,"on":true},{"x":60,"y":735,"on":true},{"x":174,"y":735,"on":true},{"x":174,"y":514,"on":true}],[{"x":326,"y":0,"on":true},{"x":326,"y":220,"on":true},{"x":440,"y":220,"on":true},{"x":440,"y":0,"on":true}]], "references": [], - "instructions": [75,176,31,80,88,64,33,0,2,1,2,131,7,1,5,0,5,132,6,1,3,3,67,75,0,4,4,1,93,0,1,1,64,75,0,0,0,65,0,76,27,64,33,0,2,1,2,131,7,1,5,0,5,132,0,4,4,1,93,0,1,1,64,75,6,1,3,3,0,93,0,0,0,65,0,76,89,64,20,8,8,4,4,8,11,8,11,10,9,4,7,4,7,18,17,16,8,9,23,43] + "instructions": "S7AfUFhAIQACAQKDBwEFAAWEBgEDA0NLAAQEAV0AAQFASwAAAEEATBtAIQACAQKDBwEFAAWEAAQEAV0AAQFASwYBAwMAXQAAAEEATFlAFAgIBAQICwgLCgkEBwQHEhEQCAkXKw==" }, "perthousand": { "name": "perthousand", "advanceWidth": 500, "contours": [[{"x":26,"y":166,"on":true},{"x":349,"y":681,"on":true},{"x":417,"y":642,"on":true},{"x":94,"y":128,"on":true}],[{"x":88,"y":514,"on":true},{"x":88,"y":735,"on":true},{"x":203,"y":735,"on":true},{"x":203,"y":514,"on":true}],[{"x":171,"y":0,"on":true},{"x":171,"y":220,"on":true},{"x":286,"y":220,"on":true},{"x":286,"y":0,"on":true}],[{"x":326,"y":0,"on":true},{"x":326,"y":220,"on":true},{"x":440,"y":220,"on":true},{"x":440,"y":0,"on":true}]], "references": [], - "instructions": [64,63,2,1,2,1,0,3,1,3,2,2,74,6,1,1,1,0,93,0,0,0,64,75,4,1,2,2,3,93,8,5,7,3,3,3,65,3,76,12,12,8,8,4,4,12,15,12,15,14,13,8,11,8,11,10,9,4,7,4,7,21,9,9,21,43] + "instructions": "QD8CAQIBAAMBAwICSgYBAQEAXQAAAEBLBAECAgNdCAUHAwMDQQNMDAwICAQEDA8MDw4NCAsICwoJBAcEBxUJCRUr" }, "uni2031": { "name": "uni2031", "advanceWidth": 500, "contours": [[{"x":26,"y":166,"on":true},{"x":349,"y":681,"on":true},{"x":417,"y":642,"on":true},{"x":152,"y":220,"on":true},{"x":178,"y":220,"on":true},{"x":178,"y":0,"on":true},{"x":98,"y":0,"on":true},{"x":98,"y":134,"on":true},{"x":94,"y":128,"on":true}],[{"x":60,"y":514,"on":true},{"x":60,"y":735,"on":true},{"x":174,"y":735,"on":true},{"x":174,"y":514,"on":true}],[{"x":229,"y":0,"on":true},{"x":229,"y":220,"on":true},{"x":309,"y":220,"on":true},{"x":309,"y":0,"on":true}],[{"x":360,"y":0,"on":true},{"x":360,"y":220,"on":true},{"x":440,"y":220,"on":true},{"x":440,"y":0,"on":true}]], "references": [], - "instructions": [64,68,2,1,2,3,2,8,7,2,1,0,2,74,8,1,3,3,2,93,0,2,2,64,75,6,4,2,0,0,1,93,10,7,9,5,4,1,1,65,1,76,17,17,13,13,9,9,17,20,17,20,19,18,13,16,13,16,15,14,9,12,9,12,20,17,19,11,9,23,43] + "instructions": "QEQCAQIDAggHAgEAAkoIAQMDAl0AAgJASwYEAgAAAV0KBwkFBAEBQQFMERENDQkJERQRFBMSDRANEA8OCQwJDBQREwsJFys=" }, "glyph778": { "name": "glyph778", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph16","x":0,"y":-354,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,158,176,51,43] + "instructions": "sQABuP6esDMr" }, "asciitilde": { "name": "asciitilde", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph16","x":0,"y":-354,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,158,176,51,43] + "instructions": "sQABuP6esDMr" }, "degree": { "name": "degree", "advanceWidth": 500, "contours": [[{"x":129,"y":616,"on":false},{"x":129,"y":693,"on":false},{"x":145,"y":721,"on":true},{"x":159,"y":746,"on":false},{"x":183,"y":760,"on":true},{"x":211,"y":776,"on":false},{"x":289,"y":776,"on":false},{"x":317,"y":760,"on":true},{"x":342,"y":746,"on":false},{"x":355,"y":721,"on":true},{"x":371,"y":693,"on":false},{"x":371,"y":615,"on":false},{"x":355,"y":588,"on":true},{"x":341,"y":563,"on":false},{"x":317,"y":549,"on":true},{"x":289,"y":533,"on":false},{"x":211,"y":533,"on":false},{"x":183,"y":549,"on":true},{"x":158,"y":563,"on":false},{"x":145,"y":588,"on":true}],[{"x":203,"y":676,"on":false},{"x":203,"y":633,"on":false},{"x":228,"y":607,"on":false},{"x":272,"y":607,"on":false},{"x":297,"y":633,"on":false},{"x":297,"y":676,"on":false},{"x":272,"y":701,"on":false},{"x":228,"y":701,"on":false}]], "references": [], - "instructions": [177,6,100,68,64,31,0,0,0,3,2,0,3,103,0,2,1,1,2,87,0,2,2,1,95,0,1,2,1,79,19,22,25,21,4,9,24,43,177,6,0,68] + "instructions": "sQZkREAfAAAAAwIAA2cAAgEBAlcAAgIBXwABAgFPExYZFQQJGCuxBgBE" }, "uni02B9": { "name": "uni02B9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"minute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02BA": { "name": "uni02BA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"second","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02BB": { "name": "uni02BB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph745","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02BC": { "name": "uni02BC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph744","x":0,"y":633,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,2,121,176,51,43] + "instructions": "sQABuAJ5sDMr" }, "uni02BD": { "name": "uni02BD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph747","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02C8": { "name": "uni02C8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"quotesingle","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02CC": { "name": "uni02CC", "advanceWidth": 500, "contours": [[{"x":206,"y":-242,"on":true},{"x":206,"y":-80,"on":false},{"x":212,"y":80,"on":true},{"x":288,"y":80,"on":true},{"x":294,"y":-81,"on":false},{"x":294,"y":-242,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,5,0,5,18,3,9,21,43,177,6,0,68] + "instructions": "sQZkREAbAAABAQBVAAAAAV0CAQEAAU0AAAAFAAUSAwkVK7EGAEQ=" }, "uniFF01": { "name": "uniFF01", "advanceWidth": 1000, "contours": [], "references": [{"glyph":"exclam","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uniFF1A": { "name": "uniFF1A", "advanceWidth": 1000, "contours": [], "references": [{"glyph":"colon","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,1,134,176,51,43] + "instructions": "sQABuAGGsDMr" }, "uniFF1B": { "name": "uniFF1B", "advanceWidth": 1000, "contours": [], "references": [{"glyph":"semicolon","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uniFF0C": { "name": "uniFF0C", "advanceWidth": 1000, "contours": [], "references": [{"glyph":"comma","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uniFF0E": { "name": "uniFF0E", "advanceWidth": 1000, "contours": [], "references": [{"glyph":"period","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uniFF08": { "name": "uniFF08", "advanceWidth": 1000, "contours": [], "references": [{"glyph":"parenleft","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uniFF09": { "name": "uniFF09", "advanceWidth": 1000, "contours": [], "references": [{"glyph":"parenright","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "mu": { "name": "mu", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni03BC","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "universal": { "name": "universal", "advanceWidth": 500, "contours": [[{"x":60,"y":662,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":662,"on":true},{"x":140,"y":603,"on":false},{"x":155,"y":533,"on":true},{"x":157,"y":521,"on":false},{"x":161,"y":506,"on":true},{"x":339,"y":506,"on":true},{"x":342,"y":521,"on":false},{"x":345,"y":533,"on":true},{"x":360,"y":602,"on":false},{"x":360,"y":662,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":662,"on":true},{"x":440,"y":601,"on":false},{"x":423,"y":529,"on":true},{"x":414,"y":493,"on":false},{"x":398,"y":421,"on":true},{"x":343,"y":182,"on":false},{"x":286,"y":0,"on":true},{"x":214,"y":0,"on":true},{"x":157,"y":182,"on":false},{"x":102,"y":421,"on":true},{"x":85,"y":493,"on":false},{"x":77,"y":529,"on":true},{"x":60,"y":600,"on":false}],[{"x":176,"y":434,"on":true},{"x":177,"y":431,"on":false},{"x":177,"y":429,"on":true},{"x":213,"y":254,"on":false},{"x":250,"y":110,"on":true},{"x":287,"y":253,"on":false},{"x":324,"y":434,"on":true}]], "references": [], - "instructions": [181,32,28,21,1,2,48,43] + "instructions": "tSAcFQECMCs=" }, "existential": { "name": "existential", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":330,"y":72,"on":true},{"x":330,"y":332,"on":true},{"x":96,"y":332,"on":true},{"x":96,"y":404,"on":true},{"x":330,"y":404,"on":true},{"x":330,"y":663,"on":true},{"x":60,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":410,"y":735,"on":true},{"x":410,"y":0,"on":true}]], "references": [], - "instructions": [179,9,0,1,48,43] + "instructions": "swkAATAr" }, "emptyset": { "name": "emptyset", "advanceWidth": 500, "contours": [[{"x":51,"y":-23,"on":true},{"x":90,"y":74,"on":true},{"x":87,"y":79,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false},{"x":52,"y":220,"on":true},{"x":52,"y":515,"on":true},{"x":52,"y":596,"on":false},{"x":84,"y":651,"on":true},{"x":109,"y":695,"on":false},{"x":193,"y":743,"on":false},{"x":307,"y":743,"on":false},{"x":348,"y":719,"on":true},{"x":375,"y":785,"on":true},{"x":449,"y":758,"on":true},{"x":410,"y":661,"on":true},{"x":413,"y":656,"on":false},{"x":416,"y":651,"on":true},{"x":448,"y":596,"on":false},{"x":448,"y":515,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":307,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":152,"y":16,"on":true},{"x":125,"y":-50,"on":true}],[{"x":132,"y":220,"on":true},{"x":132,"y":201,"on":false},{"x":134,"y":185,"on":true},{"x":319,"y":647,"on":true},{"x":312,"y":653,"on":false},{"x":304,"y":658,"on":true},{"x":281,"y":671,"on":false},{"x":219,"y":671,"on":false},{"x":196,"y":658,"on":true},{"x":171,"y":644,"on":false},{"x":155,"y":615,"on":true},{"x":132,"y":575,"on":false},{"x":132,"y":515,"on":true}],[{"x":181,"y":88,"on":true},{"x":188,"y":82,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":515,"on":true},{"x":368,"y":533,"on":false},{"x":366,"y":550,"on":true}]], "references": [], - "instructions": [183,53,44,34,30,27,13,3,48,43] + "instructions": "tzUsIh4bDQMwKw==" }, "Delta": { "name": "Delta", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0394","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "gradient": { "name": "gradient", "advanceWidth": 500, "contours": [[{"x":60,"y":662,"on":true},{"x":60,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":662,"on":true},{"x":440,"y":601,"on":false},{"x":423,"y":529,"on":true},{"x":414,"y":493,"on":false},{"x":398,"y":421,"on":true},{"x":343,"y":182,"on":false},{"x":286,"y":0,"on":true},{"x":214,"y":0,"on":true},{"x":157,"y":182,"on":false},{"x":102,"y":421,"on":true},{"x":85,"y":493,"on":false},{"x":77,"y":529,"on":true},{"x":60,"y":600,"on":false}],[{"x":140,"y":662,"on":true},{"x":140,"y":603,"on":false},{"x":155,"y":533,"on":true},{"x":163,"y":498,"on":false},{"x":177,"y":429,"on":true},{"x":213,"y":254,"on":false},{"x":250,"y":110,"on":true},{"x":287,"y":254,"on":false},{"x":323,"y":429,"on":true},{"x":337,"y":498,"on":false},{"x":345,"y":533,"on":true},{"x":360,"y":602,"on":false},{"x":360,"y":662,"on":true},{"x":360,"y":663,"on":true},{"x":140,"y":663,"on":true}]], "references": [], - "instructions": [181,29,22,9,1,2,48,43] + "instructions": "tR0WCQECMCs=" }, "infinity": { "name": "infinity", "advanceWidth": 500, "contours": [[{"x":40,"y":291,"on":false},{"x":40,"y":372,"on":false},{"x":56,"y":399,"on":true},{"x":69,"y":422,"on":false},{"x":91,"y":435,"on":true},{"x":115,"y":449,"on":false},{"x":172,"y":449,"on":false},{"x":197,"y":434,"on":true},{"x":219,"y":421,"on":false},{"x":244,"y":389,"on":true},{"x":273,"y":429,"on":false},{"x":324,"y":459,"on":false},{"x":382,"y":459,"on":false},{"x":405,"y":445,"on":true},{"x":428,"y":432,"on":false},{"x":443,"y":407,"on":true},{"x":461,"y":376,"on":false},{"x":460,"y":286,"on":false},{"x":443,"y":255,"on":true},{"x":429,"y":230,"on":false},{"x":405,"y":217,"on":true},{"x":381,"y":203,"on":false},{"x":325,"y":203,"on":false},{"x":273,"y":233,"on":false},{"x":244,"y":273,"on":true},{"x":219,"y":241,"on":false},{"x":197,"y":228,"on":true},{"x":171,"y":213,"on":false},{"x":115,"y":214,"on":false},{"x":91,"y":227,"on":true},{"x":69,"y":240,"on":false},{"x":56,"y":263,"on":true}],[{"x":108,"y":331,"on":true},{"x":108,"y":304,"on":false},{"x":126,"y":294,"on":true},{"x":134,"y":290,"on":false},{"x":143,"y":290,"on":true},{"x":156,"y":290,"on":false},{"x":170,"y":298,"on":true},{"x":185,"y":306,"on":false},{"x":204,"y":331,"on":true},{"x":185,"y":356,"on":false},{"x":170,"y":365,"on":true},{"x":156,"y":373,"on":false},{"x":143,"y":373,"on":true},{"x":124,"y":373,"on":false},{"x":114,"y":356,"on":true},{"x":108,"y":346,"on":false}],[{"x":284,"y":331,"on":true},{"x":308,"y":298,"on":false},{"x":326,"y":288,"on":true},{"x":340,"y":280,"on":false},{"x":353,"y":280,"on":true},{"x":363,"y":280,"on":false},{"x":371,"y":284,"on":true},{"x":392,"y":296,"on":false},{"x":392,"y":366,"on":false},{"x":371,"y":378,"on":true},{"x":363,"y":383,"on":false},{"x":353,"y":383,"on":true},{"x":340,"y":383,"on":false},{"x":326,"y":375,"on":true},{"x":308,"y":364,"on":false}]], "references": [], - "instructions": [183,58,51,43,35,21,11,3,48,43] + "instructions": "tzozKyMVCwMwKw==" }, "proportional": { "name": "proportional", "advanceWidth": 500, "contours": [[{"x":40,"y":291,"on":false},{"x":40,"y":371,"on":false},{"x":56,"y":399,"on":true},{"x":69,"y":422,"on":false},{"x":91,"y":435,"on":true},{"x":115,"y":449,"on":false},{"x":143,"y":449,"on":true},{"x":173,"y":449,"on":false},{"x":201,"y":433,"on":true},{"x":225,"y":419,"on":false},{"x":258,"y":381,"on":true},{"x":293,"y":415,"on":false},{"x":319,"y":430,"on":true},{"x":369,"y":459,"on":false},{"x":456,"y":459,"on":true},{"x":456,"y":383,"on":true},{"x":381,"y":383,"on":false},{"x":340,"y":359,"on":true},{"x":323,"y":349,"on":false},{"x":304,"y":331,"on":true},{"x":323,"y":313,"on":false},{"x":340,"y":304,"on":true},{"x":382,"y":280,"on":false},{"x":456,"y":280,"on":true},{"x":456,"y":203,"on":true},{"x":369,"y":203,"on":false},{"x":319,"y":232,"on":true},{"x":293,"y":247,"on":false},{"x":258,"y":282,"on":true},{"x":224,"y":244,"on":false},{"x":201,"y":230,"on":true},{"x":173,"y":214,"on":false},{"x":143,"y":214,"on":true},{"x":114,"y":214,"on":false},{"x":91,"y":227,"on":true},{"x":69,"y":240,"on":false},{"x":56,"y":263,"on":true}],[{"x":108,"y":331,"on":true},{"x":108,"y":304,"on":false},{"x":126,"y":294,"on":true},{"x":134,"y":290,"on":false},{"x":143,"y":290,"on":true},{"x":157,"y":290,"on":false},{"x":173,"y":299,"on":true},{"x":187,"y":307,"on":false},{"x":211,"y":331,"on":true},{"x":187,"y":355,"on":false},{"x":173,"y":364,"on":true},{"x":158,"y":373,"on":false},{"x":143,"y":373,"on":true},{"x":123,"y":373,"on":false},{"x":114,"y":356,"on":true},{"x":108,"y":346,"on":false}]], "references": [], - "instructions": [181,48,40,24,13,2,48,43] + "instructions": "tTAoGA0CMCs=" }, "partialdiff": { "name": "partialdiff", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":258,"on":true},{"x":52,"y":339,"on":false},{"x":84,"y":394,"on":true},{"x":109,"y":438,"on":false},{"x":151,"y":461,"on":true},{"x":193,"y":485,"on":false},{"x":307,"y":486,"on":false},{"x":349,"y":461,"on":true},{"x":359,"y":455,"on":false},{"x":368,"y":449,"on":true},{"x":368,"y":515,"on":true},{"x":368,"y":575,"on":false},{"x":345,"y":615,"on":true},{"x":329,"y":643,"on":false},{"x":304,"y":657,"on":true},{"x":280,"y":671,"on":false},{"x":249,"y":671,"on":true},{"x":217,"y":671,"on":false},{"x":193,"y":657,"on":true},{"x":167,"y":642,"on":false},{"x":151,"y":614,"on":true},{"x":137,"y":589,"on":false},{"x":131,"y":558,"on":true},{"x":55,"y":580,"on":true},{"x":62,"y":618,"on":false},{"x":81,"y":651,"on":true},{"x":106,"y":695,"on":false},{"x":148,"y":718,"on":true},{"x":191,"y":743,"on":false},{"x":307,"y":743,"on":false},{"x":349,"y":718,"on":true},{"x":391,"y":694,"on":false},{"x":416,"y":651,"on":true},{"x":448,"y":595,"on":false},{"x":448,"y":515,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":139,"on":false},{"x":416,"y":84,"on":true},{"x":391,"y":40,"on":false},{"x":307,"y":-8,"on":false},{"x":193,"y":-8,"on":false},{"x":151,"y":16,"on":true},{"x":110,"y":40,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":139,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":281,"y":64,"on":false},{"x":304,"y":77,"on":true},{"x":329,"y":91,"on":false},{"x":345,"y":120,"on":true},{"x":368,"y":160,"on":false},{"x":368,"y":220,"on":true},{"x":368,"y":258,"on":true},{"x":368,"y":319,"on":false},{"x":345,"y":358,"on":true},{"x":329,"y":386,"on":false},{"x":304,"y":400,"on":true},{"x":281,"y":413,"on":false},{"x":219,"y":414,"on":false},{"x":196,"y":400,"on":true},{"x":171,"y":386,"on":false},{"x":155,"y":358,"on":true},{"x":132,"y":318,"on":false},{"x":132,"y":258,"on":true}]], "references": [], - "instructions": [181,64,51,40,29,2,48,43] + "instructions": "tUAzKB0CMCs=" }, "plus": { "name": "plus", "advanceWidth": 500, "contours": [[{"x":60,"y":295,"on":true},{"x":60,"y":367,"on":true},{"x":210,"y":367,"on":true},{"x":210,"y":540,"on":true},{"x":290,"y":540,"on":true},{"x":290,"y":367,"on":true},{"x":440,"y":367,"on":true},{"x":440,"y":295,"on":true},{"x":290,"y":295,"on":true},{"x":290,"y":122,"on":true},{"x":210,"y":122,"on":true},{"x":210,"y":295,"on":true}]], "references": [], - "instructions": [75,176,50,80,88,64,22,2,1,0,6,5,2,3,4,0,3,101,0,4,4,1,93,0,1,1,67,4,76,27,64,27,0,1,0,4,1,85,2,1,0,6,5,2,3,4,0,3,101,0,1,1,4,93,0,4,1,4,77,89,64,14,0,0,0,11,0,11,17,17,17,17,17,7,9,25,43] + "instructions": "S7AyUFhAFgIBAAYFAgMEAANlAAQEAV0AAQFDBEwbQBsAAQAEAVUCAQAGBQIDBAADZQABAQRdAAQBBE1ZQA4AAAALAAsREREREQcJGSs=" }, "minus": { "name": "minus", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,158,176,51,43] + "instructions": "sQABuP6esDMr" }, "plusminus": { "name": "plusminus", "advanceWidth": 500, "contours": [], "references": [{"glyph":"plus","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-649,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,253,119,176,51,43] + "instructions": "sQEBuP13sDMr" }, "uni2213": { "name": "uni2213", "advanceWidth": 500, "contours": [], "references": [{"glyph":"plus","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-58,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,198,176,51,43] + "instructions": "sQEBuP/GsDMr" }, "equal": { "name": "equal", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0305","x":500,"y":-466,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-241,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,46,176,51,43,177,1,1,184,255,15,176,51,43] + "instructions": "sQABuP4usDMrsQEBuP8PsDMr" }, "less": { "name": "less", "advanceWidth": 500, "contours": [[{"x":60,"y":288,"on":true},{"x":60,"y":375,"on":true},{"x":418,"y":617,"on":true},{"x":462,"y":558,"on":true},{"x":125,"y":331,"on":true},{"x":462,"y":105,"on":true},{"x":418,"y":45,"on":true}]], "references": [], - "instructions": [179,6,2,1,48,43] + "instructions": "swYCATAr" }, "greater": { "name": "greater", "advanceWidth": 500, "contours": [[{"x":38,"y":105,"on":true},{"x":375,"y":331,"on":true},{"x":38,"y":558,"on":true},{"x":82,"y":617,"on":true},{"x":440,"y":375,"on":true},{"x":440,"y":288,"on":true},{"x":82,"y":45,"on":true}]], "references": [], - "instructions": [179,6,3,1,48,43] + "instructions": "swYDATAr" }, "multiply": { "name": "multiply", "advanceWidth": 500, "contours": [[{"x":32,"y":167,"on":true},{"x":196,"y":331,"on":true},{"x":32,"y":496,"on":true},{"x":88,"y":547,"on":true},{"x":250,"y":385,"on":true},{"x":412,"y":547,"on":true},{"x":468,"y":496,"on":true},{"x":304,"y":331,"on":true},{"x":468,"y":167,"on":true},{"x":412,"y":116,"on":true},{"x":250,"y":278,"on":true},{"x":88,"y":116,"on":true}]], "references": [], - "instructions": [179,9,3,1,48,43] + "instructions": "swkDATAr" }, "divide": { "name": "divide", "advanceWidth": 500, "contours": [[{"x":60,"y":295,"on":true},{"x":60,"y":367,"on":true},{"x":440,"y":367,"on":true},{"x":440,"y":295,"on":true}],[{"x":179,"y":106,"on":false},{"x":180,"y":177,"on":false},{"x":208,"y":194,"on":true},{"x":225,"y":204,"on":false},{"x":275,"y":204,"on":false},{"x":292,"y":194,"on":true},{"x":321,"y":177,"on":false},{"x":320,"y":105,"on":false},{"x":292,"y":89,"on":true},{"x":275,"y":79,"on":false},{"x":225,"y":79,"on":false},{"x":208,"y":89,"on":true}],[{"x":179,"y":486,"on":false},{"x":180,"y":557,"on":false},{"x":208,"y":574,"on":true},{"x":225,"y":584,"on":false},{"x":275,"y":584,"on":false},{"x":292,"y":574,"on":true},{"x":321,"y":557,"on":false},{"x":320,"y":485,"on":false},{"x":292,"y":469,"on":true},{"x":275,"y":459,"on":false},{"x":225,"y":459,"on":false},{"x":208,"y":469,"on":true}]], "references": [], - "instructions": [64,51,0,4,0,5,0,4,5,103,0,0,6,1,1,2,0,1,101,0,2,3,3,2,87,0,2,2,3,95,0,3,2,3,79,0,0,26,25,20,19,14,13,8,7,0,3,0,3,17,7,9,21,43] + "instructions": "QDMABAAFAAQFZwAABgEBAgABZQACAwMCVwACAgNfAAMCA08AABoZFBMODQgHAAMAAxEHCRUr" }, "logicalnot": { "name": "logicalnot", "advanceWidth": 500, "contours": [[{"x":60,"y":295,"on":true},{"x":60,"y":367,"on":true},{"x":440,"y":367,"on":true},{"x":440,"y":122,"on":true},{"x":360,"y":122,"on":true},{"x":360,"y":295,"on":true}]], "references": [], - "instructions": [64,33,0,1,2,1,132,0,0,2,2,0,85,0,0,0,2,93,3,1,2,0,2,77,0,0,0,5,0,5,17,17,4,9,22,43] + "instructions": "QCEAAQIBhAAAAgIAVQAAAAJdAwECAAJNAAAABQAFEREECRYr" }, "logicalor": { "name": "logicalor", "advanceWidth": 500, "contours": [[{"x":21,"y":733,"on":true},{"x":99,"y":749,"on":true},{"x":250,"y":95,"on":true},{"x":401,"y":749,"on":true},{"x":479,"y":733,"on":true},{"x":290,"y":-79,"on":true},{"x":210,"y":-79,"on":true}]], "references": [], - "instructions": [179,5,1,1,48,43] + "instructions": "swUBATAr" }, "logicaland": { "name": "logicaland", "advanceWidth": 500, "contours": [[{"x":21,"y":-71,"on":true},{"x":210,"y":741,"on":true},{"x":290,"y":741,"on":true},{"x":479,"y":-71,"on":true},{"x":401,"y":-87,"on":true},{"x":250,"y":568,"on":true},{"x":99,"y":-87,"on":true}]], "references": [], - "instructions": [179,4,1,1,48,43] + "instructions": "swQBATAr" }, "union": { "name": "union", "advanceWidth": 500, "contours": [[{"x":60,"y":116,"on":true},{"x":60,"y":741,"on":true},{"x":140,"y":741,"on":true},{"x":140,"y":116,"on":true},{"x":140,"y":69,"on":false},{"x":159,"y":37,"on":true},{"x":173,"y":12,"on":false},{"x":219,"y":-15,"on":false},{"x":281,"y":-15,"on":false},{"x":327,"y":12,"on":false},{"x":341,"y":37,"on":true},{"x":360,"y":69,"on":false},{"x":360,"y":116,"on":true},{"x":360,"y":741,"on":true},{"x":440,"y":741,"on":true},{"x":440,"y":116,"on":true},{"x":440,"y":48,"on":false},{"x":412,"y":0,"on":true},{"x":389,"y":-40,"on":false},{"x":350,"y":-63,"on":true},{"x":308,"y":-87,"on":false},{"x":192,"y":-87,"on":false},{"x":150,"y":-63,"on":true},{"x":111,"y":-40,"on":false},{"x":88,"y":0,"on":true},{"x":60,"y":48,"on":false}]], "references": [], - "instructions": [179,20,1,1,48,43] + "instructions": "sxQBATAr" }, "intersection": { "name": "intersection", "advanceWidth": 500, "contours": [[{"x":60,"y":-79,"on":true},{"x":60,"y":546,"on":true},{"x":60,"y":614,"on":false},{"x":88,"y":662,"on":true},{"x":111,"y":702,"on":false},{"x":150,"y":725,"on":true},{"x":192,"y":749,"on":false},{"x":308,"y":749,"on":false},{"x":350,"y":725,"on":true},{"x":389,"y":702,"on":false},{"x":412,"y":662,"on":true},{"x":440,"y":614,"on":false},{"x":440,"y":546,"on":true},{"x":440,"y":-79,"on":true},{"x":360,"y":-79,"on":true},{"x":360,"y":546,"on":true},{"x":360,"y":593,"on":false},{"x":341,"y":626,"on":true},{"x":327,"y":651,"on":false},{"x":281,"y":677,"on":false},{"x":219,"y":677,"on":false},{"x":173,"y":651,"on":false},{"x":159,"y":626,"on":true},{"x":140,"y":594,"on":false},{"x":140,"y":546,"on":true},{"x":140,"y":-79,"on":true}]], "references": [], - "instructions": [179,6,0,1,48,43] + "instructions": "swYAATAr" }, "lessequal": { "name": "lessequal", "advanceWidth": 500, "contours": [[{"x":60,"y":39,"on":true},{"x":60,"y":111,"on":true},{"x":440,"y":111,"on":true},{"x":440,"y":39,"on":true}],[{"x":60,"y":364,"on":true},{"x":60,"y":436,"on":true},{"x":422,"y":620,"on":true},{"x":458,"y":555,"on":true},{"x":135,"y":400,"on":true},{"x":458,"y":245,"on":true},{"x":422,"y":180,"on":true}]], "references": [], - "instructions": [181,10,6,1,0,2,48,43] + "instructions": "tQoGAQACMCs=" }, "uni2A7D": { "name": "uni2A7D", "advanceWidth": 500, "contours": [[{"x":60,"y":227,"on":true},{"x":60,"y":299,"on":true},{"x":458,"y":107,"on":true},{"x":422,"y":43,"on":true}],[{"x":60,"y":364,"on":true},{"x":60,"y":436,"on":true},{"x":422,"y":620,"on":true},{"x":458,"y":555,"on":true},{"x":135,"y":400,"on":true},{"x":458,"y":245,"on":true},{"x":422,"y":180,"on":true}]], "references": [], - "instructions": [181,10,6,3,1,2,48,43] + "instructions": "tQoGAwECMCs=" }, "greaterequal": { "name": "greaterequal", "advanceWidth": 500, "contours": [[{"x":42,"y":245,"on":true},{"x":365,"y":400,"on":true},{"x":42,"y":555,"on":true},{"x":78,"y":620,"on":true},{"x":440,"y":436,"on":true},{"x":440,"y":364,"on":true},{"x":78,"y":180,"on":true}],[{"x":60,"y":39,"on":true},{"x":60,"y":111,"on":true},{"x":440,"y":111,"on":true},{"x":440,"y":39,"on":true}]], "references": [], - "instructions": [181,8,7,6,3,2,48,43] + "instructions": "tQgHBgMCMCs=" }, "uni2A7E": { "name": "uni2A7E", "advanceWidth": 500, "contours": [[{"x":42,"y":107,"on":true},{"x":440,"y":299,"on":true},{"x":440,"y":227,"on":true},{"x":78,"y":43,"on":true}],[{"x":42,"y":245,"on":true},{"x":365,"y":400,"on":true},{"x":42,"y":555,"on":true},{"x":78,"y":620,"on":true},{"x":440,"y":436,"on":true},{"x":440,"y":364,"on":true},{"x":78,"y":180,"on":true}]], "references": [], - "instructions": [181,10,7,3,1,2,48,43] + "instructions": "tQoHAwECMCs=" }, "propersubset": { "name": "propersubset", "advanceWidth": 500, "contours": [[{"x":60,"y":249,"on":false},{"x":60,"y":413,"on":false},{"x":94,"y":472,"on":true},{"x":124,"y":524,"on":false},{"x":175,"y":553,"on":true},{"x":234,"y":588,"on":false},{"x":316,"y":588,"on":true},{"x":440,"y":588,"on":true},{"x":440,"y":516,"on":true},{"x":316,"y":516,"on":true},{"x":261,"y":516,"on":false},{"x":222,"y":493,"on":true},{"x":186,"y":472,"on":false},{"x":165,"y":435,"on":true},{"x":140,"y":392,"on":false},{"x":140,"y":270,"on":false},{"x":165,"y":227,"on":true},{"x":186,"y":190,"on":false},{"x":222,"y":170,"on":true},{"x":262,"y":147,"on":false},{"x":316,"y":147,"on":true},{"x":440,"y":147,"on":true},{"x":440,"y":75,"on":true},{"x":316,"y":75,"on":true},{"x":234,"y":75,"on":false},{"x":175,"y":109,"on":true},{"x":124,"y":139,"on":false},{"x":94,"y":191,"on":true}]], "references": [], - "instructions": [179,22,5,1,48,43] + "instructions": "sxYFATAr" }, "element": { "name": "element", "advanceWidth": 500, "contours": [[{"x":60,"y":249,"on":false},{"x":60,"y":413,"on":false},{"x":94,"y":472,"on":true},{"x":124,"y":524,"on":false},{"x":175,"y":553,"on":true},{"x":234,"y":588,"on":false},{"x":316,"y":588,"on":true},{"x":440,"y":588,"on":true},{"x":440,"y":516,"on":true},{"x":316,"y":516,"on":true},{"x":261,"y":516,"on":false},{"x":222,"y":493,"on":true},{"x":186,"y":472,"on":false},{"x":165,"y":435,"on":true},{"x":148,"y":405,"on":false},{"x":142,"y":367,"on":true},{"x":440,"y":367,"on":true},{"x":440,"y":295,"on":true},{"x":142,"y":295,"on":true},{"x":147,"y":257,"on":false},{"x":165,"y":227,"on":true},{"x":186,"y":190,"on":false},{"x":222,"y":170,"on":true},{"x":262,"y":147,"on":false},{"x":316,"y":147,"on":true},{"x":440,"y":147,"on":true},{"x":440,"y":75,"on":true},{"x":316,"y":75,"on":true},{"x":234,"y":75,"on":false},{"x":175,"y":109,"on":true},{"x":124,"y":139,"on":false},{"x":94,"y":191,"on":true}]], "references": [], - "instructions": [179,26,5,1,48,43] + "instructions": "sxoFATAr" }, "propersuperset": { "name": "propersuperset", "advanceWidth": 500, "contours": [[{"x":60,"y":75,"on":true},{"x":60,"y":147,"on":true},{"x":184,"y":147,"on":true},{"x":239,"y":147,"on":false},{"x":278,"y":170,"on":true},{"x":314,"y":191,"on":false},{"x":335,"y":227,"on":true},{"x":360,"y":270,"on":false},{"x":360,"y":392,"on":false},{"x":335,"y":435,"on":true},{"x":314,"y":472,"on":false},{"x":278,"y":493,"on":true},{"x":238,"y":516,"on":false},{"x":184,"y":516,"on":true},{"x":60,"y":516,"on":true},{"x":60,"y":588,"on":true},{"x":184,"y":588,"on":true},{"x":266,"y":588,"on":false},{"x":325,"y":553,"on":true},{"x":376,"y":523,"on":false},{"x":406,"y":472,"on":true},{"x":440,"y":414,"on":false},{"x":440,"y":249,"on":false},{"x":406,"y":191,"on":true},{"x":376,"y":139,"on":false},{"x":325,"y":109,"on":true},{"x":266,"y":75,"on":false},{"x":184,"y":75,"on":true}]], "references": [], - "instructions": [179,15,0,1,48,43] + "instructions": "sw8AATAr" }, "suchthat": { "name": "suchthat", "advanceWidth": 500, "contours": [[{"x":60,"y":75,"on":true},{"x":60,"y":147,"on":true},{"x":184,"y":147,"on":true},{"x":239,"y":147,"on":false},{"x":278,"y":170,"on":true},{"x":314,"y":191,"on":false},{"x":335,"y":227,"on":true},{"x":352,"y":257,"on":false},{"x":358,"y":295,"on":true},{"x":60,"y":295,"on":true},{"x":60,"y":367,"on":true},{"x":358,"y":367,"on":true},{"x":353,"y":405,"on":false},{"x":335,"y":435,"on":true},{"x":314,"y":472,"on":false},{"x":278,"y":493,"on":true},{"x":238,"y":516,"on":false},{"x":184,"y":516,"on":true},{"x":60,"y":516,"on":true},{"x":60,"y":588,"on":true},{"x":184,"y":588,"on":true},{"x":266,"y":588,"on":false},{"x":325,"y":553,"on":true},{"x":376,"y":523,"on":false},{"x":406,"y":472,"on":true},{"x":440,"y":414,"on":false},{"x":440,"y":249,"on":false},{"x":406,"y":191,"on":true},{"x":376,"y":139,"on":false},{"x":325,"y":109,"on":true},{"x":266,"y":75,"on":false},{"x":184,"y":75,"on":true}]], "references": [], - "instructions": [179,19,0,1,48,43] + "instructions": "sxMAATAr" }, "similar": { "name": "similar", "advanceWidth": 500, "contours": [[{"x":23,"y":277,"on":true},{"x":32,"y":299,"on":false},{"x":43,"y":319,"on":true},{"x":74,"y":373,"on":false},{"x":115,"y":396,"on":true},{"x":145,"y":413,"on":false},{"x":177,"y":413,"on":true},{"x":208,"y":413,"on":false},{"x":235,"y":397,"on":true},{"x":261,"y":382,"on":false},{"x":283,"y":351,"on":true},{"x":291,"y":339,"on":false},{"x":296,"y":335,"on":true},{"x":309,"y":322,"on":false},{"x":323,"y":321,"on":true},{"x":332,"y":321,"on":false},{"x":342,"y":327,"on":true},{"x":365,"y":340,"on":false},{"x":385,"y":376,"on":true},{"x":395,"y":393,"on":false},{"x":403,"y":412,"on":true},{"x":477,"y":385,"on":true},{"x":468,"y":363,"on":false},{"x":457,"y":344,"on":true},{"x":426,"y":290,"on":false},{"x":385,"y":266,"on":true},{"x":355,"y":249,"on":false},{"x":323,"y":249,"on":true},{"x":292,"y":249,"on":false},{"x":265,"y":265,"on":true},{"x":239,"y":280,"on":false},{"x":217,"y":311,"on":true},{"x":209,"y":323,"on":false},{"x":204,"y":328,"on":true},{"x":191,"y":341,"on":false},{"x":177,"y":341,"on":true},{"x":168,"y":341,"on":false},{"x":158,"y":336,"on":true},{"x":135,"y":323,"on":false},{"x":115,"y":287,"on":true},{"x":105,"y":270,"on":false},{"x":97,"y":250,"on":true}]], "references": [], - "instructions": [179,26,5,1,48,43] + "instructions": "sxoFATAr" }, "equivalence": { "name": "equivalence", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0305","x":500,"y":-523,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-185,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,253,245,176,51,43,177,1,1,184,254,158,176,51,43,177,2,1,184,255,71,176,51,43] + "instructions": "sQABuP31sDMrsQEBuP6esDMrsQIBuP9HsDMr" }, "approxequal": { "name": "approxequal", "advanceWidth": 500, "contours": [], "references": [{"glyph":"similar","x":0,"y":99,"a":1,"b":0,"c":0,"d":1},{"glyph":"similar","x":0,"y":-99,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,99,176,51,43,177,1,1,184,255,157,176,51,43] + "instructions": "sQABsGOwMyuxAQG4/52wMys=" }, "notequal": { "name": "notequal", "advanceWidth": 500, "contours": [[{"x":60,"y":182,"on":true},{"x":60,"y":254,"on":true},{"x":191,"y":254,"on":true},{"x":227,"y":408,"on":true},{"x":60,"y":408,"on":true},{"x":60,"y":480,"on":true},{"x":244,"y":480,"on":true},{"x":306,"y":749,"on":true},{"x":384,"y":733,"on":true},{"x":325,"y":480,"on":true},{"x":440,"y":480,"on":true},{"x":440,"y":408,"on":true},{"x":309,"y":408,"on":true},{"x":273,"y":254,"on":true},{"x":440,"y":254,"on":true},{"x":440,"y":182,"on":true},{"x":256,"y":182,"on":true},{"x":194,"y":-87,"on":true},{"x":116,"y":-71,"on":true},{"x":175,"y":182,"on":true}]], "references": [], - "instructions": [179,17,7,1,48,43] + "instructions": "sxEHATAr" }, "uni2262": { "name": "uni2262", "advanceWidth": 500, "contours": [[{"x":60,"y":126,"on":true},{"x":60,"y":198,"on":true},{"x":178,"y":198,"on":true},{"x":201,"y":295,"on":true},{"x":60,"y":295,"on":true},{"x":60,"y":367,"on":true},{"x":217,"y":367,"on":true},{"x":240,"y":464,"on":true},{"x":60,"y":464,"on":true},{"x":60,"y":536,"on":true},{"x":257,"y":536,"on":true},{"x":306,"y":749,"on":true},{"x":384,"y":733,"on":true},{"x":338,"y":536,"on":true},{"x":440,"y":536,"on":true},{"x":440,"y":464,"on":true},{"x":322,"y":464,"on":true},{"x":299,"y":367,"on":true},{"x":440,"y":367,"on":true},{"x":440,"y":295,"on":true},{"x":283,"y":295,"on":true},{"x":260,"y":198,"on":true},{"x":440,"y":198,"on":true},{"x":440,"y":126,"on":true},{"x":243,"y":126,"on":true},{"x":194,"y":-87,"on":true},{"x":116,"y":-71,"on":true},{"x":162,"y":126,"on":true}]], "references": [], - "instructions": [179,25,11,1,48,43] + "instructions": "sxkLATAr" }, "uni226E": { "name": "uni226E", "advanceWidth": 500, "contours": [[{"x":60,"y":288,"on":true},{"x":60,"y":375,"on":true},{"x":292,"y":532,"on":true},{"x":342,"y":749,"on":true},{"x":420,"y":733,"on":true},{"x":389,"y":598,"on":true},{"x":418,"y":617,"on":true},{"x":462,"y":558,"on":true},{"x":364,"y":492,"on":true},{"x":300,"y":214,"on":true},{"x":462,"y":105,"on":true},{"x":418,"y":45,"on":true},{"x":282,"y":137,"on":true},{"x":230,"y":-87,"on":true},{"x":152,"y":-71,"on":true},{"x":211,"y":185,"on":true}],[{"x":125,"y":331,"on":true},{"x":229,"y":261,"on":true},{"x":267,"y":427,"on":true}]], "references": [], - "instructions": [181,18,17,13,3,2,48,43] + "instructions": "tRIRDQMCMCs=" }, "uni226F": { "name": "uni226F", "advanceWidth": 500, "contours": [[{"x":38,"y":105,"on":true},{"x":136,"y":171,"on":true},{"x":200,"y":449,"on":true},{"x":38,"y":558,"on":true},{"x":82,"y":617,"on":true},{"x":218,"y":525,"on":true},{"x":270,"y":749,"on":true},{"x":348,"y":733,"on":true},{"x":289,"y":477,"on":true},{"x":440,"y":375,"on":true},{"x":440,"y":288,"on":true},{"x":208,"y":131,"on":true},{"x":158,"y":-87,"on":true},{"x":80,"y":-71,"on":true},{"x":111,"y":65,"on":true},{"x":82,"y":45,"on":true}],[{"x":233,"y":236,"on":true},{"x":375,"y":331,"on":true},{"x":271,"y":401,"on":true}]], "references": [], - "instructions": [181,18,16,12,6,2,48,43] + "instructions": "tRIQDAYCMCs=" }, "uni2249": { "name": "uni2249", "advanceWidth": 500, "contours": [[{"x":23,"y":178,"on":true},{"x":32,"y":200,"on":false},{"x":43,"y":220,"on":true},{"x":74,"y":274,"on":false},{"x":115,"y":297,"on":true},{"x":145,"y":314,"on":false},{"x":177,"y":315,"on":true},{"x":190,"y":315,"on":false},{"x":202,"y":312,"on":true},{"x":228,"y":395,"on":true},{"x":222,"y":402,"on":false},{"x":217,"y":410,"on":true},{"x":209,"y":422,"on":false},{"x":204,"y":426,"on":true},{"x":191,"y":439,"on":false},{"x":177,"y":440,"on":true},{"x":168,"y":440,"on":false},{"x":158,"y":434,"on":true},{"x":135,"y":421,"on":false},{"x":115,"y":385,"on":true},{"x":105,"y":368,"on":false},{"x":97,"y":349,"on":true},{"x":23,"y":376,"on":true},{"x":32,"y":398,"on":false},{"x":43,"y":417,"on":true},{"x":74,"y":471,"on":false},{"x":115,"y":495,"on":true},{"x":145,"y":512,"on":false},{"x":177,"y":512,"on":true},{"x":208,"y":512,"on":false},{"x":235,"y":496,"on":true},{"x":245,"y":490,"on":false},{"x":255,"y":482,"on":true},{"x":307,"y":649,"on":true},{"x":383,"y":628,"on":true},{"x":319,"y":420,"on":true},{"x":321,"y":420,"on":false},{"x":323,"y":420,"on":true},{"x":332,"y":420,"on":false},{"x":342,"y":426,"on":true},{"x":365,"y":439,"on":false},{"x":385,"y":475,"on":true},{"x":395,"y":492,"on":false},{"x":403,"y":511,"on":true},{"x":477,"y":484,"on":true},{"x":468,"y":462,"on":false},{"x":457,"y":442,"on":true},{"x":426,"y":388,"on":false},{"x":385,"y":365,"on":true},{"x":355,"y":348,"on":false},{"x":323,"y":348,"on":true},{"x":310,"y":348,"on":false},{"x":298,"y":351,"on":true},{"x":272,"y":267,"on":true},{"x":278,"y":260,"on":false},{"x":283,"y":253,"on":true},{"x":291,"y":241,"on":false},{"x":296,"y":236,"on":true},{"x":309,"y":223,"on":false},{"x":323,"y":223,"on":true},{"x":332,"y":223,"on":false},{"x":342,"y":228,"on":true},{"x":365,"y":241,"on":false},{"x":385,"y":277,"on":true},{"x":395,"y":294,"on":false},{"x":403,"y":314,"on":true},{"x":477,"y":287,"on":true},{"x":468,"y":265,"on":false},{"x":457,"y":245,"on":true},{"x":426,"y":191,"on":false},{"x":385,"y":168,"on":true},{"x":355,"y":151,"on":false},{"x":323,"y":151,"on":true},{"x":292,"y":151,"on":false},{"x":265,"y":167,"on":true},{"x":255,"y":173,"on":false},{"x":245,"y":181,"on":true},{"x":193,"y":13,"on":true},{"x":117,"y":34,"on":true},{"x":181,"y":242,"on":true},{"x":179,"y":242,"on":false},{"x":177,"y":243,"on":true},{"x":168,"y":243,"on":false},{"x":158,"y":237,"on":true},{"x":135,"y":224,"on":false},{"x":115,"y":188,"on":true},{"x":105,"y":171,"on":false},{"x":97,"y":151,"on":true}]], "references": [], - "instructions": [179,77,33,1,48,43] + "instructions": "s00hATAr" }, "uni2241": { "name": "uni2241", "advanceWidth": 500, "contours": [[{"x":23,"y":277,"on":true},{"x":32,"y":299,"on":false},{"x":43,"y":319,"on":true},{"x":74,"y":373,"on":false},{"x":115,"y":396,"on":true},{"x":145,"y":413,"on":false},{"x":177,"y":413,"on":true},{"x":205,"y":413,"on":false},{"x":230,"y":400,"on":true},{"x":307,"y":649,"on":true},{"x":383,"y":628,"on":true},{"x":294,"y":338,"on":true},{"x":295,"y":336,"on":false},{"x":296,"y":335,"on":true},{"x":309,"y":322,"on":false},{"x":323,"y":321,"on":true},{"x":332,"y":321,"on":false},{"x":342,"y":327,"on":true},{"x":365,"y":340,"on":false},{"x":385,"y":376,"on":true},{"x":395,"y":393,"on":false},{"x":403,"y":412,"on":true},{"x":477,"y":385,"on":true},{"x":468,"y":363,"on":false},{"x":457,"y":344,"on":true},{"x":426,"y":290,"on":false},{"x":385,"y":266,"on":true},{"x":355,"y":249,"on":false},{"x":323,"y":249,"on":true},{"x":295,"y":249,"on":false},{"x":270,"y":262,"on":true},{"x":193,"y":13,"on":true},{"x":117,"y":34,"on":true},{"x":206,"y":325,"on":true},{"x":205,"y":327,"on":false},{"x":204,"y":328,"on":true},{"x":191,"y":341,"on":false},{"x":177,"y":341,"on":true},{"x":168,"y":341,"on":false},{"x":158,"y":336,"on":true},{"x":135,"y":323,"on":false},{"x":115,"y":287,"on":true},{"x":105,"y":270,"on":false},{"x":97,"y":250,"on":true}]], "references": [], - "instructions": [179,31,9,1,48,43] + "instructions": "sx8JATAr" }, "notsubset": { "name": "notsubset", "advanceWidth": 500, "contours": [[{"x":60,"y":249,"on":false},{"x":60,"y":413,"on":false},{"x":94,"y":472,"on":true},{"x":124,"y":524,"on":false},{"x":175,"y":553,"on":true},{"x":230,"y":585,"on":false},{"x":304,"y":587,"on":true},{"x":342,"y":749,"on":true},{"x":420,"y":733,"on":true},{"x":386,"y":588,"on":true},{"x":440,"y":588,"on":true},{"x":440,"y":516,"on":true},{"x":370,"y":516,"on":true},{"x":285,"y":149,"on":true},{"x":300,"y":147,"on":false},{"x":316,"y":147,"on":true},{"x":440,"y":147,"on":true},{"x":440,"y":75,"on":true},{"x":316,"y":75,"on":true},{"x":291,"y":75,"on":false},{"x":268,"y":78,"on":true},{"x":230,"y":-87,"on":true},{"x":152,"y":-71,"on":true},{"x":192,"y":100,"on":true},{"x":184,"y":104,"on":false},{"x":175,"y":109,"on":true},{"x":124,"y":139,"on":false},{"x":94,"y":191,"on":true}],[{"x":140,"y":392,"on":false},{"x":140,"y":270,"on":false},{"x":165,"y":227,"on":true},{"x":183,"y":197,"on":false},{"x":210,"y":178,"on":true},{"x":287,"y":514,"on":true},{"x":250,"y":509,"on":false},{"x":222,"y":493,"on":true},{"x":186,"y":472,"on":false},{"x":165,"y":435,"on":true}]], "references": [], - "instructions": [181,33,32,21,7,2,48,43] + "instructions": "tSEgFQcCMCs=" }, "uni2285": { "name": "uni2285", "advanceWidth": 500, "contours": [[{"x":60,"y":75,"on":true},{"x":60,"y":147,"on":true},{"x":130,"y":147,"on":true},{"x":215,"y":513,"on":true},{"x":200,"y":516,"on":false},{"x":184,"y":516,"on":true},{"x":60,"y":516,"on":true},{"x":60,"y":588,"on":true},{"x":184,"y":588,"on":true},{"x":209,"y":588,"on":false},{"x":232,"y":584,"on":true},{"x":270,"y":749,"on":true},{"x":348,"y":733,"on":true},{"x":308,"y":562,"on":true},{"x":316,"y":558,"on":false},{"x":325,"y":553,"on":true},{"x":376,"y":523,"on":false},{"x":406,"y":472,"on":true},{"x":440,"y":414,"on":false},{"x":440,"y":249,"on":false},{"x":406,"y":191,"on":true},{"x":376,"y":139,"on":false},{"x":325,"y":109,"on":true},{"x":270,"y":77,"on":false},{"x":196,"y":75,"on":true},{"x":158,"y":-87,"on":true},{"x":80,"y":-71,"on":true},{"x":114,"y":75,"on":true}],[{"x":213,"y":149,"on":true},{"x":250,"y":154,"on":false},{"x":278,"y":170,"on":true},{"x":314,"y":191,"on":false},{"x":335,"y":227,"on":true},{"x":360,"y":270,"on":false},{"x":360,"y":392,"on":false},{"x":335,"y":435,"on":true},{"x":317,"y":466,"on":false},{"x":290,"y":485,"on":true}]], "references": [], - "instructions": [181,37,28,25,11,2,48,43] + "instructions": "tSUcGQsCMCs=" }, "notelement": { "name": "notelement", "advanceWidth": 500, "contours": [[{"x":60,"y":249,"on":false},{"x":60,"y":413,"on":false},{"x":94,"y":472,"on":true},{"x":124,"y":524,"on":false},{"x":175,"y":553,"on":true},{"x":230,"y":585,"on":false},{"x":304,"y":587,"on":true},{"x":342,"y":749,"on":true},{"x":420,"y":733,"on":true},{"x":386,"y":588,"on":true},{"x":440,"y":588,"on":true},{"x":440,"y":516,"on":true},{"x":370,"y":516,"on":true},{"x":335,"y":367,"on":true},{"x":440,"y":367,"on":true},{"x":440,"y":295,"on":true},{"x":319,"y":295,"on":true},{"x":285,"y":149,"on":true},{"x":300,"y":147,"on":false},{"x":316,"y":147,"on":true},{"x":440,"y":147,"on":true},{"x":440,"y":75,"on":true},{"x":316,"y":75,"on":true},{"x":291,"y":75,"on":false},{"x":268,"y":78,"on":true},{"x":230,"y":-87,"on":true},{"x":152,"y":-71,"on":true},{"x":192,"y":100,"on":true},{"x":184,"y":104,"on":false},{"x":175,"y":109,"on":true},{"x":124,"y":139,"on":false},{"x":94,"y":191,"on":true}],[{"x":142,"y":295,"on":true},{"x":147,"y":257,"on":false},{"x":183,"y":197,"on":false},{"x":210,"y":178,"on":true},{"x":237,"y":295,"on":true}],[{"x":142,"y":367,"on":true},{"x":253,"y":367,"on":true},{"x":287,"y":514,"on":true},{"x":250,"y":509,"on":false},{"x":222,"y":493,"on":true},{"x":186,"y":472,"on":false},{"x":165,"y":435,"on":true},{"x":148,"y":405,"on":false}]], "references": [], - "instructions": [183,39,37,35,32,25,7,3,48,43] + "instructions": "tyclIyAZBwMwKw==" }, "uni220C": { "name": "uni220C", "advanceWidth": 500, "contours": [[{"x":60,"y":75,"on":true},{"x":60,"y":147,"on":true},{"x":130,"y":147,"on":true},{"x":165,"y":295,"on":true},{"x":60,"y":295,"on":true},{"x":60,"y":367,"on":true},{"x":181,"y":367,"on":true},{"x":215,"y":513,"on":true},{"x":200,"y":516,"on":false},{"x":184,"y":516,"on":true},{"x":60,"y":516,"on":true},{"x":60,"y":588,"on":true},{"x":184,"y":588,"on":true},{"x":209,"y":588,"on":false},{"x":232,"y":584,"on":true},{"x":270,"y":749,"on":true},{"x":348,"y":733,"on":true},{"x":308,"y":562,"on":true},{"x":316,"y":558,"on":false},{"x":325,"y":553,"on":true},{"x":376,"y":523,"on":false},{"x":406,"y":472,"on":true},{"x":440,"y":414,"on":false},{"x":440,"y":249,"on":false},{"x":406,"y":191,"on":true},{"x":376,"y":139,"on":false},{"x":325,"y":109,"on":true},{"x":270,"y":77,"on":false},{"x":196,"y":75,"on":true},{"x":158,"y":-87,"on":true},{"x":80,"y":-71,"on":true},{"x":114,"y":75,"on":true}],[{"x":213,"y":149,"on":true},{"x":250,"y":154,"on":false},{"x":278,"y":170,"on":true},{"x":314,"y":191,"on":false},{"x":335,"y":227,"on":true},{"x":352,"y":257,"on":false},{"x":358,"y":295,"on":true},{"x":247,"y":295,"on":true}],[{"x":263,"y":367,"on":true},{"x":358,"y":367,"on":true},{"x":353,"y":405,"on":false},{"x":335,"y":435,"on":true},{"x":317,"y":466,"on":false},{"x":290,"y":485,"on":true}]], "references": [], - "instructions": [183,45,40,38,32,29,15,3,48,43] + "instructions": "ty0oJiAdDwMwKw==" }, "uni2270": { "name": "uni2270", "advanceWidth": 500, "contours": [[{"x":60,"y":39,"on":true},{"x":60,"y":111,"on":true},{"x":194,"y":111,"on":true},{"x":232,"y":276,"on":true},{"x":60,"y":364,"on":true},{"x":60,"y":436,"on":true},{"x":297,"y":556,"on":true},{"x":342,"y":749,"on":true},{"x":420,"y":733,"on":true},{"x":390,"y":603,"on":true},{"x":422,"y":620,"on":true},{"x":458,"y":555,"on":true},{"x":369,"y":512,"on":true},{"x":322,"y":310,"on":true},{"x":458,"y":245,"on":true},{"x":422,"y":180,"on":true},{"x":306,"y":239,"on":true},{"x":276,"y":111,"on":true},{"x":440,"y":111,"on":true},{"x":440,"y":39,"on":true},{"x":259,"y":39,"on":true},{"x":230,"y":-87,"on":true},{"x":152,"y":-71,"on":true},{"x":177,"y":39,"on":true}],[{"x":135,"y":400,"on":true},{"x":248,"y":345,"on":true},{"x":277,"y":468,"on":true}]], "references": [], - "instructions": [181,26,25,21,7,2,48,43] + "instructions": "tRoZFQcCMCs=" }, "uni2271": { "name": "uni2271", "advanceWidth": 500, "contours": [[{"x":42,"y":245,"on":true},{"x":167,"y":304,"on":true},{"x":207,"y":476,"on":true},{"x":42,"y":555,"on":true},{"x":78,"y":620,"on":true},{"x":223,"y":546,"on":true},{"x":270,"y":749,"on":true},{"x":348,"y":733,"on":true},{"x":296,"y":509,"on":true},{"x":440,"y":436,"on":true},{"x":440,"y":364,"on":true},{"x":239,"y":262,"on":true},{"x":204,"y":111,"on":true},{"x":440,"y":111,"on":true},{"x":440,"y":39,"on":true},{"x":187,"y":39,"on":true},{"x":158,"y":-87,"on":true},{"x":80,"y":-71,"on":true},{"x":105,"y":39,"on":true},{"x":60,"y":39,"on":true},{"x":60,"y":111,"on":true},{"x":122,"y":111,"on":true},{"x":146,"y":215,"on":true},{"x":78,"y":180,"on":true}],[{"x":259,"y":349,"on":true},{"x":365,"y":400,"on":true},{"x":280,"y":441,"on":true}]], "references": [], - "instructions": [181,26,24,16,6,2,48,43] + "instructions": "tRoYEAYCMCs=" }, "uni2204": { "name": "uni2204", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":150,"y":72,"on":true},{"x":171,"y":332,"on":true},{"x":96,"y":332,"on":true},{"x":96,"y":404,"on":true},{"x":177,"y":404,"on":true},{"x":198,"y":663,"on":true},{"x":60,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":204,"y":735,"on":true},{"x":212,"y":840,"on":true},{"x":292,"y":835,"on":true},{"x":284,"y":735,"on":true},{"x":410,"y":735,"on":true},{"x":410,"y":0,"on":true},{"x":224,"y":0,"on":true},{"x":216,"y":-105,"on":true},{"x":136,"y":-100,"on":true},{"x":144,"y":0,"on":true}],[{"x":230,"y":72,"on":true},{"x":330,"y":72,"on":true},{"x":330,"y":332,"on":true},{"x":251,"y":332,"on":true}],[{"x":257,"y":404,"on":true},{"x":330,"y":404,"on":true},{"x":330,"y":663,"on":true},{"x":278,"y":663,"on":true}]], "references": [], - "instructions": [183,26,24,22,20,17,11,3,48,43] + "instructions": "txoYFhQRCwMwKw==" }, "summation": { "name": "summation", "advanceWidth": 500, "contours": [[{"x":60,"y":-109,"on":true},{"x":212,"y":331,"on":true},{"x":60,"y":772,"on":true},{"x":60,"y":844,"on":true},{"x":440,"y":844,"on":true},{"x":440,"y":772,"on":true},{"x":143,"y":772,"on":true},{"x":295,"y":331,"on":true},{"x":143,"y":-109,"on":true},{"x":440,"y":-109,"on":true},{"x":440,"y":-181,"on":true},{"x":60,"y":-181,"on":true}]], "references": [], - "instructions": [179,10,3,1,48,43] + "instructions": "swoDATAr" }, "product": { "name": "product", "advanceWidth": 500, "contours": [[{"x":60,"y":-181,"on":true},{"x":60,"y":844,"on":true},{"x":440,"y":844,"on":true},{"x":440,"y":-181,"on":true},{"x":360,"y":-181,"on":true},{"x":360,"y":772,"on":true},{"x":140,"y":772,"on":true},{"x":140,"y":-181,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni2210": { "name": "uni2210", "advanceWidth": 500, "contours": [[{"x":60,"y":-181,"on":true},{"x":60,"y":844,"on":true},{"x":140,"y":844,"on":true},{"x":140,"y":-109,"on":true},{"x":360,"y":-109,"on":true},{"x":360,"y":844,"on":true},{"x":440,"y":844,"on":true},{"x":440,"y":-181,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "integral": { "name": "integral", "advanceWidth": 500, "contours": [[{"x":95,"y":-149,"on":true},{"x":100,"y":-149,"on":false},{"x":105,"y":-149,"on":true},{"x":155,"y":-149,"on":false},{"x":177,"y":-137,"on":true},{"x":192,"y":-128,"on":false},{"x":201,"y":-113,"on":true},{"x":210,"y":-97,"on":false},{"x":210,"y":-65,"on":true},{"x":210,"y":728,"on":true},{"x":210,"y":787,"on":false},{"x":228,"y":818,"on":true},{"x":244,"y":845,"on":false},{"x":271,"y":861,"on":true},{"x":311,"y":884,"on":false},{"x":399,"y":884,"on":true},{"x":402,"y":884,"on":false},{"x":405,"y":884,"on":true},{"x":405,"y":812,"on":true},{"x":400,"y":812,"on":false},{"x":395,"y":812,"on":true},{"x":345,"y":812,"on":false},{"x":323,"y":799,"on":true},{"x":308,"y":790,"on":false},{"x":299,"y":776,"on":true},{"x":290,"y":760,"on":false},{"x":290,"y":728,"on":true},{"x":290,"y":-65,"on":true},{"x":290,"y":-124,"on":false},{"x":272,"y":-155,"on":true},{"x":256,"y":-182,"on":false},{"x":229,"y":-198,"on":true},{"x":189,"y":-221,"on":false},{"x":101,"y":-221,"on":true},{"x":98,"y":-221,"on":false},{"x":95,"y":-221,"on":true}]], "references": [], - "instructions": [179,32,14,1,48,43] + "instructions": "syAOATAr" }, "uni222C": { "name": "uni222C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"integral","x":125,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"integral","x":-125,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni222E": { "name": "uni222E", "advanceWidth": 500, "contours": [[{"x":52,"y":268,"on":false},{"x":52,"y":395,"on":false},{"x":78,"y":440,"on":true},{"x":101,"y":480,"on":false},{"x":141,"y":503,"on":true},{"x":171,"y":520,"on":false},{"x":210,"y":526,"on":true},{"x":210,"y":728,"on":true},{"x":210,"y":787,"on":false},{"x":228,"y":818,"on":true},{"x":244,"y":845,"on":false},{"x":271,"y":861,"on":true},{"x":311,"y":884,"on":false},{"x":399,"y":884,"on":true},{"x":402,"y":884,"on":false},{"x":405,"y":884,"on":true},{"x":405,"y":812,"on":true},{"x":400,"y":812,"on":false},{"x":395,"y":812,"on":true},{"x":345,"y":812,"on":false},{"x":323,"y":799,"on":true},{"x":308,"y":790,"on":false},{"x":299,"y":776,"on":true},{"x":290,"y":760,"on":false},{"x":290,"y":728,"on":true},{"x":290,"y":526,"on":true},{"x":328,"y":520,"on":false},{"x":359,"y":503,"on":true},{"x":399,"y":480,"on":false},{"x":422,"y":440,"on":true},{"x":448,"y":395,"on":false},{"x":448,"y":268,"on":false},{"x":422,"y":223,"on":true},{"x":399,"y":183,"on":false},{"x":359,"y":159,"on":true},{"x":329,"y":142,"on":false},{"x":290,"y":136,"on":true},{"x":290,"y":-65,"on":true},{"x":290,"y":-124,"on":false},{"x":272,"y":-155,"on":true},{"x":256,"y":-182,"on":false},{"x":229,"y":-198,"on":true},{"x":189,"y":-221,"on":false},{"x":101,"y":-221,"on":true},{"x":98,"y":-221,"on":false},{"x":95,"y":-221,"on":true},{"x":95,"y":-149,"on":true},{"x":100,"y":-149,"on":false},{"x":105,"y":-149,"on":true},{"x":155,"y":-149,"on":false},{"x":177,"y":-137,"on":true},{"x":192,"y":-128,"on":false},{"x":201,"y":-113,"on":true},{"x":210,"y":-97,"on":false},{"x":210,"y":-65,"on":true},{"x":210,"y":136,"on":true},{"x":172,"y":142,"on":false},{"x":141,"y":159,"on":true},{"x":101,"y":182,"on":false},{"x":78,"y":223,"on":true}],[{"x":132,"y":373,"on":false},{"x":132,"y":289,"on":false},{"x":149,"y":259,"on":true},{"x":163,"y":234,"on":false},{"x":188,"y":220,"on":true},{"x":198,"y":214,"on":false},{"x":210,"y":211,"on":true},{"x":210,"y":452,"on":true},{"x":198,"y":448,"on":false},{"x":188,"y":442,"on":true},{"x":164,"y":428,"on":false},{"x":149,"y":403,"on":true}],[{"x":290,"y":211,"on":true},{"x":302,"y":215,"on":false},{"x":312,"y":220,"on":true},{"x":336,"y":234,"on":false},{"x":351,"y":259,"on":true},{"x":368,"y":289,"on":false},{"x":368,"y":374,"on":false},{"x":351,"y":403,"on":true},{"x":337,"y":428,"on":false},{"x":312,"y":442,"on":true},{"x":302,"y":448,"on":false},{"x":290,"y":452,"on":true}]], "references": [], - "instructions": [183,83,72,67,66,42,12,3,48,43] + "instructions": "t1NIQ0IqDAMwKw==" }, "uni22C1": { "name": "uni22C1", "advanceWidth": 500, "contours": [[{"x":21,"y":837,"on":true},{"x":99,"y":850,"on":true},{"x":250,"y":35,"on":true},{"x":401,"y":850,"on":true},{"x":479,"y":837,"on":true},{"x":290,"y":-181,"on":true},{"x":210,"y":-181,"on":true}]], "references": [], - "instructions": [179,5,1,1,48,43] + "instructions": "swUBATAr" }, "uni22C0": { "name": "uni22C0", "advanceWidth": 500, "contours": [[{"x":21,"y":-175,"on":true},{"x":210,"y":844,"on":true},{"x":290,"y":844,"on":true},{"x":479,"y":-175,"on":true},{"x":401,"y":-188,"on":true},{"x":250,"y":627,"on":true},{"x":99,"y":-188,"on":true}]], "references": [], - "instructions": [179,4,1,1,48,43] + "instructions": "swQBATAr" }, "uni22C3": { "name": "uni22C3", "advanceWidth": 500, "contours": [[{"x":60,"y":14,"on":true},{"x":60,"y":844,"on":true},{"x":140,"y":844,"on":true},{"x":140,"y":14,"on":true},{"x":140,"y":-33,"on":false},{"x":159,"y":-66,"on":true},{"x":173,"y":-91,"on":false},{"x":219,"y":-117,"on":false},{"x":281,"y":-117,"on":false},{"x":327,"y":-91,"on":false},{"x":341,"y":-66,"on":true},{"x":360,"y":-34,"on":false},{"x":360,"y":14,"on":true},{"x":360,"y":844,"on":true},{"x":440,"y":844,"on":true},{"x":440,"y":14,"on":true},{"x":440,"y":-54,"on":false},{"x":412,"y":-102,"on":true},{"x":389,"y":-142,"on":false},{"x":350,"y":-165,"on":true},{"x":308,"y":-189,"on":false},{"x":192,"y":-189,"on":false},{"x":150,"y":-165,"on":true},{"x":111,"y":-142,"on":false},{"x":88,"y":-102,"on":true},{"x":60,"y":-54,"on":false}]], "references": [], - "instructions": [179,20,1,1,48,43] + "instructions": "sxQBATAr" }, "uni22C2": { "name": "uni22C2", "advanceWidth": 500, "contours": [[{"x":60,"y":-181,"on":true},{"x":60,"y":649,"on":true},{"x":60,"y":717,"on":false},{"x":88,"y":765,"on":true},{"x":111,"y":805,"on":false},{"x":150,"y":828,"on":true},{"x":192,"y":852,"on":false},{"x":308,"y":852,"on":false},{"x":350,"y":828,"on":true},{"x":389,"y":805,"on":false},{"x":412,"y":765,"on":true},{"x":440,"y":717,"on":false},{"x":440,"y":649,"on":true},{"x":440,"y":-181,"on":true},{"x":360,"y":-181,"on":true},{"x":360,"y":649,"on":true},{"x":360,"y":696,"on":false},{"x":341,"y":728,"on":true},{"x":327,"y":753,"on":false},{"x":281,"y":780,"on":false},{"x":219,"y":780,"on":false},{"x":173,"y":753,"on":false},{"x":159,"y":728,"on":true},{"x":140,"y":696,"on":false},{"x":140,"y":649,"on":true},{"x":140,"y":-181,"on":true}]], "references": [], - "instructions": [179,6,0,1,48,43] + "instructions": "swYAATAr" }, "uni2219": { "name": "uni2219", "advanceWidth": 500, "contours": [], "references": [{"glyph":"period","x":0,"y":261,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,1,5,176,51,43] + "instructions": "sQABuAEFsDMr" }, "radical": { "name": "radical", "advanceWidth": 500, "contours": [[{"x":23,"y":266,"on":true},{"x":97,"y":294,"on":true},{"x":240,"y":-58,"on":true},{"x":461,"y":852,"on":true},{"x":539,"y":835,"on":true},{"x":290,"y":-181,"on":true},{"x":210,"y":-181,"on":true}]], "references": [], - "instructions": [179,5,3,1,48,43] + "instructions": "swUDATAr" }, "currency": { "name": "currency", "advanceWidth": 500, "contours": [[{"x":32,"y":167,"on":true},{"x":96,"y":231,"on":true},{"x":71,"y":272,"on":false},{"x":71,"y":390,"on":false},{"x":96,"y":432,"on":true},{"x":32,"y":496,"on":true},{"x":88,"y":547,"on":true},{"x":150,"y":485,"on":true},{"x":192,"y":510,"on":false},{"x":309,"y":510,"on":false},{"x":350,"y":485,"on":true},{"x":412,"y":547,"on":true},{"x":468,"y":496,"on":true},{"x":404,"y":432,"on":true},{"x":429,"y":390,"on":false},{"x":429,"y":272,"on":false},{"x":404,"y":231,"on":true},{"x":468,"y":167,"on":true},{"x":412,"y":116,"on":true},{"x":350,"y":177,"on":true},{"x":308,"y":152,"on":false},{"x":191,"y":152,"on":false},{"x":150,"y":177,"on":true},{"x":88,"y":116,"on":true}],[{"x":151,"y":368,"on":false},{"x":151,"y":295,"on":false},{"x":166,"y":270,"on":true},{"x":178,"y":249,"on":false},{"x":198,"y":237,"on":true},{"x":220,"y":224,"on":false},{"x":280,"y":224,"on":false},{"x":302,"y":237,"on":true},{"x":322,"y":249,"on":false},{"x":334,"y":270,"on":true},{"x":349,"y":295,"on":false},{"x":349,"y":367,"on":false},{"x":334,"y":393,"on":true},{"x":322,"y":414,"on":false},{"x":302,"y":426,"on":true},{"x":280,"y":438,"on":false},{"x":220,"y":438,"on":false},{"x":198,"y":426,"on":true},{"x":178,"y":414,"on":false},{"x":166,"y":393,"on":true}]], "references": [], - "instructions": [64,32,12,10,7,5,4,3,0,16,13,4,1,4,2,3,22,19,17,3,1,2,3,74,11,6,2,0,72,23,18,2,1,71,75,176,25,80,88,64,18,0,2,0,1,2,1,99,0,3,3,0,95,0,0,0,67,3,76,27,64,24,0,0,0,3,2,0,3,103,0,2,1,1,2,87,0,2,2,1,95,0,1,2,1,79,89,182,25,24,27,24,4,9,24,43] + "instructions": "QCAMCgcFBAMAEA0EAQQCAxYTEQMBAgNKCwYCAEgXEgIBR0uwGVBYQBIAAgABAgFjAAMDAF8AAABDA0wbQBgAAAADAgADZwACAQECVwACAgFfAAECAU9ZthkYGxgECRgr" }, "dollar": { "name": "dollar", "advanceWidth": 500, "contours": [[{"x":55,"y":153,"on":true},{"x":55,"y":154,"on":false},{"x":55,"y":155,"on":true},{"x":134,"y":166,"on":true},{"x":134,"y":159,"on":true},{"x":134,"y":135,"on":false},{"x":146,"y":114,"on":true},{"x":159,"y":92,"on":false},{"x":181,"y":80,"on":true},{"x":208,"y":64,"on":false},{"x":247,"y":64,"on":true},{"x":283,"y":64,"on":false},{"x":308,"y":79,"on":true},{"x":331,"y":92,"on":false},{"x":345,"y":115,"on":true},{"x":360,"y":142,"on":false},{"x":360,"y":208,"on":false},{"x":342,"y":240,"on":true},{"x":317,"y":284,"on":false},{"x":235,"y":329,"on":true},{"x":124,"y":392,"on":false},{"x":89,"y":454,"on":true},{"x":60,"y":504,"on":false},{"x":60,"y":559,"on":true},{"x":60,"y":613,"on":false},{"x":85,"y":656,"on":true},{"x":107,"y":695,"on":false},{"x":147,"y":717,"on":true},{"x":175,"y":733,"on":false},{"x":210,"y":740,"on":true},{"x":210,"y":838,"on":true},{"x":290,"y":838,"on":true},{"x":290,"y":741,"on":true},{"x":383,"y":729,"on":false},{"x":424,"y":658,"on":true},{"x":445,"y":622,"on":false},{"x":445,"y":582,"on":true},{"x":445,"y":581,"on":false},{"x":445,"y":580,"on":true},{"x":366,"y":569,"on":true},{"x":366,"y":576,"on":true},{"x":366,"y":600,"on":false},{"x":354,"y":621,"on":true},{"x":341,"y":643,"on":false},{"x":319,"y":655,"on":true},{"x":292,"y":671,"on":false},{"x":253,"y":671,"on":true},{"x":217,"y":671,"on":false},{"x":192,"y":656,"on":true},{"x":169,"y":643,"on":false},{"x":155,"y":620,"on":true},{"x":140,"y":593,"on":false},{"x":140,"y":527,"on":false},{"x":158,"y":495,"on":true},{"x":183,"y":451,"on":false},{"x":265,"y":406,"on":true},{"x":376,"y":343,"on":false},{"x":411,"y":281,"on":true},{"x":440,"y":231,"on":false},{"x":440,"y":176,"on":true},{"x":440,"y":122,"on":false},{"x":415,"y":79,"on":true},{"x":393,"y":40,"on":false},{"x":353,"y":18,"on":true},{"x":325,"y":2,"on":false},{"x":290,"y":-5,"on":true},{"x":290,"y":-102,"on":true},{"x":210,"y":-102,"on":true},{"x":210,"y":-6,"on":true},{"x":117,"y":6,"on":false},{"x":76,"y":77,"on":true},{"x":55,"y":113,"on":false}]], "references": [], - "instructions": [64,53,32,29,2,2,1,39,36,3,0,4,0,2,68,65,2,3,0,3,74,0,1,0,2,0,1,2,103,0,0,3,3,0,87,0,0,0,3,93,0,3,0,3,77,67,66,47,45,31,30,41,4,9,21,43] + "instructions": "QDUgHQICASckAwAEAAJEQQIDAANKAAEAAgABAmcAAAMDAFcAAAADXQADAANNQ0IvLR8eKQQJFSs=" }, "Euro": { "name": "Euro", "advanceWidth": 500, "contours": [[{"x":18,"y":258,"on":true},{"x":18,"y":330,"on":true},{"x":52,"y":330,"on":true},{"x":52,"y":405,"on":true},{"x":18,"y":405,"on":true},{"x":18,"y":477,"on":true},{"x":52,"y":477,"on":true},{"x":52,"y":540,"on":true},{"x":52,"y":606,"on":false},{"x":79,"y":654,"on":true},{"x":102,"y":694,"on":false},{"x":143,"y":717,"on":true},{"x":188,"y":743,"on":false},{"x":312,"y":743,"on":false},{"x":357,"y":717,"on":true},{"x":397,"y":694,"on":false},{"x":420,"y":653,"on":true},{"x":439,"y":619,"on":false},{"x":445,"y":580,"on":true},{"x":367,"y":566,"on":true},{"x":364,"y":594,"on":false},{"x":350,"y":616,"on":true},{"x":335,"y":642,"on":false},{"x":311,"y":656,"on":true},{"x":285,"y":671,"on":false},{"x":215,"y":671,"on":false},{"x":189,"y":656,"on":true},{"x":165,"y":642,"on":false},{"x":150,"y":617,"on":true},{"x":132,"y":585,"on":false},{"x":132,"y":540,"on":true},{"x":132,"y":477,"on":true},{"x":326,"y":477,"on":true},{"x":326,"y":405,"on":true},{"x":132,"y":405,"on":true},{"x":132,"y":330,"on":true},{"x":326,"y":330,"on":true},{"x":326,"y":258,"on":true},{"x":132,"y":258,"on":true},{"x":132,"y":195,"on":true},{"x":132,"y":150,"on":false},{"x":150,"y":118,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":285,"y":64,"on":false},{"x":311,"y":79,"on":true},{"x":336,"y":93,"on":false},{"x":350,"y":119,"on":true},{"x":363,"y":142,"on":false},{"x":367,"y":169,"on":true},{"x":445,"y":155,"on":true},{"x":440,"y":115,"on":false},{"x":420,"y":82,"on":true},{"x":397,"y":41,"on":false},{"x":357,"y":18,"on":true},{"x":312,"y":-8,"on":false},{"x":188,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":81,"on":true},{"x":52,"y":128,"on":false},{"x":52,"y":195,"on":true},{"x":52,"y":258,"on":true}]], "references": [], - "instructions": [64,76,19,18,2,2,4,51,50,2,9,8,2,74,5,1,2,6,1,1,0,2,1,101,7,1,0,12,11,2,8,9,0,8,101,0,4,4,3,95,0,3,3,72,75,0,9,9,10,95,0,10,10,73,10,76,0,0,0,63,0,63,57,56,45,44,17,17,17,22,27,22,17,17,17,13,9,29,43] + "instructions": "QEwTEgICBDMyAgkIAkoFAQIGAQEAAgFlBwEADAsCCAkACGUABAQDXwADA0hLAAkJCl8ACgpJCkwAAAA/AD85OC0sERERFhsWERERDQkdKw==" }, "cent": { "name": "cent", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":390,"on":false},{"x":84,"y":446,"on":true},{"x":109,"y":490,"on":false},{"x":151,"y":513,"on":true},{"x":178,"y":528,"on":false},{"x":210,"y":535,"on":true},{"x":210,"y":632,"on":true},{"x":290,"y":632,"on":true},{"x":290,"y":535,"on":true},{"x":324,"y":529,"on":false},{"x":352,"y":513,"on":true},{"x":394,"y":489,"on":false},{"x":419,"y":446,"on":true},{"x":438,"y":414,"on":false},{"x":445,"y":375,"on":true},{"x":369,"y":353,"on":true},{"x":364,"y":384,"on":false},{"x":349,"y":409,"on":true},{"x":333,"y":437,"on":false},{"x":307,"y":452,"on":true},{"x":283,"y":466,"on":false},{"x":251,"y":466,"on":true},{"x":220,"y":466,"on":false},{"x":196,"y":452,"on":true},{"x":171,"y":437,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true},{"x":132,"y":220,"on":true},{"x":132,"y":160,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":78,"on":true},{"x":220,"y":64,"on":false},{"x":251,"y":64,"on":true},{"x":283,"y":64,"on":false},{"x":307,"y":78,"on":true},{"x":333,"y":93,"on":false},{"x":349,"y":121,"on":true},{"x":363,"y":146,"on":false},{"x":369,"y":177,"on":true},{"x":445,"y":155,"on":true},{"x":438,"y":117,"on":false},{"x":419,"y":84,"on":true},{"x":394,"y":40,"on":false},{"x":352,"y":17,"on":true},{"x":324,"y":1,"on":false},{"x":290,"y":-5,"on":true},{"x":290,"y":-102,"on":true},{"x":210,"y":-102,"on":true},{"x":210,"y":-5,"on":true},{"x":177,"y":1,"on":false},{"x":151,"y":17,"on":true},{"x":109,"y":41,"on":false},{"x":84,"y":84,"on":true},{"x":52,"y":140,"on":false}]], "references": [], - "instructions": [64,50,10,7,2,1,0,43,42,17,16,4,2,1,52,49,2,3,2,3,74,0,0,0,1,2,0,1,103,0,2,3,3,2,87,0,2,2,3,93,0,3,2,3,77,29,43,45,24,4,9,24,43] + "instructions": "QDIKBwIBACsqERAEAgE0MQIDAgNKAAAAAQIAAWcAAgMDAlcAAgIDXQADAgNNHSstGAQJGCs=" }, "yen": { "name": "yen", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-501,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,254,11,176,51,43,177,2,1,184,254,158,176,51,43] + "instructions": "sQEBuP4LsDMrsQIBuP6esDMr" }, "glyph859": { "name": "glyph859", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":88,"y":94,"on":false},{"x":107,"y":126,"on":true},{"x":136,"y":176,"on":false},{"x":136,"y":271,"on":true},{"x":136,"y":540,"on":true},{"x":136,"y":621,"on":false},{"x":166,"y":673,"on":true},{"x":186,"y":708,"on":false},{"x":218,"y":727,"on":true},{"x":246,"y":743,"on":false},{"x":321,"y":743,"on":false},{"x":349,"y":727,"on":true},{"x":380,"y":709,"on":false},{"x":401,"y":673,"on":true},{"x":419,"y":642,"on":false},{"x":426,"y":603,"on":true},{"x":352,"y":575,"on":true},{"x":347,"y":613,"on":false},{"x":333,"y":638,"on":true},{"x":322,"y":656,"on":false},{"x":308,"y":665,"on":true},{"x":297,"y":671,"on":false},{"x":271,"y":671,"on":false},{"x":260,"y":665,"on":true},{"x":247,"y":657,"on":false},{"x":237,"y":640,"on":true},{"x":216,"y":604,"on":false},{"x":216,"y":540,"on":true},{"x":216,"y":271,"on":true},{"x":216,"y":153,"on":false},{"x":181,"y":91,"on":true},{"x":175,"y":81,"on":false},{"x":168,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":0,"on":true}]], "references": [], - "instructions": [179,11,0,1,48,43] + "instructions": "swsAATAr" }, "sterling": { "name": "sterling", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":88,"y":94,"on":false},{"x":107,"y":126,"on":true},{"x":136,"y":176,"on":false},{"x":136,"y":271,"on":true},{"x":136,"y":354,"on":true},{"x":79,"y":354,"on":true},{"x":79,"y":426,"on":true},{"x":136,"y":426,"on":true},{"x":136,"y":540,"on":true},{"x":136,"y":621,"on":false},{"x":166,"y":673,"on":true},{"x":186,"y":708,"on":false},{"x":218,"y":727,"on":true},{"x":246,"y":743,"on":false},{"x":321,"y":743,"on":false},{"x":349,"y":727,"on":true},{"x":380,"y":709,"on":false},{"x":401,"y":673,"on":true},{"x":419,"y":642,"on":false},{"x":426,"y":603,"on":true},{"x":352,"y":575,"on":true},{"x":347,"y":613,"on":false},{"x":333,"y":638,"on":true},{"x":322,"y":656,"on":false},{"x":308,"y":665,"on":true},{"x":297,"y":671,"on":false},{"x":271,"y":671,"on":false},{"x":260,"y":665,"on":true},{"x":247,"y":657,"on":false},{"x":237,"y":640,"on":true},{"x":216,"y":604,"on":false},{"x":216,"y":540,"on":true},{"x":216,"y":426,"on":true},{"x":326,"y":426,"on":true},{"x":326,"y":354,"on":true},{"x":216,"y":354,"on":true},{"x":216,"y":271,"on":true},{"x":216,"y":153,"on":false},{"x":181,"y":91,"on":true},{"x":175,"y":81,"on":false},{"x":168,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":0,"on":true}]], "references": [], - "instructions": [64,60,22,21,2,1,3,1,74,1,1,6,1,73,4,1,1,5,1,0,6,1,0,101,0,3,3,2,95,0,2,2,72,75,0,6,6,7,93,8,1,7,7,65,7,76,0,0,0,44,0,44,21,17,22,27,22,17,22,9,9,27,43] + "instructions": "QDwWFQIBAwFKAQEGAUkEAQEFAQAGAQBlAAMDAl8AAgJISwAGBgddCAEHB0EHTAAAACwALBURFhsWERYJCRsr" }, "lira": { "name": "lira", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":88,"y":94,"on":false},{"x":107,"y":126,"on":true},{"x":134,"y":173,"on":false},{"x":136,"y":258,"on":true},{"x":79,"y":258,"on":true},{"x":79,"y":330,"on":true},{"x":136,"y":330,"on":true},{"x":136,"y":427,"on":true},{"x":79,"y":427,"on":true},{"x":79,"y":499,"on":true},{"x":136,"y":499,"on":true},{"x":136,"y":540,"on":true},{"x":136,"y":621,"on":false},{"x":166,"y":673,"on":true},{"x":186,"y":708,"on":false},{"x":218,"y":727,"on":true},{"x":246,"y":743,"on":false},{"x":321,"y":743,"on":false},{"x":349,"y":727,"on":true},{"x":380,"y":709,"on":false},{"x":401,"y":673,"on":true},{"x":419,"y":642,"on":false},{"x":426,"y":603,"on":true},{"x":352,"y":575,"on":true},{"x":347,"y":613,"on":false},{"x":333,"y":638,"on":true},{"x":322,"y":656,"on":false},{"x":308,"y":665,"on":true},{"x":297,"y":671,"on":false},{"x":271,"y":671,"on":false},{"x":260,"y":665,"on":true},{"x":247,"y":657,"on":false},{"x":237,"y":640,"on":true},{"x":216,"y":604,"on":false},{"x":216,"y":540,"on":true},{"x":216,"y":499,"on":true},{"x":326,"y":499,"on":true},{"x":326,"y":427,"on":true},{"x":216,"y":427,"on":true},{"x":216,"y":330,"on":true},{"x":326,"y":330,"on":true},{"x":326,"y":258,"on":true},{"x":216,"y":258,"on":true},{"x":214,"y":149,"on":false},{"x":181,"y":91,"on":true},{"x":175,"y":81,"on":false},{"x":168,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":0,"on":true}]], "references": [], - "instructions": [64,76,25,24,2,3,5,1,74,1,1,10,1,73,6,1,3,7,1,2,1,3,2,101,8,1,1,9,1,0,10,1,0,101,0,5,5,4,95,0,4,4,72,75,0,10,10,11,93,12,1,11,11,65,11,76,0,0,0,50,0,50,49,48,44,43,17,17,22,27,22,17,17,17,21,13,9,29,43] + "instructions": "QEwZGAIDBQFKAQEKAUkGAQMHAQIBAwJlCAEBCQEACgEAZQAFBQRfAAQESEsACgoLXQwBCwtBC0wAAAAyADIxMCwrEREWGxYREREVDQkdKw==" }, "uni20A9": { "name": "uni20A9", "advanceWidth": 500, "contours": [[{"x":18,"y":221,"on":true},{"x":18,"y":293,"on":true},{"x":85,"y":293,"on":true},{"x":76,"y":354,"on":false},{"x":70,"y":405,"on":true},{"x":18,"y":405,"on":true},{"x":18,"y":477,"on":true},{"x":63,"y":477,"on":true},{"x":60,"y":518,"on":false},{"x":60,"y":551,"on":true},{"x":60,"y":735,"on":true},{"x":140,"y":735,"on":true},{"x":140,"y":551,"on":true},{"x":140,"y":518,"on":false},{"x":141,"y":477,"on":true},{"x":359,"y":477,"on":true},{"x":360,"y":518,"on":false},{"x":360,"y":551,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":551,"on":true},{"x":440,"y":518,"on":false},{"x":437,"y":477,"on":true},{"x":482,"y":477,"on":true},{"x":482,"y":405,"on":true},{"x":430,"y":405,"on":true},{"x":424,"y":354,"on":false},{"x":415,"y":293,"on":true},{"x":482,"y":293,"on":true},{"x":482,"y":221,"on":true},{"x":404,"y":221,"on":true},{"x":387,"y":121,"on":false},{"x":363,"y":0,"on":true},{"x":312,"y":0,"on":true},{"x":268,"y":221,"on":true},{"x":232,"y":221,"on":true},{"x":188,"y":0,"on":true},{"x":137,"y":0,"on":true},{"x":113,"y":121,"on":false},{"x":96,"y":221,"on":true}],[{"x":145,"y":405,"on":true},{"x":148,"y":354,"on":false},{"x":152,"y":293,"on":true},{"x":195,"y":293,"on":true},{"x":217,"y":405,"on":true}],[{"x":158,"y":221,"on":true},{"x":161,"y":182,"on":false},{"x":164,"y":141,"on":true},{"x":181,"y":221,"on":true}],[{"x":246,"y":293,"on":true},{"x":254,"y":293,"on":true},{"x":250,"y":313,"on":true}],[{"x":283,"y":405,"on":true},{"x":305,"y":293,"on":true},{"x":348,"y":293,"on":true},{"x":352,"y":354,"on":false},{"x":355,"y":405,"on":true}],[{"x":319,"y":221,"on":true},{"x":336,"y":141,"on":true},{"x":339,"y":182,"on":false},{"x":342,"y":221,"on":true}]], "references": [], - "instructions": [64,111,51,1,0,1,58,47,2,10,9,2,74,6,4,2,2,23,18,21,15,7,5,1,0,2,1,102,17,14,8,3,0,24,19,22,16,20,13,11,7,9,10,0,9,101,5,1,3,3,64,75,12,1,10,10,65,10,76,57,57,52,52,45,45,40,40,0,0,57,60,57,60,52,56,52,56,54,53,45,48,45,48,40,44,40,44,43,42,0,39,0,39,37,36,35,34,33,32,30,29,18,17,19,19,19,19,17,18,17,25,9,29,43] + "instructions": "QG8zAQABOi8CCgkCSgYEAgIXEhUPBwUBAAIBZhEOCAMAGBMWEBQNCwcJCgAJZQUBAwNASwwBCgpBCkw5OTQ0LS0oKAAAOTw5PDQ4NDg2NS0wLTAoLCgsKyoAJwAnJSQjIiEgHh0SERMTExMREhEZCR0r" }, "franc": { "name": "franc", "advanceWidth": 500, "contours": [[{"x":30,"y":176,"on":true},{"x":30,"y":248,"on":true},{"x":90,"y":248,"on":true},{"x":90,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":170,"y":663,"on":true},{"x":170,"y":433,"on":true},{"x":383,"y":433,"on":true},{"x":383,"y":361,"on":true},{"x":170,"y":361,"on":true},{"x":170,"y":248,"on":true},{"x":260,"y":248,"on":true},{"x":260,"y":176,"on":true},{"x":170,"y":176,"on":true},{"x":170,"y":0,"on":true},{"x":90,"y":0,"on":true},{"x":90,"y":176,"on":true}]], "references": [], - "instructions": [64,52,0,3,0,4,0,3,4,101,5,1,0,9,8,2,6,7,0,6,101,0,2,2,1,93,0,1,1,64,75,0,7,7,65,7,76,0,0,0,17,0,17,17,17,17,17,17,17,17,17,10,9,28,43] + "instructions": "QDQAAwAEAAMEZQUBAAkIAgYHAAZlAAICAV0AAQFASwAHB0EHTAAAABEAERERERERERERCgkcKw==" }, "uni2116": { "name": "uni2116", "advanceWidth": 500, "contours": [[{"x":30,"y":0,"on":true},{"x":30,"y":735,"on":true},{"x":110,"y":735,"on":true},{"x":187,"y":242,"on":true},{"x":182,"y":347,"on":false},{"x":182,"y":441,"on":true},{"x":182,"y":735,"on":true},{"x":250,"y":735,"on":true},{"x":250,"y":0,"on":true},{"x":170,"y":0,"on":true},{"x":93,"y":493,"on":true},{"x":98,"y":388,"on":false},{"x":98,"y":294,"on":true},{"x":98,"y":0,"on":true}],[{"x":280,"y":0,"on":true},{"x":280,"y":61,"on":true},{"x":470,"y":61,"on":true},{"x":470,"y":0,"on":true}],[{"x":280,"y":287,"on":true},{"x":280,"y":365,"on":true},{"x":280,"y":445,"on":false},{"x":307,"y":492,"on":true},{"x":322,"y":517,"on":false},{"x":342,"y":529,"on":true},{"x":358,"y":538,"on":false},{"x":400,"y":538,"on":false},{"x":416,"y":529,"on":true},{"x":436,"y":517,"on":false},{"x":451,"y":492,"on":true},{"x":478,"y":445,"on":false},{"x":478,"y":365,"on":true},{"x":478,"y":287,"on":true},{"x":478,"y":207,"on":false},{"x":451,"y":160,"on":true},{"x":436,"y":135,"on":false},{"x":416,"y":123,"on":true},{"x":400,"y":114,"on":false},{"x":358,"y":114,"on":false},{"x":342,"y":123,"on":true},{"x":322,"y":135,"on":false},{"x":307,"y":160,"on":true},{"x":280,"y":207,"on":false}],[{"x":348,"y":287,"on":true},{"x":348,"y":200,"on":false},{"x":368,"y":180,"on":true},{"x":373,"y":175,"on":false},{"x":385,"y":175,"on":false},{"x":390,"y":180,"on":true},{"x":411,"y":201,"on":false},{"x":410,"y":287,"on":true},{"x":410,"y":365,"on":true},{"x":410,"y":452,"on":false},{"x":390,"y":472,"on":true},{"x":385,"y":477,"on":false},{"x":373,"y":477,"on":false},{"x":368,"y":472,"on":true},{"x":347,"y":451,"on":false},{"x":348,"y":365,"on":true}]], "references": [], - "instructions": [64,10,53,45,36,24,15,14,1,0,4,48,43] + "instructions": "QAo1LSQYDw4BAAQwKw==" }, "Omega": { "name": "Omega", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2127": { "name": "uni2127", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni01B1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2113": { "name": "uni2113", "advanceWidth": 500, "contours": [[{"x":92,"y":268,"on":true},{"x":138,"y":312,"on":false},{"x":174,"y":355,"on":true},{"x":174,"y":618,"on":true},{"x":174,"y":666,"on":false},{"x":192,"y":697,"on":true},{"x":205,"y":720,"on":false},{"x":226,"y":732,"on":true},{"x":245,"y":743,"on":false},{"x":270,"y":743,"on":true},{"x":292,"y":743,"on":false},{"x":309,"y":734,"on":true},{"x":329,"y":723,"on":false},{"x":342,"y":698,"on":true},{"x":366,"y":656,"on":false},{"x":367,"y":593,"on":true},{"x":367,"y":514,"on":false},{"x":315,"y":426,"on":true},{"x":289,"y":381,"on":false},{"x":254,"y":335,"on":true},{"x":254,"y":134,"on":true},{"x":254,"y":91,"on":false},{"x":272,"y":73,"on":true},{"x":281,"y":64,"on":false},{"x":292,"y":64,"on":true},{"x":304,"y":64,"on":false},{"x":313,"y":73,"on":true},{"x":329,"y":89,"on":false},{"x":331,"y":122,"on":true},{"x":407,"y":98,"on":true},{"x":403,"y":70,"on":false},{"x":389,"y":46,"on":true},{"x":374,"y":20,"on":false},{"x":350,"y":6,"on":true},{"x":325,"y":-8,"on":false},{"x":259,"y":-8,"on":false},{"x":210,"y":21,"on":false},{"x":194,"y":47,"on":true},{"x":174,"y":82,"on":false},{"x":174,"y":134,"on":true},{"x":174,"y":243,"on":true},{"x":161,"y":230,"on":false},{"x":148,"y":217,"on":true}],[{"x":254,"y":473,"on":true},{"x":287,"y":537,"on":false},{"x":287,"y":594,"on":true},{"x":287,"y":671,"on":false},{"x":269,"y":671,"on":true},{"x":254,"y":671,"on":false},{"x":254,"y":618,"on":true}]], "references": [], - "instructions": [181,46,43,34,8,2,48,43] + "instructions": "tS4rIggCMCs=" }, "estimated": { "name": "estimated", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":515,"on":true},{"x":52,"y":596,"on":false},{"x":84,"y":651,"on":true},{"x":109,"y":695,"on":false},{"x":193,"y":743,"on":false},{"x":307,"y":743,"on":false},{"x":349,"y":719,"on":true},{"x":390,"y":695,"on":false},{"x":416,"y":651,"on":true},{"x":448,"y":596,"on":false},{"x":448,"y":515,"on":true},{"x":448,"y":332,"on":true},{"x":128,"y":332,"on":true},{"x":128,"y":220,"on":true},{"x":128,"y":161,"on":false},{"x":151,"y":121,"on":true},{"x":168,"y":92,"on":false},{"x":195,"y":76,"on":true},{"x":221,"y":61,"on":false},{"x":293,"y":61,"on":false},{"x":320,"y":76,"on":true},{"x":347,"y":92,"on":false},{"x":364,"y":122,"on":true},{"x":374,"y":139,"on":false},{"x":379,"y":158,"on":true},{"x":449,"y":130,"on":true},{"x":442,"y":107,"on":false},{"x":430,"y":87,"on":true},{"x":404,"y":43,"on":false},{"x":362,"y":18,"on":true},{"x":318,"y":-8,"on":false},{"x":196,"y":-8,"on":false},{"x":152,"y":18,"on":true},{"x":110,"y":43,"on":false},{"x":84,"y":86,"on":true},{"x":52,"y":141,"on":false}],[{"x":128,"y":400,"on":true},{"x":372,"y":400,"on":true},{"x":372,"y":515,"on":true},{"x":372,"y":577,"on":false},{"x":348,"y":617,"on":true},{"x":331,"y":646,"on":false},{"x":306,"y":660,"on":true},{"x":282,"y":674,"on":false},{"x":218,"y":674,"on":false},{"x":194,"y":660,"on":true},{"x":168,"y":645,"on":false},{"x":152,"y":617,"on":true},{"x":129,"y":577,"on":false},{"x":128,"y":515,"on":true}]], "references": [], - "instructions": [181,44,37,31,5,2,48,43] + "instructions": "tSwlHwUCMCs=" }, "uni2129": { "name": "uni2129", "advanceWidth": 500, "contours": [[{"x":66,"y":458,"on":true},{"x":66,"y":530,"on":true},{"x":131,"y":530,"on":true},{"x":183,"y":530,"on":false},{"x":220,"y":509,"on":true},{"x":252,"y":491,"on":false},{"x":270,"y":459,"on":true},{"x":290,"y":424,"on":false},{"x":290,"y":375,"on":true},{"x":290,"y":72,"on":true},{"x":425,"y":72,"on":true},{"x":425,"y":0,"on":true},{"x":210,"y":0,"on":true},{"x":210,"y":375,"on":true},{"x":210,"y":403,"on":false},{"x":199,"y":422,"on":true},{"x":178,"y":458,"on":false},{"x":131,"y":458,"on":true}]], "references": [], - "instructions": [179,11,1,1,48,43] + "instructions": "swsBATAr" }, "arrowleft": { "name": "arrowleft", "advanceWidth": 500, "contours": [[{"x":52,"y":331,"on":true},{"x":179,"y":458,"on":true},{"x":227,"y":409,"on":true},{"x":174,"y":367,"on":true},{"x":440,"y":367,"on":true},{"x":440,"y":295,"on":true},{"x":174,"y":295,"on":true},{"x":227,"y":253,"on":true},{"x":179,"y":205,"on":true}]], "references": [], - "instructions": [179,8,1,1,48,43] + "instructions": "swgBATAr" }, "arrowright": { "name": "arrowright", "advanceWidth": 500, "contours": [[{"x":60,"y":295,"on":true},{"x":60,"y":367,"on":true},{"x":326,"y":367,"on":true},{"x":273,"y":409,"on":true},{"x":321,"y":458,"on":true},{"x":448,"y":331,"on":true},{"x":321,"y":205,"on":true},{"x":273,"y":253,"on":true},{"x":326,"y":295,"on":true}]], "references": [], - "instructions": [179,6,4,1,48,43] + "instructions": "swYEATAr" }, "arrowup": { "name": "arrowup", "advanceWidth": 500, "contours": [[{"x":123,"y":648,"on":true},{"x":250,"y":775,"on":true},{"x":377,"y":648,"on":true},{"x":328,"y":600,"on":true},{"x":286,"y":653,"on":true},{"x":286,"y":-104,"on":true},{"x":214,"y":-104,"on":true},{"x":214,"y":653,"on":true},{"x":172,"y":600,"on":true}]], "references": [], - "instructions": [179,5,1,1,48,43] + "instructions": "swUBATAr" }, "arrowdown": { "name": "arrowdown", "advanceWidth": 500, "contours": [[{"x":123,"y":14,"on":true},{"x":172,"y":63,"on":true},{"x":214,"y":9,"on":true},{"x":214,"y":767,"on":true},{"x":286,"y":767,"on":true},{"x":286,"y":9,"on":true},{"x":328,"y":63,"on":true},{"x":377,"y":14,"on":true},{"x":250,"y":-112,"on":true}]], "references": [], - "instructions": [179,8,3,1,48,43] + "instructions": "swgDATAr" }, "arrowboth": { "name": "arrowboth", "advanceWidth": 500, "contours": [[{"x":52,"y":331,"on":true},{"x":179,"y":458,"on":true},{"x":227,"y":409,"on":true},{"x":174,"y":367,"on":true},{"x":326,"y":367,"on":true},{"x":273,"y":409,"on":true},{"x":321,"y":458,"on":true},{"x":448,"y":331,"on":true},{"x":321,"y":205,"on":true},{"x":273,"y":253,"on":true},{"x":326,"y":295,"on":true},{"x":174,"y":295,"on":true},{"x":227,"y":253,"on":true},{"x":179,"y":205,"on":true}]], "references": [], - "instructions": [179,8,1,1,48,43] + "instructions": "swgBATAr" }, "arrowupdn": { "name": "arrowupdn", "advanceWidth": 500, "contours": [[{"x":123,"y":14,"on":true},{"x":172,"y":63,"on":true},{"x":214,"y":9,"on":true},{"x":214,"y":653,"on":true},{"x":172,"y":600,"on":true},{"x":123,"y":648,"on":true},{"x":250,"y":775,"on":true},{"x":377,"y":648,"on":true},{"x":328,"y":600,"on":true},{"x":286,"y":653,"on":true},{"x":286,"y":9,"on":true},{"x":328,"y":63,"on":true},{"x":377,"y":14,"on":true},{"x":250,"y":-112,"on":true}]], "references": [], - "instructions": [179,13,6,1,48,43] + "instructions": "sw0GATAr" }, "uni2196": { "name": "uni2196", "advanceWidth": 500, "contours": [[{"x":-9,"y":607,"on":true},{"x":57,"y":774,"on":true},{"x":224,"y":709,"on":true},{"x":198,"y":645,"on":true},{"x":139,"y":677,"on":true},{"x":473,"y":-90,"on":true},{"x":407,"y":-119,"on":true},{"x":73,"y":648,"on":true},{"x":55,"y":582,"on":true}]], "references": [], - "instructions": [179,6,1,1,48,43] + "instructions": "swYBATAr" }, "uni2197": { "name": "uni2197", "advanceWidth": 500, "contours": [[{"x":27,"y":-90,"on":true},{"x":361,"y":677,"on":true},{"x":302,"y":645,"on":true},{"x":276,"y":709,"on":true},{"x":443,"y":774,"on":true},{"x":509,"y":607,"on":true},{"x":445,"y":582,"on":true},{"x":427,"y":648,"on":true},{"x":93,"y":-119,"on":true}]], "references": [], - "instructions": [179,8,4,1,48,43] + "instructions": "swgEATAr" }, "uni2198": { "name": "uni2198", "advanceWidth": 500, "contours": [[{"x":27,"y":752,"on":true},{"x":93,"y":781,"on":true},{"x":427,"y":14,"on":true},{"x":445,"y":80,"on":true},{"x":509,"y":55,"on":true},{"x":443,"y":-112,"on":true},{"x":276,"y":-46,"on":true},{"x":302,"y":18,"on":true},{"x":361,"y":-14,"on":true}]], "references": [], - "instructions": [179,5,1,1,48,43] + "instructions": "swUBATAr" }, "uni2199": { "name": "uni2199", "advanceWidth": 500, "contours": [[{"x":-9,"y":55,"on":true},{"x":55,"y":80,"on":true},{"x":73,"y":14,"on":true},{"x":407,"y":781,"on":true},{"x":473,"y":752,"on":true},{"x":139,"y":-14,"on":true},{"x":198,"y":18,"on":true},{"x":224,"y":-46,"on":true},{"x":57,"y":-112,"on":true}]], "references": [], - "instructions": [179,8,3,1,48,43] + "instructions": "swgDATAr" }, "filledbox": { "name": "filledbox", "advanceWidth": 500, "contours": [[{"x":41,"y":122,"on":true},{"x":41,"y":540,"on":true},{"x":459,"y":540,"on":true},{"x":459,"y":122,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "filledrect": { "name": "filledrect", "advanceWidth": 500, "contours": [[{"x":41,"y":192,"on":true},{"x":41,"y":471,"on":true},{"x":459,"y":471,"on":true},{"x":459,"y":192,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni25AE": { "name": "uni25AE", "advanceWidth": 500, "contours": [[{"x":41,"y":18,"on":true},{"x":41,"y":645,"on":true},{"x":459,"y":645,"on":true},{"x":459,"y":18,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "triagup": { "name": "triagup", "advanceWidth": 500, "contours": [[{"x":9,"y":122,"on":true},{"x":250,"y":540,"on":true},{"x":491,"y":122,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "triagdn": { "name": "triagdn", "advanceWidth": 500, "contours": [[{"x":9,"y":540,"on":true},{"x":491,"y":540,"on":true},{"x":250,"y":122,"on":true}]], "references": [], - "instructions": [179,2,0,1,48,43] + "instructions": "swIAATAr" }, "uni25C0": { "name": "uni25C0", "advanceWidth": 500, "contours": [[{"x":41,"y":331,"on":true},{"x":459,"y":90,"on":true},{"x":459,"y":573,"on":true}]], "references": [], - "instructions": [179,2,1,1,48,43] + "instructions": "swIBATAr" }, "uni25B6": { "name": "uni25B6", "advanceWidth": 500, "contours": [[{"x":41,"y":90,"on":true},{"x":459,"y":331,"on":true},{"x":41,"y":573,"on":true}]], "references": [], - "instructions": [179,2,0,1,48,43] + "instructions": "swIAATAr" }, "uni25C6": { "name": "uni25C6", "advanceWidth": 500, "contours": [[{"x":41,"y":331,"on":true},{"x":250,"y":540,"on":true},{"x":459,"y":331,"on":true},{"x":250,"y":122,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "H18533": { "name": "H18533", "advanceWidth": 500, "contours": [[{"x":41,"y":387,"on":false},{"x":41,"y":276,"on":false},{"x":69,"y":226,"on":true},{"x":97,"y":178,"on":false},{"x":145,"y":151,"on":true},{"x":194,"y":123,"on":false},{"x":306,"y":122,"on":false},{"x":355,"y":151,"on":true},{"x":403,"y":179,"on":false},{"x":431,"y":226,"on":true},{"x":459,"y":275,"on":false},{"x":459,"y":387,"on":false},{"x":431,"y":436,"on":true},{"x":403,"y":484,"on":false},{"x":355,"y":512,"on":true},{"x":306,"y":540,"on":false},{"x":194,"y":540,"on":false},{"x":145,"y":512,"on":true},{"x":97,"y":484,"on":false},{"x":69,"y":436,"on":true}]], "references": [], - "instructions": [179,15,6,1,48,43] + "instructions": "sw8GATAr" }, "uni25CC": { "name": "uni25CC", "advanceWidth": 500, "contours": [[{"x":14,"y":320,"on":false},{"x":14,"y":343,"on":false},{"x":30,"y":359,"on":false},{"x":52,"y":359,"on":false},{"x":68,"y":343,"on":false},{"x":68,"y":320,"on":false},{"x":52,"y":304,"on":false},{"x":30,"y":304,"on":false}],[{"x":42,"y":215,"on":false},{"x":42,"y":238,"on":false},{"x":58,"y":254,"on":false},{"x":80,"y":254,"on":false},{"x":96,"y":238,"on":false},{"x":96,"y":215,"on":false},{"x":80,"y":199,"on":false},{"x":58,"y":199,"on":false}],[{"x":42,"y":424,"on":false},{"x":42,"y":447,"on":false},{"x":58,"y":463,"on":false},{"x":80,"y":463,"on":false},{"x":96,"y":447,"on":false},{"x":96,"y":424,"on":false},{"x":80,"y":408,"on":false},{"x":58,"y":408,"on":false}],[{"x":118,"y":139,"on":false},{"x":118,"y":162,"on":false},{"x":134,"y":178,"on":false},{"x":157,"y":178,"on":false},{"x":173,"y":162,"on":false},{"x":173,"y":139,"on":false},{"x":157,"y":123,"on":false},{"x":134,"y":123,"on":false}],[{"x":118,"y":501,"on":false},{"x":118,"y":524,"on":false},{"x":134,"y":540,"on":false},{"x":157,"y":540,"on":false},{"x":173,"y":524,"on":false},{"x":173,"y":501,"on":false},{"x":157,"y":485,"on":false},{"x":134,"y":485,"on":false}],[{"x":223,"y":111,"on":false},{"x":223,"y":134,"on":false},{"x":239,"y":150,"on":false},{"x":261,"y":150,"on":false},{"x":277,"y":134,"on":false},{"x":277,"y":111,"on":false},{"x":261,"y":95,"on":false},{"x":239,"y":95,"on":false}],[{"x":223,"y":529,"on":false},{"x":223,"y":552,"on":false},{"x":239,"y":568,"on":false},{"x":261,"y":568,"on":false},{"x":277,"y":552,"on":false},{"x":277,"y":529,"on":false},{"x":261,"y":513,"on":false},{"x":239,"y":513,"on":false}],[{"x":327,"y":139,"on":false},{"x":327,"y":162,"on":false},{"x":343,"y":178,"on":false},{"x":366,"y":178,"on":false},{"x":382,"y":162,"on":false},{"x":382,"y":139,"on":false},{"x":366,"y":123,"on":false},{"x":343,"y":123,"on":false}],[{"x":327,"y":501,"on":false},{"x":327,"y":524,"on":false},{"x":343,"y":540,"on":false},{"x":366,"y":540,"on":false},{"x":382,"y":524,"on":false},{"x":382,"y":501,"on":false},{"x":366,"y":485,"on":false},{"x":343,"y":485,"on":false}],[{"x":404,"y":215,"on":false},{"x":404,"y":238,"on":false},{"x":420,"y":254,"on":false},{"x":442,"y":254,"on":false},{"x":458,"y":238,"on":false},{"x":458,"y":215,"on":false},{"x":442,"y":199,"on":false},{"x":420,"y":199,"on":false}],[{"x":404,"y":424,"on":false},{"x":404,"y":447,"on":false},{"x":420,"y":463,"on":false},{"x":442,"y":463,"on":false},{"x":458,"y":447,"on":false},{"x":458,"y":424,"on":false},{"x":442,"y":408,"on":false},{"x":420,"y":408,"on":false}],[{"x":432,"y":320,"on":false},{"x":432,"y":343,"on":false},{"x":448,"y":359,"on":false},{"x":470,"y":359,"on":false},{"x":486,"y":343,"on":false},{"x":486,"y":320,"on":false},{"x":470,"y":304,"on":false},{"x":448,"y":304,"on":false}]], "references": [], - "instructions": [64,26,94,90,86,82,78,74,70,66,62,58,54,50,46,42,38,34,30,26,22,18,14,10,6,2,12,48,43] + "instructions": "QBpeWlZSTkpGQj46NjIuKiYiHhoWEg4KBgIMMCs=" }, "H22073": { "name": "H22073", "advanceWidth": 500, "contours": [[{"x":41,"y":122,"on":true},{"x":41,"y":540,"on":true},{"x":459,"y":540,"on":true},{"x":459,"y":122,"on":true}],[{"x":96,"y":177,"on":true},{"x":404,"y":177,"on":true},{"x":404,"y":485,"on":true},{"x":96,"y":485,"on":true}]], "references": [], - "instructions": [181,6,4,1,0,2,48,43] + "instructions": "tQYEAQACMCs=" }, "uni25AD": { "name": "uni25AD", "advanceWidth": 500, "contours": [[{"x":41,"y":192,"on":true},{"x":41,"y":471,"on":true},{"x":459,"y":471,"on":true},{"x":459,"y":192,"on":true}],[{"x":96,"y":247,"on":true},{"x":404,"y":247,"on":true},{"x":404,"y":416,"on":true},{"x":96,"y":416,"on":true}]], "references": [], - "instructions": [181,6,4,1,0,2,48,43] + "instructions": "tQYEAQACMCs=" }, "uni25AF": { "name": "uni25AF", "advanceWidth": 500, "contours": [[{"x":41,"y":18,"on":true},{"x":41,"y":645,"on":true},{"x":459,"y":645,"on":true},{"x":459,"y":18,"on":true}],[{"x":96,"y":73,"on":true},{"x":404,"y":73,"on":true},{"x":404,"y":590,"on":true},{"x":96,"y":590,"on":true}]], "references": [], - "instructions": [181,6,4,1,0,2,48,43] + "instructions": "tQYEAQACMCs=" }, "circle": { "name": "circle", "advanceWidth": 500, "contours": [[{"x":41,"y":387,"on":false},{"x":41,"y":276,"on":false},{"x":69,"y":226,"on":true},{"x":97,"y":178,"on":false},{"x":145,"y":151,"on":true},{"x":194,"y":123,"on":false},{"x":306,"y":122,"on":false},{"x":355,"y":151,"on":true},{"x":403,"y":179,"on":false},{"x":431,"y":226,"on":true},{"x":459,"y":275,"on":false},{"x":459,"y":387,"on":false},{"x":431,"y":436,"on":true},{"x":403,"y":484,"on":false},{"x":355,"y":512,"on":true},{"x":306,"y":540,"on":false},{"x":194,"y":540,"on":false},{"x":145,"y":512,"on":true},{"x":97,"y":484,"on":false},{"x":69,"y":436,"on":true}],[{"x":96,"y":290,"on":false},{"x":96,"y":372,"on":false},{"x":117,"y":409,"on":true},{"x":137,"y":444,"on":false},{"x":173,"y":464,"on":true},{"x":209,"y":485,"on":false},{"x":291,"y":485,"on":false},{"x":327,"y":464,"on":true},{"x":362,"y":444,"on":false},{"x":383,"y":409,"on":true},{"x":404,"y":373,"on":false},{"x":404,"y":290,"on":false},{"x":383,"y":254,"on":true},{"x":363,"y":219,"on":false},{"x":291,"y":177,"on":false},{"x":209,"y":177,"on":false},{"x":173,"y":198,"on":true},{"x":138,"y":218,"on":false}]], "references": [], - "instructions": [181,34,25,15,6,2,48,43] + "instructions": "tSIZDwYCMCs=" }, "openbullet": { "name": "openbullet", "advanceWidth": 500, "contours": [[{"x":172,"y":306,"on":false},{"x":172,"y":356,"on":false},{"x":182,"y":374,"on":true},{"x":191,"y":390,"on":false},{"x":207,"y":399,"on":true},{"x":225,"y":409,"on":false},{"x":275,"y":409,"on":false},{"x":293,"y":399,"on":true},{"x":309,"y":390,"on":false},{"x":318,"y":374,"on":true},{"x":328,"y":356,"on":false},{"x":328,"y":306,"on":false},{"x":318,"y":288,"on":true},{"x":309,"y":272,"on":false},{"x":293,"y":264,"on":true},{"x":275,"y":253,"on":false},{"x":225,"y":253,"on":false},{"x":207,"y":264,"on":true},{"x":191,"y":273,"on":false},{"x":182,"y":288,"on":true}],[{"x":201,"y":331,"on":true},{"x":201,"y":301,"on":false},{"x":223,"y":289,"on":true},{"x":234,"y":282,"on":false},{"x":250,"y":282,"on":true},{"x":280,"y":282,"on":false},{"x":293,"y":304,"on":true},{"x":299,"y":315,"on":false},{"x":299,"y":331,"on":true},{"x":299,"y":361,"on":false},{"x":277,"y":374,"on":true},{"x":266,"y":380,"on":false},{"x":250,"y":380,"on":true},{"x":220,"y":380,"on":false},{"x":207,"y":358,"on":true},{"x":201,"y":347,"on":false}]], "references": [], - "instructions": [181,31,23,15,5,2,48,43] + "instructions": "tR8XDwUCMCs=" }, "uni25C7": { "name": "uni25C7", "advanceWidth": 500, "contours": [[{"x":41,"y":331,"on":true},{"x":250,"y":540,"on":true},{"x":459,"y":331,"on":true},{"x":250,"y":122,"on":true}],[{"x":119,"y":331,"on":true},{"x":250,"y":200,"on":true},{"x":381,"y":331,"on":true},{"x":250,"y":463,"on":true}]], "references": [], - "instructions": [181,7,5,3,1,2,48,43] + "instructions": "tQcFAwECMCs=" }, "uni25B4": { "name": "uni25B4", "advanceWidth": 500, "contours": [[{"x":69,"y":174,"on":true},{"x":250,"y":488,"on":true},{"x":431,"y":174,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni25B8": { "name": "uni25B8", "advanceWidth": 500, "contours": [[{"x":93,"y":150,"on":true},{"x":407,"y":331,"on":true},{"x":93,"y":512,"on":true}]], "references": [], - "instructions": [179,2,0,1,48,43] + "instructions": "swIAATAr" }, "uni25BE": { "name": "uni25BE", "advanceWidth": 500, "contours": [[{"x":69,"y":488,"on":true},{"x":431,"y":488,"on":true},{"x":250,"y":174,"on":true}]], "references": [], - "instructions": [179,2,0,1,48,43] + "instructions": "swIAATAr" }, "uni25C2": { "name": "uni25C2", "advanceWidth": 500, "contours": [[{"x":93,"y":331,"on":true},{"x":407,"y":150,"on":true},{"x":407,"y":512,"on":true}]], "references": [], - "instructions": [179,2,1,1,48,43] + "instructions": "swIBATAr" }, "uni25B3": { "name": "uni25B3", "advanceWidth": 500, "contours": [[{"x":9,"y":122,"on":true},{"x":250,"y":540,"on":true},{"x":491,"y":122,"on":true}],[{"x":104,"y":177,"on":true},{"x":396,"y":177,"on":true},{"x":250,"y":430,"on":true}]], "references": [], - "instructions": [181,5,3,1,0,2,48,43] + "instructions": "tQUDAQACMCs=" }, "uni25BD": { "name": "uni25BD", "advanceWidth": 500, "contours": [[{"x":9,"y":540,"on":true},{"x":491,"y":540,"on":true},{"x":250,"y":122,"on":true}],[{"x":104,"y":485,"on":true},{"x":250,"y":232,"on":true},{"x":396,"y":485,"on":true}]], "references": [], - "instructions": [181,4,3,2,0,2,48,43] + "instructions": "tQQDAgACMCs=" }, "uni25C1": { "name": "uni25C1", "advanceWidth": 500, "contours": [[{"x":41,"y":331,"on":true},{"x":459,"y":90,"on":true},{"x":459,"y":573,"on":true}],[{"x":151,"y":331,"on":true},{"x":404,"y":478,"on":true},{"x":404,"y":185,"on":true}]], "references": [], - "instructions": [181,5,4,2,1,2,48,43] + "instructions": "tQUEAgECMCs=" }, "uni25B7": { "name": "uni25B7", "advanceWidth": 500, "contours": [[{"x":41,"y":90,"on":true},{"x":459,"y":331,"on":true},{"x":41,"y":573,"on":true}],[{"x":96,"y":185,"on":true},{"x":96,"y":478,"on":true},{"x":349,"y":331,"on":true}]], "references": [], - "instructions": [181,4,3,2,0,2,48,43] + "instructions": "tQQDAgACMCs=" }, "uni25B5": { "name": "uni25B5", "advanceWidth": 500, "contours": [[{"x":69,"y":174,"on":true},{"x":250,"y":488,"on":true},{"x":431,"y":174,"on":true}],[{"x":164,"y":229,"on":true},{"x":336,"y":229,"on":true},{"x":250,"y":378,"on":true}]], "references": [], - "instructions": [181,5,3,1,0,2,48,43] + "instructions": "tQUDAQACMCs=" }, "uni25BF": { "name": "uni25BF", "advanceWidth": 500, "contours": [[{"x":69,"y":488,"on":true},{"x":431,"y":488,"on":true},{"x":250,"y":174,"on":true}],[{"x":164,"y":433,"on":true},{"x":250,"y":284,"on":true},{"x":336,"y":433,"on":true}]], "references": [], - "instructions": [181,4,3,2,0,2,48,43] + "instructions": "tQQDAgACMCs=" }, "uni25C3": { "name": "uni25C3", "advanceWidth": 500, "contours": [[{"x":93,"y":331,"on":true},{"x":407,"y":150,"on":true},{"x":407,"y":512,"on":true}],[{"x":203,"y":331,"on":true},{"x":352,"y":417,"on":true},{"x":352,"y":245,"on":true}]], "references": [], - "instructions": [181,5,4,2,1,2,48,43] + "instructions": "tQUEAgECMCs=" }, "uni25B9": { "name": "uni25B9", "advanceWidth": 500, "contours": [[{"x":93,"y":150,"on":true},{"x":407,"y":331,"on":true},{"x":93,"y":512,"on":true}],[{"x":148,"y":245,"on":true},{"x":148,"y":417,"on":true},{"x":297,"y":331,"on":true}]], "references": [], - "instructions": [181,4,3,2,0,2,48,43] + "instructions": "tQQDAgACMCs=" }, "uniE09E": { "name": "uniE09E", "advanceWidth": 500, "contours": [[{"x":-15,"y":336,"on":false},{"x":-15,"y":194,"on":false},{"x":21,"y":132,"on":true},{"x":56,"y":71,"on":false},{"x":117,"y":36,"on":true},{"x":179,"y":0,"on":false},{"x":321,"y":0,"on":false},{"x":383,"y":36,"on":true},{"x":444,"y":71,"on":false},{"x":479,"y":132,"on":true},{"x":515,"y":194,"on":false},{"x":515,"y":336,"on":false},{"x":479,"y":398,"on":true},{"x":444,"y":459,"on":false},{"x":383,"y":494,"on":true},{"x":321,"y":530,"on":false},{"x":179,"y":530,"on":false},{"x":117,"y":494,"on":true},{"x":56,"y":459,"on":false},{"x":21,"y":398,"on":true}],[{"x":38,"y":209,"on":false},{"x":38,"y":321,"on":false},{"x":67,"y":371,"on":true},{"x":95,"y":420,"on":false},{"x":144,"y":448,"on":true},{"x":194,"y":477,"on":false},{"x":306,"y":477,"on":false},{"x":356,"y":448,"on":true},{"x":405,"y":420,"on":false},{"x":433,"y":371,"on":true},{"x":462,"y":321,"on":false},{"x":462,"y":209,"on":false},{"x":433,"y":159,"on":true},{"x":405,"y":110,"on":false},{"x":356,"y":82,"on":true},{"x":306,"y":53,"on":false},{"x":194,"y":53,"on":false},{"x":144,"y":82,"on":true},{"x":95,"y":110,"on":false},{"x":67,"y":159,"on":true}]], "references": [], - "instructions": [181,35,25,15,5,2,48,43] + "instructions": "tSMZDwUCMCs=" }, "block": { "name": "block", "advanceWidth": 500, "contours": [[{"x":0,"y":-273,"on":true},{"x":0,"y":977,"on":true},{"x":500,"y":977,"on":true},{"x":500,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "ltshade": { "name": "ltshade", "advanceWidth": 500, "contours": [[{"x":0,"y":-38,"on":true},{"x":0,"y":40,"on":true},{"x":83,"y":40,"on":true},{"x":83,"y":-38,"on":true}],[{"x":0,"y":274,"on":true},{"x":0,"y":352,"on":true},{"x":83,"y":352,"on":true},{"x":83,"y":274,"on":true}],[{"x":0,"y":587,"on":true},{"x":0,"y":665,"on":true},{"x":83,"y":665,"on":true},{"x":83,"y":587,"on":true}],[{"x":0,"y":899,"on":true},{"x":0,"y":977,"on":true},{"x":83,"y":977,"on":true},{"x":83,"y":899,"on":true}],[{"x":83,"y":-116,"on":true},{"x":167,"y":-116,"on":true},{"x":167,"y":-194,"on":true},{"x":83,"y":-194,"on":true}],[{"x":83,"y":118,"on":true},{"x":83,"y":196,"on":true},{"x":167,"y":196,"on":true},{"x":167,"y":118,"on":true}],[{"x":83,"y":431,"on":true},{"x":83,"y":509,"on":true},{"x":167,"y":509,"on":true},{"x":167,"y":431,"on":true}],[{"x":83,"y":743,"on":true},{"x":83,"y":821,"on":true},{"x":167,"y":821,"on":true},{"x":167,"y":743,"on":true}],[{"x":167,"y":-38,"on":true},{"x":167,"y":40,"on":true},{"x":250,"y":40,"on":true},{"x":250,"y":-38,"on":true}],[{"x":167,"y":274,"on":true},{"x":167,"y":352,"on":true},{"x":250,"y":352,"on":true},{"x":250,"y":274,"on":true}],[{"x":167,"y":587,"on":true},{"x":167,"y":665,"on":true},{"x":250,"y":665,"on":true},{"x":250,"y":587,"on":true}],[{"x":167,"y":899,"on":true},{"x":167,"y":977,"on":true},{"x":250,"y":977,"on":true},{"x":250,"y":899,"on":true}],[{"x":250,"y":-116,"on":true},{"x":333,"y":-116,"on":true},{"x":333,"y":-194,"on":true},{"x":250,"y":-194,"on":true}],[{"x":250,"y":118,"on":true},{"x":250,"y":196,"on":true},{"x":333,"y":196,"on":true},{"x":333,"y":118,"on":true}],[{"x":250,"y":431,"on":true},{"x":250,"y":509,"on":true},{"x":333,"y":509,"on":true},{"x":333,"y":431,"on":true}],[{"x":250,"y":743,"on":true},{"x":250,"y":821,"on":true},{"x":333,"y":821,"on":true},{"x":333,"y":743,"on":true}],[{"x":333,"y":-38,"on":true},{"x":333,"y":40,"on":true},{"x":417,"y":40,"on":true},{"x":417,"y":-38,"on":true}],[{"x":333,"y":274,"on":true},{"x":333,"y":352,"on":true},{"x":417,"y":352,"on":true},{"x":417,"y":274,"on":true}],[{"x":333,"y":587,"on":true},{"x":333,"y":665,"on":true},{"x":417,"y":665,"on":true},{"x":417,"y":587,"on":true}],[{"x":333,"y":899,"on":true},{"x":333,"y":977,"on":true},{"x":417,"y":977,"on":true},{"x":417,"y":899,"on":true}],[{"x":417,"y":-116,"on":true},{"x":500,"y":-116,"on":true},{"x":500,"y":-194,"on":true},{"x":417,"y":-194,"on":true}],[{"x":417,"y":118,"on":true},{"x":417,"y":196,"on":true},{"x":500,"y":196,"on":true},{"x":500,"y":118,"on":true}],[{"x":417,"y":431,"on":true},{"x":417,"y":509,"on":true},{"x":500,"y":509,"on":true},{"x":500,"y":431,"on":true}],[{"x":417,"y":743,"on":true},{"x":417,"y":821,"on":true},{"x":500,"y":821,"on":true},{"x":500,"y":743,"on":true}]], "references": [], - "instructions": [64,50,93,92,89,88,85,84,82,80,77,76,73,72,69,68,65,64,61,60,57,56,53,52,50,48,45,44,41,40,37,36,33,32,29,28,25,24,21,20,18,16,13,12,9,8,5,4,1,0,24,48,43] + "instructions": "QDJdXFlYVVRSUE1MSUhFREFAPTw5ODU0MjAtLCkoJSQhIB0cGRgVFBIQDQwJCAUEAQAYMCs=" }, "shade": { "name": "shade", "advanceWidth": 500, "contours": [[{"x":0,"y":-38,"on":true},{"x":0,"y":40,"on":true},{"x":83,"y":40,"on":true},{"x":83,"y":-38,"on":true},{"x":167,"y":-38,"on":true},{"x":167,"y":-116,"on":true},{"x":250,"y":-116,"on":true},{"x":250,"y":-194,"on":true},{"x":333,"y":-194,"on":true},{"x":333,"y":-273,"on":true},{"x":250,"y":-273,"on":true},{"x":250,"y":-194,"on":true},{"x":167,"y":-194,"on":true},{"x":167,"y":-116,"on":true},{"x":83,"y":-116,"on":true},{"x":83,"y":-38,"on":true}],[{"x":0,"y":-116,"on":true},{"x":83,"y":-116,"on":true},{"x":83,"y":-194,"on":true},{"x":167,"y":-194,"on":true},{"x":167,"y":-273,"on":true},{"x":83,"y":-273,"on":true},{"x":83,"y":-194,"on":true},{"x":0,"y":-194,"on":true}],[{"x":0,"y":118,"on":true},{"x":0,"y":196,"on":true},{"x":83,"y":196,"on":true},{"x":83,"y":118,"on":true},{"x":167,"y":118,"on":true},{"x":167,"y":40,"on":true},{"x":250,"y":40,"on":true},{"x":250,"y":-38,"on":true},{"x":333,"y":-38,"on":true},{"x":333,"y":-116,"on":true},{"x":417,"y":-116,"on":true},{"x":417,"y":-194,"on":true},{"x":500,"y":-194,"on":true},{"x":500,"y":-273,"on":true},{"x":417,"y":-273,"on":true},{"x":417,"y":-194,"on":true},{"x":333,"y":-194,"on":true},{"x":333,"y":-116,"on":true},{"x":250,"y":-116,"on":true},{"x":250,"y":-38,"on":true},{"x":167,"y":-38,"on":true},{"x":167,"y":40,"on":true},{"x":83,"y":40,"on":true},{"x":83,"y":118,"on":true}],[{"x":0,"y":274,"on":true},{"x":0,"y":352,"on":true},{"x":83,"y":352,"on":true},{"x":83,"y":274,"on":true},{"x":167,"y":274,"on":true},{"x":167,"y":196,"on":true},{"x":250,"y":196,"on":true},{"x":250,"y":118,"on":true},{"x":333,"y":118,"on":true},{"x":333,"y":40,"on":true},{"x":417,"y":40,"on":true},{"x":417,"y":-38,"on":true},{"x":500,"y":-38,"on":true},{"x":500,"y":-116,"on":true},{"x":417,"y":-116,"on":true},{"x":417,"y":-38,"on":true},{"x":333,"y":-38,"on":true},{"x":333,"y":40,"on":true},{"x":250,"y":40,"on":true},{"x":250,"y":118,"on":true},{"x":167,"y":118,"on":true},{"x":167,"y":196,"on":true},{"x":83,"y":196,"on":true},{"x":83,"y":274,"on":true}],[{"x":0,"y":431,"on":true},{"x":0,"y":509,"on":true},{"x":83,"y":509,"on":true},{"x":83,"y":431,"on":true},{"x":167,"y":431,"on":true},{"x":167,"y":352,"on":true},{"x":250,"y":352,"on":true},{"x":250,"y":274,"on":true},{"x":333,"y":274,"on":true},{"x":333,"y":196,"on":true},{"x":417,"y":196,"on":true},{"x":417,"y":118,"on":true},{"x":500,"y":118,"on":true},{"x":500,"y":40,"on":true},{"x":417,"y":40,"on":true},{"x":417,"y":118,"on":true},{"x":333,"y":118,"on":true},{"x":333,"y":196,"on":true},{"x":250,"y":196,"on":true},{"x":250,"y":274,"on":true},{"x":167,"y":274,"on":true},{"x":167,"y":352,"on":true},{"x":83,"y":352,"on":true},{"x":83,"y":431,"on":true}],[{"x":0,"y":587,"on":true},{"x":0,"y":665,"on":true},{"x":83,"y":665,"on":true},{"x":83,"y":587,"on":true},{"x":167,"y":587,"on":true},{"x":167,"y":509,"on":true},{"x":250,"y":509,"on":true},{"x":250,"y":431,"on":true},{"x":333,"y":431,"on":true},{"x":333,"y":352,"on":true},{"x":417,"y":352,"on":true},{"x":417,"y":274,"on":true},{"x":500,"y":274,"on":true},{"x":500,"y":196,"on":true},{"x":417,"y":196,"on":true},{"x":417,"y":274,"on":true},{"x":333,"y":274,"on":true},{"x":333,"y":352,"on":true},{"x":250,"y":352,"on":true},{"x":250,"y":431,"on":true},{"x":167,"y":431,"on":true},{"x":167,"y":509,"on":true},{"x":83,"y":509,"on":true},{"x":83,"y":587,"on":true}],[{"x":0,"y":743,"on":true},{"x":0,"y":821,"on":true},{"x":83,"y":821,"on":true},{"x":83,"y":743,"on":true},{"x":167,"y":743,"on":true},{"x":167,"y":665,"on":true},{"x":250,"y":665,"on":true},{"x":250,"y":587,"on":true},{"x":333,"y":587,"on":true},{"x":333,"y":509,"on":true},{"x":417,"y":509,"on":true},{"x":417,"y":431,"on":true},{"x":500,"y":431,"on":true},{"x":500,"y":352,"on":true},{"x":417,"y":352,"on":true},{"x":417,"y":431,"on":true},{"x":333,"y":431,"on":true},{"x":333,"y":509,"on":true},{"x":250,"y":509,"on":true},{"x":250,"y":587,"on":true},{"x":167,"y":587,"on":true},{"x":167,"y":665,"on":true},{"x":83,"y":665,"on":true},{"x":83,"y":743,"on":true}],[{"x":0,"y":899,"on":true},{"x":0,"y":977,"on":true},{"x":83,"y":977,"on":true},{"x":83,"y":899,"on":true},{"x":167,"y":899,"on":true},{"x":167,"y":977,"on":true},{"x":250,"y":977,"on":true},{"x":250,"y":899,"on":true},{"x":333,"y":899,"on":true},{"x":333,"y":977,"on":true},{"x":417,"y":977,"on":true},{"x":417,"y":899,"on":true},{"x":500,"y":899,"on":true},{"x":500,"y":821,"on":true},{"x":417,"y":821,"on":true},{"x":417,"y":899,"on":true},{"x":333,"y":899,"on":true},{"x":333,"y":821,"on":true},{"x":417,"y":821,"on":true},{"x":417,"y":743,"on":true},{"x":500,"y":743,"on":true},{"x":500,"y":665,"on":true},{"x":417,"y":665,"on":true},{"x":417,"y":743,"on":true},{"x":333,"y":743,"on":true},{"x":333,"y":821,"on":true},{"x":250,"y":821,"on":true},{"x":250,"y":899,"on":true},{"x":167,"y":899,"on":true},{"x":167,"y":821,"on":true},{"x":250,"y":821,"on":true},{"x":250,"y":743,"on":true},{"x":333,"y":743,"on":true},{"x":333,"y":665,"on":true},{"x":417,"y":665,"on":true},{"x":417,"y":587,"on":true},{"x":500,"y":587,"on":true},{"x":500,"y":509,"on":true},{"x":417,"y":509,"on":true},{"x":417,"y":587,"on":true},{"x":333,"y":587,"on":true},{"x":333,"y":665,"on":true},{"x":250,"y":665,"on":true},{"x":250,"y":743,"on":true},{"x":167,"y":743,"on":true},{"x":167,"y":821,"on":true},{"x":83,"y":821,"on":true},{"x":83,"y":899,"on":true}]], "references": [], - "instructions": [64,18,181,145,133,121,109,97,85,73,61,49,37,25,20,16,9,1,8,48,43] + "instructions": "QBK1kYV5bWFVST0xJRkUEAkBCDAr" }, "dkshade": { "name": "dkshade", "advanceWidth": 500, "contours": [[{"x":0,"y":40,"on":true},{"x":83,"y":40,"on":true},{"x":83,"y":118,"on":true},{"x":0,"y":118,"on":true},{"x":0,"y":352,"on":true},{"x":83,"y":352,"on":true},{"x":83,"y":431,"on":true},{"x":0,"y":431,"on":true},{"x":0,"y":665,"on":true},{"x":83,"y":665,"on":true},{"x":83,"y":743,"on":true},{"x":0,"y":743,"on":true},{"x":0,"y":977,"on":true},{"x":500,"y":977,"on":true},{"x":500,"y":899,"on":true},{"x":417,"y":899,"on":true},{"x":417,"y":821,"on":true},{"x":500,"y":821,"on":true},{"x":500,"y":587,"on":true},{"x":417,"y":587,"on":true},{"x":417,"y":509,"on":true},{"x":500,"y":509,"on":true},{"x":500,"y":274,"on":true},{"x":417,"y":274,"on":true},{"x":417,"y":196,"on":true},{"x":500,"y":196,"on":true},{"x":500,"y":-38,"on":true},{"x":417,"y":-38,"on":true},{"x":417,"y":-116,"on":true},{"x":500,"y":-116,"on":true},{"x":500,"y":-273,"on":true},{"x":417,"y":-273,"on":true},{"x":417,"y":-194,"on":true},{"x":333,"y":-194,"on":true},{"x":333,"y":-273,"on":true},{"x":250,"y":-273,"on":true},{"x":250,"y":-194,"on":true},{"x":167,"y":-194,"on":true},{"x":167,"y":-273,"on":true},{"x":83,"y":-273,"on":true},{"x":83,"y":-194,"on":true},{"x":0,"y":-194,"on":true}],[{"x":83,"y":-38,"on":true},{"x":83,"y":-116,"on":true},{"x":167,"y":-116,"on":true},{"x":167,"y":-38,"on":true}],[{"x":83,"y":196,"on":true},{"x":167,"y":196,"on":true},{"x":167,"y":274,"on":true},{"x":83,"y":274,"on":true}],[{"x":83,"y":509,"on":true},{"x":167,"y":509,"on":true},{"x":167,"y":587,"on":true},{"x":83,"y":587,"on":true}],[{"x":83,"y":821,"on":true},{"x":167,"y":821,"on":true},{"x":167,"y":899,"on":true},{"x":83,"y":899,"on":true}],[{"x":167,"y":40,"on":true},{"x":250,"y":40,"on":true},{"x":250,"y":118,"on":true},{"x":167,"y":118,"on":true}],[{"x":167,"y":352,"on":true},{"x":250,"y":352,"on":true},{"x":250,"y":431,"on":true},{"x":167,"y":431,"on":true}],[{"x":167,"y":665,"on":true},{"x":250,"y":665,"on":true},{"x":250,"y":743,"on":true},{"x":167,"y":743,"on":true}],[{"x":250,"y":-38,"on":true},{"x":250,"y":-116,"on":true},{"x":333,"y":-116,"on":true},{"x":333,"y":-38,"on":true}],[{"x":250,"y":196,"on":true},{"x":333,"y":196,"on":true},{"x":333,"y":274,"on":true},{"x":250,"y":274,"on":true}],[{"x":250,"y":509,"on":true},{"x":333,"y":509,"on":true},{"x":333,"y":587,"on":true},{"x":250,"y":587,"on":true}],[{"x":250,"y":821,"on":true},{"x":333,"y":821,"on":true},{"x":333,"y":899,"on":true},{"x":250,"y":899,"on":true}],[{"x":333,"y":40,"on":true},{"x":417,"y":40,"on":true},{"x":417,"y":118,"on":true},{"x":333,"y":118,"on":true}],[{"x":333,"y":352,"on":true},{"x":417,"y":352,"on":true},{"x":417,"y":431,"on":true},{"x":333,"y":431,"on":true}],[{"x":333,"y":665,"on":true},{"x":417,"y":665,"on":true},{"x":417,"y":743,"on":true},{"x":333,"y":743,"on":true}]], "references": [], - "instructions": [64,32,96,94,92,90,88,86,84,82,80,78,76,74,71,70,68,66,64,62,60,58,56,54,52,50,48,46,43,42,30,12,15,48,43] + "instructions": "QCBgXlxaWFZUUlBOTEpHRkRCQD48Ojg2NDIwLisqHgwPMCs=" }, "uni2581": { "name": "uni2581", "advanceWidth": 500, "contours": [[{"x":0,"y":-116,"on":true},{"x":500,"y":-116,"on":true},{"x":500,"y":-273,"on":true},{"x":0,"y":-273,"on":true}]], "references": [], - "instructions": [179,2,0,1,48,43] + "instructions": "swIAATAr" }, "uni258F": { "name": "uni258F", "advanceWidth": 500, "contours": [[{"x":0,"y":-273,"on":true},{"x":0,"y":977,"on":true},{"x":62,"y":977,"on":true},{"x":62,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni2582": { "name": "uni2582", "advanceWidth": 500, "contours": [[{"x":0,"y":40,"on":true},{"x":500,"y":40,"on":true},{"x":500,"y":-273,"on":true},{"x":0,"y":-273,"on":true}]], "references": [], - "instructions": [179,2,0,1,48,43] + "instructions": "swIAATAr" }, "uni258E": { "name": "uni258E", "advanceWidth": 500, "contours": [[{"x":0,"y":-273,"on":true},{"x":0,"y":977,"on":true},{"x":125,"y":977,"on":true},{"x":125,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni2583": { "name": "uni2583", "advanceWidth": 500, "contours": [[{"x":0,"y":196,"on":true},{"x":500,"y":196,"on":true},{"x":500,"y":-273,"on":true},{"x":0,"y":-273,"on":true}]], "references": [], - "instructions": [179,2,0,1,48,43] + "instructions": "swIAATAr" }, "uni258D": { "name": "uni258D", "advanceWidth": 500, "contours": [[{"x":0,"y":-273,"on":true},{"x":0,"y":977,"on":true},{"x":188,"y":977,"on":true},{"x":188,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "dnblock": { "name": "dnblock", "advanceWidth": 500, "contours": [[{"x":0,"y":-273,"on":true},{"x":0,"y":352,"on":true},{"x":500,"y":352,"on":true},{"x":500,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "lfblock": { "name": "lfblock", "advanceWidth": 500, "contours": [[{"x":0,"y":-273,"on":true},{"x":0,"y":977,"on":true},{"x":250,"y":977,"on":true},{"x":250,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni2585": { "name": "uni2585", "advanceWidth": 500, "contours": [[{"x":0,"y":-273,"on":true},{"x":0,"y":509,"on":true},{"x":500,"y":509,"on":true},{"x":500,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni258B": { "name": "uni258B", "advanceWidth": 500, "contours": [[{"x":0,"y":-273,"on":true},{"x":0,"y":977,"on":true},{"x":312,"y":977,"on":true},{"x":312,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni2586": { "name": "uni2586", "advanceWidth": 500, "contours": [[{"x":0,"y":-273,"on":true},{"x":0,"y":665,"on":true},{"x":500,"y":665,"on":true},{"x":500,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni258A": { "name": "uni258A", "advanceWidth": 500, "contours": [[{"x":0,"y":-273,"on":true},{"x":0,"y":977,"on":true},{"x":375,"y":977,"on":true},{"x":375,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni2587": { "name": "uni2587", "advanceWidth": 500, "contours": [[{"x":0,"y":-273,"on":true},{"x":0,"y":821,"on":true},{"x":500,"y":821,"on":true},{"x":500,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni2589": { "name": "uni2589", "advanceWidth": 500, "contours": [[{"x":0,"y":-273,"on":true},{"x":0,"y":977,"on":true},{"x":438,"y":977,"on":true},{"x":438,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "upblock": { "name": "upblock", "advanceWidth": 500, "contours": [], "references": [{"glyph":"dnblock","x":0,"y":625,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,2,113,176,51,43] + "instructions": "sQABuAJxsDMr" }, "rtblock": { "name": "rtblock", "advanceWidth": 500, "contours": [], "references": [{"glyph":"lfblock","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "SF100000": { "name": "SF100000", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2574","x":250,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2574","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2501": { "name": "uni2501", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2578","x":250,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2578","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "SF110000": { "name": "SF110000", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2575","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2575","x":0,"y":-625,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,253,143,176,51,43] + "instructions": "sQEBuP2PsDMr" }, "uni2503": { "name": "uni2503", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2579","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2579","x":0,"y":-625,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,253,143,176,51,43] + "instructions": "sQEBuP2PsDMr" }, "uni2574": { "name": "uni2574", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":250,"y":388,"on":true},{"x":250,"y":316,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni2575": { "name": "uni2575", "advanceWidth": 500, "contours": [[{"x":210,"y":352,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":352,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni2576": { "name": "uni2576", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2574","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2577": { "name": "uni2577", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2575","x":0,"y":-625,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,253,143,176,51,43] + "instructions": "sQABuP2PsDMr" }, "uni2578": { "name": "uni2578", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":250,"y":424,"on":true},{"x":250,"y":280,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni2579": { "name": "uni2579", "advanceWidth": 500, "contours": [[{"x":170,"y":352,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":352,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni257A": { "name": "uni257A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2578","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni257B": { "name": "uni257B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2579","x":0,"y":-625,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,253,143,176,51,43] + "instructions": "sQABuP2PsDMr" }, "uni257C": { "name": "uni257C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2578","x":250,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2574","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni257D": { "name": "uni257D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2579","x":0,"y":-625,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2575","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,253,143,176,51,43] + "instructions": "sQABuP2PsDMr" }, "uni257E": { "name": "uni257E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2578","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2574","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni257F": { "name": "uni257F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2579","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2575","x":0,"y":-625,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,253,143,176,51,43] + "instructions": "sQEBuP2PsDMr" }, "SF430000": { "name": "SF430000", "advanceWidth": 500, "contours": [[{"x":0,"y":244,"on":true},{"x":0,"y":316,"on":true},{"x":500,"y":316,"on":true},{"x":500,"y":244,"on":true}],[{"x":0,"y":388,"on":true},{"x":0,"y":460,"on":true},{"x":500,"y":460,"on":true},{"x":500,"y":388,"on":true}]], "references": [], - "instructions": [181,5,4,1,0,2,48,43] + "instructions": "tQUEAQACMCs=" }, "SF240000": { "name": "SF240000", "advanceWidth": 500, "contours": [[{"x":138,"y":-273,"on":true},{"x":138,"y":977,"on":true},{"x":218,"y":977,"on":true},{"x":218,"y":-273,"on":true}],[{"x":282,"y":-273,"on":true},{"x":282,"y":977,"on":true},{"x":362,"y":977,"on":true},{"x":362,"y":-273,"on":true}]], "references": [], - "instructions": [181,5,4,1,0,2,48,43] + "instructions": "tQUEAQACMCs=" }, "SF010000": { "name": "SF010000", "advanceWidth": 500, "contours": [[{"x":210,"y":-273,"on":true},{"x":210,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":290,"y":316,"on":true},{"x":290,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni250D": { "name": "uni250D", "advanceWidth": 500, "contours": [[{"x":210,"y":-273,"on":true},{"x":210,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true},{"x":290,"y":280,"on":true},{"x":290,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni250E": { "name": "uni250E", "advanceWidth": 500, "contours": [[{"x":170,"y":-273,"on":true},{"x":170,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":330,"y":316,"on":true},{"x":330,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni250F": { "name": "uni250F", "advanceWidth": 500, "contours": [[{"x":170,"y":-273,"on":true},{"x":170,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true},{"x":330,"y":280,"on":true},{"x":330,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "SF030000": { "name": "SF030000", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":290,"y":388,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":316,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "uni2511": { "name": "uni2511", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":290,"y":424,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":280,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "uni2512": { "name": "uni2512", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":330,"y":388,"on":true},{"x":330,"y":-273,"on":true},{"x":170,"y":-273,"on":true},{"x":170,"y":316,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "uni2513": { "name": "uni2513", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":330,"y":424,"on":true},{"x":330,"y":-273,"on":true},{"x":170,"y":-273,"on":true},{"x":170,"y":280,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "SF020000": { "name": "SF020000", "advanceWidth": 500, "contours": [[{"x":210,"y":316,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni2515": { "name": "uni2515", "advanceWidth": 500, "contours": [[{"x":210,"y":280,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni2516": { "name": "uni2516", "advanceWidth": 500, "contours": [[{"x":170,"y":316,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni2517": { "name": "uni2517", "advanceWidth": 500, "contours": [[{"x":170,"y":280,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "SF040000": { "name": "SF040000", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":210,"y":388,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":316,"on":true}]], "references": [], - "instructions": [179,3,0,1,48,43] + "instructions": "swMAATAr" }, "uni2519": { "name": "uni2519", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":210,"y":424,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":280,"on":true}]], "references": [], - "instructions": [179,3,0,1,48,43] + "instructions": "swMAATAr" }, "uni251A": { "name": "uni251A", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":170,"y":388,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":316,"on":true}]], "references": [], - "instructions": [179,3,0,1,48,43] + "instructions": "swMAATAr" }, "uni251B": { "name": "uni251B", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":170,"y":424,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":280,"on":true}]], "references": [], - "instructions": [179,3,0,1,48,43] + "instructions": "swMAATAr" }, "SF080000": { "name": "SF080000", "advanceWidth": 500, "contours": [[{"x":210,"y":-273,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":290,"y":316,"on":true},{"x":290,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni251D": { "name": "uni251D", "advanceWidth": 500, "contours": [[{"x":210,"y":-273,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true},{"x":290,"y":280,"on":true},{"x":290,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni251E": { "name": "uni251E", "advanceWidth": 500, "contours": [[{"x":170,"y":316,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":290,"y":316,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":316,"on":true}]], "references": [], - "instructions": [179,7,1,1,48,43] + "instructions": "swcBATAr" }, "uni251F": { "name": "uni251F", "advanceWidth": 500, "contours": [[{"x":170,"y":-273,"on":true},{"x":170,"y":388,"on":true},{"x":210,"y":388,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":330,"y":316,"on":true},{"x":330,"y":-273,"on":true}]], "references": [], - "instructions": [179,3,0,1,48,43] + "instructions": "swMAATAr" }, "uni2520": { "name": "uni2520", "advanceWidth": 500, "contours": [[{"x":170,"y":-273,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":330,"y":316,"on":true},{"x":330,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni2521": { "name": "uni2521", "advanceWidth": 500, "contours": [[{"x":170,"y":280,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true},{"x":290,"y":280,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":280,"on":true}]], "references": [], - "instructions": [179,7,1,1,48,43] + "instructions": "swcBATAr" }, "uni2522": { "name": "uni2522", "advanceWidth": 500, "contours": [[{"x":170,"y":-273,"on":true},{"x":170,"y":424,"on":true},{"x":210,"y":424,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true},{"x":330,"y":280,"on":true},{"x":330,"y":-273,"on":true}]], "references": [], - "instructions": [179,3,0,1,48,43] + "instructions": "swMAATAr" }, "uni2523": { "name": "uni2523", "advanceWidth": 500, "contours": [[{"x":170,"y":-273,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true},{"x":330,"y":280,"on":true},{"x":330,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "SF090000": { "name": "SF090000", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":210,"y":388,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":316,"on":true}]], "references": [], - "instructions": [179,5,3,1,48,43] + "instructions": "swUDATAr" }, "uni2525": { "name": "uni2525", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":210,"y":424,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":280,"on":true}]], "references": [], - "instructions": [179,5,3,1,48,43] + "instructions": "swUDATAr" }, "uni2526": { "name": "uni2526", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":170,"y":388,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":316,"on":true},{"x":290,"y":316,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":316,"on":true}]], "references": [], - "instructions": [179,7,3,1,48,43] + "instructions": "swcDATAr" }, "uni2527": { "name": "uni2527", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":210,"y":388,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":388,"on":true},{"x":330,"y":388,"on":true},{"x":330,"y":-273,"on":true},{"x":170,"y":-273,"on":true},{"x":170,"y":316,"on":true}]], "references": [], - "instructions": [179,7,3,1,48,43] + "instructions": "swcDATAr" }, "uni2528": { "name": "uni2528", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":170,"y":388,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":-273,"on":true},{"x":170,"y":-273,"on":true},{"x":170,"y":316,"on":true}]], "references": [], - "instructions": [179,5,3,1,48,43] + "instructions": "swUDATAr" }, "uni2529": { "name": "uni2529", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":170,"y":424,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":280,"on":true},{"x":290,"y":280,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":280,"on":true}]], "references": [], - "instructions": [179,7,3,1,48,43] + "instructions": "swcDATAr" }, "uni252A": { "name": "uni252A", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":210,"y":424,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":424,"on":true},{"x":330,"y":424,"on":true},{"x":330,"y":-273,"on":true},{"x":170,"y":-273,"on":true},{"x":170,"y":280,"on":true}]], "references": [], - "instructions": [179,7,3,1,48,43] + "instructions": "swcDATAr" }, "uni252B": { "name": "uni252B", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":170,"y":424,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":-273,"on":true},{"x":170,"y":-273,"on":true},{"x":170,"y":280,"on":true}]], "references": [], - "instructions": [179,5,3,1,48,43] + "instructions": "swUDATAr" }, "SF060000": { "name": "SF060000", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":290,"y":316,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":316,"on":true}]], "references": [], - "instructions": [179,5,1,1,48,43] + "instructions": "swUBATAr" }, "uni252D": { "name": "uni252D", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":290,"y":424,"on":true},{"x":290,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":290,"y":316,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":280,"on":true}]], "references": [], - "instructions": [179,7,1,1,48,43] + "instructions": "swcBATAr" }, "uni252E": { "name": "uni252E", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":210,"y":388,"on":true},{"x":210,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true},{"x":290,"y":280,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":316,"on":true}]], "references": [], - "instructions": [179,7,3,1,48,43] + "instructions": "swcDATAr" }, "uni252F": { "name": "uni252F", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true},{"x":290,"y":280,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":280,"on":true}]], "references": [], - "instructions": [179,5,1,1,48,43] + "instructions": "swUBATAr" }, "uni2530": { "name": "uni2530", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":330,"y":316,"on":true},{"x":330,"y":-273,"on":true},{"x":170,"y":-273,"on":true},{"x":170,"y":316,"on":true}]], "references": [], - "instructions": [179,5,1,1,48,43] + "instructions": "swUBATAr" }, "uni2531": { "name": "uni2531", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":330,"y":424,"on":true},{"x":330,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":330,"y":316,"on":true},{"x":330,"y":-273,"on":true},{"x":170,"y":-273,"on":true},{"x":170,"y":280,"on":true}]], "references": [], - "instructions": [179,7,1,1,48,43] + "instructions": "swcBATAr" }, "uni2532": { "name": "uni2532", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":170,"y":388,"on":true},{"x":170,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true},{"x":330,"y":280,"on":true},{"x":330,"y":-273,"on":true},{"x":170,"y":-273,"on":true},{"x":170,"y":316,"on":true}]], "references": [], - "instructions": [179,7,3,1,48,43] + "instructions": "swcDATAr" }, "uni2533": { "name": "uni2533", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true},{"x":330,"y":280,"on":true},{"x":330,"y":-273,"on":true},{"x":170,"y":-273,"on":true},{"x":170,"y":280,"on":true}]], "references": [], - "instructions": [179,5,1,1,48,43] + "instructions": "swUBATAr" }, "SF070000": { "name": "SF070000", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":210,"y":388,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true}]], "references": [], - "instructions": [179,3,0,1,48,43] + "instructions": "swMAATAr" }, "uni2535": { "name": "uni2535", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":210,"y":424,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":290,"y":316,"on":true},{"x":290,"y":280,"on":true}]], "references": [], - "instructions": [179,3,0,1,48,43] + "instructions": "swMAATAr" }, "uni2536": { "name": "uni2536", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":210,"y":388,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true},{"x":210,"y":280,"on":true},{"x":210,"y":316,"on":true}]], "references": [], - "instructions": [179,7,3,1,48,43] + "instructions": "swcDATAr" }, "uni2537": { "name": "uni2537", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":210,"y":424,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true}]], "references": [], - "instructions": [179,3,0,1,48,43] + "instructions": "swMAATAr" }, "uni2538": { "name": "uni2538", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":170,"y":388,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true}]], "references": [], - "instructions": [179,3,0,1,48,43] + "instructions": "swMAATAr" }, "uni2539": { "name": "uni2539", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":170,"y":424,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":330,"y":316,"on":true},{"x":330,"y":280,"on":true}]], "references": [], - "instructions": [179,3,0,1,48,43] + "instructions": "swMAATAr" }, "uni253A": { "name": "uni253A", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":170,"y":388,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true},{"x":170,"y":280,"on":true},{"x":170,"y":316,"on":true}]], "references": [], - "instructions": [179,7,3,1,48,43] + "instructions": "swcDATAr" }, "uni253B": { "name": "uni253B", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":170,"y":424,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true}]], "references": [], - "instructions": [179,3,0,1,48,43] + "instructions": "swMAATAr" }, "SF050000": { "name": "SF050000", "advanceWidth": 500, "contours": [], "references": [{"glyph":"SF040000","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"SF010000","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni253D": { "name": "uni253D", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":210,"y":424,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":290,"y":316,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":280,"on":true}]], "references": [], - "instructions": [179,9,3,1,48,43] + "instructions": "swkDATAr" }, "uni253E": { "name": "uni253E", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":210,"y":388,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true},{"x":290,"y":280,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":316,"on":true}]], "references": [], - "instructions": [179,9,3,1,48,43] + "instructions": "swkDATAr" }, "uni253F": { "name": "uni253F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2519","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni250D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2540": { "name": "uni2540", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":170,"y":388,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":290,"y":316,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":316,"on":true}]], "references": [], - "instructions": [179,9,3,1,48,43] + "instructions": "swkDATAr" }, "uni2541": { "name": "uni2541", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":210,"y":388,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":330,"y":316,"on":true},{"x":330,"y":-273,"on":true},{"x":170,"y":-273,"on":true},{"x":170,"y":316,"on":true}]], "references": [], - "instructions": [179,9,3,1,48,43] + "instructions": "swkDATAr" }, "uni2542": { "name": "uni2542", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni251A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni250E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2543": { "name": "uni2543", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":170,"y":424,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":330,"y":316,"on":true},{"x":330,"y":280,"on":true},{"x":290,"y":280,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":280,"on":true}]], "references": [], - "instructions": [179,11,3,1,48,43] + "instructions": "swsDATAr" }, "uni2544": { "name": "uni2544", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":170,"y":388,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true},{"x":290,"y":280,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":280,"on":true},{"x":170,"y":280,"on":true},{"x":170,"y":316,"on":true}]], "references": [], - "instructions": [179,9,3,1,48,43] + "instructions": "swkDATAr" }, "uni2545": { "name": "uni2545", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":210,"y":424,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":424,"on":true},{"x":330,"y":424,"on":true},{"x":330,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":330,"y":316,"on":true},{"x":330,"y":-273,"on":true},{"x":170,"y":-273,"on":true},{"x":170,"y":280,"on":true}]], "references": [], - "instructions": [179,11,3,1,48,43] + "instructions": "swsDATAr" }, "uni2546": { "name": "uni2546", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":170,"y":388,"on":true},{"x":170,"y":424,"on":true},{"x":210,"y":424,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true},{"x":330,"y":280,"on":true},{"x":330,"y":-273,"on":true},{"x":170,"y":-273,"on":true},{"x":170,"y":316,"on":true}]], "references": [], - "instructions": [179,11,5,1,48,43] + "instructions": "swsFATAr" }, "uni2547": { "name": "uni2547", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":170,"y":424,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true},{"x":290,"y":280,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":280,"on":true}]], "references": [], - "instructions": [179,9,3,1,48,43] + "instructions": "swkDATAr" }, "uni2548": { "name": "uni2548", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":210,"y":424,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true},{"x":330,"y":280,"on":true},{"x":330,"y":-273,"on":true},{"x":170,"y":-273,"on":true},{"x":170,"y":280,"on":true}]], "references": [], - "instructions": [179,9,3,1,48,43] + "instructions": "swkDATAr" }, "uni2549": { "name": "uni2549", "advanceWidth": 500, "contours": [[{"x":0,"y":280,"on":true},{"x":0,"y":424,"on":true},{"x":170,"y":424,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":330,"y":316,"on":true},{"x":330,"y":-273,"on":true},{"x":170,"y":-273,"on":true},{"x":170,"y":280,"on":true}]], "references": [], - "instructions": [179,9,3,1,48,43] + "instructions": "swkDATAr" }, "uni254A": { "name": "uni254A", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":170,"y":388,"on":true},{"x":170,"y":977,"on":true},{"x":330,"y":977,"on":true},{"x":330,"y":424,"on":true},{"x":500,"y":424,"on":true},{"x":500,"y":280,"on":true},{"x":330,"y":280,"on":true},{"x":330,"y":-273,"on":true},{"x":170,"y":-273,"on":true},{"x":170,"y":316,"on":true}]], "references": [], - "instructions": [179,9,3,1,48,43] + "instructions": "swkDATAr" }, "uni254B": { "name": "uni254B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni251B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni250F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "SF510000": { "name": "SF510000", "advanceWidth": 500, "contours": [[{"x":210,"y":-273,"on":true},{"x":210,"y":460,"on":true},{"x":500,"y":460,"on":true},{"x":500,"y":388,"on":true},{"x":290,"y":388,"on":true},{"x":290,"y":316,"on":true},{"x":500,"y":316,"on":true},{"x":500,"y":244,"on":true},{"x":290,"y":244,"on":true},{"x":290,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "SF520000": { "name": "SF520000", "advanceWidth": 500, "contours": [[{"x":138,"y":-273,"on":true},{"x":138,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":362,"y":316,"on":true},{"x":362,"y":-273,"on":true},{"x":282,"y":-273,"on":true},{"x":282,"y":316,"on":true},{"x":218,"y":316,"on":true},{"x":218,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "SF390000": { "name": "SF390000", "advanceWidth": 500, "contours": [[{"x":138,"y":-273,"on":true},{"x":138,"y":460,"on":true},{"x":500,"y":460,"on":true},{"x":500,"y":388,"on":true},{"x":218,"y":388,"on":true},{"x":218,"y":-273,"on":true}],[{"x":282,"y":-273,"on":true},{"x":282,"y":316,"on":true},{"x":500,"y":316,"on":true},{"x":500,"y":244,"on":true},{"x":362,"y":244,"on":true},{"x":362,"y":-273,"on":true}]], "references": [], - "instructions": [181,7,6,1,0,2,48,43] + "instructions": "tQcGAQACMCs=" }, "SF220000": { "name": "SF220000", "advanceWidth": 500, "contours": [[{"x":0,"y":244,"on":true},{"x":0,"y":316,"on":true},{"x":210,"y":316,"on":true},{"x":210,"y":388,"on":true},{"x":0,"y":388,"on":true},{"x":0,"y":460,"on":true},{"x":290,"y":460,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":244,"on":true}]], "references": [], - "instructions": [179,7,5,1,48,43] + "instructions": "swcFATAr" }, "SF210000": { "name": "SF210000", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":362,"y":388,"on":true},{"x":362,"y":-273,"on":true},{"x":282,"y":-273,"on":true},{"x":282,"y":316,"on":true},{"x":218,"y":316,"on":true},{"x":218,"y":-273,"on":true},{"x":138,"y":-273,"on":true},{"x":138,"y":316,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "SF250000": { "name": "SF250000", "advanceWidth": 500, "contours": [[{"x":0,"y":244,"on":true},{"x":0,"y":316,"on":true},{"x":218,"y":316,"on":true},{"x":218,"y":-273,"on":true},{"x":138,"y":-273,"on":true},{"x":138,"y":244,"on":true}],[{"x":0,"y":388,"on":true},{"x":0,"y":460,"on":true},{"x":362,"y":460,"on":true},{"x":362,"y":-273,"on":true},{"x":282,"y":-273,"on":true},{"x":282,"y":388,"on":true}]], "references": [], - "instructions": [181,9,7,3,1,2,48,43] + "instructions": "tQkHAwECMCs=" }, "SF500000": { "name": "SF500000", "advanceWidth": 500, "contours": [[{"x":210,"y":244,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":460,"on":true},{"x":500,"y":460,"on":true},{"x":500,"y":388,"on":true},{"x":290,"y":388,"on":true},{"x":290,"y":316,"on":true},{"x":500,"y":316,"on":true},{"x":500,"y":244,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "SF490000": { "name": "SF490000", "advanceWidth": 500, "contours": [[{"x":138,"y":316,"on":true},{"x":138,"y":977,"on":true},{"x":218,"y":977,"on":true},{"x":218,"y":388,"on":true},{"x":282,"y":388,"on":true},{"x":282,"y":977,"on":true},{"x":362,"y":977,"on":true},{"x":362,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "SF380000": { "name": "SF380000", "advanceWidth": 500, "contours": [[{"x":138,"y":244,"on":true},{"x":138,"y":977,"on":true},{"x":218,"y":977,"on":true},{"x":218,"y":316,"on":true},{"x":500,"y":316,"on":true},{"x":500,"y":244,"on":true}],[{"x":282,"y":388,"on":true},{"x":282,"y":977,"on":true},{"x":362,"y":977,"on":true},{"x":362,"y":460,"on":true},{"x":500,"y":460,"on":true},{"x":500,"y":388,"on":true}]], "references": [], - "instructions": [181,7,6,1,0,2,48,43] + "instructions": "tQcGAQACMCs=" }, "SF280000": { "name": "SF280000", "advanceWidth": 500, "contours": [[{"x":0,"y":244,"on":true},{"x":0,"y":316,"on":true},{"x":210,"y":316,"on":true},{"x":210,"y":388,"on":true},{"x":0,"y":388,"on":true},{"x":0,"y":460,"on":true},{"x":210,"y":460,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":244,"on":true}]], "references": [], - "instructions": [179,7,0,1,48,43] + "instructions": "swcAATAr" }, "SF270000": { "name": "SF270000", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":138,"y":388,"on":true},{"x":138,"y":977,"on":true},{"x":218,"y":977,"on":true},{"x":218,"y":388,"on":true},{"x":282,"y":388,"on":true},{"x":282,"y":977,"on":true},{"x":362,"y":977,"on":true},{"x":362,"y":316,"on":true}]], "references": [], - "instructions": [179,3,0,1,48,43] + "instructions": "swMAATAr" }, "SF260000": { "name": "SF260000", "advanceWidth": 500, "contours": [[{"x":0,"y":244,"on":true},{"x":0,"y":316,"on":true},{"x":282,"y":316,"on":true},{"x":282,"y":977,"on":true},{"x":362,"y":977,"on":true},{"x":362,"y":244,"on":true}],[{"x":0,"y":388,"on":true},{"x":0,"y":460,"on":true},{"x":138,"y":460,"on":true},{"x":138,"y":977,"on":true},{"x":218,"y":977,"on":true},{"x":218,"y":388,"on":true}]], "references": [], - "instructions": [181,9,6,3,0,2,48,43] + "instructions": "tQkGAwACMCs=" }, "SF360000": { "name": "SF360000", "advanceWidth": 500, "contours": [[{"x":210,"y":-273,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":460,"on":true},{"x":500,"y":460,"on":true},{"x":500,"y":388,"on":true},{"x":290,"y":388,"on":true},{"x":290,"y":316,"on":true},{"x":500,"y":316,"on":true},{"x":500,"y":244,"on":true},{"x":290,"y":244,"on":true},{"x":290,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "SF370000": { "name": "SF370000", "advanceWidth": 500, "contours": [[{"x":138,"y":-273,"on":true},{"x":138,"y":977,"on":true},{"x":218,"y":977,"on":true},{"x":218,"y":-273,"on":true}],[{"x":282,"y":-273,"on":true},{"x":282,"y":977,"on":true},{"x":362,"y":977,"on":true},{"x":362,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":362,"y":316,"on":true},{"x":362,"y":-273,"on":true}]], "references": [], - "instructions": [181,5,4,1,0,2,48,43] + "instructions": "tQUEAQACMCs=" }, "SF420000": { "name": "SF420000", "advanceWidth": 500, "contours": [[{"x":138,"y":-273,"on":true},{"x":138,"y":977,"on":true},{"x":218,"y":977,"on":true},{"x":218,"y":-273,"on":true}],[{"x":282,"y":-273,"on":true},{"x":282,"y":316,"on":true},{"x":500,"y":316,"on":true},{"x":500,"y":244,"on":true},{"x":362,"y":244,"on":true},{"x":362,"y":-273,"on":true}],[{"x":282,"y":388,"on":true},{"x":282,"y":977,"on":true},{"x":362,"y":977,"on":true},{"x":362,"y":460,"on":true},{"x":500,"y":460,"on":true},{"x":500,"y":388,"on":true}]], "references": [], - "instructions": [183,11,10,5,4,1,0,3,48,43] + "instructions": "twsKBQQBAAMwKw==" }, "SF190000": { "name": "SF190000", "advanceWidth": 500, "contours": [[{"x":0,"y":244,"on":true},{"x":0,"y":316,"on":true},{"x":210,"y":316,"on":true},{"x":210,"y":388,"on":true},{"x":0,"y":388,"on":true},{"x":0,"y":460,"on":true},{"x":210,"y":460,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":244,"on":true}]], "references": [], - "instructions": [179,9,7,1,48,43] + "instructions": "swkHATAr" }, "SF200000": { "name": "SF200000", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":138,"y":388,"on":true},{"x":138,"y":977,"on":true},{"x":218,"y":977,"on":true},{"x":218,"y":-273,"on":true},{"x":138,"y":-273,"on":true},{"x":138,"y":316,"on":true}],[{"x":282,"y":-273,"on":true},{"x":282,"y":977,"on":true},{"x":362,"y":977,"on":true},{"x":362,"y":-273,"on":true}]], "references": [], - "instructions": [181,9,8,5,3,2,48,43] + "instructions": "tQkIBQMCMCs=" }, "SF230000": { "name": "SF230000", "advanceWidth": 500, "contours": [[{"x":0,"y":244,"on":true},{"x":0,"y":316,"on":true},{"x":218,"y":316,"on":true},{"x":218,"y":-273,"on":true},{"x":138,"y":-273,"on":true},{"x":138,"y":244,"on":true}],[{"x":0,"y":388,"on":true},{"x":0,"y":460,"on":true},{"x":138,"y":460,"on":true},{"x":138,"y":977,"on":true},{"x":218,"y":977,"on":true},{"x":218,"y":388,"on":true}],[{"x":282,"y":-273,"on":true},{"x":282,"y":977,"on":true},{"x":362,"y":977,"on":true},{"x":362,"y":-273,"on":true}]], "references": [], - "instructions": [183,13,12,9,6,3,1,3,48,43] + "instructions": "tw0MCQYDAQMwKw==" }, "SF470000": { "name": "SF470000", "advanceWidth": 500, "contours": [[{"x":0,"y":244,"on":true},{"x":0,"y":316,"on":true},{"x":500,"y":316,"on":true},{"x":500,"y":244,"on":true},{"x":290,"y":244,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":244,"on":true}],[{"x":0,"y":388,"on":true},{"x":0,"y":460,"on":true},{"x":500,"y":460,"on":true},{"x":500,"y":388,"on":true}]], "references": [], - "instructions": [181,9,8,5,1,2,48,43] + "instructions": "tQkIBQECMCs=" }, "SF480000": { "name": "SF480000", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":362,"y":316,"on":true},{"x":362,"y":-273,"on":true},{"x":282,"y":-273,"on":true},{"x":282,"y":316,"on":true},{"x":218,"y":316,"on":true},{"x":218,"y":-273,"on":true},{"x":138,"y":-273,"on":true},{"x":138,"y":316,"on":true}]], "references": [], - "instructions": [179,5,1,1,48,43] + "instructions": "swUBATAr" }, "SF410000": { "name": "SF410000", "advanceWidth": 500, "contours": [[{"x":0,"y":244,"on":true},{"x":0,"y":316,"on":true},{"x":218,"y":316,"on":true},{"x":218,"y":-273,"on":true},{"x":138,"y":-273,"on":true},{"x":138,"y":244,"on":true}],[{"x":0,"y":388,"on":true},{"x":0,"y":460,"on":true},{"x":500,"y":460,"on":true},{"x":500,"y":388,"on":true}],[{"x":282,"y":-273,"on":true},{"x":282,"y":316,"on":true},{"x":500,"y":316,"on":true},{"x":500,"y":244,"on":true},{"x":362,"y":244,"on":true},{"x":362,"y":-273,"on":true}]], "references": [], - "instructions": [183,11,10,7,6,3,1,3,48,43] + "instructions": "twsKBwYDAQMwKw==" }, "SF450000": { "name": "SF450000", "advanceWidth": 500, "contours": [[{"x":0,"y":244,"on":true},{"x":0,"y":316,"on":true},{"x":500,"y":316,"on":true},{"x":500,"y":244,"on":true}],[{"x":0,"y":388,"on":true},{"x":0,"y":460,"on":true},{"x":210,"y":460,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":460,"on":true},{"x":500,"y":460,"on":true},{"x":500,"y":388,"on":true}]], "references": [], - "instructions": [181,7,4,1,0,2,48,43] + "instructions": "tQcEAQACMCs=" }, "SF460000": { "name": "SF460000", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":138,"y":388,"on":true},{"x":138,"y":977,"on":true},{"x":218,"y":977,"on":true},{"x":218,"y":388,"on":true},{"x":282,"y":388,"on":true},{"x":282,"y":977,"on":true},{"x":362,"y":977,"on":true},{"x":362,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true}]], "references": [], - "instructions": [179,3,0,1,48,43] + "instructions": "swMAATAr" }, "SF400000": { "name": "SF400000", "advanceWidth": 500, "contours": [[{"x":0,"y":244,"on":true},{"x":0,"y":316,"on":true},{"x":500,"y":316,"on":true},{"x":500,"y":244,"on":true}],[{"x":0,"y":388,"on":true},{"x":0,"y":460,"on":true},{"x":138,"y":460,"on":true},{"x":138,"y":977,"on":true},{"x":218,"y":977,"on":true},{"x":218,"y":388,"on":true}],[{"x":282,"y":388,"on":true},{"x":282,"y":977,"on":true},{"x":362,"y":977,"on":true},{"x":362,"y":460,"on":true},{"x":500,"y":460,"on":true},{"x":500,"y":388,"on":true}]], "references": [], - "instructions": [183,11,10,7,4,1,0,3,48,43] + "instructions": "twsKBwQBAAMwKw==" }, "SF540000": { "name": "SF540000", "advanceWidth": 500, "contours": [[{"x":0,"y":244,"on":true},{"x":0,"y":316,"on":true},{"x":500,"y":316,"on":true},{"x":500,"y":244,"on":true},{"x":290,"y":244,"on":true},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":244,"on":true}],[{"x":0,"y":388,"on":true},{"x":0,"y":460,"on":true},{"x":210,"y":460,"on":true},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":460,"on":true},{"x":500,"y":460,"on":true},{"x":500,"y":388,"on":true}]], "references": [], - "instructions": [181,11,8,5,1,2,48,43] + "instructions": "tQsIBQECMCs=" }, "SF530000": { "name": "SF530000", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":138,"y":388,"on":true},{"x":138,"y":977,"on":true},{"x":218,"y":977,"on":true},{"x":218,"y":-273,"on":true},{"x":138,"y":-273,"on":true},{"x":138,"y":316,"on":true}],[{"x":282,"y":-273,"on":true},{"x":282,"y":977,"on":true},{"x":362,"y":977,"on":true},{"x":362,"y":388,"on":true},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":362,"y":316,"on":true},{"x":362,"y":-273,"on":true}]], "references": [], - "instructions": [181,9,8,5,3,2,48,43] + "instructions": "tQkIBQMCMCs=" }, "SF440000": { "name": "SF440000", "advanceWidth": 500, "contours": [[{"x":0,"y":244,"on":true},{"x":0,"y":316,"on":true},{"x":218,"y":316,"on":true},{"x":218,"y":-273,"on":true},{"x":138,"y":-273,"on":true},{"x":138,"y":244,"on":true}],[{"x":0,"y":388,"on":true},{"x":0,"y":460,"on":true},{"x":138,"y":460,"on":true},{"x":138,"y":977,"on":true},{"x":218,"y":977,"on":true},{"x":218,"y":388,"on":true}],[{"x":282,"y":-273,"on":true},{"x":282,"y":316,"on":true},{"x":500,"y":316,"on":true},{"x":500,"y":244,"on":true},{"x":362,"y":244,"on":true},{"x":362,"y":-273,"on":true}],[{"x":282,"y":388,"on":true},{"x":282,"y":977,"on":true},{"x":362,"y":977,"on":true},{"x":362,"y":460,"on":true},{"x":500,"y":460,"on":true},{"x":500,"y":388,"on":true}]], "references": [], - "instructions": [64,10,19,18,13,12,9,6,3,1,4,48,43] + "instructions": "QAoTEg0MCQYDAQQwKw==" }, "uni2504": { "name": "uni2504", "advanceWidth": 500, "contours": [[{"x":33,"y":316,"on":true},{"x":33,"y":388,"on":true},{"x":133,"y":388,"on":true},{"x":133,"y":316,"on":true}],[{"x":200,"y":316,"on":true},{"x":200,"y":388,"on":true},{"x":300,"y":388,"on":true},{"x":300,"y":316,"on":true}],[{"x":367,"y":316,"on":true},{"x":367,"y":388,"on":true},{"x":467,"y":388,"on":true},{"x":467,"y":316,"on":true}]], "references": [], - "instructions": [183,9,8,5,4,1,0,3,48,43] + "instructions": "twkIBQQBAAMwKw==" }, "uni2505": { "name": "uni2505", "advanceWidth": 500, "contours": [[{"x":33,"y":280,"on":true},{"x":33,"y":424,"on":true},{"x":133,"y":424,"on":true},{"x":133,"y":280,"on":true}],[{"x":200,"y":280,"on":true},{"x":200,"y":424,"on":true},{"x":300,"y":424,"on":true},{"x":300,"y":280,"on":true}],[{"x":367,"y":280,"on":true},{"x":367,"y":424,"on":true},{"x":467,"y":424,"on":true},{"x":467,"y":280,"on":true}]], "references": [], - "instructions": [183,9,8,5,4,1,0,3,48,43] + "instructions": "twkIBQQBAAMwKw==" }, "uni2508": { "name": "uni2508", "advanceWidth": 500, "contours": [[{"x":25,"y":316,"on":true},{"x":25,"y":388,"on":true},{"x":100,"y":388,"on":true},{"x":100,"y":316,"on":true}],[{"x":150,"y":316,"on":true},{"x":150,"y":388,"on":true},{"x":225,"y":388,"on":true},{"x":225,"y":316,"on":true}],[{"x":275,"y":316,"on":true},{"x":275,"y":388,"on":true},{"x":350,"y":388,"on":true},{"x":350,"y":316,"on":true}],[{"x":400,"y":316,"on":true},{"x":400,"y":388,"on":true},{"x":475,"y":388,"on":true},{"x":475,"y":316,"on":true}]], "references": [], - "instructions": [64,10,13,12,9,8,5,4,1,0,4,48,43] + "instructions": "QAoNDAkIBQQBAAQwKw==" }, "uni2509": { "name": "uni2509", "advanceWidth": 500, "contours": [[{"x":25,"y":280,"on":true},{"x":25,"y":424,"on":true},{"x":100,"y":424,"on":true},{"x":100,"y":280,"on":true}],[{"x":150,"y":280,"on":true},{"x":150,"y":424,"on":true},{"x":225,"y":424,"on":true},{"x":225,"y":280,"on":true}],[{"x":275,"y":280,"on":true},{"x":275,"y":424,"on":true},{"x":350,"y":424,"on":true},{"x":350,"y":280,"on":true}],[{"x":400,"y":280,"on":true},{"x":400,"y":424,"on":true},{"x":475,"y":424,"on":true},{"x":475,"y":280,"on":true}]], "references": [], - "instructions": [64,10,13,12,9,8,5,4,1,0,4,48,43] + "instructions": "QAoNDAkIBQQBAAQwKw==" }, "uni254C": { "name": "uni254C", "advanceWidth": 500, "contours": [[{"x":50,"y":316,"on":true},{"x":50,"y":388,"on":true},{"x":200,"y":388,"on":true},{"x":200,"y":316,"on":true}],[{"x":300,"y":316,"on":true},{"x":300,"y":388,"on":true},{"x":450,"y":388,"on":true},{"x":450,"y":316,"on":true}]], "references": [], - "instructions": [181,5,4,1,0,2,48,43] + "instructions": "tQUEAQACMCs=" }, "uni254D": { "name": "uni254D", "advanceWidth": 500, "contours": [[{"x":50,"y":280,"on":true},{"x":50,"y":424,"on":true},{"x":200,"y":424,"on":true},{"x":200,"y":280,"on":true}],[{"x":300,"y":280,"on":true},{"x":300,"y":424,"on":true},{"x":450,"y":424,"on":true},{"x":450,"y":280,"on":true}]], "references": [], - "instructions": [181,5,4,1,0,2,48,43] + "instructions": "tQUEAQACMCs=" }, "uni2506": { "name": "uni2506", "advanceWidth": 500, "contours": [[{"x":210,"y":61,"on":true},{"x":290,"y":61,"on":true},{"x":290,"y":-189,"on":true},{"x":210,"y":-189,"on":true}],[{"x":210,"y":227,"on":true},{"x":210,"y":477,"on":true},{"x":290,"y":477,"on":true},{"x":290,"y":227,"on":true}],[{"x":210,"y":644,"on":true},{"x":210,"y":894,"on":true},{"x":290,"y":894,"on":true},{"x":290,"y":644,"on":true}]], "references": [], - "instructions": [183,9,8,5,4,2,0,3,48,43] + "instructions": "twkIBQQCAAMwKw==" }, "uni2507": { "name": "uni2507", "advanceWidth": 500, "contours": [[{"x":170,"y":61,"on":true},{"x":330,"y":61,"on":true},{"x":330,"y":-189,"on":true},{"x":170,"y":-189,"on":true}],[{"x":170,"y":227,"on":true},{"x":170,"y":477,"on":true},{"x":330,"y":477,"on":true},{"x":330,"y":227,"on":true}],[{"x":170,"y":644,"on":true},{"x":170,"y":894,"on":true},{"x":330,"y":894,"on":true},{"x":330,"y":644,"on":true}]], "references": [], - "instructions": [183,9,8,5,4,2,0,3,48,43] + "instructions": "twkIBQQCAAMwKw==" }, "uni250A": { "name": "uni250A", "advanceWidth": 500, "contours": [[{"x":210,"y":-23,"on":true},{"x":290,"y":-23,"on":true},{"x":290,"y":-210,"on":true},{"x":210,"y":-210,"on":true}],[{"x":210,"y":102,"on":true},{"x":210,"y":290,"on":true},{"x":290,"y":290,"on":true},{"x":290,"y":102,"on":true}],[{"x":210,"y":415,"on":true},{"x":210,"y":602,"on":true},{"x":290,"y":602,"on":true},{"x":290,"y":415,"on":true}],[{"x":210,"y":727,"on":true},{"x":210,"y":915,"on":true},{"x":290,"y":915,"on":true},{"x":290,"y":727,"on":true}]], "references": [], - "instructions": [64,10,13,12,9,8,5,4,2,0,4,48,43] + "instructions": "QAoNDAkIBQQCAAQwKw==" }, "uni250B": { "name": "uni250B", "advanceWidth": 500, "contours": [[{"x":170,"y":-23,"on":true},{"x":330,"y":-23,"on":true},{"x":330,"y":-210,"on":true},{"x":170,"y":-210,"on":true}],[{"x":170,"y":102,"on":true},{"x":170,"y":290,"on":true},{"x":330,"y":290,"on":true},{"x":330,"y":102,"on":true}],[{"x":170,"y":415,"on":true},{"x":170,"y":602,"on":true},{"x":330,"y":602,"on":true},{"x":330,"y":415,"on":true}],[{"x":170,"y":727,"on":true},{"x":170,"y":915,"on":true},{"x":330,"y":915,"on":true},{"x":330,"y":727,"on":true}]], "references": [], - "instructions": [64,10,13,12,9,8,5,4,2,0,4,48,43] + "instructions": "QAoNDAkIBQQCAAQwKw==" }, "uni254E": { "name": "uni254E", "advanceWidth": 500, "contours": [[{"x":210,"y":-148,"on":true},{"x":210,"y":227,"on":true},{"x":290,"y":227,"on":true},{"x":290,"y":-148,"on":true}],[{"x":210,"y":477,"on":true},{"x":210,"y":852,"on":true},{"x":290,"y":852,"on":true},{"x":290,"y":477,"on":true}]], "references": [], - "instructions": [181,5,4,1,0,2,48,43] + "instructions": "tQUEAQACMCs=" }, "uni254F": { "name": "uni254F", "advanceWidth": 500, "contours": [[{"x":170,"y":-148,"on":true},{"x":170,"y":227,"on":true},{"x":330,"y":227,"on":true},{"x":330,"y":-148,"on":true}],[{"x":170,"y":477,"on":true},{"x":170,"y":852,"on":true},{"x":330,"y":852,"on":true},{"x":330,"y":477,"on":true}]], "references": [], - "instructions": [181,5,4,1,0,2,48,43] + "instructions": "tQUEAQACMCs=" }, "uni256D": { "name": "uni256D", "advanceWidth": 500, "contours": [[{"x":210,"y":-273,"on":true},{"x":210,"y":80,"on":false},{"x":314,"y":260,"on":true},{"x":357,"y":334,"on":false},{"x":409,"y":365,"on":true},{"x":450,"y":389,"on":false},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":470,"y":316,"on":false},{"x":443,"y":301,"on":true},{"x":409,"y":281,"on":false},{"x":380,"y":231,"on":true},{"x":290,"y":75,"on":false},{"x":290,"y":-273,"on":true}]], "references": [], - "instructions": [179,5,0,1,48,43] + "instructions": "swUAATAr" }, "uni256E": { "name": "uni256E", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":50,"y":388,"on":false},{"x":91,"y":365,"on":true},{"x":144,"y":334,"on":false},{"x":186,"y":260,"on":true},{"x":290,"y":80,"on":false},{"x":290,"y":-273,"on":true},{"x":210,"y":-273,"on":true},{"x":210,"y":74,"on":false},{"x":120,"y":231,"on":true},{"x":91,"y":281,"on":false},{"x":57,"y":301,"on":true},{"x":30,"y":316,"on":false}]], "references": [], - "instructions": [179,7,1,1,48,43] + "instructions": "swcBATAr" }, "uni256F": { "name": "uni256F", "advanceWidth": 500, "contours": [[{"x":0,"y":316,"on":true},{"x":0,"y":388,"on":true},{"x":30,"y":388,"on":false},{"x":57,"y":404,"on":true},{"x":91,"y":424,"on":false},{"x":120,"y":474,"on":true},{"x":210,"y":630,"on":false},{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":624,"on":false},{"x":186,"y":444,"on":true},{"x":143,"y":370,"on":false},{"x":91,"y":340,"on":true},{"x":50,"y":316,"on":false}]], "references": [], - "instructions": [179,7,0,1,48,43] + "instructions": "swcAATAr" }, "uni2570": { "name": "uni2570", "advanceWidth": 500, "contours": [[{"x":210,"y":977,"on":true},{"x":290,"y":977,"on":true},{"x":290,"y":630,"on":false},{"x":380,"y":474,"on":true},{"x":409,"y":424,"on":false},{"x":443,"y":404,"on":true},{"x":470,"y":389,"on":false},{"x":500,"y":388,"on":true},{"x":500,"y":316,"on":true},{"x":450,"y":316,"on":false},{"x":409,"y":340,"on":true},{"x":356,"y":371,"on":false},{"x":314,"y":444,"on":true},{"x":210,"y":624,"on":false}]], "references": [], - "instructions": [179,8,0,1,48,43] + "instructions": "swgAATAr" }, "uni2571": { "name": "uni2571", "advanceWidth": 500, "contours": [[{"x":-37,"y":-259,"on":true},{"x":463,"y":991,"on":true},{"x":537,"y":964,"on":true},{"x":37,"y":-286,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "uni2572": { "name": "uni2572", "advanceWidth": 500, "contours": [[{"x":-37,"y":964,"on":true},{"x":37,"y":991,"on":true},{"x":537,"y":-259,"on":true},{"x":463,"y":-286,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "uni2573": { "name": "uni2573", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2572","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2571","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uniE0A0": { "name": "uniE0A0", "advanceWidth": 500, "contours": [[{"x":25,"y":826,"on":true},{"x":95,"y":861,"on":true},{"x":376,"y":350,"on":true},{"x":414,"y":348,"on":false},{"x":431,"y":318,"on":true},{"x":440,"y":302,"on":false},{"x":440,"y":258,"on":false},{"x":431,"y":242,"on":true},{"x":423,"y":228,"on":false},{"x":408,"y":219,"on":true},{"x":392,"y":210,"on":false},{"x":348,"y":210,"on":false},{"x":332,"y":219,"on":true},{"x":318,"y":227,"on":false},{"x":309,"y":242,"on":true},{"x":300,"y":258,"on":false},{"x":300,"y":280,"on":true},{"x":300,"y":299,"on":false},{"x":307,"y":314,"on":true},{"x":176,"y":552,"on":true},{"x":176,"y":19,"on":true},{"x":189,"y":11,"on":false},{"x":197,"y":-3,"on":true},{"x":206,"y":-19,"on":false},{"x":206,"y":-64,"on":false},{"x":197,"y":-80,"on":true},{"x":189,"y":-94,"on":false},{"x":174,"y":-102,"on":true},{"x":158,"y":-111,"on":false},{"x":114,"y":-111,"on":false},{"x":98,"y":-102,"on":true},{"x":84,"y":-94,"on":false},{"x":75,"y":-80,"on":true},{"x":66,"y":-64,"on":false},{"x":66,"y":-19,"on":false},{"x":75,"y":-3,"on":true},{"x":83,"y":10,"on":false},{"x":96,"y":19,"on":true},{"x":96,"y":697,"on":true}]], "references": [], - "instructions": [179,28,1,1,48,43] + "instructions": "sxwBATAr" }, "uniE0B0": { "name": "uniE0B0", "advanceWidth": 500, "contours": [[{"x":-8,"y":-273,"on":true},{"x":-8,"y":977,"on":true},{"x":0,"y":977,"on":true},{"x":500,"y":352,"on":true},{"x":0,"y":-273,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uniE0B1": { "name": "uniE0B1", "advanceWidth": 500, "contours": [[{"x":-60,"y":-230,"on":true},{"x":406,"y":352,"on":true},{"x":-60,"y":935,"on":true},{"x":0,"y":977,"on":true},{"x":500,"y":352,"on":true},{"x":0,"y":-273,"on":true}]], "references": [], - "instructions": [179,5,3,1,48,43] + "instructions": "swUDATAr" }, "uniE0B2": { "name": "uniE0B2", "advanceWidth": 500, "contours": [[{"x":0,"y":352,"on":true},{"x":500,"y":977,"on":true},{"x":508,"y":977,"on":true},{"x":508,"y":-273,"on":true},{"x":500,"y":-273,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "uniE0B3": { "name": "uniE0B3", "advanceWidth": 500, "contours": [[{"x":0,"y":352,"on":true},{"x":500,"y":977,"on":true},{"x":560,"y":935,"on":true},{"x":94,"y":352,"on":true},{"x":560,"y":-230,"on":true},{"x":500,"y":-273,"on":true}]], "references": [], - "instructions": [179,5,1,1,48,43] + "instructions": "swUBATAr" }, "uniE0A2": { "name": "uniE0A2", "advanceWidth": 500, "contours": [[{"x":52,"y":-181,"on":true},{"x":52,"y":540,"on":true},{"x":52,"y":606,"on":false},{"x":79,"y":653,"on":true},{"x":102,"y":693,"on":false},{"x":143,"y":717,"on":true},{"x":188,"y":743,"on":false},{"x":312,"y":743,"on":false},{"x":357,"y":717,"on":true},{"x":397,"y":694,"on":false},{"x":421,"y":653,"on":true},{"x":448,"y":606,"on":false},{"x":448,"y":540,"on":true},{"x":448,"y":-181,"on":true}],[{"x":132,"y":331,"on":true},{"x":368,"y":331,"on":true},{"x":368,"y":540,"on":true},{"x":368,"y":585,"on":false},{"x":350,"y":617,"on":true},{"x":335,"y":642,"on":false},{"x":311,"y":656,"on":true},{"x":285,"y":671,"on":false},{"x":215,"y":671,"on":false},{"x":189,"y":656,"on":true},{"x":164,"y":642,"on":false},{"x":150,"y":617,"on":true},{"x":132,"y":586,"on":false},{"x":132,"y":540,"on":true}]], "references": [], - "instructions": [181,21,14,6,0,2,48,43] + "instructions": "tRUOBgACMCs=" }, "uni02D0": { "name": "uni02D0", "advanceWidth": 500, "contours": [[{"x":156,"y":0,"on":true},{"x":250,"y":192,"on":true},{"x":344,"y":0,"on":true}],[{"x":156,"y":530,"on":true},{"x":250,"y":338,"on":true},{"x":344,"y":530,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,33,4,1,2,0,1,1,74,3,1,1,0,1,131,2,1,0,0,116,3,3,0,0,3,5,3,5,0,2,0,2,4,9,20,43,177,6,0,68] + "instructions": "sQZkREAhBAECAAEBSgMBAQABgwIBAAB0AwMAAAMFAwUAAgACBAkUK7EGAEQ=" }, "uni02D1": { "name": "uni02D1", "advanceWidth": 500, "contours": [[{"x":156,"y":530,"on":true},{"x":250,"y":338,"on":true},{"x":344,"y":530,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,18,1,1,0,71,1,1,0,0,116,0,0,0,2,0,2,2,9,20,43,177,6,0,68] + "instructions": "sQZkREASAQEARwEBAAB0AAAAAgACAgkUK7EGAEQ=" }, "uni02E5": { "name": "uni02E5", "advanceWidth": 500, "contours": [[{"x":98,"y":663,"on":true},{"x":98,"y":735,"on":true},{"x":402,"y":735,"on":true},{"x":402,"y":0,"on":true},{"x":322,"y":0,"on":true},{"x":322,"y":663,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,33,0,1,2,1,132,0,0,2,2,0,85,0,0,0,2,93,3,1,2,0,2,77,0,0,0,5,0,5,17,17,4,9,22,43,177,6,0,68] + "instructions": "sQZkREAhAAECAYQAAAICAFUAAAACXQMBAgACTQAAAAUABRERBAkWK7EGAEQ=" }, "uni02E6": { "name": "uni02E6", "advanceWidth": 500, "contours": [[{"x":98,"y":497,"on":true},{"x":98,"y":569,"on":true},{"x":322,"y":569,"on":true},{"x":322,"y":735,"on":true},{"x":402,"y":735,"on":true},{"x":402,"y":0,"on":true},{"x":322,"y":0,"on":true},{"x":322,"y":497,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,37,0,1,0,2,1,85,0,0,4,1,3,2,0,3,101,0,1,1,2,93,0,2,1,2,77,0,0,0,7,0,7,17,17,17,5,9,23,43,177,6,0,68] + "instructions": "sQZkREAlAAEAAgFVAAAEAQMCAANlAAEBAl0AAgECTQAAAAcABxEREQUJFyuxBgBE" }, "uni02E7": { "name": "uni02E7", "advanceWidth": 500, "contours": [[{"x":98,"y":332,"on":true},{"x":98,"y":404,"on":true},{"x":322,"y":404,"on":true},{"x":322,"y":735,"on":true},{"x":402,"y":735,"on":true},{"x":402,"y":0,"on":true},{"x":322,"y":0,"on":true},{"x":322,"y":332,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,37,0,1,0,2,1,85,0,0,4,1,3,2,0,3,101,0,1,1,2,93,0,2,1,2,77,0,0,0,7,0,7,17,17,17,5,9,23,43,177,6,0,68] + "instructions": "sQZkREAlAAEAAgFVAAAEAQMCAANlAAEBAl0AAgECTQAAAAcABxEREQUJFyuxBgBE" }, "uni02E8": { "name": "uni02E8", "advanceWidth": 500, "contours": [[{"x":98,"y":166,"on":true},{"x":98,"y":238,"on":true},{"x":322,"y":238,"on":true},{"x":322,"y":735,"on":true},{"x":402,"y":735,"on":true},{"x":402,"y":0,"on":true},{"x":322,"y":0,"on":true},{"x":322,"y":166,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,37,0,1,0,2,1,85,0,0,4,1,3,2,0,3,101,0,1,1,2,93,0,2,1,2,77,0,0,0,7,0,7,17,17,17,5,9,23,43,177,6,0,68] + "instructions": "sQZkREAlAAEAAgFVAAAEAQMCAANlAAEBAl0AAgECTQAAAAcABxEREQUJFyuxBgBE" }, "uni02E9": { "name": "uni02E9", "advanceWidth": 500, "contours": [[{"x":98,"y":0,"on":true},{"x":98,"y":72,"on":true},{"x":322,"y":72,"on":true},{"x":322,"y":735,"on":true},{"x":402,"y":735,"on":true},{"x":402,"y":0,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,33,0,1,0,1,131,0,0,2,2,0,85,0,0,0,2,94,3,1,2,0,2,78,0,0,0,5,0,5,17,17,4,9,22,43,177,6,0,68] + "instructions": "sQZkREAhAAEAAYMAAAICAFUAAAACXgMBAgACTgAAAAUABRERBAkWK7EGAEQ=" }, "heart": { "name": "heart", "advanceWidth": 500, "contours": [[{"x":52,"y":489,"on":true},{"x":52,"y":360,"on":false},{"x":186,"y":126,"on":true},{"x":217,"y":74,"on":false},{"x":250,"y":24,"on":true},{"x":283,"y":74,"on":false},{"x":314,"y":126,"on":true},{"x":448,"y":359,"on":false},{"x":448,"y":489,"on":true},{"x":448,"y":550,"on":false},{"x":425,"y":590,"on":true},{"x":410,"y":615,"on":false},{"x":388,"y":628,"on":true},{"x":369,"y":639,"on":false},{"x":346,"y":639,"on":true},{"x":324,"y":639,"on":false},{"x":307,"y":629,"on":true},{"x":287,"y":618,"on":false},{"x":274,"y":594,"on":true},{"x":251,"y":555,"on":false},{"x":250,"y":495,"on":true},{"x":249,"y":554,"on":false},{"x":226,"y":594,"on":true},{"x":212,"y":618,"on":false},{"x":193,"y":629,"on":true},{"x":177,"y":638,"on":false},{"x":154,"y":639,"on":true},{"x":130,"y":639,"on":false},{"x":112,"y":628,"on":true},{"x":90,"y":615,"on":false},{"x":75,"y":590,"on":true},{"x":52,"y":550,"on":false}]], "references": [], - "instructions": [179,13,4,1,48,43] + "instructions": "sw0EATAr" }, "spade": { "name": "spade", "advanceWidth": 500, "contours": [[{"x":52,"y":290,"on":true},{"x":52,"y":387,"on":false},{"x":186,"y":562,"on":true},{"x":217,"y":601,"on":false},{"x":250,"y":639,"on":true},{"x":283,"y":601,"on":false},{"x":314,"y":562,"on":true},{"x":448,"y":387,"on":false},{"x":448,"y":290,"on":true},{"x":448,"y":244,"on":false},{"x":425,"y":214,"on":true},{"x":410,"y":195,"on":false},{"x":388,"y":186,"on":true},{"x":369,"y":178,"on":false},{"x":346,"y":177,"on":true},{"x":324,"y":177,"on":false},{"x":307,"y":185,"on":true},{"x":298,"y":189,"on":false},{"x":290,"y":195,"on":true},{"x":290,"y":96,"on":true},{"x":345,"y":96,"on":true},{"x":345,"y":24,"on":true},{"x":155,"y":24,"on":true},{"x":155,"y":96,"on":true},{"x":210,"y":96,"on":true},{"x":210,"y":195,"on":true},{"x":202,"y":189,"on":false},{"x":193,"y":185,"on":true},{"x":177,"y":178,"on":false},{"x":154,"y":177,"on":true},{"x":130,"y":177,"on":false},{"x":112,"y":186,"on":true},{"x":90,"y":195,"on":false},{"x":75,"y":214,"on":true},{"x":52,"y":244,"on":false}]], "references": [], - "instructions": [179,21,4,1,48,43] + "instructions": "sxUEATAr" }, "club": { "name": "club", "advanceWidth": 500, "contours": [[{"x":52,"y":261,"on":false},{"x":52,"y":340,"on":false},{"x":68,"y":368,"on":true},{"x":82,"y":393,"on":false},{"x":108,"y":407,"on":true},{"x":132,"y":421,"on":false},{"x":163,"y":423,"on":true},{"x":151,"y":434,"on":false},{"x":143,"y":448,"on":true},{"x":127,"y":476,"on":false},{"x":127,"y":555,"on":false},{"x":143,"y":583,"on":true},{"x":157,"y":608,"on":false},{"x":183,"y":623,"on":true},{"x":211,"y":639,"on":false},{"x":289,"y":639,"on":false},{"x":317,"y":623,"on":true},{"x":342,"y":609,"on":false},{"x":357,"y":583,"on":true},{"x":373,"y":555,"on":false},{"x":373,"y":476,"on":false},{"x":357,"y":448,"on":true},{"x":349,"y":434,"on":false},{"x":337,"y":423,"on":true},{"x":369,"y":421,"on":false},{"x":392,"y":407,"on":true},{"x":417,"y":393,"on":false},{"x":432,"y":368,"on":true},{"x":448,"y":340,"on":false},{"x":448,"y":261,"on":false},{"x":432,"y":233,"on":true},{"x":418,"y":208,"on":false},{"x":392,"y":194,"on":true},{"x":364,"y":178,"on":false},{"x":325,"y":178,"on":true},{"x":306,"y":178,"on":false},{"x":290,"y":181,"on":true},{"x":290,"y":96,"on":true},{"x":345,"y":96,"on":true},{"x":345,"y":24,"on":true},{"x":155,"y":24,"on":true},{"x":155,"y":96,"on":true},{"x":210,"y":96,"on":true},{"x":210,"y":181,"on":true},{"x":194,"y":178,"on":false},{"x":175,"y":178,"on":true},{"x":136,"y":178,"on":false},{"x":108,"y":194,"on":true},{"x":83,"y":208,"on":false},{"x":68,"y":233,"on":true}]], "references": [], - "instructions": [179,39,14,1,48,43] + "instructions": "sycOATAr" }, "diamond": { "name": "diamond", "advanceWidth": 500, "contours": [[{"x":60,"y":331,"on":true},{"x":250,"y":639,"on":true},{"x":440,"y":331,"on":true},{"x":250,"y":24,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "female": { "name": "female", "advanceWidth": 500, "contours": [[{"x":52,"y":488,"on":false},{"x":52,"y":615,"on":false},{"x":78,"y":660,"on":true},{"x":101,"y":700,"on":false},{"x":141,"y":723,"on":true},{"x":186,"y":749,"on":false},{"x":313,"y":749,"on":false},{"x":359,"y":723,"on":true},{"x":399,"y":700,"on":false},{"x":422,"y":660,"on":true},{"x":448,"y":615,"on":false},{"x":448,"y":488,"on":false},{"x":422,"y":443,"on":true},{"x":399,"y":403,"on":false},{"x":359,"y":379,"on":true},{"x":329,"y":362,"on":false},{"x":290,"y":356,"on":true},{"x":290,"y":213,"on":true},{"x":440,"y":213,"on":true},{"x":440,"y":141,"on":true},{"x":290,"y":141,"on":true},{"x":290,"y":-79,"on":true},{"x":210,"y":-79,"on":true},{"x":210,"y":141,"on":true},{"x":60,"y":141,"on":true},{"x":60,"y":213,"on":true},{"x":210,"y":213,"on":true},{"x":210,"y":356,"on":true},{"x":172,"y":362,"on":false},{"x":141,"y":379,"on":true},{"x":101,"y":402,"on":false},{"x":78,"y":443,"on":true}],[{"x":132,"y":593,"on":false},{"x":132,"y":509,"on":false},{"x":149,"y":479,"on":true},{"x":163,"y":454,"on":false},{"x":188,"y":440,"on":true},{"x":214,"y":425,"on":false},{"x":286,"y":425,"on":false},{"x":312,"y":440,"on":true},{"x":336,"y":454,"on":false},{"x":351,"y":479,"on":true},{"x":368,"y":509,"on":false},{"x":368,"y":594,"on":false},{"x":351,"y":623,"on":true},{"x":337,"y":648,"on":false},{"x":312,"y":662,"on":true},{"x":286,"y":677,"on":false},{"x":214,"y":677,"on":false},{"x":188,"y":662,"on":true},{"x":164,"y":648,"on":false},{"x":149,"y":623,"on":true}]], "references": [], - "instructions": [181,47,37,21,5,2,48,43] + "instructions": "tS8lFQUCMCs=" }, "uni2641": { "name": "uni2641", "advanceWidth": 500, "contours": [[{"x":52,"y":48,"on":false},{"x":52,"y":175,"on":false},{"x":78,"y":220,"on":true},{"x":101,"y":260,"on":false},{"x":141,"y":283,"on":true},{"x":171,"y":300,"on":false},{"x":210,"y":306,"on":true},{"x":210,"y":449,"on":true},{"x":60,"y":449,"on":true},{"x":60,"y":521,"on":true},{"x":210,"y":521,"on":true},{"x":210,"y":741,"on":true},{"x":290,"y":741,"on":true},{"x":290,"y":521,"on":true},{"x":440,"y":521,"on":true},{"x":440,"y":449,"on":true},{"x":290,"y":449,"on":true},{"x":290,"y":306,"on":true},{"x":328,"y":300,"on":false},{"x":359,"y":283,"on":true},{"x":399,"y":260,"on":false},{"x":422,"y":220,"on":true},{"x":448,"y":175,"on":false},{"x":448,"y":48,"on":false},{"x":422,"y":3,"on":true},{"x":399,"y":-37,"on":false},{"x":359,"y":-61,"on":true},{"x":314,"y":-87,"on":false},{"x":187,"y":-87,"on":false},{"x":141,"y":-61,"on":true},{"x":101,"y":-38,"on":false},{"x":78,"y":3,"on":true}],[{"x":132,"y":153,"on":false},{"x":132,"y":69,"on":false},{"x":149,"y":39,"on":true},{"x":163,"y":14,"on":false},{"x":188,"y":0,"on":true},{"x":214,"y":-15,"on":false},{"x":286,"y":-15,"on":false},{"x":312,"y":0,"on":true},{"x":336,"y":14,"on":false},{"x":351,"y":39,"on":true},{"x":368,"y":69,"on":false},{"x":368,"y":154,"on":false},{"x":351,"y":183,"on":true},{"x":337,"y":208,"on":false},{"x":312,"y":222,"on":true},{"x":286,"y":237,"on":false},{"x":214,"y":237,"on":false},{"x":188,"y":222,"on":true},{"x":164,"y":208,"on":false},{"x":149,"y":183,"on":true}]], "references": [], - "instructions": [181,47,37,27,11,2,48,43] + "instructions": "tS8lGwsCMCs=" }, "male": { "name": "male", "advanceWidth": 500, "contours": [[{"x":52,"y":48,"on":false},{"x":52,"y":175,"on":false},{"x":78,"y":220,"on":true},{"x":101,"y":260,"on":false},{"x":141,"y":283,"on":true},{"x":173,"y":301,"on":false},{"x":214,"y":307,"on":true},{"x":214,"y":630,"on":true},{"x":147,"y":549,"on":true},{"x":98,"y":597,"on":true},{"x":250,"y":749,"on":true},{"x":402,"y":597,"on":true},{"x":353,"y":549,"on":true},{"x":286,"y":630,"on":true},{"x":286,"y":307,"on":true},{"x":327,"y":302,"on":false},{"x":359,"y":283,"on":true},{"x":399,"y":260,"on":false},{"x":422,"y":220,"on":true},{"x":448,"y":175,"on":false},{"x":448,"y":48,"on":false},{"x":422,"y":3,"on":true},{"x":399,"y":-37,"on":false},{"x":359,"y":-61,"on":true},{"x":314,"y":-87,"on":false},{"x":187,"y":-87,"on":false},{"x":141,"y":-61,"on":true},{"x":101,"y":-38,"on":false},{"x":78,"y":3,"on":true}],[{"x":132,"y":153,"on":false},{"x":132,"y":69,"on":false},{"x":149,"y":39,"on":true},{"x":163,"y":14,"on":false},{"x":188,"y":0,"on":true},{"x":214,"y":-15,"on":false},{"x":286,"y":-15,"on":false},{"x":312,"y":0,"on":true},{"x":336,"y":14,"on":false},{"x":351,"y":39,"on":true},{"x":368,"y":69,"on":false},{"x":368,"y":154,"on":false},{"x":351,"y":183,"on":true},{"x":337,"y":208,"on":false},{"x":312,"y":222,"on":true},{"x":286,"y":237,"on":false},{"x":214,"y":237,"on":false},{"x":188,"y":222,"on":true},{"x":164,"y":208,"on":false},{"x":149,"y":183,"on":true}]], "references": [], - "instructions": [181,44,34,24,10,2,48,43] + "instructions": "tSwiGAoCMCs=" }, "musicalnote": { "name": "musicalnote", "advanceWidth": 500, "contours": [[{"x":60,"y":-15,"on":false},{"x":60,"y":32,"on":false},{"x":70,"y":50,"on":true},{"x":81,"y":68,"on":false},{"x":101,"y":79,"on":true},{"x":128,"y":95,"on":false},{"x":169,"y":95,"on":true},{"x":196,"y":95,"on":false},{"x":216,"y":88,"on":true},{"x":216,"y":741,"on":true},{"x":277,"y":741,"on":true},{"x":309,"y":703,"on":false},{"x":335,"y":659,"on":true},{"x":408,"y":532,"on":false},{"x":408,"y":392,"on":true},{"x":408,"y":265,"on":false},{"x":346,"y":158,"on":true},{"x":336,"y":142,"on":false},{"x":326,"y":126,"on":true},{"x":277,"y":157,"on":true},{"x":277,"y":8,"on":true},{"x":277,"y":-16,"on":false},{"x":267,"y":-33,"on":true},{"x":256,"y":-51,"on":false},{"x":237,"y":-63,"on":true},{"x":209,"y":-79,"on":false},{"x":128,"y":-79,"on":false},{"x":101,"y":-63,"on":true},{"x":81,"y":-51,"on":false},{"x":70,"y":-33,"on":true}],[{"x":277,"y":160,"on":true},{"x":288,"y":176,"on":false},{"x":299,"y":193,"on":true},{"x":353,"y":286,"on":false},{"x":352,"y":395,"on":true},{"x":352,"y":516,"on":false},{"x":289,"y":625,"on":true},{"x":284,"y":634,"on":false},{"x":277,"y":644,"on":true}]], "references": [], - "instructions": [181,38,30,25,9,2,48,43] + "instructions": "tSYeGQkCMCs=" }, "uniE09F": { "name": "uniE09F", "advanceWidth": 500, "contours": [[{"x":0,"y":-168,"on":true},{"x":235,"y":-168,"on":true},{"x":235,"y":318,"on":true},{"x":0,"y":318,"on":true},{"x":0,"y":345,"on":true},{"x":235,"y":345,"on":true},{"x":235,"y":830,"on":true},{"x":0,"y":830,"on":true},{"x":0,"y":857,"on":true},{"x":235,"y":857,"on":true},{"x":235,"y":977,"on":true},{"x":265,"y":977,"on":true},{"x":265,"y":749,"on":true},{"x":500,"y":749,"on":true},{"x":500,"y":721,"on":true},{"x":265,"y":721,"on":true},{"x":265,"y":544,"on":true},{"x":500,"y":544,"on":true},{"x":500,"y":516,"on":true},{"x":265,"y":516,"on":true},{"x":265,"y":14,"on":true},{"x":500,"y":14,"on":true},{"x":500,"y":-14,"on":true},{"x":265,"y":-14,"on":true},{"x":265,"y":-191,"on":true},{"x":500,"y":-191,"on":true},{"x":500,"y":-219,"on":true},{"x":265,"y":-219,"on":true},{"x":265,"y":-273,"on":true},{"x":235,"y":-273,"on":true},{"x":235,"y":-195,"on":true},{"x":0,"y":-195,"on":true}]], "references": [], - "instructions": [179,28,10,1,48,43] + "instructions": "sxwKATAr" }, "uni203B": { "name": "uni203B", "advanceWidth": 500, "contours": [[{"x":32,"y":167,"on":true},{"x":196,"y":331,"on":true},{"x":32,"y":496,"on":true},{"x":88,"y":547,"on":true},{"x":250,"y":385,"on":true},{"x":412,"y":547,"on":true},{"x":468,"y":496,"on":true},{"x":304,"y":331,"on":true},{"x":468,"y":167,"on":true},{"x":412,"y":116,"on":true},{"x":250,"y":278,"on":true},{"x":88,"y":116,"on":true}],[{"x":35,"y":307,"on":false},{"x":35,"y":356,"on":false},{"x":64,"y":385,"on":false},{"x":113,"y":385,"on":false},{"x":142,"y":356,"on":false},{"x":142,"y":307,"on":false},{"x":113,"y":278,"on":false},{"x":64,"y":278,"on":false}],[{"x":196,"y":145,"on":false},{"x":196,"y":194,"on":false},{"x":225,"y":223,"on":false},{"x":275,"y":223,"on":false},{"x":304,"y":194,"on":false},{"x":304,"y":145,"on":false},{"x":275,"y":116,"on":false},{"x":225,"y":116,"on":false}],[{"x":196,"y":468,"on":false},{"x":196,"y":518,"on":false},{"x":225,"y":547,"on":false},{"x":275,"y":547,"on":false},{"x":304,"y":518,"on":false},{"x":304,"y":468,"on":false},{"x":275,"y":439,"on":false},{"x":225,"y":439,"on":false}],[{"x":358,"y":307,"on":false},{"x":358,"y":356,"on":false},{"x":387,"y":385,"on":false},{"x":436,"y":385,"on":false},{"x":465,"y":356,"on":false},{"x":465,"y":307,"on":false},{"x":436,"y":278,"on":false},{"x":387,"y":278,"on":false}]], "references": [], - "instructions": [64,73,6,2,2,5,4,7,1,2,1,0,8,1,3,2,3,74,4,1,0,10,1,1,2,73,5,3,2,4,72,11,9,2,3,71,6,1,0,7,1,1,2,0,1,103,0,2,0,3,2,3,99,0,5,5,4,95,0,4,4,75,5,76,19,19,19,19,19,19,19,30,8,9,28,43] + "instructions": "QEkGAgIFBAcBAgEACAEDAgNKBAEACgEBAkkFAwIESAsJAgNHBgEABwEBAgABZwACAAMCA2MABQUEXwAEBEsFTBMTExMTExMeCAkcKw==" }, "glyph1080": { "name": "glyph1080", "advanceWidth": 500, "contours": [], "references": [{"glyph":"greater","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1081": { "name": "glyph1081", "advanceWidth": 500, "contours": [], "references": [{"glyph":"greater","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1082": { "name": "glyph1082", "advanceWidth": 500, "contours": [], "references": [{"glyph":"greater","x":-250,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1083": { "name": "glyph1083", "advanceWidth": 500, "contours": [], "references": [{"glyph":"less","x":-250,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1084": { "name": "glyph1084", "advanceWidth": 500, "contours": [], "references": [{"glyph":"less","x":-500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1085": { "name": "glyph1085", "advanceWidth": 500, "contours": [], "references": [{"glyph":"less","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1086": { "name": "glyph1086", "advanceWidth": 500, "contours": [[{"x":60,"y":295,"on":true},{"x":60,"y":367,"on":true},{"x":887,"y":367,"on":true},{"x":887,"y":295,"on":true}]], "references": [], - "instructions": [64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,7,21,43] + "instructions": "QBsAAAEBAFUAAAABXQIBAQABTQAAAAMAAxEDBxUr" }, "glyph1087": { "name": "glyph1087", "advanceWidth": 500, "contours": [[{"x":-387,"y":295,"on":true},{"x":-387,"y":367,"on":true},{"x":440,"y":367,"on":true},{"x":440,"y":295,"on":true}]], "references": [], - "instructions": [64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,7,21,43] + "instructions": "QBsAAAEBAFUAAAABXQIBAQABTQAAAAMAAxEDBxUr" }, "glyph1088": { "name": "glyph1088", "advanceWidth": 500, "contours": [[{"x":-8,"y":295,"on":true},{"x":-8,"y":367,"on":true},{"x":887,"y":367,"on":true},{"x":887,"y":295,"on":true}]], "references": [], - "instructions": [64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,7,21,43] + "instructions": "QBsAAAEBAFUAAAABXQIBAQABTQAAAAMAAxEDBxUr" }, "glyph1089": { "name": "glyph1089", "advanceWidth": 500, "contours": [[{"x":-387,"y":295,"on":true},{"x":-387,"y":367,"on":true},{"x":508,"y":367,"on":true},{"x":508,"y":295,"on":true}]], "references": [], - "instructions": [64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,7,21,43] + "instructions": "QBsAAAEBAFUAAAABXQIBAQABTQAAAAMAAxEDBxUr" }, "glyph1090": { "name": "glyph1090", "advanceWidth": 500, "contours": [[{"x":-193,"y":295,"on":true},{"x":-193,"y":367,"on":true},{"x":508,"y":367,"on":true},{"x":508,"y":295,"on":true}]], "references": [], - "instructions": [64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,7,21,43] + "instructions": "QBsAAAEBAFUAAAABXQIBAQABTQAAAAMAAxEDBxUr" }, "glyph1091": { "name": "glyph1091", "advanceWidth": 500, "contours": [[{"x":60,"y":295,"on":true},{"x":60,"y":367,"on":true},{"x":1137,"y":367,"on":true},{"x":1137,"y":295,"on":true}]], "references": [], - "instructions": [64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,7,21,43] + "instructions": "QBsAAAEBAFUAAAABXQIBAQABTQAAAAMAAxEDBxUr" }, "glyph1092": { "name": "glyph1092", "advanceWidth": 500, "contours": [[{"x":-637,"y":295,"on":true},{"x":-637,"y":367,"on":true},{"x":440,"y":367,"on":true},{"x":440,"y":295,"on":true}]], "references": [], - "instructions": [64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,7,21,43] + "instructions": "QBsAAAEBAFUAAAABXQIBAQABTQAAAAMAAxEDBxUr" }, "glyph1093": { "name": "glyph1093", "advanceWidth": 500, "contours": [[{"x":-8,"y":295,"on":true},{"x":-8,"y":367,"on":true},{"x":1137,"y":367,"on":true},{"x":1137,"y":295,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "glyph1094": { "name": "glyph1094", "advanceWidth": 500, "contours": [[{"x":-637,"y":295,"on":true},{"x":-637,"y":367,"on":true},{"x":508,"y":367,"on":true},{"x":508,"y":295,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "glyph1095": { "name": "glyph1095", "advanceWidth": 500, "contours": [[{"x":60,"y":295,"on":true},{"x":60,"y":367,"on":true},{"x":1387,"y":367,"on":true},{"x":1387,"y":295,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "glyph1096": { "name": "glyph1096", "advanceWidth": 500, "contours": [[{"x":-887,"y":295,"on":true},{"x":-887,"y":367,"on":true},{"x":440,"y":367,"on":true},{"x":440,"y":295,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "glyph1097": { "name": "glyph1097", "advanceWidth": 500, "contours": [[{"x":-8,"y":295,"on":true},{"x":-8,"y":367,"on":true},{"x":1387,"y":367,"on":true},{"x":1387,"y":295,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "glyph1098": { "name": "glyph1098", "advanceWidth": 500, "contours": [[{"x":-887,"y":295,"on":true},{"x":-887,"y":367,"on":true},{"x":508,"y":367,"on":true},{"x":508,"y":295,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "glyph1099": { "name": "glyph1099", "advanceWidth": 500, "contours": [[{"x":-8,"y":295,"on":true},{"x":-8,"y":367,"on":true},{"x":440,"y":367,"on":true},{"x":440,"y":295,"on":true}]], "references": [], - "instructions": [64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,7,21,43] + "instructions": "QBsAAAEBAFUAAAABXQIBAQABTQAAAAMAAxEDBxUr" }, "glyph1100": { "name": "glyph1100", "advanceWidth": 500, "contours": [[{"x":60,"y":295,"on":true},{"x":60,"y":367,"on":true},{"x":508,"y":367,"on":true},{"x":508,"y":295,"on":true}]], "references": [], - "instructions": [64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,7,21,43] + "instructions": "QBsAAAEBAFUAAAABXQIBAQABTQAAAAMAAxEDBxUr" }, "glyph1101": { "name": "glyph1101", "advanceWidth": 500, "contours": [[{"x":-113,"y":295,"on":true},{"x":-113,"y":367,"on":true},{"x":440,"y":367,"on":true},{"x":440,"y":295,"on":true}]], "references": [], - "instructions": [64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,7,21,43] + "instructions": "QBsAAAEBAFUAAAABXQIBAQABTQAAAAMAAxEDBxUr" }, "glyph1102": { "name": "glyph1102", "advanceWidth": 500, "contours": [[{"x":60,"y":295,"on":true},{"x":60,"y":367,"on":true},{"x":613,"y":367,"on":true},{"x":613,"y":295,"on":true}]], "references": [], - "instructions": [64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,7,21,43] + "instructions": "QBsAAAEBAFUAAAABXQIBAQABTQAAAAMAAxEDBxUr" }, "glyph1103": { "name": "glyph1103", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph736","x":-113,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1104": { "name": "glyph1104", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph736","x":-387,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1105": { "name": "glyph1105", "advanceWidth": 500, "contours": [[{"x":-363,"y":295,"on":true},{"x":-363,"y":367,"on":true},{"x":440,"y":367,"on":true},{"x":440,"y":295,"on":true}]], "references": [], - "instructions": [64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,7,21,43] + "instructions": "QBsAAAEBAFUAAAABXQIBAQABTQAAAAMAAxEDBxUr" }, "glyph1106": { "name": "glyph1106", "advanceWidth": 500, "contours": [[{"x":60,"y":295,"on":true},{"x":60,"y":367,"on":true},{"x":863,"y":367,"on":true},{"x":863,"y":295,"on":true}]], "references": [], - "instructions": [64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,7,21,43] + "instructions": "QBsAAAEBAFUAAAABXQIBAQABTQAAAAMAAxEDBxUr" }, "glyph1107": { "name": "glyph1107", "advanceWidth": 500, "contours": [[{"x":-387,"y":295,"on":true},{"x":-387,"y":367,"on":true},{"x":887,"y":367,"on":true},{"x":887,"y":295,"on":true}]], "references": [], - "instructions": [64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,7,21,43] + "instructions": "QBsAAAEBAFUAAAABXQIBAQABTQAAAAMAAxEDBxUr" }, "glyph1108": { "name": "glyph1108", "advanceWidth": 500, "contours": [[{"x":-8,"y":295,"on":true},{"x":-8,"y":367,"on":true},{"x":508,"y":367,"on":true},{"x":508,"y":295,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "glyph1109": { "name": "glyph1109", "advanceWidth": 500, "contours": [[{"x":60,"y":219,"on":true},{"x":60,"y":291,"on":true},{"x":826,"y":291,"on":true},{"x":826,"y":219,"on":true}],[{"x":60,"y":372,"on":true},{"x":60,"y":444,"on":true},{"x":826,"y":444,"on":true},{"x":826,"y":372,"on":true}]], "references": [], - "instructions": [64,44,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,4,4,0,0,4,7,4,7,6,5,0,3,0,3,17,6,7,21,43] + "instructions": "QCwAAgUBAwACA2UAAAEBAFUAAAABXQQBAQABTQQEAAAEBwQHBgUAAwADEQYHFSs=" }, "glyph1110": { "name": "glyph1110", "advanceWidth": 500, "contours": [[{"x":-326,"y":219,"on":true},{"x":-326,"y":291,"on":true},{"x":440,"y":291,"on":true},{"x":440,"y":219,"on":true}],[{"x":-326,"y":372,"on":true},{"x":-326,"y":444,"on":true},{"x":440,"y":444,"on":true},{"x":440,"y":372,"on":true}]], "references": [], - "instructions": [64,44,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,4,4,0,0,4,7,4,7,6,5,0,3,0,3,17,6,7,21,43] + "instructions": "QCwAAgUBAwACA2UAAAEBAFUAAAABXQQBAQABTQQEAAAEBwQHBgUAAwADEQYHFSs=" }, "glyph1111": { "name": "glyph1111", "advanceWidth": 500, "contours": [[{"x":-8,"y":219,"on":true},{"x":-8,"y":291,"on":true},{"x":826,"y":291,"on":true},{"x":826,"y":219,"on":true}],[{"x":-8,"y":372,"on":true},{"x":-8,"y":444,"on":true},{"x":826,"y":444,"on":true},{"x":826,"y":372,"on":true}]], "references": [], - "instructions": [64,44,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,4,4,0,0,4,7,4,7,6,5,0,3,0,3,17,6,7,21,43] + "instructions": "QCwAAgUBAwACA2UAAAEBAFUAAAABXQQBAQABTQQEAAAEBwQHBgUAAwADEQYHFSs=" }, "glyph1112": { "name": "glyph1112", "advanceWidth": 500, "contours": [[{"x":-326,"y":219,"on":true},{"x":-326,"y":291,"on":true},{"x":508,"y":291,"on":true},{"x":508,"y":219,"on":true}],[{"x":-326,"y":372,"on":true},{"x":-326,"y":444,"on":true},{"x":508,"y":444,"on":true},{"x":508,"y":372,"on":true}]], "references": [], - "instructions": [64,44,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,4,4,0,0,4,7,4,7,6,5,0,3,0,3,17,6,7,21,43] + "instructions": "QCwAAgUBAwACA2UAAAEBAFUAAAABXQQBAQABTQQEAAAEBwQHBgUAAwADEQYHFSs=" }, "glyph1113": { "name": "glyph1113", "advanceWidth": 500, "contours": [[{"x":-163,"y":219,"on":true},{"x":-163,"y":291,"on":true},{"x":508,"y":291,"on":true},{"x":508,"y":219,"on":true}],[{"x":-163,"y":372,"on":true},{"x":-163,"y":444,"on":true},{"x":508,"y":444,"on":true},{"x":508,"y":372,"on":true}]], "references": [], - "instructions": [64,44,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,4,4,0,0,4,7,4,7,6,5,0,3,0,3,17,6,7,21,43] + "instructions": "QCwAAgUBAwACA2UAAAEBAFUAAAABXQQBAQABTQQEAAAEBwQHBgUAAwADEQYHFSs=" }, "glyph1114": { "name": "glyph1114", "advanceWidth": 500, "contours": [[{"x":60,"y":219,"on":true},{"x":60,"y":291,"on":true},{"x":1076,"y":291,"on":true},{"x":1076,"y":219,"on":true}],[{"x":60,"y":372,"on":true},{"x":60,"y":444,"on":true},{"x":1076,"y":444,"on":true},{"x":1076,"y":372,"on":true}]], "references": [], - "instructions": [64,44,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,4,4,0,0,4,7,4,7,6,5,0,3,0,3,17,6,7,21,43] + "instructions": "QCwAAgUBAwACA2UAAAEBAFUAAAABXQQBAQABTQQEAAAEBwQHBgUAAwADEQYHFSs=" }, "glyph1115": { "name": "glyph1115", "advanceWidth": 500, "contours": [[{"x":-576,"y":219,"on":true},{"x":-576,"y":291,"on":true},{"x":440,"y":291,"on":true},{"x":440,"y":219,"on":true}],[{"x":-576,"y":372,"on":true},{"x":-576,"y":444,"on":true},{"x":440,"y":444,"on":true},{"x":440,"y":372,"on":true}]], "references": [], - "instructions": [64,44,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,4,4,0,0,4,7,4,7,6,5,0,3,0,3,17,6,7,21,43] + "instructions": "QCwAAgUBAwACA2UAAAEBAFUAAAABXQQBAQABTQQEAAAEBwQHBgUAAwADEQYHFSs=" }, "glyph1116": { "name": "glyph1116", "advanceWidth": 500, "contours": [[{"x":-8,"y":219,"on":true},{"x":-8,"y":291,"on":true},{"x":1076,"y":291,"on":true},{"x":1076,"y":219,"on":true}],[{"x":-8,"y":372,"on":true},{"x":-8,"y":444,"on":true},{"x":1076,"y":444,"on":true},{"x":1076,"y":372,"on":true}]], "references": [], - "instructions": [181,5,4,1,0,2,48,43] + "instructions": "tQUEAQACMCs=" }, "glyph1117": { "name": "glyph1117", "advanceWidth": 500, "contours": [[{"x":-576,"y":219,"on":true},{"x":-576,"y":291,"on":true},{"x":508,"y":291,"on":true},{"x":508,"y":219,"on":true}],[{"x":-576,"y":372,"on":true},{"x":-576,"y":444,"on":true},{"x":508,"y":444,"on":true},{"x":508,"y":372,"on":true}]], "references": [], - "instructions": [181,5,4,1,0,2,48,43] + "instructions": "tQUEAQACMCs=" }, "glyph1118": { "name": "glyph1118", "advanceWidth": 500, "contours": [[{"x":60,"y":219,"on":true},{"x":60,"y":291,"on":true},{"x":1326,"y":291,"on":true},{"x":1326,"y":219,"on":true}],[{"x":60,"y":372,"on":true},{"x":60,"y":444,"on":true},{"x":1326,"y":444,"on":true},{"x":1326,"y":372,"on":true}]], "references": [], - "instructions": [181,5,4,1,0,2,48,43] + "instructions": "tQUEAQACMCs=" }, "glyph1119": { "name": "glyph1119", "advanceWidth": 500, "contours": [[{"x":-826,"y":219,"on":true},{"x":-826,"y":291,"on":true},{"x":440,"y":291,"on":true},{"x":440,"y":219,"on":true}],[{"x":-826,"y":372,"on":true},{"x":-826,"y":444,"on":true},{"x":440,"y":444,"on":true},{"x":440,"y":372,"on":true}]], "references": [], - "instructions": [181,5,4,1,0,2,48,43] + "instructions": "tQUEAQACMCs=" }, "glyph1120": { "name": "glyph1120", "advanceWidth": 500, "contours": [[{"x":-8,"y":219,"on":true},{"x":-8,"y":291,"on":true},{"x":1326,"y":291,"on":true},{"x":1326,"y":219,"on":true}],[{"x":-8,"y":372,"on":true},{"x":-8,"y":444,"on":true},{"x":1326,"y":444,"on":true},{"x":1326,"y":372,"on":true}]], "references": [], - "instructions": [181,5,4,1,0,2,48,43] + "instructions": "tQUEAQACMCs=" }, "glyph1121": { "name": "glyph1121", "advanceWidth": 500, "contours": [[{"x":-826,"y":219,"on":true},{"x":-826,"y":291,"on":true},{"x":508,"y":291,"on":true},{"x":508,"y":219,"on":true}],[{"x":-826,"y":372,"on":true},{"x":-826,"y":444,"on":true},{"x":508,"y":444,"on":true},{"x":508,"y":372,"on":true}]], "references": [], - "instructions": [181,5,4,1,0,2,48,43] + "instructions": "tQUEAQACMCs=" }, "glyph1122": { "name": "glyph1122", "advanceWidth": 500, "contours": [[{"x":-8,"y":219,"on":true},{"x":-8,"y":291,"on":true},{"x":440,"y":291,"on":true},{"x":440,"y":219,"on":true}],[{"x":-8,"y":372,"on":true},{"x":-8,"y":444,"on":true},{"x":440,"y":444,"on":true},{"x":440,"y":372,"on":true}]], "references": [], - "instructions": [64,44,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,4,4,0,0,4,7,4,7,6,5,0,3,0,3,17,6,7,21,43] + "instructions": "QCwAAgUBAwACA2UAAAEBAFUAAAABXQQBAQABTQQEAAAEBwQHBgUAAwADEQYHFSs=" }, "glyph1123": { "name": "glyph1123", "advanceWidth": 500, "contours": [[{"x":60,"y":219,"on":true},{"x":60,"y":291,"on":true},{"x":508,"y":291,"on":true},{"x":508,"y":219,"on":true}],[{"x":60,"y":372,"on":true},{"x":60,"y":444,"on":true},{"x":508,"y":444,"on":true},{"x":508,"y":372,"on":true}]], "references": [], - "instructions": [64,44,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,4,4,0,0,4,7,4,7,6,5,0,3,0,3,17,6,7,21,43] + "instructions": "QCwAAgUBAwACA2UAAAEBAFUAAAABXQQBAQABTQQEAAAEBwQHBgUAAwADEQYHFSs=" }, "glyph1124": { "name": "glyph1124", "advanceWidth": 500, "contours": [[{"x":-174,"y":219,"on":true},{"x":-174,"y":291,"on":true},{"x":440,"y":291,"on":true},{"x":440,"y":219,"on":true}],[{"x":-174,"y":372,"on":true},{"x":-174,"y":444,"on":true},{"x":440,"y":444,"on":true},{"x":440,"y":372,"on":true}]], "references": [], - "instructions": [64,44,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,4,4,0,0,4,7,4,7,6,5,0,3,0,3,17,6,7,21,43] + "instructions": "QCwAAgUBAwACA2UAAAEBAFUAAAABXQQBAQABTQQEAAAEBwQHBgUAAwADEQYHFSs=" }, "glyph1125": { "name": "glyph1125", "advanceWidth": 500, "contours": [[{"x":60,"y":219,"on":true},{"x":60,"y":291,"on":true},{"x":674,"y":291,"on":true},{"x":674,"y":219,"on":true}],[{"x":60,"y":372,"on":true},{"x":60,"y":444,"on":true},{"x":674,"y":444,"on":true},{"x":674,"y":372,"on":true}]], "references": [], - "instructions": [64,44,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,4,4,0,0,4,7,4,7,6,5,0,3,0,3,17,6,7,21,43] + "instructions": "QCwAAgUBAwACA2UAAAEBAFUAAAABXQQBAQABTQQEAAAEBwQHBgUAAwADEQYHFSs=" }, "glyph1126": { "name": "glyph1126", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph736","x":-174,"y":-77,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph736","x":-174,"y":77,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,255,179,176,51,43,177,1,1,176,77,176,51,43] + "instructions": "sQABuP+zsDMrsQEBsE2wMys=" }, "glyph1127": { "name": "glyph1127", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph736","x":-326,"y":-77,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph736","x":-326,"y":77,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,255,179,176,51,43,177,1,1,176,77,176,51,43] + "instructions": "sQABuP+zsDMrsQEBsE2wMys=" }, "glyph1128": { "name": "glyph1128", "advanceWidth": 500, "contours": [[{"x":-424,"y":219,"on":true},{"x":-424,"y":291,"on":true},{"x":440,"y":291,"on":true},{"x":440,"y":219,"on":true}],[{"x":-424,"y":372,"on":true},{"x":-424,"y":444,"on":true},{"x":440,"y":444,"on":true},{"x":440,"y":372,"on":true}]], "references": [], - "instructions": [64,44,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,4,4,0,0,4,7,4,7,6,5,0,3,0,3,17,6,7,21,43] + "instructions": "QCwAAgUBAwACA2UAAAEBAFUAAAABXQQBAQABTQQEAAAEBwQHBgUAAwADEQYHFSs=" }, "glyph1129": { "name": "glyph1129", "advanceWidth": 500, "contours": [[{"x":60,"y":219,"on":true},{"x":60,"y":291,"on":true},{"x":924,"y":291,"on":true},{"x":924,"y":219,"on":true}],[{"x":60,"y":372,"on":true},{"x":60,"y":444,"on":true},{"x":924,"y":444,"on":true},{"x":924,"y":372,"on":true}]], "references": [], - "instructions": [64,44,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,4,4,0,0,4,7,4,7,6,5,0,3,0,3,17,6,7,21,43] + "instructions": "QCwAAgUBAwACA2UAAAEBAFUAAAABXQQBAQABTQQEAAAEBwQHBgUAAwADEQYHFSs=" }, "glyph1130": { "name": "glyph1130", "advanceWidth": 500, "contours": [[{"x":-326,"y":219,"on":true},{"x":-326,"y":291,"on":true},{"x":826,"y":291,"on":true},{"x":826,"y":219,"on":true}],[{"x":-326,"y":372,"on":true},{"x":-326,"y":444,"on":true},{"x":826,"y":444,"on":true},{"x":826,"y":372,"on":true}]], "references": [], - "instructions": [64,44,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,4,4,0,0,4,7,4,7,6,5,0,3,0,3,17,6,7,21,43] + "instructions": "QCwAAgUBAwACA2UAAAEBAFUAAAABXQQBAQABTQQEAAAEBwQHBgUAAwADEQYHFSs=" }, "glyph1131": { "name": "glyph1131", "advanceWidth": 500, "contours": [[{"x":-8,"y":219,"on":true},{"x":-8,"y":291,"on":true},{"x":508,"y":291,"on":true},{"x":508,"y":219,"on":true}],[{"x":-8,"y":372,"on":true},{"x":-8,"y":444,"on":true},{"x":508,"y":444,"on":true},{"x":508,"y":372,"on":true}]], "references": [], - "instructions": [181,5,4,1,0,2,48,43] + "instructions": "tQUEAQACMCs=" }, "glyph1132": { "name": "glyph1132", "advanceWidth": 500, "contours": [[{"x":-387,"y":295,"on":true},{"x":-387,"y":367,"on":true},{"x":-60,"y":367,"on":true},{"x":-60,"y":295,"on":true}],[{"x":53,"y":40,"on":false},{"x":53,"y":85,"on":false},{"x":62,"y":101,"on":true},{"x":70,"y":115,"on":false},{"x":85,"y":124,"on":true},{"x":101,"y":133,"on":false},{"x":146,"y":133,"on":false},{"x":162,"y":124,"on":true},{"x":176,"y":116,"on":false},{"x":185,"y":101,"on":true},{"x":194,"y":85,"on":false},{"x":194,"y":40,"on":false},{"x":185,"y":24,"on":true},{"x":177,"y":10,"on":false},{"x":162,"y":1,"on":true},{"x":146,"y":-8,"on":false},{"x":101,"y":-8,"on":false},{"x":85,"y":1,"on":true},{"x":71,"y":9,"on":false},{"x":62,"y":24,"on":true}],[{"x":83,"y":260,"on":true},{"x":83,"y":735,"on":true},{"x":163,"y":735,"on":true},{"x":163,"y":260,"on":true}]], "references": [], - "instructions": [64,53,0,0,6,1,1,5,0,1,101,7,1,5,5,4,93,0,4,4,26,75,0,2,2,3,95,0,3,3,34,3,76,24,24,0,0,24,27,24,27,26,25,20,19,10,9,0,3,0,3,17,8,7,21,43] + "instructions": "QDUAAAYBAQUAAWUHAQUFBF0ABAQaSwACAgNfAAMDIgNMGBgAABgbGBsaGRQTCgkAAwADEQgHFSs=" }, "dieresis": { "name": "dieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "macron": { "name": "macron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "cedilla": { "name": "cedilla", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Agrave": { "name": "Agrave", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "Aacute": { "name": "Aacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "Acircumflex": { "name": "Acircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "Atilde": { "name": "Atilde", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "Adieresis": { "name": "Adieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "Aring": { "name": "Aring", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "Ccedilla": { "name": "Ccedilla", "advanceWidth": 500, "contours": [], "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Egrave": { "name": "Egrave", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "Eacute": { "name": "Eacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "Ecircumflex": { "name": "Ecircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "Edieresis": { "name": "Edieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "Igrave": { "name": "Igrave", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "Iacute": { "name": "Iacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "Icircumflex": { "name": "Icircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "Idieresis": { "name": "Idieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "Ntilde": { "name": "Ntilde", "advanceWidth": 500, "contours": [], "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "Ograve": { "name": "Ograve", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "Oacute": { "name": "Oacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "Ocircumflex": { "name": "Ocircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "Otilde": { "name": "Otilde", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "Odieresis": { "name": "Odieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "Ugrave": { "name": "Ugrave", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "Uacute": { "name": "Uacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "Ucircumflex": { "name": "Ucircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "Udieresis": { "name": "Udieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "Yacute": { "name": "Yacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "agrave": { "name": "agrave", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1163": { "name": "glyph1163", "advanceWidth": 500, "contours": [], "references": [{"glyph":"agrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1164": { "name": "glyph1164", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "aacute": { "name": "aacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1166": { "name": "glyph1166", "advanceWidth": 500, "contours": [], "references": [{"glyph":"aacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1167": { "name": "glyph1167", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "acircumflex": { "name": "acircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1169": { "name": "glyph1169", "advanceWidth": 500, "contours": [], "references": [{"glyph":"acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1170": { "name": "glyph1170", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "atilde": { "name": "atilde", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1172": { "name": "glyph1172", "advanceWidth": 500, "contours": [], "references": [{"glyph":"atilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1173": { "name": "glyph1173", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "adieresis": { "name": "adieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1175": { "name": "glyph1175", "advanceWidth": 500, "contours": [], "references": [{"glyph":"adieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1176": { "name": "glyph1176", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "aring": { "name": "aring", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1178": { "name": "glyph1178", "advanceWidth": 500, "contours": [], "references": [{"glyph":"aring","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1179": { "name": "glyph1179", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "ccedilla": { "name": "ccedilla", "advanceWidth": 500, "contours": [], "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "egrave": { "name": "egrave", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "eacute": { "name": "eacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "ecircumflex": { "name": "ecircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "edieresis": { "name": "edieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "igrave": { "name": "igrave", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1186": { "name": "glyph1186", "advanceWidth": 500, "contours": [], "references": [{"glyph":"igrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1187": { "name": "glyph1187", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1188": { "name": "glyph1188", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1189": { "name": "glyph1189", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "iacute": { "name": "iacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1191": { "name": "glyph1191", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1192": { "name": "glyph1192", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1193": { "name": "glyph1193", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1194": { "name": "glyph1194", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "icircumflex": { "name": "icircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1196": { "name": "glyph1196", "advanceWidth": 500, "contours": [], "references": [{"glyph":"icircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1197": { "name": "glyph1197", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1198": { "name": "glyph1198", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1199": { "name": "glyph1199", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "idieresis": { "name": "idieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1201": { "name": "glyph1201", "advanceWidth": 500, "contours": [], "references": [{"glyph":"idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1202": { "name": "glyph1202", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":577,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":377,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1203": { "name": "glyph1203", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1204": { "name": "glyph1204", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "ntilde": { "name": "ntilde", "advanceWidth": 500, "contours": [], "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "ograve": { "name": "ograve", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "oacute": { "name": "oacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "ocircumflex": { "name": "ocircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "otilde": { "name": "otilde", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "odieresis": { "name": "odieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "ugrave": { "name": "ugrave", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uacute": { "name": "uacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "ucircumflex": { "name": "ucircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "udieresis": { "name": "udieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "yacute": { "name": "yacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "ydieresis": { "name": "ydieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Amacron": { "name": "Amacron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "amacron": { "name": "amacron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1219": { "name": "glyph1219", "advanceWidth": 500, "contours": [], "references": [{"glyph":"amacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1220": { "name": "glyph1220", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Abreve": { "name": "Abreve", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "abreve": { "name": "abreve", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1223": { "name": "glyph1223", "advanceWidth": 500, "contours": [], "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1224": { "name": "glyph1224", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Aogonek": { "name": "Aogonek", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":654,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "aogonek": { "name": "aogonek", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":654,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1227": { "name": "glyph1227", "advanceWidth": 500, "contours": [], "references": [{"glyph":"aogonek","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1228": { "name": "glyph1228", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":654,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Cacute": { "name": "Cacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "cacute": { "name": "cacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Ccircumflex": { "name": "Ccircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "ccircumflex": { "name": "ccircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Cdotaccent": { "name": "Cdotaccent", "advanceWidth": 500, "contours": [], "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "cdotaccent": { "name": "cdotaccent", "advanceWidth": 500, "contours": [], "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Ccaron": { "name": "Ccaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "ccaron": { "name": "ccaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Dcaron": { "name": "Dcaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "Emacron": { "name": "Emacron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "emacron": { "name": "emacron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Ebreve": { "name": "Ebreve", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "ebreve": { "name": "ebreve", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Edotaccent": { "name": "Edotaccent", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "edotaccent": { "name": "edotaccent", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Eogonek": { "name": "Eogonek", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "eogonek": { "name": "eogonek", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Ecaron": { "name": "Ecaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "ecaron": { "name": "ecaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Gcircumflex": { "name": "Gcircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "gcircumflex": { "name": "gcircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1250": { "name": "glyph1250", "advanceWidth": 500, "contours": [], "references": [{"glyph":"gcircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1251": { "name": "glyph1251", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Gbreve": { "name": "Gbreve", "advanceWidth": 500, "contours": [], "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "gbreve": { "name": "gbreve", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1254": { "name": "glyph1254", "advanceWidth": 500, "contours": [], "references": [{"glyph":"gbreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1255": { "name": "glyph1255", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Gdotaccent": { "name": "Gdotaccent", "advanceWidth": 500, "contours": [], "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "gdotaccent": { "name": "gdotaccent", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1258": { "name": "glyph1258", "advanceWidth": 500, "contours": [], "references": [{"glyph":"gdotaccent","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1259": { "name": "glyph1259", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0122": { "name": "uni0122", "advanceWidth": 500, "contours": [], "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,235,176,51,43] + "instructions": "sQEBuPzrsDMr" }, "uni0123": { "name": "uni0123", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0312","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1262": { "name": "glyph1262", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0123","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1263": { "name": "glyph1263", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0312","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Hcircumflex": { "name": "Hcircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "hcircumflex": { "name": "hcircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "Itilde": { "name": "Itilde", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "itilde": { "name": "itilde", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1268": { "name": "glyph1268", "advanceWidth": 500, "contours": [], "references": [{"glyph":"itilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1269": { "name": "glyph1269", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1270": { "name": "glyph1270", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1271": { "name": "glyph1271", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Imacron": { "name": "Imacron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "imacron": { "name": "imacron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph476","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1274": { "name": "glyph1274", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph476","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1275": { "name": "glyph1275", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1276": { "name": "glyph1276", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1277": { "name": "glyph1277", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Ibreve": { "name": "Ibreve", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "ibreve": { "name": "ibreve", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1280": { "name": "glyph1280", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ibreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1281": { "name": "glyph1281", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1282": { "name": "glyph1282", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1283": { "name": "glyph1283", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Iogonek": { "name": "Iogonek", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "iogonek": { "name": "iogonek", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph132","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1286": { "name": "glyph1286", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iogonek","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1287": { "name": "glyph1287", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph135","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":597,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1288": { "name": "glyph1288", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph136","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1289": { "name": "glyph1289", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph137","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Idotaccent": { "name": "Idotaccent", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "Jcircumflex": { "name": "Jcircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph145","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":605,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "jcircumflex": { "name": "jcircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph150","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":550,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0136": { "name": "uni0136", "advanceWidth": 500, "contours": [], "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,235,176,51,43] + "instructions": "sQEBuPzrsDMr" }, "uni0137": { "name": "uni0137", "advanceWidth": 500, "contours": [], "references": [{"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,235,176,51,43] + "instructions": "sQEBuPzrsDMr" }, "Lacute": { "name": "Lacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "lacute": { "name": "lacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "glyph1297": { "name": "glyph1297", "advanceWidth": 500, "contours": [], "references": [{"glyph":"lacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "glyph1298": { "name": "glyph1298", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":460,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "glyph1299": { "name": "glyph1299", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "glyph1300": { "name": "glyph1300", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni013B": { "name": "uni013B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,235,176,51,43] + "instructions": "sQEBuPzrsDMr" }, "uni013C": { "name": "uni013C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,235,176,51,43] + "instructions": "sQEBuPzrsDMr" }, "glyph1303": { "name": "glyph1303", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni013C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,235,176,51,43] + "instructions": "sQEBuPzrsDMr" }, "glyph1304": { "name": "glyph1304", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":588,"y":-789,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,235,176,51,43] + "instructions": "sQEBuPzrsDMr" }, "glyph1305": { "name": "glyph1305", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,235,176,51,43] + "instructions": "sQEBuPzrsDMr" }, "glyph1306": { "name": "glyph1306", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,235,176,51,43] + "instructions": "sQEBuPzrsDMr" }, "lcaron": { "name": "lcaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":638,"y":-15,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,241,176,51,43] + "instructions": "sQEBuP/xsDMr" }, "glyph1308": { "name": "glyph1308", "advanceWidth": 500, "contours": [], "references": [{"glyph":"lcaron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,241,176,51,43] + "instructions": "sQEBuP/xsDMr" }, "glyph1309": { "name": "glyph1309", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":638,"y":-15,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,241,176,51,43] + "instructions": "sQEBuP/xsDMr" }, "glyph1310": { "name": "glyph1310", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":638,"y":-15,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,241,176,51,43] + "instructions": "sQEBuP/xsDMr" }, "glyph1311": { "name": "glyph1311", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":638,"y":-15,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,241,176,51,43] + "instructions": "sQEBuP/xsDMr" }, "lslash": { "name": "lslash", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniE090","x":504,"y":117,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,117,176,51,43] + "instructions": "sQEBsHWwMys=" }, "glyph1313": { "name": "glyph1313", "advanceWidth": 500, "contours": [], "references": [{"glyph":"lslash","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,117,176,51,43] + "instructions": "sQEBsHWwMys=" }, "glyph1314": { "name": "glyph1314", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniE090","x":460,"y":117,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,117,176,51,43] + "instructions": "sQEBsHWwMys=" }, "glyph1315": { "name": "glyph1315", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniE090","x":500,"y":117,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,117,176,51,43] + "instructions": "sQEBsHWwMys=" }, "glyph1316": { "name": "glyph1316", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniE090","x":500,"y":117,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,117,176,51,43] + "instructions": "sQEBsHWwMys=" }, "Nacute": { "name": "Nacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "nacute": { "name": "nacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0145": { "name": "uni0145", "advanceWidth": 500, "contours": [], "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,235,176,51,43] + "instructions": "sQEBuPzrsDMr" }, "uni0146": { "name": "uni0146", "advanceWidth": 500, "contours": [], "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,235,176,51,43] + "instructions": "sQEBuPzrsDMr" }, "Ncaron": { "name": "Ncaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "ncaron": { "name": "ncaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Omacron": { "name": "Omacron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "omacron": { "name": "omacron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Obreve": { "name": "Obreve", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "obreve": { "name": "obreve", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Ohungarumlaut": { "name": "Ohungarumlaut", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030B","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "ohungarumlaut": { "name": "ohungarumlaut", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030B","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Racute": { "name": "Racute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "racute": { "name": "racute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0156": { "name": "uni0156", "advanceWidth": 500, "contours": [], "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,235,176,51,43] + "instructions": "sQIBuPzrsDMr" }, "uni0157": { "name": "uni0157", "advanceWidth": 500, "contours": [], "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,235,176,51,43] + "instructions": "sQEBuPzrsDMr" }, "Rcaron": { "name": "Rcaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "rcaron": { "name": "rcaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Sacute": { "name": "Sacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "sacute": { "name": "sacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Scircumflex": { "name": "Scircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "scircumflex": { "name": "scircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Scedilla": { "name": "Scedilla", "advanceWidth": 500, "contours": [], "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "scedilla": { "name": "scedilla", "advanceWidth": 500, "contours": [], "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Scaron": { "name": "Scaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "scaron": { "name": "scaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0162": { "name": "uni0162", "advanceWidth": 500, "contours": [], "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0163": { "name": "uni0163", "advanceWidth": 500, "contours": [], "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":554,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Tcaron": { "name": "Tcaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "tcaron": { "name": "tcaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":638,"y":-15,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,241,176,51,43] + "instructions": "sQEBuP/xsDMr" }, "Utilde": { "name": "Utilde", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "utilde": { "name": "utilde", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Umacron": { "name": "Umacron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "umacron": { "name": "umacron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph510","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Ubreve": { "name": "Ubreve", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "ubreve": { "name": "ubreve", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Uring": { "name": "Uring", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uring": { "name": "uring", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Uhungarumlaut": { "name": "Uhungarumlaut", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030B","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uhungarumlaut": { "name": "uhungarumlaut", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030B","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Uogonek": { "name": "Uogonek", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uogonek": { "name": "uogonek", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":654,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Wcircumflex": { "name": "Wcircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "wcircumflex": { "name": "wcircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Ycircumflex": { "name": "Ycircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "ycircumflex": { "name": "ycircumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Ydieresis": { "name": "Ydieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "Zacute": { "name": "Zacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "zacute": { "name": "zacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Zdotaccent": { "name": "Zdotaccent", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "zdotaccent": { "name": "zdotaccent", "advanceWidth": 500, "contours": [], "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Zcaron": { "name": "Zcaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "zcaron": { "name": "zcaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0197": { "name": "uni0197", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":117,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,117,176,51,43] + "instructions": "sQEBsHWwMys=" }, "uni019A": { "name": "uni019A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":504,"y":117,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,117,176,51,43] + "instructions": "sQEBsHWwMys=" }, "glyph1372": { "name": "glyph1372", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni019A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,117,176,51,43] + "instructions": "sQEBsHWwMys=" }, "glyph1373": { "name": "glyph1373", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":460,"y":117,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,117,176,51,43] + "instructions": "sQEBsHWwMys=" }, "glyph1374": { "name": "glyph1374", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":117,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,117,176,51,43] + "instructions": "sQEBsHWwMys=" }, "glyph1375": { "name": "glyph1375", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":117,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,117,176,51,43] + "instructions": "sQEBsHWwMys=" }, "Ohorn": { "name": "Ohorn", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,126,176,51,43] + "instructions": "sQIBsH6wMys=" }, "ohorn": { "name": "ohorn", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,255,177,176,51,43] + "instructions": "sQIBuP+xsDMr" }, "uni01AE": { "name": "uni01AE", "advanceWidth": 500, "contours": [[{"x":60,"y":663,"on":true},{"x":60,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":663,"on":true},{"x":290,"y":663,"on":true},{"x":290,"y":0,"on":true},{"x":290,"y":-47,"on":false},{"x":304,"y":-71,"on":true},{"x":316,"y":-91,"on":false},{"x":336,"y":-103,"on":true},{"x":363,"y":-119,"on":false},{"x":420,"y":-119,"on":true},{"x":420,"y":-191,"on":true},{"x":328,"y":-191,"on":false},{"x":284,"y":-166,"on":true},{"x":251,"y":-147,"on":false},{"x":232,"y":-114,"on":true},{"x":210,"y":-75,"on":false},{"x":210,"y":0,"on":true},{"x":210,"y":663,"on":true}]], "references": [], - "instructions": [75,176,35,80,88,64,23,5,4,2,1,1,0,93,0,0,0,64,75,0,2,2,3,95,0,3,3,69,3,76,27,64,20,0,2,0,3,2,3,99,5,4,2,1,1,0,93,0,0,0,64,1,76,89,64,13,0,0,0,19,0,19,17,22,17,17,6,9,24,43] + "instructions": "S7AjUFhAFwUEAgEBAF0AAABASwACAgNfAAMDRQNMG0AUAAIAAwIDYwUEAgEBAF0AAABAAUxZQA0AAAATABMRFhERBgkYKw==" }, "Uhorn": { "name": "Uhorn", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,126,176,51,43] + "instructions": "sQEBsH6wMys=" }, "uhorn": { "name": "uhorn", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,177,176,51,43] + "instructions": "sQEBuP+xsDMr" }, "uni01B5": { "name": "uni01B5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":117,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,117,176,51,43] + "instructions": "sQEBsHWwMys=" }, "uni01B6": { "name": "uni01B6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,11,176,51,43] + "instructions": "sQEBsAuwMys=" }, "uni01BB": { "name": "uni01BB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"two","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0336","x":500,"y":117,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,117,176,51,43] + "instructions": "sQEBsHWwMys=" }, "uni01CD": { "name": "uni01CD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni01CE": { "name": "uni01CE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1386": { "name": "glyph1386", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni01CE","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1387": { "name": "glyph1387", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01CF": { "name": "uni01CF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni01D0": { "name": "uni01D0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1390": { "name": "glyph1390", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni01D0","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1391": { "name": "glyph1391", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1392": { "name": "glyph1392", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1393": { "name": "glyph1393", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01D1": { "name": "uni01D1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni01D2": { "name": "uni01D2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01D3": { "name": "uni01D3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni01D4": { "name": "uni01D4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01D5": { "name": "uni01D5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni01D6": { "name": "uni01D6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01D7": { "name": "uni01D7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni01D8": { "name": "uni01D8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01D9": { "name": "uni01D9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni01DA": { "name": "uni01DA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01DB": { "name": "uni01DB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni01DC": { "name": "uni01DC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01DE": { "name": "uni01DE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Adieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni01DF": { "name": "uni01DF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"adieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1408": { "name": "glyph1408", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni01DF","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1409": { "name": "glyph1409", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1176","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01E0": { "name": "uni01E0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0226","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni01E1": { "name": "uni01E1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0227","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1412": { "name": "glyph1412", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni01E1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1413": { "name": "glyph1413", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1488","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01E2": { "name": "uni01E2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"AE","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni01E3": { "name": "uni01E3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ae","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Gcaron": { "name": "Gcaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "gcaron": { "name": "gcaron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1418": { "name": "glyph1418", "advanceWidth": 500, "contours": [], "references": [{"glyph":"gcaron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1419": { "name": "glyph1419", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01E8": { "name": "uni01E8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni01E9": { "name": "uni01E9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni01EA": { "name": "uni01EA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01EB": { "name": "uni01EB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01EC": { "name": "uni01EC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Omacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni01ED": { "name": "uni01ED", "advanceWidth": 500, "contours": [], "references": [{"glyph":"omacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01EE": { "name": "uni01EE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni01B7","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni01EF": { "name": "uni01EF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni01EE","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni01F0": { "name": "uni01F0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph150","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":550,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01F4": { "name": "uni01F4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni01F5": { "name": "uni01F5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1431": { "name": "glyph1431", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni01F5","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1432": { "name": "glyph1432", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni01F8": { "name": "uni01F8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni01F9": { "name": "uni01F9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Aringacute": { "name": "Aringacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Aring","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "aringacute": { "name": "aringacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"aring","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1437": { "name": "glyph1437", "advanceWidth": 500, "contours": [], "references": [{"glyph":"aringacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1438": { "name": "glyph1438", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1179","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "AEacute": { "name": "AEacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"AE","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "aeacute": { "name": "aeacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ae","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Oslashacute": { "name": "Oslashacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Oslash","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,3,1,176,205,176,51,43] + "instructions": "sQMBsM2wMys=" }, "oslashacute": { "name": "oslashacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"oslash","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0200": { "name": "uni0200", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43,177,3,1,176,205,176,51,43] + "instructions": "sQIBsM2wMyuxAwGwzbAzKw==" }, "uni0201": { "name": "uni0201", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1445": { "name": "glyph1445", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0201","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1446": { "name": "glyph1446", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0202": { "name": "uni0202", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni0203": { "name": "uni0203", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1449": { "name": "glyph1449", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0203","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1450": { "name": "glyph1450", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0204": { "name": "uni0204", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43,177,2,1,176,205,176,51,43] + "instructions": "sQEBsM2wMyuxAgGwzbAzKw==" }, "uni0205": { "name": "uni0205", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0206": { "name": "uni0206", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni0207": { "name": "uni0207", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0208": { "name": "uni0208", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43,177,2,1,176,205,176,51,43] + "instructions": "sQEBsM2wMyuxAgGwzbAzKw==" }, "uni0209": { "name": "uni0209", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1457": { "name": "glyph1457", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0209","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1458": { "name": "glyph1458", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":562,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":392,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1459": { "name": "glyph1459", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1460": { "name": "glyph1460", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni020A": { "name": "uni020A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni020B": { "name": "uni020B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1463": { "name": "glyph1463", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni020B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1464": { "name": "glyph1464", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1465": { "name": "glyph1465", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1466": { "name": "glyph1466", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni020C": { "name": "uni020C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43,177,3,1,176,205,176,51,43] + "instructions": "sQIBsM2wMyuxAwGwzbAzKw==" }, "uni020D": { "name": "uni020D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni020E": { "name": "uni020E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni020F": { "name": "uni020F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0210": { "name": "uni0210", "advanceWidth": 500, "contours": [], "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43,177,3,1,176,205,176,51,43] + "instructions": "sQIBsM2wMyuxAwGwzbAzKw==" }, "uni0211": { "name": "uni0211", "advanceWidth": 500, "contours": [], "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0212": { "name": "uni0212", "advanceWidth": 500, "contours": [], "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni0213": { "name": "uni0213", "advanceWidth": 500, "contours": [], "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0214": { "name": "uni0214", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43,177,2,1,176,205,176,51,43] + "instructions": "sQEBsM2wMyuxAgGwzbAzKw==" }, "uni0215": { "name": "uni0215", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0216": { "name": "uni0216", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni0217": { "name": "uni0217", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0218": { "name": "uni0218", "advanceWidth": 500, "contours": [], "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,235,176,51,43] + "instructions": "sQEBuPzrsDMr" }, "uni0219": { "name": "uni0219", "advanceWidth": 500, "contours": [], "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,235,176,51,43] + "instructions": "sQEBuPzrsDMr" }, "uni021A": { "name": "uni021A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,235,176,51,43] + "instructions": "sQEBuPzrsDMr" }, "uni021B": { "name": "uni021B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":554,"y":-789,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,235,176,51,43] + "instructions": "sQEBuPzrsDMr" }, "uni021E": { "name": "uni021E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni021F": { "name": "uni021F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni0226": { "name": "uni0226", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni0227": { "name": "uni0227", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1487": { "name": "glyph1487", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0227","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1488": { "name": "glyph1488", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0228": { "name": "uni0228", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0229": { "name": "uni0229", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni022A": { "name": "uni022A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Odieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni022B": { "name": "uni022B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"odieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni022C": { "name": "uni022C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni022D": { "name": "uni022D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni022E": { "name": "uni022E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni022F": { "name": "uni022F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0230": { "name": "uni0230", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni022E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni0231": { "name": "uni0231", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni022F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0232": { "name": "uni0232", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni0233": { "name": "uni0233", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni023A": { "name": "uni023A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0338","x":500,"y":102,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,102,176,51,43] + "instructions": "sQIBsGawMys=" }, "uni023B": { "name": "uni023B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0338","x":500,"y":102,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,102,176,51,43] + "instructions": "sQEBsGawMys=" }, "uni023C": { "name": "uni023C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0337","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni023E": { "name": "uni023E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0338","x":500,"y":102,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,102,176,51,43] + "instructions": "sQEBsGawMys=" }, "uni0244": { "name": "uni0244", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0336","x":500,"y":117,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,117,176,51,43] + "instructions": "sQEBsHWwMys=" }, "uni0246": { "name": "uni0246", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0338","x":500,"y":102,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,102,176,51,43] + "instructions": "sQEBsGawMys=" }, "uni0247": { "name": "uni0247", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0337","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0248": { "name": "uni0248", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph145","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":605,"y":117,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,117,176,51,43] + "instructions": "sQEBsHWwMys=" }, "uni0249": { "name": "uni0249", "advanceWidth": 500, "contours": [], "references": [{"glyph":"j","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":550,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni024C": { "name": "uni024C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":390,"y":89,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,89,176,51,43] + "instructions": "sQIBsFmwMys=" }, "uni024D": { "name": "uni024D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":432,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni024E": { "name": "uni024E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0336","x":500,"y":29,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,29,176,51,43] + "instructions": "sQEBsB2wMys=" }, "uni024F": { "name": "uni024F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0336","x":500,"y":-88,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,168,176,51,43] + "instructions": "sQEBuP+osDMr" }, "uni0256": { "name": "uni0256", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":398,"on":false},{"x":85,"y":456,"on":true},{"x":109,"y":497,"on":false},{"x":146,"y":518,"on":true},{"x":180,"y":538,"on":false},{"x":225,"y":538,"on":true},{"x":267,"y":538,"on":false},{"x":299,"y":520,"on":true},{"x":334,"y":500,"on":false},{"x":357,"y":460,"on":true},{"x":359,"y":457,"on":false},{"x":360,"y":454,"on":true},{"x":360,"y":735,"on":true},{"x":440,"y":735,"on":true},{"x":440,"y":0,"on":true},{"x":440,"y":-47,"on":false},{"x":454,"y":-71,"on":true},{"x":466,"y":-91,"on":false},{"x":486,"y":-103,"on":true},{"x":513,"y":-119,"on":false},{"x":570,"y":-119,"on":true},{"x":570,"y":-191,"on":true},{"x":478,"y":-191,"on":false},{"x":434,"y":-166,"on":true},{"x":401,"y":-147,"on":false},{"x":382,"y":-114,"on":true},{"x":360,"y":-75,"on":false},{"x":360,"y":0,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":225,"y":-8,"on":true},{"x":180,"y":-8,"on":false},{"x":146,"y":12,"on":true},{"x":109,"y":33,"on":false},{"x":85,"y":74,"on":true},{"x":52,"y":132,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":157,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":249,"y":466,"on":true},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [182,30,13,2,5,6,1,74,75,176,35,80,88,64,36,0,1,1,64,75,0,6,6,0,95,0,0,0,75,75,0,5,5,4,95,0,4,4,73,75,0,2,2,3,95,0,3,3,69,3,76,27,64,33,0,2,0,3,2,3,99,0,1,1,64,75,0,6,6,0,95,0,0,0,75,75,0,5,5,4,95,0,4,4,73,4,76,89,64,10,43,42,43,17,22,22,38,7,9,27,43] + "instructions": "th4NAgUGAUpLsCNQWEAkAAEBQEsABgYAXwAAAEtLAAUFBF8ABARJSwACAgNfAAMDRQNMG0AhAAIAAwIDYwABAUBLAAYGAF8AAABLSwAFBQRfAAQESQRMWUAKKyorERYWJgcJGys=" }, "uni0268": { "name": "uni0268", "advanceWidth": 500, "contours": [], "references": [{"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1516": { "name": "glyph1516", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0268","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1517": { "name": "glyph1517", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph135","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1518": { "name": "glyph1518", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph136","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1519": { "name": "glyph1519", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph137","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0273": { "name": "uni0273", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":454,"on":true},{"x":142,"y":457,"on":false},{"x":143,"y":460,"on":true},{"x":166,"y":500,"on":false},{"x":201,"y":520,"on":true},{"x":233,"y":538,"on":false},{"x":317,"y":538,"on":false},{"x":348,"y":520,"on":true},{"x":383,"y":500,"on":false},{"x":406,"y":460,"on":true},{"x":440,"y":401,"on":false},{"x":440,"y":310,"on":true},{"x":440,"y":0,"on":true},{"x":440,"y":-47,"on":false},{"x":454,"y":-71,"on":true},{"x":466,"y":-91,"on":false},{"x":486,"y":-103,"on":true},{"x":513,"y":-119,"on":false},{"x":570,"y":-119,"on":true},{"x":570,"y":-191,"on":true},{"x":478,"y":-191,"on":false},{"x":434,"y":-166,"on":true},{"x":401,"y":-147,"on":false},{"x":382,"y":-114,"on":true},{"x":360,"y":-75,"on":false},{"x":360,"y":0,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":223,"y":466,"on":false},{"x":202,"y":454,"on":true},{"x":179,"y":441,"on":false},{"x":163,"y":414,"on":true},{"x":140,"y":374,"on":false},{"x":140,"y":310,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [181,3,1,5,4,1,74,75,176,29,80,88,64,28,0,4,4,0,95,1,1,0,0,67,75,6,1,5,5,65,75,0,2,2,3,95,0,3,3,69,3,76,27,75,176,35,80,88,64,32,0,0,0,67,75,0,4,4,1,95,0,1,1,75,75,6,1,5,5,65,75,0,2,2,3,95,0,3,3,69,3,76,27,64,29,0,2,0,3,2,3,99,0,0,0,67,75,0,4,4,1,95,0,1,1,75,75,6,1,5,5,65,5,76,89,89,64,14,0,0,0,41,0,41,27,17,27,22,17,7,9,25,43] + "instructions": "tQMBBQQBSkuwHVBYQBwABAQAXwEBAABDSwYBBQVBSwACAgNfAAMDRQNMG0uwI1BYQCAAAABDSwAEBAFfAAEBS0sGAQUFQUsAAgIDXwADA0UDTBtAHQACAAMCA2MAAABDSwAEBAFfAAEBS0sGAQUFQQVMWVlADgAAACkAKRsRGxYRBwkZKw==" }, "uni0289": { "name": "uni0289", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0336","x":500,"y":11,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,11,176,51,43] + "instructions": "sQEBsAuwMys=" }, "uni0290": { "name": "uni0290", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":344,"y":458,"on":true},{"x":60,"y":458,"on":true},{"x":60,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":458,"on":true},{"x":156,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":0,"on":true},{"x":440,"y":-47,"on":false},{"x":454,"y":-71,"on":true},{"x":466,"y":-91,"on":false},{"x":486,"y":-103,"on":true},{"x":513,"y":-119,"on":false},{"x":570,"y":-119,"on":true},{"x":570,"y":-191,"on":true},{"x":478,"y":-191,"on":false},{"x":434,"y":-166,"on":true},{"x":401,"y":-147,"on":false},{"x":382,"y":-114,"on":true},{"x":360,"y":-75,"on":false},{"x":360,"y":0,"on":true}]], "references": [], - "instructions": [183,6,1,0,1,1,2,2,73,75,176,35,80,88,64,32,0,0,0,1,93,0,1,1,67,75,0,2,2,5,93,6,1,5,5,65,75,0,3,3,4,95,0,4,4,69,4,76,27,64,29,0,3,0,4,3,4,99,0,0,0,1,93,0,1,1,67,75,0,2,2,5,93,6,1,5,5,65,5,76,89,64,14,0,0,0,22,0,22,17,22,18,17,18,7,9,25,43] + "instructions": "twYBAAEBAgJJS7AjUFhAIAAAAAFdAAEBQ0sAAgIFXQYBBQVBSwADAwRfAAQERQRMG0AdAAMABAMEYwAAAAFdAAEBQ0sAAgIFXQYBBQVBBUxZQA4AAAAWABYRFhIREgcJGSs=" }, "circumflex": { "name": "circumflex", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "caron": { "name": "caron", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02C9": { "name": "uni02C9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02CA": { "name": "uni02CA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02CB": { "name": "uni02CB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02CD": { "name": "uni02CD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,184,176,51,43] + "instructions": "sQABuPy4sDMr" }, "uni02CE": { "name": "uni02CE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0316","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02CF": { "name": "uni02CF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0317","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02D2": { "name": "uni02D2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0339","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02D3": { "name": "uni02D3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni031C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02D4": { "name": "uni02D4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni031D","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02D5": { "name": "uni02D5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni031E","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02D6": { "name": "uni02D6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni031F","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02D7": { "name": "uni02D7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0320","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "breve": { "name": "breve", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "dotaccent": { "name": "dotaccent", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "ring": { "name": "ring", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni030A","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "ogonek": { "name": "ogonek", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "tilde": { "name": "tilde", "advanceWidth": 500, "contours": [], "references": [{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "hungarumlaut": { "name": "hungarumlaut", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni030B","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02DF": { "name": "uni02DF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni033D","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02EC": { "name": "uni02EC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni030C","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,219,176,51,43] + "instructions": "sQABuPzbsDMr" }, "uni02ED": { "name": "uni02ED", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni033F","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02F3": { "name": "uni02F3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni030A","x":500,"y":-791,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,184,252,233,176,51,43] + "instructions": "sQACuPzpsDMr" }, "uni02F7": { "name": "uni02F7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,210,176,51,43] + "instructions": "sQABuPzSsDMr" }, "uni0344": { "name": "uni0344", "advanceWidth": 0, "contours": [], "references": [{"glyph":"acutecomb","x":0,"y":214,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,214,176,51,43] + "instructions": "sQABsNawMys=" }, "uni037A": { "name": "uni037A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,226,176,51,43] + "instructions": "sQABuPzisDMr" }, "tonos": { "name": "tonos", "advanceWidth": 500, "contours": [], "references": [{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "dieresistonos": { "name": "dieresistonos", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0344","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,214,176,51,43] + "instructions": "sQABsNawMys=" }, "Alphatonos": { "name": "Alphatonos", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Aacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "Epsilontonos": { "name": "Epsilontonos", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Eacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "Etatonos": { "name": "Etatonos", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "Iotatonos": { "name": "Iotatonos", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Iacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "Omicrontonos": { "name": "Omicrontonos", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Oacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "Upsilontonos": { "name": "Upsilontonos", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Yacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "Omegatonos": { "name": "Omegatonos", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "iotadieresistonos": { "name": "iotadieresistonos", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0344","x":500,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,214,176,51,43] + "instructions": "sQABsNawMys=" }, "Iotadieresis": { "name": "Iotadieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "Upsilondieresis": { "name": "Upsilondieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ydieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "alphatonos": { "name": "alphatonos", "advanceWidth": 500, "contours": [], "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "epsilontonos": { "name": "epsilontonos", "advanceWidth": 500, "contours": [], "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "etatonos": { "name": "etatonos", "advanceWidth": 500, "contours": [], "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "iotatonos": { "name": "iotatonos", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "upsilondieresistonos": { "name": "upsilondieresistonos", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0344","x":500,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,214,176,51,43] + "instructions": "sQABsNawMys=" }, "iotadieresis": { "name": "iotadieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "upsilondieresis": { "name": "upsilondieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "omicrontonos": { "name": "omicrontonos", "advanceWidth": 500, "contours": [], "references": [{"glyph":"oacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "upsilontonos": { "name": "upsilontonos", "advanceWidth": 500, "contours": [], "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "omegatonos": { "name": "omegatonos", "advanceWidth": 500, "contours": [], "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0400": { "name": "uni0400", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Egrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni0401": { "name": "uni0401", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Edieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni0403": { "name": "uni0403", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Gamma","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni0407": { "name": "uni0407", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni040C": { "name": "uni040C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni040D": { "name": "uni040D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0418","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni040E": { "name": "uni040E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph221","x":0,"y":205,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,205,176,51,43,177,1,1,176,205,176,51,43] + "instructions": "sQABsM2wMyuxAQGwzbAzKw==" }, "uni0419": { "name": "uni0419", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0418","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni0439": { "name": "uni0439", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph543","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0450": { "name": "uni0450", "advanceWidth": 500, "contours": [], "references": [{"glyph":"egrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0451": { "name": "uni0451", "advanceWidth": 500, "contours": [], "references": [{"glyph":"edieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0453": { "name": "uni0453", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph475","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0457": { "name": "uni0457", "advanceWidth": 500, "contours": [], "references": [{"glyph":"idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1585": { "name": "glyph1585", "advanceWidth": 500, "contours": [], "references": [{"glyph":"idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1586": { "name": "glyph1586", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1202","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1587": { "name": "glyph1587", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1203","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1588": { "name": "glyph1588", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1204","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni045C": { "name": "uni045C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"kappa","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni045D": { "name": "uni045D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph543","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni045E": { "name": "uni045E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni040E","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,205,176,51,43,177,1,1,176,205,176,51,43] + "instructions": "sQABsM2wMyuxAQGwzbAzKw==" }, "uni0476": { "name": "uni0476", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0474","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43,177,2,1,176,205,176,51,43] + "instructions": "sQEBsM2wMyuxAgGwzbAzKw==" }, "uni0477": { "name": "uni0477", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2C71","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0498": { "name": "uni0498", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0417","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni0499": { "name": "uni0499", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0437","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04AA": { "name": "uni04AA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ccedilla","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04AB": { "name": "uni04AB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ccedilla","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04B0": { "name": "uni04B0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":29,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,29,176,51,43] + "instructions": "sQEBsB2wMys=" }, "uni04B1": { "name": "uni04B1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni04B0","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,29,176,51,43] + "instructions": "sQEBsB2wMys=" }, "uni04C1": { "name": "uni04C1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0416","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni04C2": { "name": "uni04C2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0436","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04D0": { "name": "uni04D0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni04D1": { "name": "uni04D1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1604": { "name": "glyph1604", "advanceWidth": 500, "contours": [], "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1605": { "name": "glyph1605", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1224","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04D2": { "name": "uni04D2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Adieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni04D3": { "name": "uni04D3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"adieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1608": { "name": "glyph1608", "advanceWidth": 500, "contours": [], "references": [{"glyph":"adieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1609": { "name": "glyph1609", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1176","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04D6": { "name": "uni04D6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ebreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni04D7": { "name": "uni04D7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ebreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04DA": { "name": "uni04DA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni018F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni04DB": { "name": "uni04DB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni01DD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04DC": { "name": "uni04DC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0416","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni04DD": { "name": "uni04DD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0436","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04DE": { "name": "uni04DE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0417","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni04DF": { "name": "uni04DF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0437","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04E2": { "name": "uni04E2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0418","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni04E3": { "name": "uni04E3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph543","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04E4": { "name": "uni04E4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0418","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni04E5": { "name": "uni04E5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph543","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04E6": { "name": "uni04E6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Odieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni04E7": { "name": "uni04E7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"odieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04EA": { "name": "uni04EA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni019F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,3,2,176,205,176,51,43] + "instructions": "sQMCsM2wMys=" }, "uni04EB": { "name": "uni04EB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0275","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04EC": { "name": "uni04EC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni042D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni04ED": { "name": "uni04ED", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni044D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04EE": { "name": "uni04EE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0233","x":0,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04EF": { "name": "uni04EF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0233","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04F0": { "name": "uni04F0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ydieresis","x":0,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04F1": { "name": "uni04F1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ydieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04F2": { "name": "uni04F2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph221","x":0,"y":205,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030B","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,205,176,51,43,177,1,2,176,205,176,51,43] + "instructions": "sQABsM2wMyuxAQKwzbAzKw==" }, "uni04F3": { "name": "uni04F3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni04F2","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,205,176,51,43,177,1,2,176,205,176,51,43] + "instructions": "sQABsM2wMyuxAQKwzbAzKw==" }, "uni04F4": { "name": "uni04F4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0427","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni04F5": { "name": "uni04F5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0447","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni04F8": { "name": "uni04F8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni042B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,3,2,176,205,176,51,43] + "instructions": "sQMCsM2wMys=" }, "uni04F9": { "name": "uni04F9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni044B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1D7B": { "name": "uni1D7B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni026A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,11,176,51,43] + "instructions": "sQEBsAuwMys=" }, "uni1D7C": { "name": "uni1D7C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,11,176,51,43] + "instructions": "sQEBsAuwMys=" }, "uni1D7D": { "name": "uni1D7D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"p","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0336","x":500,"y":-88,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,255,168,176,51,43] + "instructions": "sQIBuP+osDMr" }, "uni1D7F": { "name": "uni1D7F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni028A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0336","x":500,"y":11,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,11,176,51,43] + "instructions": "sQEBsAuwMys=" }, "uni1D8F": { "name": "uni1D8F", "advanceWidth": 500, "contours": [[{"x":52,"y":149,"on":true},{"x":52,"y":195,"on":false},{"x":71,"y":227,"on":true},{"x":91,"y":262,"on":false},{"x":131,"y":285,"on":true},{"x":186,"y":317,"on":false},{"x":269,"y":317,"on":true},{"x":360,"y":317,"on":true},{"x":360,"y":363,"on":true},{"x":360,"y":394,"on":false},{"x":347,"y":417,"on":true},{"x":335,"y":438,"on":false},{"x":313,"y":451,"on":true},{"x":286,"y":466,"on":false},{"x":247,"y":466,"on":true},{"x":207,"y":466,"on":false},{"x":181,"y":450,"on":true},{"x":159,"y":438,"on":false},{"x":146,"y":416,"on":true},{"x":137,"y":400,"on":false},{"x":135,"y":382,"on":true},{"x":58,"y":400,"on":true},{"x":62,"y":428,"on":false},{"x":76,"y":453,"on":true},{"x":97,"y":490,"on":false},{"x":134,"y":512,"on":true},{"x":180,"y":538,"on":false},{"x":247,"y":538,"on":true},{"x":313,"y":538,"on":false},{"x":360,"y":511,"on":true},{"x":398,"y":489,"on":false},{"x":418,"y":454,"on":true},{"x":440,"y":416,"on":false},{"x":440,"y":363,"on":true},{"x":440,"y":0,"on":true},{"x":440,"y":-47,"on":false},{"x":454,"y":-71,"on":true},{"x":466,"y":-91,"on":false},{"x":486,"y":-103,"on":true},{"x":513,"y":-119,"on":false},{"x":570,"y":-119,"on":true},{"x":570,"y":-191,"on":true},{"x":478,"y":-191,"on":false},{"x":434,"y":-166,"on":true},{"x":401,"y":-147,"on":false},{"x":382,"y":-114,"on":true},{"x":360,"y":-75,"on":false},{"x":360,"y":0,"on":true},{"x":360,"y":74,"on":true},{"x":337,"y":36,"on":false},{"x":300,"y":15,"on":true},{"x":260,"y":-8,"on":false},{"x":206,"y":-8,"on":true},{"x":157,"y":-8,"on":false},{"x":123,"y":12,"on":true},{"x":92,"y":30,"on":false},{"x":73,"y":62,"on":true},{"x":52,"y":99,"on":false}],[{"x":132,"y":149,"on":true},{"x":132,"y":100,"on":false},{"x":172,"y":78,"on":true},{"x":196,"y":64,"on":false},{"x":231,"y":64,"on":true},{"x":271,"y":64,"on":false},{"x":300,"y":81,"on":true},{"x":327,"y":96,"on":false},{"x":342,"y":123,"on":true},{"x":360,"y":154,"on":false},{"x":360,"y":198,"on":true},{"x":360,"y":245,"on":true},{"x":269,"y":245,"on":true},{"x":213,"y":245,"on":false},{"x":177,"y":225,"on":true},{"x":154,"y":212,"on":false},{"x":142,"y":191,"on":true},{"x":132,"y":173,"on":false}]], "references": [], - "instructions": [64,11,21,20,2,0,1,48,1,6,7,2,74,75,176,35,80,88,64,39,0,0,0,7,6,0,7,101,0,1,1,2,95,0,2,2,75,75,0,6,6,5,95,0,5,5,73,75,0,3,3,4,95,0,4,4,69,4,76,27,64,36,0,0,0,7,6,0,7,101,0,3,0,4,3,4,99,0,1,1,2,95,0,2,2,75,75,0,6,6,5,95,0,5,5,73,5,76,89,64,11,38,40,41,17,27,43,38,37,8,9,28,43] + "instructions": "QAsVFAIAATABBgcCSkuwI1BYQCcAAAAHBgAHZQABAQJfAAICS0sABgYFXwAFBUlLAAMDBF8ABARFBEwbQCQAAAAHBgAHZQADAAQDBGMAAQECXwACAktLAAYGBV8ABQVJBUxZQAsmKCkRGysmJQgJHCs=" }, "glyph1643": { "name": "glyph1643", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1D8F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1644": { "name": "glyph1644", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni024B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1D90": { "name": "uni1D90", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":398,"on":false},{"x":85,"y":456,"on":true},{"x":109,"y":497,"on":false},{"x":146,"y":518,"on":true},{"x":180,"y":538,"on":false},{"x":225,"y":538,"on":true},{"x":267,"y":538,"on":false},{"x":299,"y":520,"on":true},{"x":334,"y":500,"on":false},{"x":357,"y":460,"on":true},{"x":359,"y":457,"on":false},{"x":360,"y":454,"on":true},{"x":360,"y":494,"on":true},{"x":440,"y":538,"on":true},{"x":440,"y":0,"on":true},{"x":440,"y":-47,"on":false},{"x":454,"y":-71,"on":true},{"x":466,"y":-91,"on":false},{"x":486,"y":-103,"on":true},{"x":513,"y":-119,"on":false},{"x":570,"y":-119,"on":true},{"x":570,"y":-191,"on":true},{"x":478,"y":-191,"on":false},{"x":434,"y":-166,"on":true},{"x":401,"y":-147,"on":false},{"x":382,"y":-114,"on":true},{"x":360,"y":-75,"on":false},{"x":360,"y":0,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":225,"y":-8,"on":true},{"x":180,"y":-8,"on":false},{"x":146,"y":12,"on":true},{"x":109,"y":33,"on":false},{"x":85,"y":74,"on":true},{"x":52,"y":132,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":249,"y":466,"on":true},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [64,15,14,1,5,0,30,13,2,4,5,2,74,15,1,0,72,75,176,35,80,88,64,31,0,5,5,0,95,0,0,0,75,75,0,4,4,3,95,0,3,3,73,75,0,1,1,2,95,0,2,2,69,2,76,27,64,28,0,1,0,2,1,2,99,0,5,5,0,95,0,0,0,75,75,0,4,4,3,95,0,3,3,73,3,76,89,64,9,43,42,43,17,29,38,6,9,26,43] + "instructions": "QA8OAQUAHg0CBAUCSg8BAEhLsCNQWEAfAAUFAF8AAABLSwAEBANfAAMDSUsAAQECXwACAkUCTBtAHAABAAIBAmMABQUAXwAAAEtLAAQEA18AAwNJA0xZQAkrKisRHSYGCRor" }, "uni1D91": { "name": "uni1D91", "advanceWidth": 500, "contours": [[{"x":52,"y":220,"on":true},{"x":52,"y":310,"on":true},{"x":52,"y":398,"on":false},{"x":85,"y":456,"on":true},{"x":109,"y":497,"on":false},{"x":146,"y":518,"on":true},{"x":180,"y":538,"on":false},{"x":225,"y":538,"on":true},{"x":267,"y":538,"on":false},{"x":299,"y":520,"on":true},{"x":334,"y":500,"on":false},{"x":357,"y":460,"on":true},{"x":359,"y":457,"on":false},{"x":360,"y":454,"on":true},{"x":360,"y":530,"on":true},{"x":360,"y":587,"on":false},{"x":384,"y":629,"on":true},{"x":407,"y":668,"on":false},{"x":448,"y":692,"on":true},{"x":498,"y":721,"on":false},{"x":570,"y":721,"on":true},{"x":570,"y":649,"on":true},{"x":526,"y":649,"on":false},{"x":495,"y":631,"on":true},{"x":440,"y":599,"on":false},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":440,"y":-47,"on":false},{"x":454,"y":-71,"on":true},{"x":466,"y":-91,"on":false},{"x":486,"y":-103,"on":true},{"x":513,"y":-119,"on":false},{"x":570,"y":-119,"on":true},{"x":570,"y":-191,"on":true},{"x":478,"y":-191,"on":false},{"x":434,"y":-166,"on":true},{"x":401,"y":-147,"on":false},{"x":382,"y":-114,"on":true},{"x":360,"y":-75,"on":false},{"x":360,"y":0,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":225,"y":-8,"on":true},{"x":180,"y":-8,"on":false},{"x":146,"y":12,"on":true},{"x":109,"y":33,"on":false},{"x":85,"y":74,"on":true},{"x":52,"y":132,"on":false}],[{"x":132,"y":220,"on":true},{"x":132,"y":159,"on":false},{"x":155,"y":120,"on":true},{"x":171,"y":92,"on":false},{"x":196,"y":77,"on":true},{"x":219,"y":64,"on":false},{"x":249,"y":64,"on":true},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":157,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":310,"on":true},{"x":360,"y":373,"on":false},{"x":337,"y":414,"on":true},{"x":322,"y":441,"on":false},{"x":298,"y":454,"on":true},{"x":277,"y":466,"on":false},{"x":249,"y":466,"on":true},{"x":219,"y":466,"on":false},{"x":196,"y":453,"on":true},{"x":171,"y":439,"on":false},{"x":155,"y":410,"on":true},{"x":132,"y":370,"on":false},{"x":132,"y":310,"on":true}]], "references": [], - "instructions": [182,40,13,2,6,7,1,74,75,176,35,80,88,64,41,0,2,2,1,95,0,1,1,64,75,0,7,7,0,95,0,0,0,75,75,0,6,6,5,95,0,5,5,73,75,0,3,3,4,95,0,4,4,69,4,76,27,64,36,0,1,0,2,0,1,2,103,0,3,0,4,3,4,99,0,7,7,0,95,0,0,0,75,75,0,6,6,5,95,0,5,5,73,5,76,89,64,11,43,42,43,17,25,17,27,38,8,9,28,43] + "instructions": "tigNAgYHAUpLsCNQWEApAAICAV8AAQFASwAHBwBfAAAAS0sABgYFXwAFBUlLAAMDBF8ABARFBEwbQCQAAQACAAECZwADAAQDBGMABwcAXwAAAEtLAAYGBV8ABQVJBUxZQAsrKisRGREbJggJHCs=" }, "uni1D99": { "name": "uni1D99", "advanceWidth": 500, "contours": [[{"x":60,"y":220,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":220,"on":true},{"x":140,"y":157,"on":false},{"x":163,"y":116,"on":true},{"x":178,"y":89,"on":false},{"x":202,"y":76,"on":true},{"x":223,"y":64,"on":false},{"x":277,"y":64,"on":false},{"x":298,"y":76,"on":true},{"x":321,"y":89,"on":false},{"x":337,"y":116,"on":true},{"x":360,"y":156,"on":false},{"x":360,"y":220,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":440,"y":-47,"on":false},{"x":454,"y":-71,"on":true},{"x":466,"y":-91,"on":false},{"x":486,"y":-103,"on":true},{"x":513,"y":-119,"on":false},{"x":570,"y":-119,"on":true},{"x":570,"y":-191,"on":true},{"x":478,"y":-191,"on":false},{"x":434,"y":-166,"on":true},{"x":401,"y":-147,"on":false},{"x":382,"y":-114,"on":true},{"x":360,"y":-75,"on":false},{"x":360,"y":0,"on":true},{"x":360,"y":76,"on":true},{"x":358,"y":73,"on":false},{"x":357,"y":70,"on":true},{"x":334,"y":30,"on":false},{"x":299,"y":10,"on":true},{"x":267,"y":-8,"on":false},{"x":183,"y":-8,"on":false},{"x":152,"y":10,"on":true},{"x":117,"y":30,"on":false},{"x":94,"y":70,"on":true},{"x":60,"y":129,"on":false}]], "references": [], - "instructions": [181,31,1,1,0,1,74,75,176,35,80,88,64,27,2,1,0,0,67,75,0,1,1,5,95,0,5,5,73,75,0,3,3,4,95,0,4,4,69,4,76,27,64,24,0,3,0,4,3,4,99,2,1,0,0,67,75,0,1,1,5,95,0,5,5,73,5,76,89,64,9,27,17,22,22,22,17,6,9,26,43] + "instructions": "tR8BAQABSkuwI1BYQBsCAQAAQ0sAAQEFXwAFBUlLAAMDBF8ABARFBEwbQBgAAwAEAwRjAgEAAENLAAEBBV8ABQVJBUxZQAkbERYWFhEGCRor" }, "uni1E00": { "name": "uni1E00", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":-791,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,184,252,233,176,51,43] + "instructions": "sQICuPzpsDMr" }, "uni1E01": { "name": "uni1E01", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":-791,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,184,252,233,176,51,43] + "instructions": "sQICuPzpsDMr" }, "glyph1650": { "name": "glyph1650", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1E01","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,184,252,233,176,51,43] + "instructions": "sQICuPzpsDMr" }, "glyph1651": { "name": "glyph1651", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":-791,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,184,252,233,176,51,43] + "instructions": "sQICuPzpsDMr" }, "uni1E02": { "name": "uni1E02", "advanceWidth": 500, "contours": [], "references": [{"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,3,1,176,205,176,51,43] + "instructions": "sQMBsM2wMys=" }, "uni1E04": { "name": "uni1E04", "advanceWidth": 500, "contours": [], "references": [{"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,3,1,184,252,184,176,51,43] + "instructions": "sQMBuPy4sDMr" }, "uni1E05": { "name": "uni1E05", "advanceWidth": 500, "contours": [], "references": [{"glyph":"b","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,184,176,51,43] + "instructions": "sQIBuPy4sDMr" }, "uni1E06": { "name": "uni1E06", "advanceWidth": 500, "contours": [], "references": [{"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,3,1,184,252,184,176,51,43] + "instructions": "sQMBuPy4sDMr" }, "uni1E07": { "name": "uni1E07", "advanceWidth": 500, "contours": [], "references": [{"glyph":"b","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,184,176,51,43] + "instructions": "sQIBuPy4sDMr" }, "uni1E08": { "name": "uni1E08", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ccedilla","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E09": { "name": "uni1E09", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ccedilla","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E0A": { "name": "uni1E0A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1E0C": { "name": "uni1E0C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,184,176,51,43] + "instructions": "sQIBuPy4sDMr" }, "uni1E0D": { "name": "uni1E0D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,184,176,51,43] + "instructions": "sQIBuPy4sDMr" }, "uni1E0E": { "name": "uni1E0E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,184,176,51,43] + "instructions": "sQIBuPy4sDMr" }, "uni1E0F": { "name": "uni1E0F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,184,176,51,43] + "instructions": "sQIBuPy4sDMr" }, "uni1E10": { "name": "uni1E10", "advanceWidth": 500, "contours": [], "references": [{"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E11": { "name": "uni1E11", "advanceWidth": 500, "contours": [], "references": [{"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E12": { "name": "uni1E12", "advanceWidth": 500, "contours": [], "references": [{"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,219,176,51,43] + "instructions": "sQIBuPzbsDMr" }, "uni1E13": { "name": "uni1E13", "advanceWidth": 500, "contours": [], "references": [{"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,219,176,51,43] + "instructions": "sQIBuPzbsDMr" }, "uni1E14": { "name": "uni1E14", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Emacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E15": { "name": "uni1E15", "advanceWidth": 500, "contours": [], "references": [{"glyph":"emacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E16": { "name": "uni1E16", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Emacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E17": { "name": "uni1E17", "advanceWidth": 500, "contours": [], "references": [{"glyph":"emacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E18": { "name": "uni1E18", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,219,176,51,43] + "instructions": "sQEBuPzbsDMr" }, "uni1E19": { "name": "uni1E19", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,219,176,51,43] + "instructions": "sQIBuPzbsDMr" }, "uni1E1A": { "name": "uni1E1A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,210,176,51,43] + "instructions": "sQEBuPzSsDMr" }, "uni1E1B": { "name": "uni1E1B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,210,176,51,43] + "instructions": "sQIBuPzSsDMr" }, "uni1E1C": { "name": "uni1E1C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ebreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E1D": { "name": "uni1E1D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ebreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E1E": { "name": "uni1E1E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E1F": { "name": "uni1E1F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph410","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E20": { "name": "uni1E20", "advanceWidth": 500, "contours": [], "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E21": { "name": "uni1E21", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1682": { "name": "glyph1682", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1E21","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1683": { "name": "glyph1683", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E22": { "name": "uni1E22", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E23": { "name": "uni1E23", "advanceWidth": 500, "contours": [], "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E24": { "name": "uni1E24", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E25": { "name": "uni1E25", "advanceWidth": 500, "contours": [], "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E26": { "name": "uni1E26", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1E27": { "name": "uni1E27", "advanceWidth": 500, "contours": [], "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1E28": { "name": "uni1E28", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E29": { "name": "uni1E29", "advanceWidth": 500, "contours": [], "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E2A": { "name": "uni1E2A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,226,176,51,43] + "instructions": "sQEBuPzisDMr" }, "uni1E2B": { "name": "uni1E2B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,226,176,51,43] + "instructions": "sQEBuPzisDMr" }, "uni1E2C": { "name": "uni1E2C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,210,176,51,43] + "instructions": "sQEBuPzSsDMr" }, "uni1E2D": { "name": "uni1E2D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1696": { "name": "glyph1696", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1E2D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1697": { "name": "glyph1697", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph135","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":597,"y":-814,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1698": { "name": "glyph1698", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph136","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1699": { "name": "glyph1699", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph137","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E2E": { "name": "uni1E2E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1E2F": { "name": "uni1E2F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1702": { "name": "glyph1702", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1E2F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1703": { "name": "glyph1703", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1202","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":477,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1704": { "name": "glyph1704", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1203","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1705": { "name": "glyph1705", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1204","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E30": { "name": "uni1E30", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni040C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E31": { "name": "uni1E31", "advanceWidth": 500, "contours": [], "references": [{"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E32": { "name": "uni1E32", "advanceWidth": 500, "contours": [], "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E33": { "name": "uni1E33", "advanceWidth": 500, "contours": [], "references": [{"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E34": { "name": "uni1E34", "advanceWidth": 500, "contours": [], "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E35": { "name": "uni1E35", "advanceWidth": 500, "contours": [], "references": [{"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E36": { "name": "uni1E36", "advanceWidth": 500, "contours": [], "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E37": { "name": "uni1E37", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "glyph1714": { "name": "glyph1714", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1E37","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "glyph1715": { "name": "glyph1715", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":588,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "glyph1716": { "name": "glyph1716", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "glyph1717": { "name": "glyph1717", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E38": { "name": "uni1E38", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1E36","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E39": { "name": "uni1E39", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1E37","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "glyph1720": { "name": "glyph1720", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1E39","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "glyph1721": { "name": "glyph1721", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1715","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":460,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "glyph1722": { "name": "glyph1722", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1716","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "glyph1723": { "name": "glyph1723", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1717","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E3A": { "name": "uni1E3A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E3B": { "name": "uni1E3B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "glyph1726": { "name": "glyph1726", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1E3B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "glyph1727": { "name": "glyph1727", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":588,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "glyph1728": { "name": "glyph1728", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "glyph1729": { "name": "glyph1729", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E3C": { "name": "uni1E3C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,219,176,51,43] + "instructions": "sQEBuPzbsDMr" }, "uni1E3D": { "name": "uni1E3D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,219,176,51,43] + "instructions": "sQEBuPzbsDMr" }, "glyph1732": { "name": "glyph1732", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1E3D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,219,176,51,43] + "instructions": "sQEBuPzbsDMr" }, "glyph1733": { "name": "glyph1733", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":588,"y":-805,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,219,176,51,43] + "instructions": "sQEBuPzbsDMr" }, "glyph1734": { "name": "glyph1734", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,219,176,51,43] + "instructions": "sQEBuPzbsDMr" }, "glyph1735": { "name": "glyph1735", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,219,176,51,43] + "instructions": "sQEBuPzbsDMr" }, "uni1E3E": { "name": "uni1E3E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E3F": { "name": "uni1E3F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"m","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E40": { "name": "uni1E40", "advanceWidth": 500, "contours": [], "references": [{"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E41": { "name": "uni1E41", "advanceWidth": 500, "contours": [], "references": [{"glyph":"m","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E42": { "name": "uni1E42", "advanceWidth": 500, "contours": [], "references": [{"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E43": { "name": "uni1E43", "advanceWidth": 500, "contours": [], "references": [{"glyph":"m","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E44": { "name": "uni1E44", "advanceWidth": 500, "contours": [], "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E45": { "name": "uni1E45", "advanceWidth": 500, "contours": [], "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E46": { "name": "uni1E46", "advanceWidth": 500, "contours": [], "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E47": { "name": "uni1E47", "advanceWidth": 500, "contours": [], "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E48": { "name": "uni1E48", "advanceWidth": 500, "contours": [], "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E49": { "name": "uni1E49", "advanceWidth": 500, "contours": [], "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E4A": { "name": "uni1E4A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,219,176,51,43] + "instructions": "sQEBuPzbsDMr" }, "uni1E4B": { "name": "uni1E4B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,219,176,51,43] + "instructions": "sQEBuPzbsDMr" }, "uni1E4C": { "name": "uni1E4C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1E4D": { "name": "uni1E4D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E4E": { "name": "uni1E4E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1E4F": { "name": "uni1E4F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E50": { "name": "uni1E50", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Omacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1E51": { "name": "uni1E51", "advanceWidth": 500, "contours": [], "references": [{"glyph":"omacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E52": { "name": "uni1E52", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Omacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1E53": { "name": "uni1E53", "advanceWidth": 500, "contours": [], "references": [{"glyph":"omacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E54": { "name": "uni1E54", "advanceWidth": 500, "contours": [], "references": [{"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1E55": { "name": "uni1E55", "advanceWidth": 500, "contours": [], "references": [{"glyph":"p","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E56": { "name": "uni1E56", "advanceWidth": 500, "contours": [], "references": [{"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1E57": { "name": "uni1E57", "advanceWidth": 500, "contours": [], "references": [{"glyph":"p","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E58": { "name": "uni1E58", "advanceWidth": 500, "contours": [], "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1E59": { "name": "uni1E59", "advanceWidth": 500, "contours": [], "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E5A": { "name": "uni1E5A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,184,176,51,43] + "instructions": "sQIBuPy4sDMr" }, "uni1E5B": { "name": "uni1E5B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E5C": { "name": "uni1E5C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1E5A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,184,176,51,43] + "instructions": "sQIBuPy4sDMr" }, "uni1E5D": { "name": "uni1E5D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1E5B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E5E": { "name": "uni1E5E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,184,176,51,43] + "instructions": "sQIBuPy4sDMr" }, "uni1E5F": { "name": "uni1E5F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E60": { "name": "uni1E60", "advanceWidth": 500, "contours": [], "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E61": { "name": "uni1E61", "advanceWidth": 500, "contours": [], "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E62": { "name": "uni1E62", "advanceWidth": 500, "contours": [], "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E63": { "name": "uni1E63", "advanceWidth": 500, "contours": [], "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E64": { "name": "uni1E64", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Sacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E65": { "name": "uni1E65", "advanceWidth": 500, "contours": [], "references": [{"glyph":"sacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E66": { "name": "uni1E66", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Scaron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E67": { "name": "uni1E67", "advanceWidth": 500, "contours": [], "references": [{"glyph":"scaron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E68": { "name": "uni1E68", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1E60","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E69": { "name": "uni1E69", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1E61","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E6A": { "name": "uni1E6A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E6B": { "name": "uni1E6B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E6C": { "name": "uni1E6C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E6D": { "name": "uni1E6D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":554,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E6E": { "name": "uni1E6E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E6F": { "name": "uni1E6F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":554,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E70": { "name": "uni1E70", "advanceWidth": 500, "contours": [], "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,219,176,51,43] + "instructions": "sQEBuPzbsDMr" }, "uni1E71": { "name": "uni1E71", "advanceWidth": 500, "contours": [], "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":554,"y":-805,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,219,176,51,43] + "instructions": "sQEBuPzbsDMr" }, "uni1E72": { "name": "uni1E72", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0324","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,3,1,184,252,184,176,51,43,177,4,1,184,252,184,176,51,43] + "instructions": "sQMBuPy4sDMrsQQBuPy4sDMr" }, "uni1E73": { "name": "uni1E73", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0324","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,3,1,184,252,184,176,51,43,177,4,1,184,252,184,176,51,43] + "instructions": "sQMBuPy4sDMrsQQBuPy4sDMr" }, "uni1E74": { "name": "uni1E74", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,210,176,51,43] + "instructions": "sQEBuPzSsDMr" }, "uni1E75": { "name": "uni1E75", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,210,176,51,43] + "instructions": "sQEBuPzSsDMr" }, "uni1E76": { "name": "uni1E76", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,219,176,51,43] + "instructions": "sQEBuPzbsDMr" }, "uni1E77": { "name": "uni1E77", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,219,176,51,43] + "instructions": "sQEBuPzbsDMr" }, "uni1E78": { "name": "uni1E78", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Utilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E79": { "name": "uni1E79", "advanceWidth": 500, "contours": [], "references": [{"glyph":"utilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E7A": { "name": "uni1E7A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Umacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E7B": { "name": "uni1E7B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph510","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E7C": { "name": "uni1E7C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"V","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E7D": { "name": "uni1E7D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"v","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E7E": { "name": "uni1E7E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"V","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E7F": { "name": "uni1E7F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"v","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "Wgrave": { "name": "Wgrave", "advanceWidth": 500, "contours": [], "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "wgrave": { "name": "wgrave", "advanceWidth": 500, "contours": [], "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Wacute": { "name": "Wacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "wacute": { "name": "wacute", "advanceWidth": 500, "contours": [], "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "Wdieresis": { "name": "Wdieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "wdieresis": { "name": "wdieresis", "advanceWidth": 500, "contours": [], "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E86": { "name": "uni1E86", "advanceWidth": 500, "contours": [], "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E87": { "name": "uni1E87", "advanceWidth": 500, "contours": [], "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E88": { "name": "uni1E88", "advanceWidth": 500, "contours": [], "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E89": { "name": "uni1E89", "advanceWidth": 500, "contours": [], "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E8A": { "name": "uni1E8A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"X","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E8B": { "name": "uni1E8B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"x","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E8C": { "name": "uni1E8C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"X","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1E8D": { "name": "uni1E8D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"x","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E8E": { "name": "uni1E8E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E8F": { "name": "uni1E8F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E90": { "name": "uni1E90", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E91": { "name": "uni1E91", "advanceWidth": 500, "contours": [], "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E92": { "name": "uni1E92", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E93": { "name": "uni1E93", "advanceWidth": 500, "contours": [], "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E94": { "name": "uni1E94", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E95": { "name": "uni1E95", "advanceWidth": 500, "contours": [], "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E96": { "name": "uni1E96", "advanceWidth": 500, "contours": [], "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1E97": { "name": "uni1E97", "advanceWidth": 500, "contours": [], "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1E98": { "name": "uni1E98", "advanceWidth": 500, "contours": [], "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E99": { "name": "uni1E99", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1E9A": { "name": "uni1E9A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0339","x":500,"y":798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,3,30,176,51,43] + "instructions": "sQIBuAMesDMr" }, "glyph1829": { "name": "glyph1829", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1E9A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,3,30,176,51,43] + "instructions": "sQIBuAMesDMr" }, "glyph1830": { "name": "glyph1830", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0339","x":500,"y":798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,3,30,176,51,43] + "instructions": "sQIBuAMesDMr" }, "uni1E9B": { "name": "uni1E9B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph402","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1E9C": { "name": "uni1E9C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph402","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniE090","x":449,"y":117,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,117,176,51,43] + "instructions": "sQEBsHWwMys=" }, "uni1E9D": { "name": "uni1E9D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph402","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":449,"y":117,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,117,176,51,43] + "instructions": "sQEBsHWwMys=" }, "uni1EA0": { "name": "uni1EA0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,184,176,51,43] + "instructions": "sQIBuPy4sDMr" }, "uni1EA1": { "name": "uni1EA1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,184,176,51,43] + "instructions": "sQIBuPy4sDMr" }, "glyph1836": { "name": "glyph1836", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1EA1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,184,176,51,43] + "instructions": "sQIBuPy4sDMr" }, "glyph1837": { "name": "glyph1837", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,184,176,51,43] + "instructions": "sQIBuPy4sDMr" }, "uni1EA2": { "name": "uni1EA2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1EA3": { "name": "uni1EA3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1840": { "name": "glyph1840", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1EA3","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1841": { "name": "glyph1841", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EA4": { "name": "uni1EA4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1EA5": { "name": "uni1EA5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1844": { "name": "glyph1844", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1EA5","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1845": { "name": "glyph1845", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1170","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EA6": { "name": "uni1EA6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1EA7": { "name": "uni1EA7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1848": { "name": "glyph1848", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1EA7","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1849": { "name": "glyph1849", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1170","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EA8": { "name": "uni1EA8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1EA9": { "name": "uni1EA9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1852": { "name": "glyph1852", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1EA9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1853": { "name": "glyph1853", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1170","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EAA": { "name": "uni1EAA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1EAB": { "name": "uni1EAB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1856": { "name": "glyph1856", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1EAB","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1857": { "name": "glyph1857", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1170","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EAC": { "name": "uni1EAC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1EAD": { "name": "uni1EAD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1860": { "name": "glyph1860", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1EAD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1861": { "name": "glyph1861", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1170","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EAE": { "name": "uni1EAE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1EAF": { "name": "uni1EAF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1864": { "name": "glyph1864", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1EAF","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1865": { "name": "glyph1865", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1224","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EB0": { "name": "uni1EB0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1EB1": { "name": "uni1EB1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1868": { "name": "glyph1868", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1EB1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1869": { "name": "glyph1869", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1224","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EB2": { "name": "uni1EB2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1EB3": { "name": "uni1EB3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1872": { "name": "glyph1872", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1EB3","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1873": { "name": "glyph1873", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1224","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EB4": { "name": "uni1EB4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1EB5": { "name": "uni1EB5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1876": { "name": "glyph1876", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1EB5","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1877": { "name": "glyph1877", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1224","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EB6": { "name": "uni1EB6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1EB7": { "name": "uni1EB7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1880": { "name": "glyph1880", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1EB7","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1881": { "name": "glyph1881", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph1224","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EB8": { "name": "uni1EB8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1EB9": { "name": "uni1EB9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,184,176,51,43] + "instructions": "sQIBuPy4sDMr" }, "uni1EBA": { "name": "uni1EBA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1EBB": { "name": "uni1EBB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EBC": { "name": "uni1EBC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1EBD": { "name": "uni1EBD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EBE": { "name": "uni1EBE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1EBF": { "name": "uni1EBF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EC0": { "name": "uni1EC0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1EC1": { "name": "uni1EC1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EC2": { "name": "uni1EC2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1EC3": { "name": "uni1EC3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EC4": { "name": "uni1EC4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1EC5": { "name": "uni1EC5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EC6": { "name": "uni1EC6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1EC7": { "name": "uni1EC7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EC8": { "name": "uni1EC8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1EC9": { "name": "uni1EC9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1900": { "name": "glyph1900", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1EC9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1901": { "name": "glyph1901", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1902": { "name": "glyph1902", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1903": { "name": "glyph1903", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1ECA": { "name": "uni1ECA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1ECB": { "name": "uni1ECB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1906": { "name": "glyph1906", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1ECB","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1907": { "name": "glyph1907", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph135","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":597,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1908": { "name": "glyph1908", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph136","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph1909": { "name": "glyph1909", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph137","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1ECC": { "name": "uni1ECC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,184,176,51,43] + "instructions": "sQIBuPy4sDMr" }, "uni1ECD": { "name": "uni1ECD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,184,176,51,43] + "instructions": "sQIBuPy4sDMr" }, "uni1ECE": { "name": "uni1ECE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1ECF": { "name": "uni1ECF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1ED0": { "name": "uni1ED0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1ED1": { "name": "uni1ED1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1ED2": { "name": "uni1ED2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1ED3": { "name": "uni1ED3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1ED4": { "name": "uni1ED4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1ED5": { "name": "uni1ED5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1ED6": { "name": "uni1ED6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1ED7": { "name": "uni1ED7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1ED8": { "name": "uni1ED8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1ED9": { "name": "uni1ED9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EDA": { "name": "uni1EDA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Oacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1EDB": { "name": "uni1EDB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"oacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EDC": { "name": "uni1EDC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ograve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1EDD": { "name": "uni1EDD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ograve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EDE": { "name": "uni1EDE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,126,176,51,43] + "instructions": "sQIBsH6wMys=" }, "uni1EDF": { "name": "uni1EDF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,255,177,176,51,43] + "instructions": "sQIBuP+xsDMr" }, "uni1EE0": { "name": "uni1EE0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1EE1": { "name": "uni1EE1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EE2": { "name": "uni1EE2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,126,176,51,43] + "instructions": "sQIBsH6wMys=" }, "uni1EE3": { "name": "uni1EE3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,255,177,176,51,43] + "instructions": "sQIBuP+xsDMr" }, "uni1EE4": { "name": "uni1EE4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1EE5": { "name": "uni1EE5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1EE6": { "name": "uni1EE6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1EE7": { "name": "uni1EE7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EE8": { "name": "uni1EE8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Uacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1EE9": { "name": "uni1EE9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EEA": { "name": "uni1EEA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ugrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1EEB": { "name": "uni1EEB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ugrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EEC": { "name": "uni1EEC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,126,176,51,43] + "instructions": "sQEBsH6wMys=" }, "uni1EED": { "name": "uni1EED", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,177,176,51,43] + "instructions": "sQEBuP+xsDMr" }, "uni1EEE": { "name": "uni1EEE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Utilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1EEF": { "name": "uni1EEF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"utilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EF0": { "name": "uni1EF0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,126,176,51,43] + "instructions": "sQEBsH6wMys=" }, "uni1EF1": { "name": "uni1EF1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,177,176,51,43] + "instructions": "sQEBuP+xsDMr" }, "Ygrave": { "name": "Ygrave", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "ygrave": { "name": "ygrave", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EF4": { "name": "uni1EF4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,184,176,51,43] + "instructions": "sQEBuPy4sDMr" }, "uni1EF5": { "name": "uni1EF5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-1045,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,251,235,176,51,43] + "instructions": "sQEBuPvrsDMr" }, "uni1EF6": { "name": "uni1EF6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1EF7": { "name": "uni1EF7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1EF8": { "name": "uni1EF8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1EF9": { "name": "uni1EF9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F00": { "name": "uni1F00", "advanceWidth": 500, "contours": [], "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F01": { "name": "uni1F01", "advanceWidth": 500, "contours": [], "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F02": { "name": "uni1F02", "advanceWidth": 500, "contours": [], "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F03": { "name": "uni1F03", "advanceWidth": 500, "contours": [], "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F04": { "name": "uni1F04", "advanceWidth": 500, "contours": [], "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F05": { "name": "uni1F05", "advanceWidth": 500, "contours": [], "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F06": { "name": "uni1F06", "advanceWidth": 500, "contours": [], "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph115","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F07": { "name": "uni1F07", "advanceWidth": 500, "contours": [], "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F08": { "name": "uni1F08", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1F09": { "name": "uni1F09", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1F0A": { "name": "uni1F0A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni1F0B": { "name": "uni1F0B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni1F0C": { "name": "uni1F0C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni1F0D": { "name": "uni1F0D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni1F0E": { "name": "uni1F0E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph115","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni1F0F": { "name": "uni1F0F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni1F10": { "name": "uni1F10", "advanceWidth": 500, "contours": [], "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F11": { "name": "uni1F11", "advanceWidth": 500, "contours": [], "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F12": { "name": "uni1F12", "advanceWidth": 500, "contours": [], "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F13": { "name": "uni1F13", "advanceWidth": 500, "contours": [], "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F14": { "name": "uni1F14", "advanceWidth": 500, "contours": [], "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F15": { "name": "uni1F15", "advanceWidth": 500, "contours": [], "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F18": { "name": "uni1F18", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1F19": { "name": "uni1F19", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1F1A": { "name": "uni1F1A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F1B": { "name": "uni1F1B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F1C": { "name": "uni1F1C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F1D": { "name": "uni1F1D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F20": { "name": "uni1F20", "advanceWidth": 500, "contours": [], "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F21": { "name": "uni1F21", "advanceWidth": 500, "contours": [], "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F22": { "name": "uni1F22", "advanceWidth": 500, "contours": [], "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F23": { "name": "uni1F23", "advanceWidth": 500, "contours": [], "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F24": { "name": "uni1F24", "advanceWidth": 500, "contours": [], "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F25": { "name": "uni1F25", "advanceWidth": 500, "contours": [], "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F26": { "name": "uni1F26", "advanceWidth": 500, "contours": [], "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph115","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F27": { "name": "uni1F27", "advanceWidth": 500, "contours": [], "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F28": { "name": "uni1F28", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1F29": { "name": "uni1F29", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1F2A": { "name": "uni1F2A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F2B": { "name": "uni1F2B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F2C": { "name": "uni1F2C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F2D": { "name": "uni1F2D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F2E": { "name": "uni1F2E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph115","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F2F": { "name": "uni1F2F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F30": { "name": "uni1F30", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F31": { "name": "uni1F31", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F32": { "name": "uni1F32", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F33": { "name": "uni1F33", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F34": { "name": "uni1F34", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F35": { "name": "uni1F35", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F36": { "name": "uni1F36", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph115","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F37": { "name": "uni1F37", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F38": { "name": "uni1F38", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1F39": { "name": "uni1F39", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1F3A": { "name": "uni1F3A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F3B": { "name": "uni1F3B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F3C": { "name": "uni1F3C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F3D": { "name": "uni1F3D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F3E": { "name": "uni1F3E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph115","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F3F": { "name": "uni1F3F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F40": { "name": "uni1F40", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F41": { "name": "uni1F41", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F42": { "name": "uni1F42", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F43": { "name": "uni1F43", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F44": { "name": "uni1F44", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F45": { "name": "uni1F45", "advanceWidth": 500, "contours": [], "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F48": { "name": "uni1F48", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1F49": { "name": "uni1F49", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1F4A": { "name": "uni1F4A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni1F4B": { "name": "uni1F4B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni1F4C": { "name": "uni1F4C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni1F4D": { "name": "uni1F4D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni1F50": { "name": "uni1F50", "advanceWidth": 500, "contours": [], "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F51": { "name": "uni1F51", "advanceWidth": 500, "contours": [], "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F52": { "name": "uni1F52", "advanceWidth": 500, "contours": [], "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F53": { "name": "uni1F53", "advanceWidth": 500, "contours": [], "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F54": { "name": "uni1F54", "advanceWidth": 500, "contours": [], "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F55": { "name": "uni1F55", "advanceWidth": 500, "contours": [], "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F56": { "name": "uni1F56", "advanceWidth": 500, "contours": [], "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph115","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F57": { "name": "uni1F57", "advanceWidth": 500, "contours": [], "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F59": { "name": "uni1F59", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1F5B": { "name": "uni1F5B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F5D": { "name": "uni1F5D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F5F": { "name": "uni1F5F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F60": { "name": "uni1F60", "advanceWidth": 500, "contours": [], "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F61": { "name": "uni1F61", "advanceWidth": 500, "contours": [], "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F62": { "name": "uni1F62", "advanceWidth": 500, "contours": [], "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F63": { "name": "uni1F63", "advanceWidth": 500, "contours": [], "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F64": { "name": "uni1F64", "advanceWidth": 500, "contours": [], "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F65": { "name": "uni1F65", "advanceWidth": 500, "contours": [], "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F66": { "name": "uni1F66", "advanceWidth": 500, "contours": [], "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph115","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F67": { "name": "uni1F67", "advanceWidth": 500, "contours": [], "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F68": { "name": "uni1F68", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1F69": { "name": "uni1F69", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1F6A": { "name": "uni1F6A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F6B": { "name": "uni1F6B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F6C": { "name": "uni1F6C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F6D": { "name": "uni1F6D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F6E": { "name": "uni1F6E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph115","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F6F": { "name": "uni1F6F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F70": { "name": "uni1F70", "advanceWidth": 500, "contours": [], "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F71": { "name": "uni1F71", "advanceWidth": 500, "contours": [], "references": [{"glyph":"alphatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F72": { "name": "uni1F72", "advanceWidth": 500, "contours": [], "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F73": { "name": "uni1F73", "advanceWidth": 500, "contours": [], "references": [{"glyph":"epsilontonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F74": { "name": "uni1F74", "advanceWidth": 500, "contours": [], "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F75": { "name": "uni1F75", "advanceWidth": 500, "contours": [], "references": [{"glyph":"etatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F76": { "name": "uni1F76", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F77": { "name": "uni1F77", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iotatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F78": { "name": "uni1F78", "advanceWidth": 500, "contours": [], "references": [{"glyph":"ograve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F79": { "name": "uni1F79", "advanceWidth": 500, "contours": [], "references": [{"glyph":"oacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F7A": { "name": "uni1F7A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F7B": { "name": "uni1F7B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"upsilontonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F7C": { "name": "uni1F7C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F7D": { "name": "uni1F7D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"omegatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F80": { "name": "uni1F80", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F00","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F81": { "name": "uni1F81", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F01","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F82": { "name": "uni1F82", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F02","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F83": { "name": "uni1F83", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F03","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F84": { "name": "uni1F84", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F04","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F85": { "name": "uni1F85", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F05","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F86": { "name": "uni1F86", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F06","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F87": { "name": "uni1F87", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F07","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F88": { "name": "uni1F88", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F08","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1F89": { "name": "uni1F89", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F09","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1F8A": { "name": "uni1F8A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F0A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni1F8B": { "name": "uni1F8B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F0B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni1F8C": { "name": "uni1F8C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F0C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni1F8D": { "name": "uni1F8D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F0D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni1F8E": { "name": "uni1F8E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F0E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni1F8F": { "name": "uni1F8F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F0F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uni1F90": { "name": "uni1F90", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F20","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F91": { "name": "uni1F91", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F21","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F92": { "name": "uni1F92", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F22","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F93": { "name": "uni1F93", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F23","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F94": { "name": "uni1F94", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F24","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F95": { "name": "uni1F95", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F25","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F96": { "name": "uni1F96", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F26","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F97": { "name": "uni1F97", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F27","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1F98": { "name": "uni1F98", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F28","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1F99": { "name": "uni1F99", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F29","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1F9A": { "name": "uni1F9A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F2A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F9B": { "name": "uni1F9B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F2B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F9C": { "name": "uni1F9C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F2C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F9D": { "name": "uni1F9D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F2D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F9E": { "name": "uni1F9E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F2E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1F9F": { "name": "uni1F9F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F2F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1FA0": { "name": "uni1FA0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F60","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FA1": { "name": "uni1FA1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F61","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FA2": { "name": "uni1FA2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F62","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FA3": { "name": "uni1FA3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F63","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FA4": { "name": "uni1FA4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F64","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FA5": { "name": "uni1FA5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F65","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FA6": { "name": "uni1FA6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F66","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FA7": { "name": "uni1FA7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F67","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FA8": { "name": "uni1FA8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F68","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1FA9": { "name": "uni1FA9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F69","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1FAA": { "name": "uni1FAA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F6A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1FAB": { "name": "uni1FAB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F6B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1FAC": { "name": "uni1FAC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F6C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1FAD": { "name": "uni1FAD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F6D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1FAE": { "name": "uni1FAE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F6E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1FAF": { "name": "uni1FAF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F6F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,176,205,176,51,43] + "instructions": "sQECsM2wMys=" }, "uni1FB0": { "name": "uni1FB0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FB1": { "name": "uni1FB1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FB2": { "name": "uni1FB2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F70","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FB3": { "name": "uni1FB3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,226,176,51,43] + "instructions": "sQIBuPzisDMr" }, "uni1FB4": { "name": "uni1FB4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"alphatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FB6": { "name": "uni1FB6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FB7": { "name": "uni1FB7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1FB3","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,226,176,51,43] + "instructions": "sQIBuPzisDMr" }, "uni1FB8": { "name": "uni1FB8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1FB9": { "name": "uni1FB9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Amacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1FBA": { "name": "uni1FBA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Agrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1FBB": { "name": "uni1FBB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Aacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1FBC": { "name": "uni1FBC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,184,252,226,176,51,43] + "instructions": "sQIBuPzisDMr" }, "uni1FBD": { "name": "uni1FBD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FBE": { "name": "uni1FBE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,252,226,176,51,43] + "instructions": "sQABuPzisDMr" }, "uni1FBF": { "name": "uni1FBF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FC0": { "name": "uni1FC0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FC1": { "name": "uni1FC1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0311","x":500,"y":214,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,214,176,51,43] + "instructions": "sQABsNawMys=" }, "uni1FC2": { "name": "uni1FC2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F74","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FC3": { "name": "uni1FC3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,226,176,51,43] + "instructions": "sQEBuPzisDMr" }, "uni1FC4": { "name": "uni1FC4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"etatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FC6": { "name": "uni1FC6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FC7": { "name": "uni1FC7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1FC3","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,226,176,51,43] + "instructions": "sQEBuPzisDMr" }, "uni1FC8": { "name": "uni1FC8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Egrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1FC9": { "name": "uni1FC9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Eacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1FCA": { "name": "uni1FCA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1FCB": { "name": "uni1FCB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Etatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1FCC": { "name": "uni1FCC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,226,176,51,43] + "instructions": "sQEBuPzisDMr" }, "uni1FD0": { "name": "uni1FD0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FD1": { "name": "uni1FD1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FD2": { "name": "uni1FD2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iotadieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FD3": { "name": "uni1FD3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iotadieresistonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,214,176,51,43] + "instructions": "sQABsNawMys=" }, "uni1FD6": { "name": "uni1FD6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FD7": { "name": "uni1FD7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"iotadieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FD8": { "name": "uni1FD8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ibreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1FD9": { "name": "uni1FD9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Imacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1FDA": { "name": "uni1FDA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Igrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1FDB": { "name": "uni1FDB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Iacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1FE0": { "name": "uni1FE0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FE1": { "name": "uni1FE1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FE2": { "name": "uni1FE2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"upsilondieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FE3": { "name": "uni1FE3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"upsilondieresistonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,214,176,51,43] + "instructions": "sQABsNawMys=" }, "uni1FE4": { "name": "uni1FE4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"rho","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FE5": { "name": "uni1FE5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"rho","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FE6": { "name": "uni1FE6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FE7": { "name": "uni1FE7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"upsilondieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FE8": { "name": "uni1FE8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1FE9": { "name": "uni1FE9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0232","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1FEA": { "name": "uni1FEA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ygrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1FEB": { "name": "uni1FEB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Yacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1FEC": { "name": "uni1FEC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1FED": { "name": "uni1FED", "advanceWidth": 500, "contours": [], "references": [{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,214,176,51,43] + "instructions": "sQABsNawMys=" }, "uni1FEE": { "name": "uni1FEE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0344","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,214,176,51,43] + "instructions": "sQABsNawMys=" }, "uni1FEF": { "name": "uni1FEF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FF2": { "name": "uni1FF2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1F7C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FF3": { "name": "uni1FF3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,226,176,51,43] + "instructions": "sQEBuPzisDMr" }, "uni1FF4": { "name": "uni1FF4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"omegatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FF6": { "name": "uni1FF6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FF7": { "name": "uni1FF7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1FF3","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,226,176,51,43] + "instructions": "sQEBuPzisDMr" }, "uni1FF8": { "name": "uni1FF8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Ograve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1FF9": { "name": "uni1FF9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Oacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,205,176,51,43] + "instructions": "sQIBsM2wMys=" }, "uni1FFA": { "name": "uni1FFA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1FFB": { "name": "uni1FFB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Omegatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,205,176,51,43] + "instructions": "sQEBsM2wMys=" }, "uni1FFC": { "name": "uni1FFC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,252,226,176,51,43] + "instructions": "sQEBuPzisDMr" }, "uni1FFD": { "name": "uni1FFD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1FFE": { "name": "uni1FFE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni212B": { "name": "uni212B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"Aring","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,205,176,51,43] + "instructions": "sQICsM2wMys=" }, "uniAB30": { "name": "uniAB30", "advanceWidth": 500, "contours": [], "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0336","x":478,"y":11,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,11,176,51,43] + "instructions": "sQIBsAuwMys=" }, "copyright": { "name": "copyright", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2186","x":0,"y":129,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,129,176,51,43] + "instructions": "sQIBsIGwMys=" }, "glyph2186": { "name": "glyph2186", "advanceWidth": 500, "contours": [[{"x":125,"y":107,"on":true},{"x":125,"y":297,"on":true},{"x":125,"y":330,"on":false},{"x":139,"y":354,"on":true},{"x":152,"y":377,"on":false},{"x":176,"y":391,"on":true},{"x":206,"y":408,"on":false},{"x":250,"y":409,"on":true},{"x":294,"y":409,"on":false},{"x":324,"y":391,"on":true},{"x":348,"y":377,"on":false},{"x":362,"y":354,"on":true},{"x":371,"y":338,"on":false},{"x":374,"y":319,"on":true},{"x":308,"y":304,"on":true},{"x":306,"y":320,"on":false},{"x":294,"y":332,"on":true},{"x":278,"y":348,"on":false},{"x":250,"y":348,"on":true},{"x":221,"y":348,"on":false},{"x":206,"y":332,"on":true},{"x":193,"y":319,"on":false},{"x":192,"y":297,"on":true},{"x":192,"y":107,"on":true},{"x":192,"y":85,"on":false},{"x":206,"y":72,"on":true},{"x":222,"y":56,"on":false},{"x":250,"y":57,"on":true},{"x":279,"y":57,"on":false},{"x":294,"y":72,"on":true},{"x":306,"y":84,"on":false},{"x":308,"y":100,"on":true},{"x":374,"y":85,"on":true},{"x":371,"y":67,"on":false},{"x":362,"y":51,"on":true},{"x":348,"y":27,"on":false},{"x":324,"y":13,"on":true},{"x":294,"y":-4,"on":false},{"x":206,"y":-4,"on":false},{"x":176,"y":13,"on":true},{"x":152,"y":27,"on":false},{"x":139,"y":50,"on":true},{"x":125,"y":74,"on":false}]], "references": [], - "instructions": [179,37,7,1,48,43] + "instructions": "syUHATAr" }, "registered": { "name": "registered", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2188","x":0,"y":129,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,129,176,51,43] + "instructions": "sQICsIGwMys=" }, "glyph2188": { "name": "glyph2188", "advanceWidth": 500, "contours": [[{"x":129,"y":0,"on":true},{"x":129,"y":404,"on":true},{"x":257,"y":404,"on":true},{"x":293,"y":404,"on":false},{"x":320,"y":389,"on":true},{"x":344,"y":375,"on":false},{"x":358,"y":350,"on":true},{"x":375,"y":320,"on":false},{"x":375,"y":235,"on":false},{"x":358,"y":206,"on":true},{"x":344,"y":181,"on":false},{"x":320,"y":167,"on":true},{"x":314,"y":164,"on":false},{"x":308,"y":161,"on":true},{"x":326,"y":137,"on":false},{"x":338,"y":114,"on":true},{"x":375,"y":50,"on":false},{"x":375,"y":0,"on":true},{"x":308,"y":0,"on":true},{"x":308,"y":38,"on":false},{"x":280,"y":86,"on":true},{"x":262,"y":117,"on":false},{"x":233,"y":152,"on":true},{"x":197,"y":152,"on":true},{"x":197,"y":0,"on":true}],[{"x":197,"y":212,"on":true},{"x":257,"y":212,"on":true},{"x":277,"y":212,"on":false},{"x":290,"y":225,"on":true},{"x":308,"y":243,"on":false},{"x":308,"y":313,"on":false},{"x":290,"y":330,"on":true},{"x":277,"y":343,"on":false},{"x":257,"y":343,"on":true},{"x":197,"y":343,"on":true}]], "references": [], - "instructions": [181,32,25,1,0,2,48,43] + "instructions": "tSAZAQACMCs=" }, "uni2117": { "name": "uni2117", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2190","x":0,"y":129,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,129,176,51,43] + "instructions": "sQICsIGwMys=" }, "glyph2190": { "name": "glyph2190", "advanceWidth": 500, "contours": [[{"x":133,"y":0,"on":true},{"x":133,"y":404,"on":true},{"x":257,"y":404,"on":true},{"x":293,"y":404,"on":false},{"x":320,"y":389,"on":true},{"x":344,"y":375,"on":false},{"x":358,"y":350,"on":true},{"x":375,"y":320,"on":false},{"x":375,"y":235,"on":false},{"x":358,"y":206,"on":true},{"x":327,"y":152,"on":false},{"x":257,"y":152,"on":true},{"x":201,"y":152,"on":true},{"x":201,"y":0,"on":true}],[{"x":201,"y":212,"on":true},{"x":257,"y":212,"on":true},{"x":277,"y":212,"on":false},{"x":290,"y":225,"on":true},{"x":308,"y":243,"on":false},{"x":308,"y":313,"on":false},{"x":290,"y":330,"on":true},{"x":277,"y":343,"on":false},{"x":257,"y":343,"on":true},{"x":201,"y":343,"on":true}]], "references": [], - "instructions": [181,21,14,1,0,2,48,43] + "instructions": "tRUOAQACMCs=" }, "uni24EA": { "name": "uni24EA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2192","x":0,"y":129,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,3,176,129,176,51,43] + "instructions": "sQIDsIGwMys=" }, "glyph2192": { "name": "glyph2192", "advanceWidth": 500, "contours": [[{"x":125,"y":121,"on":true},{"x":125,"y":283,"on":true},{"x":125,"y":323,"on":false},{"x":141,"y":352,"on":true},{"x":156,"y":377,"on":false},{"x":181,"y":392,"on":true},{"x":210,"y":409,"on":false},{"x":290,"y":409,"on":false},{"x":319,"y":392,"on":true},{"x":344,"y":377,"on":false},{"x":359,"y":352,"on":true},{"x":376,"y":323,"on":false},{"x":375,"y":283,"on":true},{"x":375,"y":121,"on":true},{"x":375,"y":81,"on":false},{"x":359,"y":52,"on":true},{"x":344,"y":27,"on":false},{"x":319,"y":12,"on":true},{"x":290,"y":-4,"on":false},{"x":210,"y":-4,"on":false},{"x":181,"y":12,"on":true},{"x":156,"y":27,"on":false},{"x":141,"y":52,"on":true},{"x":124,"y":81,"on":false}],[{"x":192,"y":175,"on":true},{"x":304,"y":310,"on":true},{"x":300,"y":323,"on":false},{"x":290,"y":332,"on":true},{"x":275,"y":347,"on":false},{"x":225,"y":348,"on":false},{"x":210,"y":332,"on":true},{"x":192,"y":314,"on":false},{"x":192,"y":283,"on":true}],[{"x":196,"y":95,"on":true},{"x":200,"y":82,"on":false},{"x":210,"y":72,"on":true},{"x":225,"y":57,"on":false},{"x":275,"y":57,"on":false},{"x":290,"y":72,"on":true},{"x":308,"y":90,"on":false},{"x":308,"y":121,"on":true},{"x":308,"y":229,"on":true}]], "references": [], - "instructions": [183,41,36,29,24,18,6,3,48,43] + "instructions": "tykkHRgSBgMwKw==" }, "glyph2193": { "name": "glyph2193", "advanceWidth": 500, "contours": [[{"x":28,"y":184,"on":true},{"x":28,"y":478,"on":true},{"x":28,"y":553,"on":false},{"x":59,"y":606,"on":true},{"x":85,"y":651,"on":false},{"x":130,"y":677,"on":true},{"x":180,"y":706,"on":false},{"x":320,"y":706,"on":false},{"x":370,"y":677,"on":true},{"x":415,"y":651,"on":false},{"x":441,"y":606,"on":true},{"x":472,"y":553,"on":false},{"x":472,"y":478,"on":true},{"x":472,"y":184,"on":true},{"x":472,"y":109,"on":false},{"x":441,"y":57,"on":true},{"x":415,"y":12,"on":false},{"x":370,"y":-15,"on":true},{"x":320,"y":-44,"on":false},{"x":180,"y":-44,"on":false},{"x":130,"y":-15,"on":true},{"x":85,"y":11,"on":false},{"x":59,"y":57,"on":true},{"x":28,"y":110,"on":false}],[{"x":89,"y":184,"on":true},{"x":89,"y":126,"on":false},{"x":113,"y":85,"on":true},{"x":133,"y":51,"on":false},{"x":166,"y":32,"on":true},{"x":201,"y":12,"on":false},{"x":299,"y":11,"on":false},{"x":334,"y":32,"on":true},{"x":367,"y":51,"on":false},{"x":387,"y":85,"on":true},{"x":411,"y":126,"on":false},{"x":411,"y":184,"on":true},{"x":411,"y":478,"on":true},{"x":411,"y":536,"on":false},{"x":387,"y":577,"on":true},{"x":367,"y":611,"on":false},{"x":334,"y":631,"on":true},{"x":299,"y":651,"on":false},{"x":201,"y":651,"on":false},{"x":166,"y":631,"on":true},{"x":133,"y":612,"on":false},{"x":113,"y":577,"on":true},{"x":89,"y":536,"on":false},{"x":89,"y":478,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,31,0,0,0,3,2,0,3,103,0,2,1,1,2,87,0,2,2,1,95,0,1,2,1,79,27,26,27,22,4,9,24,43,177,6,0,68] + "instructions": "sQZkREAfAAAAAwIAA2cAAgEBAlcAAgIBXwABAgFPGxobFgQJGCuxBgBE" }, "glyph2194": { "name": "glyph2194", "advanceWidth": 500, "contours": [], "references": [], - "instructions": [] + "instructions": "" }, "uni2460": { "name": "uni2460", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2196","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2196": { "name": "glyph2196", "advanceWidth": 500, "contours": [[{"x":150,"y":340,"on":true},{"x":233,"y":404,"on":true},{"x":300,"y":404,"on":true},{"x":300,"y":0,"on":true},{"x":233,"y":0,"on":true},{"x":233,"y":324,"on":true},{"x":191,"y":292,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "uni2461": { "name": "uni2461", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2198","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2198": { "name": "glyph2198", "advanceWidth": 500, "contours": [[{"x":126,"y":319,"on":true},{"x":129,"y":337,"on":false},{"x":139,"y":354,"on":true},{"x":153,"y":378,"on":false},{"x":176,"y":392,"on":true},{"x":206,"y":409,"on":false},{"x":248,"y":409,"on":true},{"x":289,"y":409,"on":false},{"x":319,"y":392,"on":true},{"x":344,"y":378,"on":false},{"x":358,"y":353,"on":true},{"x":373,"y":326,"on":false},{"x":373,"y":263,"on":false},{"x":338,"y":203,"on":false},{"x":234,"y":123,"on":false},{"x":216,"y":92,"on":true},{"x":208,"y":79,"on":false},{"x":203,"y":61,"on":true},{"x":371,"y":61,"on":true},{"x":371,"y":0,"on":true},{"x":129,"y":0,"on":true},{"x":129,"y":1,"on":true},{"x":129,"y":77,"on":false},{"x":153,"y":119,"on":true},{"x":174,"y":155,"on":false},{"x":232,"y":197,"on":true},{"x":280,"y":232,"on":false},{"x":295,"y":257,"on":true},{"x":306,"y":276,"on":false},{"x":306,"y":295,"on":true},{"x":306,"y":318,"on":false},{"x":291,"y":332,"on":true},{"x":281,"y":342,"on":false},{"x":267,"y":345,"on":true},{"x":259,"y":347,"on":false},{"x":248,"y":348,"on":true},{"x":220,"y":348,"on":false},{"x":205,"y":332,"on":true},{"x":193,"y":320,"on":false},{"x":192,"y":303,"on":true}]], "references": [], - "instructions": [179,19,5,1,48,43] + "instructions": "sxMFATAr" }, "uni2462": { "name": "uni2462", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2200","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2200": { "name": "glyph2200", "advanceWidth": 500, "contours": [[{"x":122,"y":85,"on":true},{"x":187,"y":102,"on":true},{"x":189,"y":85,"on":false},{"x":201,"y":73,"on":true},{"x":218,"y":56,"on":false},{"x":281,"y":57,"on":false},{"x":298,"y":74,"on":true},{"x":312,"y":88,"on":false},{"x":312,"y":110,"on":true},{"x":312,"y":128,"on":false},{"x":303,"y":144,"on":true},{"x":293,"y":161,"on":false},{"x":275,"y":172,"on":true},{"x":254,"y":184,"on":false},{"x":214,"y":184,"on":true},{"x":214,"y":245,"on":true},{"x":251,"y":245,"on":false},{"x":271,"y":256,"on":true},{"x":287,"y":265,"on":false},{"x":296,"y":281,"on":true},{"x":303,"y":294,"on":false},{"x":303,"y":307,"on":true},{"x":303,"y":323,"on":false},{"x":293,"y":333,"on":true},{"x":279,"y":347,"on":false},{"x":250,"y":348,"on":true},{"x":223,"y":348,"on":false},{"x":209,"y":333,"on":true},{"x":197,"y":321,"on":false},{"x":197,"y":306,"on":true},{"x":131,"y":319,"on":true},{"x":133,"y":338,"on":false},{"x":143,"y":356,"on":true},{"x":156,"y":379,"on":false},{"x":179,"y":392,"on":true},{"x":208,"y":409,"on":false},{"x":293,"y":409,"on":false},{"x":322,"y":392,"on":true},{"x":345,"y":379,"on":false},{"x":371,"y":333,"on":false},{"x":371,"y":281,"on":false},{"x":358,"y":258,"on":true},{"x":344,"y":234,"on":false},{"x":318,"y":219,"on":true},{"x":314,"y":217,"on":false},{"x":310,"y":215,"on":true},{"x":316,"y":212,"on":false},{"x":321,"y":209,"on":true},{"x":349,"y":193,"on":false},{"x":365,"y":166,"on":true},{"x":380,"y":140,"on":false},{"x":380,"y":78,"on":false},{"x":365,"y":53,"on":true},{"x":351,"y":29,"on":false},{"x":325,"y":14,"on":true},{"x":294,"y":-4,"on":false},{"x":250,"y":-4,"on":true},{"x":205,"y":-4,"on":false},{"x":173,"y":13,"on":true},{"x":148,"y":27,"on":false},{"x":134,"y":53,"on":true},{"x":125,"y":68,"on":false}]], "references": [], - "instructions": [179,55,35,1,48,43] + "instructions": "szcjATAr" }, "uni2463": { "name": "uni2463", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2202","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,129,176,51,43] + "instructions": "sQACsIGwMys=" }, "glyph2202": { "name": "glyph2202", "advanceWidth": 500, "contours": [[{"x":125,"y":101,"on":true},{"x":125,"y":162,"on":true},{"x":246,"y":404,"on":true},{"x":329,"y":404,"on":true},{"x":329,"y":162,"on":true},{"x":371,"y":162,"on":true},{"x":371,"y":101,"on":true},{"x":329,"y":101,"on":true},{"x":329,"y":0,"on":true},{"x":261,"y":0,"on":true},{"x":261,"y":101,"on":true}],[{"x":191,"y":162,"on":true},{"x":261,"y":162,"on":true},{"x":261,"y":299,"on":true}]], "references": [], - "instructions": [181,13,11,8,2,2,48,43] + "instructions": "tQ0LCAICMCs=" }, "uni2464": { "name": "uni2464", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2204","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2204": { "name": "glyph2204", "advanceWidth": 500, "contours": [[{"x":126,"y":85,"on":true},{"x":190,"y":105,"on":true},{"x":195,"y":85,"on":false},{"x":208,"y":72,"on":true},{"x":224,"y":56,"on":false},{"x":248,"y":57,"on":true},{"x":272,"y":57,"on":false},{"x":288,"y":72,"on":true},{"x":308,"y":92,"on":false},{"x":308,"y":168,"on":false},{"x":288,"y":187,"on":true},{"x":273,"y":202,"on":false},{"x":251,"y":202,"on":true},{"x":227,"y":202,"on":false},{"x":212,"y":187,"on":true},{"x":202,"y":177,"on":false},{"x":196,"y":162,"on":true},{"x":135,"y":187,"on":true},{"x":135,"y":404,"on":true},{"x":359,"y":404,"on":true},{"x":359,"y":343,"on":true},{"x":203,"y":343,"on":true},{"x":203,"y":255,"on":true},{"x":224,"y":263,"on":false},{"x":251,"y":263,"on":true},{"x":289,"y":263,"on":false},{"x":316,"y":247,"on":true},{"x":342,"y":232,"on":false},{"x":357,"y":206,"on":true},{"x":375,"y":175,"on":false},{"x":375,"y":129,"on":true},{"x":375,"y":84,"on":false},{"x":357,"y":54,"on":true},{"x":342,"y":27,"on":false},{"x":316,"y":12,"on":true},{"x":288,"y":-4,"on":false},{"x":209,"y":-4,"on":false},{"x":181,"y":12,"on":true},{"x":155,"y":27,"on":false},{"x":139,"y":54,"on":true},{"x":130,"y":69,"on":false}]], "references": [], - "instructions": [179,35,18,1,48,43] + "instructions": "syMSATAr" }, "uni2465": { "name": "uni2465", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2206","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,129,176,51,43] + "instructions": "sQACsIGwMys=" }, "glyph2206": { "name": "glyph2206", "advanceWidth": 500, "contours": [[{"x":125,"y":121,"on":true},{"x":125,"y":122,"on":true},{"x":125,"y":229,"on":false},{"x":164,"y":297,"on":true},{"x":195,"y":352,"on":false},{"x":248,"y":382,"on":true},{"x":273,"y":396,"on":false},{"x":301,"y":404,"on":true},{"x":319,"y":346,"on":true},{"x":302,"y":341,"on":false},{"x":287,"y":331,"on":true},{"x":248,"y":309,"on":false},{"x":225,"y":268,"on":true},{"x":218,"y":256,"on":false},{"x":212,"y":243,"on":true},{"x":229,"y":247,"on":false},{"x":250,"y":247,"on":true},{"x":290,"y":247,"on":false},{"x":319,"y":230,"on":true},{"x":344,"y":215,"on":false},{"x":359,"y":191,"on":true},{"x":376,"y":162,"on":false},{"x":375,"y":122,"on":true},{"x":375,"y":121,"on":true},{"x":375,"y":81,"on":false},{"x":359,"y":52,"on":true},{"x":344,"y":27,"on":false},{"x":319,"y":12,"on":true},{"x":290,"y":-4,"on":false},{"x":210,"y":-4,"on":false},{"x":181,"y":12,"on":true},{"x":156,"y":27,"on":false},{"x":141,"y":52,"on":true},{"x":125,"y":81,"on":false}],[{"x":192,"y":121,"on":true},{"x":192,"y":89,"on":false},{"x":210,"y":72,"on":true},{"x":225,"y":57,"on":false},{"x":275,"y":57,"on":false},{"x":290,"y":72,"on":true},{"x":308,"y":90,"on":false},{"x":308,"y":121,"on":true},{"x":308,"y":122,"on":true},{"x":308,"y":154,"on":false},{"x":290,"y":171,"on":true},{"x":275,"y":186,"on":false},{"x":225,"y":186,"on":false},{"x":210,"y":171,"on":true},{"x":193,"y":154,"on":false},{"x":192,"y":122,"on":true}]], "references": [], - "instructions": [181,45,37,28,7,2,48,43] + "instructions": "tS0lHAcCMCs=" }, "uni2466": { "name": "uni2466", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2208","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2208": { "name": "glyph2208", "advanceWidth": 500, "contours": [[{"x":129,"y":343,"on":true},{"x":129,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":343,"on":true},{"x":233,"y":0,"on":true},{"x":160,"y":0,"on":true},{"x":298,"y":343,"on":true}]], "references": [], - "instructions": [179,4,1,1,48,43] + "instructions": "swQBATAr" }, "uni2467": { "name": "uni2467", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2210","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,3,176,129,176,51,43] + "instructions": "sQADsIGwMys=" }, "glyph2210": { "name": "glyph2210", "advanceWidth": 500, "contours": [[{"x":125,"y":72,"on":false},{"x":125,"y":128,"on":false},{"x":139,"y":154,"on":true},{"x":154,"y":180,"on":false},{"x":195,"y":208,"on":true},{"x":162,"y":232,"on":false},{"x":149,"y":254,"on":true},{"x":134,"y":280,"on":false},{"x":135,"y":308,"on":true},{"x":135,"y":336,"on":false},{"x":148,"y":358,"on":true},{"x":160,"y":379,"on":false},{"x":183,"y":393,"on":true},{"x":211,"y":409,"on":false},{"x":290,"y":409,"on":false},{"x":317,"y":393,"on":true},{"x":340,"y":380,"on":false},{"x":352,"y":358,"on":true},{"x":365,"y":335,"on":false},{"x":365,"y":308,"on":true},{"x":365,"y":280,"on":false},{"x":351,"y":254,"on":true},{"x":338,"y":231,"on":false},{"x":305,"y":208,"on":true},{"x":346,"y":180,"on":false},{"x":361,"y":154,"on":true},{"x":376,"y":129,"on":false},{"x":375,"y":100,"on":true},{"x":375,"y":72,"on":false},{"x":362,"y":49,"on":true},{"x":349,"y":27,"on":false},{"x":325,"y":13,"on":true},{"x":294,"y":-5,"on":false},{"x":205,"y":-4,"on":false},{"x":175,"y":13,"on":true},{"x":151,"y":27,"on":false},{"x":138,"y":49,"on":true}],[{"x":192,"y":100,"on":true},{"x":192,"y":84,"on":false},{"x":203,"y":72,"on":true},{"x":219,"y":56,"on":false},{"x":281,"y":57,"on":false},{"x":297,"y":72,"on":true},{"x":308,"y":83,"on":false},{"x":308,"y":100,"on":true},{"x":308,"y":114,"on":false},{"x":300,"y":128,"on":true},{"x":288,"y":148,"on":false},{"x":250,"y":173,"on":true},{"x":212,"y":148,"on":false},{"x":200,"y":128,"on":true},{"x":192,"y":114,"on":false}],[{"x":202,"y":308,"on":true},{"x":202,"y":294,"on":false},{"x":210,"y":281,"on":true},{"x":220,"y":263,"on":false},{"x":250,"y":242,"on":true},{"x":280,"y":263,"on":false},{"x":290,"y":281,"on":true},{"x":298,"y":295,"on":false},{"x":298,"y":308,"on":true},{"x":298,"y":324,"on":false},{"x":287,"y":335,"on":true},{"x":274,"y":348,"on":false},{"x":226,"y":348,"on":false},{"x":213,"y":335,"on":true},{"x":202,"y":324,"on":false}]], "references": [], - "instructions": [183,63,56,48,40,32,13,3,48,43] + "instructions": "tz84MCggDQMwKw==" }, "uni2468": { "name": "uni2468", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2212","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,129,176,51,43] + "instructions": "sQACsIGwMys=" }, "glyph2212": { "name": "glyph2212", "advanceWidth": 500, "contours": [[{"x":125,"y":262,"on":true},{"x":125,"y":283,"on":true},{"x":125,"y":323,"on":false},{"x":141,"y":352,"on":true},{"x":156,"y":377,"on":false},{"x":181,"y":392,"on":true},{"x":210,"y":408,"on":false},{"x":250,"y":409,"on":true},{"x":288,"y":409,"on":false},{"x":315,"y":393,"on":true},{"x":341,"y":378,"on":false},{"x":357,"y":351,"on":true},{"x":376,"y":319,"on":false},{"x":375,"y":273,"on":true},{"x":375,"y":141,"on":true},{"x":375,"y":90,"on":false},{"x":355,"y":55,"on":true},{"x":339,"y":27,"on":false},{"x":285,"y":-5,"on":false},{"x":210,"y":-4,"on":false},{"x":182,"y":11,"on":true},{"x":155,"y":26,"on":false},{"x":139,"y":55,"on":true},{"x":131,"y":69,"on":false},{"x":126,"y":85,"on":true},{"x":188,"y":110,"on":true},{"x":194,"y":87,"on":false},{"x":208,"y":72,"on":true},{"x":224,"y":56,"on":false},{"x":247,"y":57,"on":true},{"x":262,"y":57,"on":false},{"x":274,"y":63,"on":true},{"x":287,"y":70,"on":false},{"x":295,"y":85,"on":true},{"x":308,"y":107,"on":false},{"x":308,"y":141,"on":true},{"x":308,"y":160,"on":true},{"x":300,"y":152,"on":false},{"x":291,"y":147,"on":true},{"x":273,"y":137,"on":false},{"x":247,"y":137,"on":true},{"x":209,"y":137,"on":false},{"x":181,"y":153,"on":true},{"x":156,"y":168,"on":false},{"x":141,"y":193,"on":true},{"x":124,"y":222,"on":false}],[{"x":192,"y":262,"on":true},{"x":192,"y":230,"on":false},{"x":210,"y":213,"on":true},{"x":225,"y":198,"on":false},{"x":249,"y":198,"on":true},{"x":274,"y":198,"on":false},{"x":290,"y":214,"on":true},{"x":308,"y":231,"on":false},{"x":308,"y":262,"on":true},{"x":308,"y":273,"on":true},{"x":308,"y":313,"on":false},{"x":287,"y":333,"on":true},{"x":272,"y":348,"on":false},{"x":249,"y":348,"on":true},{"x":225,"y":348,"on":false},{"x":210,"y":332,"on":true},{"x":192,"y":314,"on":false},{"x":192,"y":283,"on":true}]], "references": [], - "instructions": [181,58,49,18,7,2,48,43] + "instructions": "tToxEgcCMCs=" }, "uni24B6": { "name": "uni24B6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2214","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,129,176,51,43] + "instructions": "sQACsIGwMys=" }, "glyph2214": { "name": "glyph2214", "advanceWidth": 500, "contours": [[{"x":129,"y":0,"on":true},{"x":129,"y":40,"on":true},{"x":129,"y":150,"on":false},{"x":216,"y":404,"on":true},{"x":284,"y":404,"on":true},{"x":371,"y":150,"on":false},{"x":371,"y":40,"on":true},{"x":371,"y":0,"on":true},{"x":303,"y":0,"on":true},{"x":303,"y":40,"on":true},{"x":303,"y":60,"on":false},{"x":301,"y":85,"on":true},{"x":199,"y":85,"on":true},{"x":196,"y":60,"on":false},{"x":197,"y":40,"on":true},{"x":197,"y":0,"on":true}],[{"x":208,"y":146,"on":true},{"x":292,"y":146,"on":true},{"x":279,"y":221,"on":false},{"x":250,"y":327,"on":true},{"x":221,"y":221,"on":false}]], "references": [], - "instructions": [181,19,16,3,0,2,48,43] + "instructions": "tRMQAwACMCs=" }, "uni24B7": { "name": "uni24B7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2216","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,3,176,129,176,51,43] + "instructions": "sQADsIGwMys=" }, "glyph2216": { "name": "glyph2216", "advanceWidth": 500, "contours": [[{"x":129,"y":0,"on":true},{"x":129,"y":404,"on":true},{"x":262,"y":404,"on":true},{"x":294,"y":404,"on":false},{"x":318,"y":391,"on":true},{"x":339,"y":379,"on":false},{"x":352,"y":356,"on":true},{"x":367,"y":330,"on":false},{"x":367,"y":293,"on":true},{"x":367,"y":263,"on":false},{"x":355,"y":242,"on":true},{"x":344,"y":223,"on":false},{"x":325,"y":211,"on":true},{"x":349,"y":198,"on":false},{"x":375,"y":152,"on":false},{"x":375,"y":119,"on":true},{"x":375,"y":80,"on":false},{"x":359,"y":52,"on":true},{"x":345,"y":28,"on":false},{"x":322,"y":15,"on":true},{"x":296,"y":0,"on":false},{"x":262,"y":0,"on":true}],[{"x":197,"y":61,"on":true},{"x":262,"y":61,"on":true},{"x":280,"y":61,"on":false},{"x":292,"y":73,"on":true},{"x":308,"y":89,"on":false},{"x":308,"y":120,"on":true},{"x":308,"y":152,"on":false},{"x":291,"y":168,"on":true},{"x":279,"y":180,"on":false},{"x":262,"y":180,"on":true},{"x":197,"y":180,"on":true}],[{"x":197,"y":241,"on":true},{"x":262,"y":241,"on":true},{"x":276,"y":241,"on":false},{"x":285,"y":250,"on":true},{"x":299,"y":264,"on":false},{"x":299,"y":320,"on":false},{"x":286,"y":334,"on":true},{"x":276,"y":344,"on":false},{"x":262,"y":343,"on":true},{"x":197,"y":343,"on":true}]], "references": [], - "instructions": [183,40,33,30,22,1,0,3,48,43] + "instructions": "tyghHhYBAAMwKw==" }, "uni24B8": { "name": "uni24B8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"copyright","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,129,176,51,43] + "instructions": "sQIBsIGwMys=" }, "glyph2218": { "name": "glyph2218", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2186","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni24B9": { "name": "uni24B9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2220","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,129,176,51,43] + "instructions": "sQACsIGwMys=" }, "glyph2220": { "name": "glyph2220", "advanceWidth": 500, "contours": [[{"x":129,"y":0,"on":true},{"x":129,"y":404,"on":true},{"x":253,"y":404,"on":true},{"x":322,"y":404,"on":false},{"x":355,"y":347,"on":true},{"x":375,"y":312,"on":false},{"x":375,"y":259,"on":true},{"x":375,"y":145,"on":true},{"x":375,"y":93,"on":false},{"x":355,"y":57,"on":true},{"x":339,"y":30,"on":false},{"x":314,"y":15,"on":true},{"x":288,"y":0,"on":false},{"x":253,"y":0,"on":true}],[{"x":197,"y":61,"on":true},{"x":253,"y":61,"on":true},{"x":272,"y":61,"on":false},{"x":285,"y":74,"on":true},{"x":307,"y":96,"on":false},{"x":308,"y":145,"on":true},{"x":308,"y":259,"on":true},{"x":308,"y":307,"on":false},{"x":285,"y":330,"on":true},{"x":272,"y":343,"on":false},{"x":253,"y":343,"on":true},{"x":197,"y":343,"on":true}]], "references": [], - "instructions": [181,23,14,1,0,2,48,43] + "instructions": "tRcOAQACMCs=" }, "uni24BA": { "name": "uni24BA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2222","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2222": { "name": "glyph2222", "advanceWidth": 500, "contours": [[{"x":137,"y":0,"on":true},{"x":137,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":343,"on":true},{"x":205,"y":343,"on":true},{"x":205,"y":249,"on":true},{"x":335,"y":249,"on":true},{"x":335,"y":188,"on":true},{"x":205,"y":188,"on":true},{"x":205,"y":61,"on":true},{"x":371,"y":61,"on":true},{"x":371,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni24BB": { "name": "uni24BB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2224","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2224": { "name": "glyph2224", "advanceWidth": 500, "contours": [[{"x":137,"y":0,"on":true},{"x":137,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":343,"on":true},{"x":205,"y":343,"on":true},{"x":205,"y":249,"on":true},{"x":335,"y":249,"on":true},{"x":335,"y":188,"on":true},{"x":205,"y":188,"on":true},{"x":205,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni24BC": { "name": "uni24BC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2226","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2226": { "name": "glyph2226", "advanceWidth": 500, "contours": [[{"x":125,"y":107,"on":true},{"x":125,"y":297,"on":true},{"x":125,"y":330,"on":false},{"x":139,"y":354,"on":true},{"x":152,"y":377,"on":false},{"x":176,"y":391,"on":true},{"x":206,"y":408,"on":false},{"x":250,"y":409,"on":true},{"x":294,"y":409,"on":false},{"x":324,"y":391,"on":true},{"x":348,"y":377,"on":false},{"x":362,"y":354,"on":true},{"x":371,"y":338,"on":false},{"x":374,"y":319,"on":true},{"x":308,"y":304,"on":true},{"x":306,"y":320,"on":false},{"x":294,"y":332,"on":true},{"x":278,"y":348,"on":false},{"x":250,"y":348,"on":true},{"x":221,"y":348,"on":false},{"x":206,"y":332,"on":true},{"x":193,"y":319,"on":false},{"x":192,"y":297,"on":true},{"x":192,"y":107,"on":true},{"x":192,"y":85,"on":false},{"x":206,"y":72,"on":true},{"x":222,"y":56,"on":false},{"x":250,"y":57,"on":true},{"x":276,"y":57,"on":false},{"x":304,"y":85,"on":false},{"x":303,"y":107,"on":true},{"x":303,"y":165,"on":true},{"x":250,"y":165,"on":true},{"x":250,"y":225,"on":true},{"x":371,"y":225,"on":true},{"x":371,"y":107,"on":true},{"x":371,"y":42,"on":false},{"x":320,"y":12,"on":true},{"x":291,"y":-5,"on":false},{"x":250,"y":-4,"on":true},{"x":207,"y":-4,"on":false},{"x":176,"y":13,"on":true},{"x":124,"y":43,"on":false}]], "references": [], - "instructions": [179,38,7,1,48,43] + "instructions": "syYHATAr" }, "uni24BD": { "name": "uni24BD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2228","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2228": { "name": "glyph2228", "advanceWidth": 500, "contours": [[{"x":129,"y":0,"on":true},{"x":129,"y":404,"on":true},{"x":197,"y":404,"on":true},{"x":197,"y":243,"on":true},{"x":303,"y":243,"on":true},{"x":303,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":0,"on":true},{"x":303,"y":0,"on":true},{"x":303,"y":182,"on":true},{"x":197,"y":182,"on":true},{"x":197,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni24BE": { "name": "uni24BE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2230","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2230": { "name": "glyph2230", "advanceWidth": 500, "contours": [[{"x":173,"y":0,"on":true},{"x":173,"y":61,"on":true},{"x":216,"y":61,"on":true},{"x":216,"y":343,"on":true},{"x":173,"y":343,"on":true},{"x":173,"y":404,"on":true},{"x":327,"y":404,"on":true},{"x":327,"y":343,"on":true},{"x":284,"y":343,"on":true},{"x":284,"y":61,"on":true},{"x":327,"y":61,"on":true},{"x":327,"y":0,"on":true}]], "references": [], - "instructions": [179,5,0,1,48,43] + "instructions": "swUAATAr" }, "uni24BF": { "name": "uni24BF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2232","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2232": { "name": "glyph2232", "advanceWidth": 500, "contours": [[{"x":122,"y":85,"on":true},{"x":188,"y":98,"on":true},{"x":188,"y":97,"on":true},{"x":188,"y":81,"on":false},{"x":200,"y":70,"on":true},{"x":213,"y":57,"on":false},{"x":236,"y":57,"on":true},{"x":257,"y":57,"on":false},{"x":270,"y":69,"on":true},{"x":284,"y":83,"on":false},{"x":284,"y":107,"on":true},{"x":284,"y":343,"on":true},{"x":222,"y":343,"on":true},{"x":222,"y":404,"on":true},{"x":352,"y":404,"on":true},{"x":352,"y":107,"on":true},{"x":352,"y":72,"on":false},{"x":337,"y":47,"on":true},{"x":324,"y":24,"on":false},{"x":301,"y":11,"on":true},{"x":274,"y":-5,"on":false},{"x":236,"y":-4,"on":true},{"x":196,"y":-4,"on":false},{"x":169,"y":12,"on":true},{"x":147,"y":25,"on":false},{"x":134,"y":46,"on":true},{"x":123,"y":65,"on":false}]], "references": [], - "instructions": [179,20,13,1,48,43] + "instructions": "sxQNATAr" }, "uni24C0": { "name": "uni24C0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2234","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2234": { "name": "glyph2234", "advanceWidth": 500, "contours": [[{"x":129,"y":0,"on":true},{"x":129,"y":404,"on":true},{"x":197,"y":404,"on":true},{"x":197,"y":241,"on":true},{"x":252,"y":301,"on":false},{"x":281,"y":352,"on":true},{"x":300,"y":385,"on":false},{"x":300,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":382,"on":false},{"x":348,"y":343,"on":true},{"x":323,"y":299,"on":false},{"x":282,"y":250,"on":true},{"x":376,"y":64,"on":false},{"x":375,"y":0,"on":true},{"x":308,"y":0,"on":true},{"x":308,"y":53,"on":false},{"x":239,"y":201,"on":true},{"x":219,"y":180,"on":false},{"x":197,"y":158,"on":true},{"x":197,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni24C1": { "name": "uni24C1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2236","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2236": { "name": "glyph2236", "advanceWidth": 500, "contours": [[{"x":137,"y":0,"on":true},{"x":137,"y":404,"on":true},{"x":205,"y":404,"on":true},{"x":205,"y":61,"on":true},{"x":375,"y":61,"on":true},{"x":375,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni24C2": { "name": "uni24C2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2238","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2238": { "name": "glyph2238", "advanceWidth": 500, "contours": [[{"x":129,"y":0,"on":true},{"x":129,"y":404,"on":true},{"x":190,"y":404,"on":true},{"x":250,"y":196,"on":true},{"x":310,"y":404,"on":true},{"x":340,"y":404,"on":false},{"x":371,"y":404,"on":true},{"x":371,"y":0,"on":true},{"x":303,"y":0,"on":true},{"x":303,"y":81,"on":true},{"x":303,"y":157,"on":false},{"x":316,"y":243,"on":true},{"x":321,"y":275,"on":false},{"x":324,"y":305,"on":true},{"x":271,"y":121,"on":true},{"x":229,"y":121,"on":true},{"x":176,"y":305,"on":true},{"x":179,"y":275,"on":false},{"x":184,"y":243,"on":true},{"x":197,"y":157,"on":false},{"x":197,"y":81,"on":true},{"x":197,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni24C3": { "name": "uni24C3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2240","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2240": { "name": "glyph2240", "advanceWidth": 500, "contours": [[{"x":129,"y":0,"on":true},{"x":129,"y":404,"on":true},{"x":206,"y":404,"on":true},{"x":313,"y":97,"on":true},{"x":312,"y":109,"on":false},{"x":311,"y":121,"on":true},{"x":304,"y":185,"on":false},{"x":303,"y":243,"on":true},{"x":303,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":0,"on":true},{"x":294,"y":0,"on":true},{"x":187,"y":307,"on":true},{"x":188,"y":295,"on":false},{"x":189,"y":283,"on":true},{"x":196,"y":219,"on":false},{"x":197,"y":162,"on":true},{"x":197,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni24C4": { "name": "uni24C4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2242","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,129,176,51,43] + "instructions": "sQACsIGwMys=" }, "glyph2242": { "name": "glyph2242", "advanceWidth": 500, "contours": [[{"x":125,"y":107,"on":true},{"x":125,"y":297,"on":true},{"x":125,"y":361,"on":false},{"x":176,"y":391,"on":true},{"x":206,"y":409,"on":false},{"x":294,"y":409,"on":false},{"x":324,"y":391,"on":true},{"x":376,"y":361,"on":false},{"x":375,"y":297,"on":true},{"x":375,"y":107,"on":true},{"x":375,"y":43,"on":false},{"x":324,"y":13,"on":true},{"x":294,"y":-4,"on":false},{"x":206,"y":-4,"on":false},{"x":176,"y":13,"on":true},{"x":124,"y":43,"on":false}],[{"x":192,"y":107,"on":true},{"x":192,"y":85,"on":false},{"x":206,"y":72,"on":true},{"x":222,"y":56,"on":false},{"x":279,"y":57,"on":false},{"x":294,"y":72,"on":true},{"x":307,"y":85,"on":false},{"x":308,"y":107,"on":true},{"x":308,"y":297,"on":true},{"x":308,"y":319,"on":false},{"x":294,"y":332,"on":true},{"x":279,"y":348,"on":false},{"x":221,"y":348,"on":false},{"x":206,"y":332,"on":true},{"x":193,"y":319,"on":false},{"x":192,"y":297,"on":true}]], "references": [], - "instructions": [181,27,19,12,4,2,48,43] + "instructions": "tRsTDAQCMCs=" }, "uni24C5": { "name": "uni24C5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2117","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,129,176,51,43] + "instructions": "sQICsIGwMys=" }, "glyph2244": { "name": "glyph2244", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni24C6": { "name": "uni24C6", "advanceWidth": 500, "contours": [[{"x":28,"y":184,"on":true},{"x":28,"y":478,"on":true},{"x":28,"y":553,"on":false},{"x":59,"y":606,"on":true},{"x":85,"y":651,"on":false},{"x":130,"y":677,"on":true},{"x":180,"y":706,"on":false},{"x":320,"y":706,"on":false},{"x":370,"y":677,"on":true},{"x":415,"y":651,"on":false},{"x":441,"y":606,"on":true},{"x":472,"y":553,"on":false},{"x":472,"y":478,"on":true},{"x":472,"y":184,"on":true},{"x":472,"y":109,"on":false},{"x":441,"y":57,"on":true},{"x":415,"y":12,"on":false},{"x":370,"y":-15,"on":true},{"x":320,"y":-44,"on":false},{"x":180,"y":-44,"on":false},{"x":130,"y":-15,"on":true},{"x":85,"y":11,"on":false},{"x":59,"y":57,"on":true},{"x":28,"y":110,"on":false}],[{"x":89,"y":184,"on":true},{"x":89,"y":126,"on":false},{"x":113,"y":85,"on":true},{"x":133,"y":51,"on":false},{"x":166,"y":32,"on":true},{"x":201,"y":12,"on":false},{"x":299,"y":11,"on":false},{"x":334,"y":32,"on":true},{"x":367,"y":51,"on":false},{"x":387,"y":85,"on":true},{"x":411,"y":126,"on":false},{"x":411,"y":184,"on":true},{"x":411,"y":478,"on":true},{"x":411,"y":536,"on":false},{"x":387,"y":577,"on":true},{"x":367,"y":611,"on":false},{"x":334,"y":631,"on":true},{"x":299,"y":651,"on":false},{"x":201,"y":651,"on":false},{"x":166,"y":631,"on":true},{"x":133,"y":612,"on":false},{"x":113,"y":577,"on":true},{"x":89,"y":536,"on":false},{"x":89,"y":478,"on":true}],[{"x":125,"y":236,"on":true},{"x":125,"y":426,"on":true},{"x":125,"y":490,"on":false},{"x":176,"y":520,"on":true},{"x":206,"y":538,"on":false},{"x":294,"y":538,"on":false},{"x":324,"y":520,"on":true},{"x":376,"y":490,"on":false},{"x":375,"y":426,"on":true},{"x":375,"y":236,"on":true},{"x":375,"y":172,"on":false},{"x":324,"y":142,"on":true},{"x":315,"y":137,"on":false},{"x":304,"y":133,"on":true},{"x":324,"y":48,"on":true},{"x":256,"y":48,"on":true},{"x":236,"y":125,"on":true},{"x":201,"y":127,"on":false},{"x":176,"y":142,"on":true},{"x":124,"y":172,"on":false}],[{"x":192,"y":236,"on":true},{"x":192,"y":214,"on":false},{"x":206,"y":201,"on":true},{"x":222,"y":185,"on":false},{"x":279,"y":186,"on":false},{"x":294,"y":201,"on":true},{"x":307,"y":214,"on":false},{"x":308,"y":236,"on":true},{"x":308,"y":426,"on":true},{"x":308,"y":448,"on":false},{"x":294,"y":461,"on":true},{"x":279,"y":477,"on":false},{"x":221,"y":477,"on":false},{"x":206,"y":461,"on":true},{"x":193,"y":448,"on":false},{"x":192,"y":426,"on":true}]], "references": [], - "instructions": [64,10,79,71,62,52,41,30,18,6,4,48,43] + "instructions": "QApPRz40KR4SBgQwKw==" }, "glyph2246": { "name": "glyph2246", "advanceWidth": 500, "contours": [[{"x":125,"y":107,"on":true},{"x":125,"y":297,"on":true},{"x":125,"y":361,"on":false},{"x":176,"y":391,"on":true},{"x":206,"y":409,"on":false},{"x":294,"y":409,"on":false},{"x":324,"y":391,"on":true},{"x":376,"y":361,"on":false},{"x":375,"y":297,"on":true},{"x":375,"y":107,"on":true},{"x":375,"y":43,"on":false},{"x":324,"y":13,"on":true},{"x":315,"y":8,"on":false},{"x":304,"y":4,"on":true},{"x":324,"y":-81,"on":true},{"x":256,"y":-81,"on":true},{"x":236,"y":-4,"on":true},{"x":201,"y":-2,"on":false},{"x":176,"y":13,"on":true},{"x":124,"y":43,"on":false}],[{"x":192,"y":107,"on":true},{"x":192,"y":85,"on":false},{"x":206,"y":72,"on":true},{"x":222,"y":56,"on":false},{"x":279,"y":57,"on":false},{"x":294,"y":72,"on":true},{"x":307,"y":85,"on":false},{"x":308,"y":107,"on":true},{"x":308,"y":297,"on":true},{"x":308,"y":319,"on":false},{"x":294,"y":332,"on":true},{"x":279,"y":348,"on":false},{"x":221,"y":348,"on":false},{"x":206,"y":332,"on":true},{"x":193,"y":319,"on":false},{"x":192,"y":297,"on":true}]], "references": [], - "instructions": [181,31,23,14,4,2,48,43] + "instructions": "tR8XDgQCMCs=" }, "uni24C7": { "name": "uni24C7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"registered","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,129,176,51,43] + "instructions": "sQICsIGwMys=" }, "glyph2248": { "name": "glyph2248", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2188","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni24C8": { "name": "uni24C8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2250","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2250": { "name": "glyph2250", "advanceWidth": 500, "contours": [[{"x":126,"y":85,"on":true},{"x":192,"y":100,"on":true},{"x":193,"y":84,"on":false},{"x":205,"y":71,"on":true},{"x":220,"y":56,"on":false},{"x":248,"y":57,"on":true},{"x":276,"y":57,"on":false},{"x":291,"y":72,"on":true},{"x":303,"y":84,"on":false},{"x":303,"y":102,"on":true},{"x":303,"y":115,"on":false},{"x":296,"y":128,"on":true},{"x":286,"y":146,"on":false},{"x":262,"y":159,"on":true},{"x":254,"y":164,"on":false},{"x":237,"y":171,"on":true},{"x":211,"y":183,"on":false},{"x":199,"y":191,"on":true},{"x":163,"y":212,"on":false},{"x":145,"y":242,"on":true},{"x":129,"y":270,"on":false},{"x":129,"y":301,"on":true},{"x":129,"y":330,"on":false},{"x":143,"y":355,"on":true},{"x":156,"y":378,"on":false},{"x":180,"y":392,"on":true},{"x":209,"y":409,"on":false},{"x":295,"y":409,"on":false},{"x":324,"y":392,"on":true},{"x":347,"y":378,"on":false},{"x":361,"y":355,"on":true},{"x":371,"y":338,"on":false},{"x":374,"y":319,"on":true},{"x":308,"y":304,"on":true},{"x":307,"y":320,"on":false},{"x":295,"y":333,"on":true},{"x":280,"y":348,"on":false},{"x":224,"y":348,"on":false},{"x":209,"y":333,"on":true},{"x":197,"y":321,"on":false},{"x":197,"y":303,"on":true},{"x":197,"y":290,"on":false},{"x":204,"y":277,"on":true},{"x":214,"y":259,"on":false},{"x":238,"y":245,"on":true},{"x":246,"y":240,"on":false},{"x":263,"y":233,"on":true},{"x":289,"y":221,"on":false},{"x":301,"y":214,"on":true},{"x":337,"y":193,"on":false},{"x":355,"y":162,"on":true},{"x":371,"y":134,"on":false},{"x":371,"y":103,"on":true},{"x":371,"y":74,"on":false},{"x":357,"y":49,"on":true},{"x":344,"y":26,"on":false},{"x":320,"y":13,"on":true},{"x":291,"y":-4,"on":false},{"x":205,"y":-4,"on":false},{"x":176,"y":13,"on":true},{"x":153,"y":27,"on":false},{"x":139,"y":50,"on":true},{"x":129,"y":67,"on":false}]], "references": [], - "instructions": [179,57,26,1,48,43] + "instructions": "szkaATAr" }, "uni24C9": { "name": "uni24C9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2252","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2252": { "name": "glyph2252", "advanceWidth": 500, "contours": [[{"x":129,"y":343,"on":true},{"x":129,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":343,"on":true},{"x":284,"y":343,"on":true},{"x":284,"y":0,"on":true},{"x":216,"y":0,"on":true},{"x":216,"y":343,"on":true}]], "references": [], - "instructions": [179,5,1,1,48,43] + "instructions": "swUBATAr" }, "uni24CA": { "name": "uni24CA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2254","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2254": { "name": "glyph2254", "advanceWidth": 500, "contours": [[{"x":129,"y":107,"on":true},{"x":129,"y":404,"on":true},{"x":197,"y":404,"on":true},{"x":197,"y":107,"on":true},{"x":197,"y":84,"on":false},{"x":210,"y":71,"on":true},{"x":225,"y":56,"on":false},{"x":275,"y":57,"on":false},{"x":290,"y":71,"on":true},{"x":304,"y":85,"on":false},{"x":303,"y":107,"on":true},{"x":303,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":107,"on":true},{"x":371,"y":42,"on":false},{"x":320,"y":12,"on":true},{"x":291,"y":-5,"on":false},{"x":209,"y":-4,"on":false},{"x":180,"y":12,"on":true},{"x":129,"y":42,"on":false}]], "references": [], - "instructions": [179,16,1,1,48,43] + "instructions": "sxABATAr" }, "uni24CB": { "name": "uni24CB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2256","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2256": { "name": "glyph2256", "advanceWidth": 500, "contours": [[{"x":129,"y":364,"on":true},{"x":129,"y":404,"on":true},{"x":197,"y":404,"on":true},{"x":197,"y":364,"on":true},{"x":197,"y":273,"on":false},{"x":250,"y":77,"on":true},{"x":303,"y":272,"on":false},{"x":303,"y":364,"on":true},{"x":303,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":364,"on":true},{"x":371,"y":254,"on":false},{"x":284,"y":0,"on":true},{"x":216,"y":0,"on":true},{"x":129,"y":254,"on":false}]], "references": [], - "instructions": [179,12,1,1,48,43] + "instructions": "swwBATAr" }, "uni24CC": { "name": "uni24CC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2258","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2258": { "name": "glyph2258", "advanceWidth": 500, "contours": [[{"x":129,"y":303,"on":true},{"x":129,"y":404,"on":true},{"x":197,"y":404,"on":true},{"x":197,"y":303,"on":true},{"x":197,"y":236,"on":false},{"x":205,"y":106,"on":true},{"x":232,"y":243,"on":true},{"x":268,"y":243,"on":true},{"x":295,"y":106,"on":true},{"x":303,"y":237,"on":false},{"x":303,"y":303,"on":true},{"x":303,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":303,"on":true},{"x":371,"y":211,"on":false},{"x":316,"y":0,"on":true},{"x":280,"y":0,"on":true},{"x":250,"y":154,"on":true},{"x":220,"y":0,"on":true},{"x":184,"y":0,"on":true},{"x":129,"y":211,"on":false}]], "references": [], - "instructions": [179,15,1,1,48,43] + "instructions": "sw8BATAr" }, "uni24CD": { "name": "uni24CD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2260","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2260": { "name": "glyph2260", "advanceWidth": 500, "contours": [[{"x":129,"y":0,"on":true},{"x":129,"y":20,"on":true},{"x":129,"y":79,"on":false},{"x":170,"y":140,"on":true},{"x":211,"y":202,"on":true},{"x":170,"y":264,"on":true},{"x":129,"y":325,"on":false},{"x":129,"y":384,"on":true},{"x":129,"y":404,"on":true},{"x":197,"y":404,"on":true},{"x":197,"y":384,"on":true},{"x":197,"y":341,"on":false},{"x":226,"y":298,"on":true},{"x":250,"y":261,"on":true},{"x":274,"y":298,"on":true},{"x":303,"y":342,"on":false},{"x":303,"y":384,"on":true},{"x":303,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":384,"on":true},{"x":371,"y":325,"on":false},{"x":330,"y":264,"on":true},{"x":289,"y":202,"on":true},{"x":330,"y":140,"on":true},{"x":371,"y":79,"on":false},{"x":371,"y":20,"on":true},{"x":371,"y":0,"on":true},{"x":303,"y":0,"on":true},{"x":303,"y":20,"on":true},{"x":303,"y":63,"on":false},{"x":274,"y":107,"on":true},{"x":250,"y":143,"on":true},{"x":226,"y":107,"on":true},{"x":197,"y":63,"on":false},{"x":197,"y":20,"on":true},{"x":197,"y":0,"on":true}]], "references": [], - "instructions": [179,8,0,1,48,43] + "instructions": "swgAATAr" }, "uni24CE": { "name": "uni24CE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2262","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2262": { "name": "glyph2262", "advanceWidth": 500, "contours": [[{"x":129,"y":380,"on":true},{"x":129,"y":404,"on":true},{"x":197,"y":404,"on":true},{"x":197,"y":380,"on":true},{"x":197,"y":326,"on":false},{"x":227,"y":271,"on":true},{"x":250,"y":230,"on":true},{"x":273,"y":271,"on":true},{"x":304,"y":326,"on":false},{"x":303,"y":380,"on":true},{"x":303,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":380,"on":true},{"x":371,"y":312,"on":false},{"x":332,"y":241,"on":true},{"x":284,"y":155,"on":true},{"x":284,"y":0,"on":true},{"x":216,"y":0,"on":true},{"x":216,"y":155,"on":true},{"x":168,"y":241,"on":true},{"x":129,"y":312,"on":false}]], "references": [], - "instructions": [179,16,1,1,48,43] + "instructions": "sxABATAr" }, "uni24CF": { "name": "uni24CF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2264","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2264": { "name": "glyph2264", "advanceWidth": 500, "contours": [[{"x":129,"y":0,"on":true},{"x":129,"y":61,"on":true},{"x":293,"y":343,"on":true},{"x":129,"y":343,"on":true},{"x":129,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":343,"on":true},{"x":207,"y":61,"on":true},{"x":371,"y":61,"on":true},{"x":371,"y":0,"on":true}]], "references": [], - "instructions": [179,4,0,1,48,43] + "instructions": "swQAATAr" }, "uni24D0": { "name": "uni24D0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2266","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,129,176,51,43] + "instructions": "sQACsIGwMys=" }, "glyph2266": { "name": "glyph2266", "advanceWidth": 500, "contours": [[{"x":125,"y":143,"on":true},{"x":125,"y":168,"on":false},{"x":135,"y":187,"on":true},{"x":147,"y":208,"on":false},{"x":171,"y":221,"on":true},{"x":207,"y":242,"on":false},{"x":262,"y":241,"on":true},{"x":303,"y":241,"on":true},{"x":303,"y":260,"on":true},{"x":303,"y":270,"on":false},{"x":296,"y":277,"on":true},{"x":282,"y":291,"on":false},{"x":249,"y":291,"on":true},{"x":219,"y":291,"on":false},{"x":203,"y":276,"on":true},{"x":195,"y":268,"on":false},{"x":192,"y":257,"on":true},{"x":128,"y":276,"on":true},{"x":131,"y":287,"on":false},{"x":137,"y":297,"on":true},{"x":151,"y":321,"on":false},{"x":175,"y":335,"on":true},{"x":204,"y":352,"on":false},{"x":249,"y":352,"on":true},{"x":296,"y":352,"on":false},{"x":327,"y":334,"on":true},{"x":349,"y":321,"on":false},{"x":361,"y":301,"on":true},{"x":371,"y":283,"on":false},{"x":371,"y":260,"on":true},{"x":371,"y":56,"on":true},{"x":303,"y":56,"on":true},{"x":303,"y":91,"on":true},{"x":291,"y":75,"on":false},{"x":275,"y":65,"on":true},{"x":252,"y":52,"on":false},{"x":221,"y":52,"on":true},{"x":189,"y":52,"on":false},{"x":167,"y":65,"on":true},{"x":148,"y":76,"on":false},{"x":137,"y":95,"on":true},{"x":125,"y":116,"on":false}],[{"x":192,"y":144,"on":true},{"x":192,"y":134,"on":false},{"x":199,"y":126,"on":true},{"x":213,"y":112,"on":false},{"x":244,"y":113,"on":true},{"x":273,"y":113,"on":false},{"x":289,"y":129,"on":true},{"x":303,"y":143,"on":false},{"x":303,"y":165,"on":true},{"x":303,"y":181,"on":true},{"x":262,"y":181,"on":true},{"x":218,"y":181,"on":false},{"x":200,"y":163,"on":true},{"x":192,"y":155,"on":false}]], "references": [], - "instructions": [181,51,45,35,22,2,48,43] + "instructions": "tTMtIxYCMCs=" }, "uni24D1": { "name": "uni24D1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2268","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,129,176,51,43] + "instructions": "sQACsIGwMys=" }, "glyph2268": { "name": "glyph2268", "advanceWidth": 500, "contours": [[{"x":129,"y":0,"on":true},{"x":129,"y":404,"on":true},{"x":197,"y":404,"on":true},{"x":197,"y":255,"on":true},{"x":209,"y":274,"on":false},{"x":228,"y":285,"on":true},{"x":248,"y":296,"on":false},{"x":274,"y":296,"on":true},{"x":302,"y":296,"on":false},{"x":322,"y":284,"on":true},{"x":344,"y":272,"on":false},{"x":357,"y":248,"on":true},{"x":375,"y":216,"on":false},{"x":375,"y":170,"on":true},{"x":375,"y":121,"on":true},{"x":375,"y":75,"on":false},{"x":357,"y":43,"on":true},{"x":344,"y":20,"on":false},{"x":322,"y":8,"on":true},{"x":301,"y":-4,"on":false},{"x":274,"y":-4,"on":true},{"x":248,"y":-4,"on":false},{"x":228,"y":7,"on":true},{"x":210,"y":18,"on":false},{"x":197,"y":37,"on":true},{"x":197,"y":0,"on":true}],[{"x":197,"y":121,"on":true},{"x":197,"y":88,"on":false},{"x":214,"y":70,"on":true},{"x":228,"y":56,"on":false},{"x":250,"y":57,"on":true},{"x":274,"y":57,"on":false},{"x":290,"y":72,"on":true},{"x":308,"y":90,"on":false},{"x":308,"y":121,"on":true},{"x":308,"y":170,"on":true},{"x":308,"y":202,"on":false},{"x":290,"y":220,"on":true},{"x":275,"y":235,"on":false},{"x":250,"y":235,"on":true},{"x":228,"y":235,"on":false},{"x":214,"y":221,"on":true},{"x":196,"y":202,"on":false},{"x":197,"y":170,"on":true}]], "references": [], - "instructions": [181,38,29,19,1,2,48,43] + "instructions": "tSYdEwECMCs=" }, "uni24D2": { "name": "uni24D2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2270","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2270": { "name": "glyph2270", "advanceWidth": 500, "contours": [[{"x":125,"y":177,"on":true},{"x":125,"y":227,"on":true},{"x":125,"y":267,"on":false},{"x":141,"y":296,"on":true},{"x":156,"y":321,"on":false},{"x":181,"y":336,"on":true},{"x":210,"y":353,"on":false},{"x":251,"y":352,"on":true},{"x":294,"y":352,"on":false},{"x":323,"y":335,"on":true},{"x":347,"y":321,"on":false},{"x":361,"y":297,"on":true},{"x":370,"y":281,"on":false},{"x":374,"y":263,"on":true},{"x":309,"y":246,"on":true},{"x":308,"y":263,"on":false},{"x":295,"y":276,"on":true},{"x":279,"y":292,"on":false},{"x":251,"y":291,"on":true},{"x":225,"y":291,"on":false},{"x":210,"y":276,"on":true},{"x":192,"y":258,"on":false},{"x":192,"y":227,"on":true},{"x":192,"y":177,"on":true},{"x":192,"y":146,"on":false},{"x":210,"y":129,"on":true},{"x":226,"y":113,"on":false},{"x":251,"y":113,"on":true},{"x":279,"y":113,"on":false},{"x":295,"y":129,"on":true},{"x":308,"y":142,"on":false},{"x":309,"y":159,"on":true},{"x":374,"y":142,"on":true},{"x":371,"y":124,"on":false},{"x":361,"y":107,"on":true},{"x":347,"y":83,"on":false},{"x":323,"y":69,"on":true},{"x":293,"y":52,"on":false},{"x":251,"y":52,"on":true},{"x":210,"y":52,"on":false},{"x":181,"y":69,"on":true},{"x":156,"y":84,"on":false},{"x":141,"y":109,"on":true},{"x":124,"y":138,"on":false}]], "references": [], - "instructions": [179,37,6,1,48,43] + "instructions": "syUGATAr" }, "uni24D3": { "name": "uni24D3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2272","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,129,176,51,43] + "instructions": "sQACsIGwMys=" }, "glyph2272": { "name": "glyph2272", "advanceWidth": 500, "contours": [[{"x":125,"y":121,"on":true},{"x":125,"y":170,"on":true},{"x":125,"y":216,"on":false},{"x":143,"y":248,"on":true},{"x":156,"y":271,"on":false},{"x":178,"y":284,"on":true},{"x":199,"y":296,"on":false},{"x":226,"y":296,"on":true},{"x":252,"y":296,"on":false},{"x":272,"y":285,"on":true},{"x":290,"y":274,"on":false},{"x":303,"y":255,"on":true},{"x":303,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":0,"on":true},{"x":303,"y":0,"on":true},{"x":303,"y":37,"on":true},{"x":291,"y":18,"on":false},{"x":272,"y":7,"on":true},{"x":252,"y":-4,"on":false},{"x":226,"y":-4,"on":true},{"x":198,"y":-4,"on":false},{"x":178,"y":8,"on":true},{"x":156,"y":20,"on":false},{"x":143,"y":43,"on":true},{"x":125,"y":74,"on":false}],[{"x":192,"y":121,"on":true},{"x":192,"y":89,"on":false},{"x":210,"y":72,"on":true},{"x":225,"y":57,"on":false},{"x":250,"y":57,"on":true},{"x":272,"y":57,"on":false},{"x":286,"y":70,"on":true},{"x":304,"y":88,"on":false},{"x":303,"y":121,"on":true},{"x":303,"y":170,"on":true},{"x":303,"y":203,"on":false},{"x":286,"y":221,"on":true},{"x":272,"y":235,"on":false},{"x":250,"y":235,"on":true},{"x":226,"y":235,"on":false},{"x":210,"y":220,"on":true},{"x":192,"y":202,"on":false},{"x":192,"y":170,"on":true}]], "references": [], - "instructions": [181,38,29,19,12,2,48,43] + "instructions": "tSYdEwwCMCs=" }, "uni24D4": { "name": "uni24D4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2274","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,129,176,51,43] + "instructions": "sQACsIGwMys=" }, "glyph2274": { "name": "glyph2274", "advanceWidth": 500, "contours": [[{"x":125,"y":177,"on":true},{"x":125,"y":227,"on":true},{"x":125,"y":267,"on":false},{"x":141,"y":296,"on":true},{"x":156,"y":321,"on":false},{"x":181,"y":336,"on":true},{"x":210,"y":352,"on":false},{"x":290,"y":352,"on":false},{"x":319,"y":336,"on":true},{"x":344,"y":321,"on":false},{"x":359,"y":296,"on":true},{"x":376,"y":267,"on":false},{"x":375,"y":227,"on":true},{"x":375,"y":172,"on":true},{"x":192,"y":172,"on":true},{"x":194,"y":137,"on":false},{"x":221,"y":121,"on":true},{"x":235,"y":113,"on":false},{"x":254,"y":113,"on":true},{"x":283,"y":113,"on":false},{"x":300,"y":130,"on":true},{"x":309,"y":139,"on":false},{"x":313,"y":151,"on":true},{"x":376,"y":128,"on":true},{"x":373,"y":118,"on":false},{"x":367,"y":109,"on":true},{"x":352,"y":84,"on":false},{"x":328,"y":69,"on":true},{"x":298,"y":52,"on":false},{"x":254,"y":52,"on":true},{"x":211,"y":52,"on":false},{"x":182,"y":69,"on":true},{"x":156,"y":84,"on":false},{"x":141,"y":110,"on":true},{"x":125,"y":138,"on":false}],[{"x":192,"y":233,"on":true},{"x":308,"y":233,"on":true},{"x":307,"y":260,"on":false},{"x":290,"y":276,"on":true},{"x":275,"y":291,"on":false},{"x":225,"y":291,"on":false},{"x":210,"y":276,"on":true},{"x":193,"y":260,"on":false}]], "references": [], - "instructions": [181,39,35,28,6,2,48,43] + "instructions": "tScjHAYCMCs=" }, "uni24D5": { "name": "uni24D5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2276","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2276": { "name": "glyph2276", "advanceWidth": 500, "contours": [[{"x":129,"y":220,"on":true},{"x":129,"y":280,"on":true},{"x":197,"y":280,"on":true},{"x":197,"y":327,"on":true},{"x":197,"y":355,"on":false},{"x":209,"y":376,"on":true},{"x":220,"y":394,"on":false},{"x":238,"y":405,"on":true},{"x":260,"y":418,"on":false},{"x":321,"y":417,"on":false},{"x":343,"y":405,"on":true},{"x":362,"y":394,"on":false},{"x":372,"y":376,"on":true},{"x":379,"y":364,"on":false},{"x":382,"y":349,"on":true},{"x":318,"y":329,"on":true},{"x":314,"y":356,"on":false},{"x":290,"y":357,"on":true},{"x":279,"y":357,"on":false},{"x":272,"y":350,"on":true},{"x":264,"y":342,"on":false},{"x":264,"y":327,"on":true},{"x":264,"y":280,"on":true},{"x":359,"y":280,"on":true},{"x":359,"y":220,"on":true},{"x":264,"y":220,"on":true},{"x":264,"y":0,"on":true},{"x":197,"y":0,"on":true},{"x":197,"y":220,"on":true}]], "references": [], - "instructions": [179,26,8,1,48,43] + "instructions": "sxoIATAr" }, "uni24D6": { "name": "uni24D6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2278","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,3,176,129,176,51,43] + "instructions": "sQADsIGwMys=" }, "glyph2278": { "name": "glyph2278", "advanceWidth": 500, "contours": [[{"x":122,"y":94,"on":true},{"x":122,"y":118,"on":false},{"x":132,"y":134,"on":true},{"x":138,"y":144,"on":false},{"x":146,"y":152,"on":true},{"x":144,"y":155,"on":false},{"x":143,"y":158,"on":true},{"x":135,"y":173,"on":false},{"x":134,"y":190,"on":true},{"x":134,"y":208,"on":false},{"x":144,"y":223,"on":true},{"x":148,"y":230,"on":false},{"x":153,"y":236,"on":true},{"x":143,"y":245,"on":false},{"x":137,"y":257,"on":true},{"x":125,"y":278,"on":false},{"x":125,"y":335,"on":false},{"x":149,"y":377,"on":false},{"x":172,"y":391,"on":true},{"x":202,"y":409,"on":false},{"x":248,"y":409,"on":true},{"x":270,"y":409,"on":false},{"x":289,"y":404,"on":true},{"x":380,"y":404,"on":true},{"x":380,"y":343,"on":true},{"x":364,"y":344,"on":true},{"x":370,"y":327,"on":false},{"x":370,"y":307,"on":true},{"x":370,"y":278,"on":false},{"x":346,"y":236,"on":false},{"x":323,"y":222,"on":true},{"x":293,"y":204,"on":false},{"x":248,"y":205,"on":true},{"x":221,"y":205,"on":false},{"x":199,"y":211,"on":true},{"x":195,"y":206,"on":false},{"x":195,"y":200,"on":true},{"x":195,"y":181,"on":false},{"x":226,"y":181,"on":true},{"x":246,"y":181,"on":false},{"x":266,"y":181,"on":true},{"x":309,"y":181,"on":false},{"x":338,"y":164,"on":true},{"x":358,"y":152,"on":false},{"x":378,"y":117,"on":false},{"x":378,"y":93,"on":true},{"x":378,"y":68,"on":false},{"x":367,"y":48,"on":true},{"x":355,"y":27,"on":false},{"x":332,"y":14,"on":true},{"x":299,"y":-5,"on":false},{"x":250,"y":-4,"on":true},{"x":201,"y":-4,"on":false},{"x":168,"y":14,"on":true},{"x":145,"y":27,"on":false},{"x":133,"y":48,"on":true},{"x":122,"y":67,"on":false}],[{"x":190,"y":93,"on":true},{"x":190,"y":81,"on":false},{"x":199,"y":72,"on":true},{"x":215,"y":56,"on":false},{"x":250,"y":57,"on":true},{"x":286,"y":57,"on":false},{"x":302,"y":72,"on":true},{"x":311,"y":81,"on":false},{"x":311,"y":92,"on":true},{"x":311,"y":102,"on":false},{"x":304,"y":108,"on":true},{"x":292,"y":120,"on":false},{"x":266,"y":120,"on":true},{"x":232,"y":120,"on":true},{"x":207,"y":120,"on":false},{"x":196,"y":108,"on":true},{"x":190,"y":102,"on":false}],[{"x":193,"y":323,"on":false},{"x":192,"y":291,"on":false},{"x":203,"y":281,"on":true},{"x":218,"y":266,"on":false},{"x":277,"y":266,"on":false},{"x":292,"y":281,"on":true},{"x":302,"y":291,"on":false},{"x":303,"y":322,"on":false},{"x":292,"y":333,"on":true},{"x":279,"y":345,"on":false},{"x":255,"y":347,"on":true},{"x":248,"y":348,"on":true},{"x":218,"y":348,"on":false},{"x":203,"y":333,"on":true}]], "references": [], - "instructions": [183,85,77,68,60,50,19,3,48,43] + "instructions": "t1VNRDwyEwMwKw==" }, "uni24D7": { "name": "uni24D7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2280","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2280": { "name": "glyph2280", "advanceWidth": 500, "contours": [[{"x":129,"y":0,"on":true},{"x":129,"y":404,"on":true},{"x":197,"y":404,"on":true},{"x":197,"y":255,"on":true},{"x":209,"y":274,"on":false},{"x":228,"y":285,"on":true},{"x":248,"y":296,"on":false},{"x":299,"y":296,"on":false},{"x":319,"y":285,"on":true},{"x":340,"y":273,"on":false},{"x":353,"y":250,"on":true},{"x":371,"y":218,"on":false},{"x":371,"y":170,"on":true},{"x":371,"y":0,"on":true},{"x":303,"y":0,"on":true},{"x":303,"y":170,"on":true},{"x":303,"y":203,"on":false},{"x":286,"y":221,"on":true},{"x":272,"y":235,"on":false},{"x":228,"y":235,"on":false},{"x":214,"y":221,"on":true},{"x":196,"y":202,"on":false},{"x":197,"y":170,"on":true},{"x":197,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni24D8": { "name": "uni24D8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2282","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,129,176,51,43] + "instructions": "sQACsIGwMys=" }, "glyph2282": { "name": "glyph2282", "advanceWidth": 500, "contours": [[{"x":154,"y":-2,"on":true},{"x":154,"y":58,"on":true},{"x":220,"y":58,"on":true},{"x":220,"y":228,"on":true},{"x":161,"y":228,"on":true},{"x":161,"y":289,"on":true},{"x":288,"y":289,"on":true},{"x":288,"y":58,"on":true},{"x":346,"y":58,"on":true},{"x":346,"y":-2,"on":true}],[{"x":216,"y":359,"on":false},{"x":216,"y":390,"on":false},{"x":234,"y":409,"on":false},{"x":266,"y":409,"on":false},{"x":284,"y":390,"on":false},{"x":284,"y":359,"on":false},{"x":266,"y":340,"on":false},{"x":234,"y":340,"on":false}]], "references": [], - "instructions": [181,16,12,5,0,2,48,43] + "instructions": "tRAMBQACMCs=" }, "uni24D9": { "name": "uni24D9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2284","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,129,176,51,43] + "instructions": "sQACsIGwMys=" }, "glyph2284": { "name": "glyph2284", "advanceWidth": 500, "contours": [[{"x":108,"y":15,"on":true},{"x":172,"y":33,"on":true},{"x":175,"y":17,"on":false},{"x":185,"y":8,"on":true},{"x":195,"y":-2,"on":false},{"x":211,"y":-2,"on":true},{"x":226,"y":-2,"on":false},{"x":237,"y":8,"on":true},{"x":251,"y":22,"on":false},{"x":251,"y":48,"on":true},{"x":251,"y":285,"on":true},{"x":188,"y":285,"on":true},{"x":188,"y":345,"on":true},{"x":318,"y":345,"on":true},{"x":318,"y":48,"on":true},{"x":318,"y":11,"on":false},{"x":303,"y":-15,"on":true},{"x":290,"y":-37,"on":false},{"x":269,"y":-49,"on":true},{"x":245,"y":-63,"on":false},{"x":178,"y":-63,"on":false},{"x":154,"y":-49,"on":true},{"x":132,"y":-36,"on":false},{"x":119,"y":-14,"on":true},{"x":111,"y":0,"on":false}],[{"x":239,"y":415,"on":false},{"x":239,"y":446,"on":false},{"x":258,"y":465,"on":false},{"x":289,"y":465,"on":false},{"x":308,"y":446,"on":false},{"x":308,"y":415,"on":false},{"x":289,"y":396,"on":false},{"x":258,"y":396,"on":false}]], "references": [], - "instructions": [181,31,27,19,12,2,48,43] + "instructions": "tR8bEwwCMCs=" }, "uni24DA": { "name": "uni24DA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2286","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2286": { "name": "glyph2286", "advanceWidth": 500, "contours": [[{"x":129,"y":0,"on":true},{"x":129,"y":404,"on":true},{"x":197,"y":404,"on":true},{"x":197,"y":183,"on":true},{"x":273,"y":238,"on":false},{"x":294,"y":276,"on":true},{"x":299,"y":285,"on":false},{"x":300,"y":291,"on":true},{"x":371,"y":292,"on":true},{"x":371,"y":283,"on":false},{"x":363,"y":268,"on":true},{"x":341,"y":231,"on":false},{"x":283,"y":181,"on":true},{"x":315,"y":135,"on":false},{"x":336,"y":98,"on":true},{"x":375,"y":30,"on":false},{"x":375,"y":0,"on":true},{"x":308,"y":0,"on":true},{"x":308,"y":27,"on":false},{"x":272,"y":88,"on":true},{"x":257,"y":114,"on":false},{"x":237,"y":144,"on":true},{"x":218,"y":129,"on":false},{"x":197,"y":114,"on":true},{"x":197,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni24DB": { "name": "uni24DB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2288","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2288": { "name": "glyph2288", "advanceWidth": 500, "contours": [[{"x":154,"y":0,"on":true},{"x":154,"y":61,"on":true},{"x":220,"y":61,"on":true},{"x":220,"y":343,"on":true},{"x":161,"y":343,"on":true},{"x":161,"y":404,"on":true},{"x":288,"y":404,"on":true},{"x":288,"y":61,"on":true},{"x":346,"y":61,"on":true},{"x":346,"y":0,"on":true}]], "references": [], - "instructions": [179,5,0,1,48,43] + "instructions": "swUAATAr" }, "uni24DC": { "name": "uni24DC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2290","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2290": { "name": "glyph2290", "advanceWidth": 500, "contours": [[{"x":125,"y":56,"on":true},{"x":125,"y":348,"on":true},{"x":188,"y":348,"on":true},{"x":188,"y":332,"on":true},{"x":191,"y":336,"on":false},{"x":195,"y":340,"on":true},{"x":208,"y":353,"on":false},{"x":225,"y":352,"on":true},{"x":243,"y":352,"on":false},{"x":257,"y":339,"on":true},{"x":267,"y":329,"on":false},{"x":273,"y":314,"on":true},{"x":279,"y":329,"on":false},{"x":289,"y":340,"on":true},{"x":302,"y":353,"on":false},{"x":319,"y":352,"on":true},{"x":337,"y":352,"on":false},{"x":350,"y":339,"on":true},{"x":375,"y":314,"on":false},{"x":375,"y":257,"on":true},{"x":375,"y":56,"on":true},{"x":312,"y":56,"on":true},{"x":312,"y":257,"on":true},{"x":312,"y":295,"on":false},{"x":282,"y":295,"on":false},{"x":282,"y":257,"on":true},{"x":282,"y":56,"on":true},{"x":218,"y":56,"on":true},{"x":218,"y":257,"on":true},{"x":218,"y":295,"on":false},{"x":188,"y":295,"on":false},{"x":188,"y":257,"on":true},{"x":188,"y":56,"on":true}]], "references": [], - "instructions": [179,6,0,1,48,43] + "instructions": "swYAATAr" }, "uni24DD": { "name": "uni24DD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2292","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2292": { "name": "glyph2292", "advanceWidth": 500, "contours": [[{"x":129,"y":56,"on":true},{"x":129,"y":348,"on":true},{"x":197,"y":348,"on":true},{"x":197,"y":311,"on":true},{"x":209,"y":330,"on":false},{"x":228,"y":341,"on":true},{"x":248,"y":352,"on":false},{"x":299,"y":352,"on":false},{"x":319,"y":341,"on":true},{"x":340,"y":329,"on":false},{"x":353,"y":306,"on":true},{"x":371,"y":274,"on":false},{"x":371,"y":227,"on":true},{"x":371,"y":56,"on":true},{"x":303,"y":56,"on":true},{"x":303,"y":227,"on":true},{"x":303,"y":260,"on":false},{"x":286,"y":277,"on":true},{"x":272,"y":291,"on":false},{"x":228,"y":291,"on":false},{"x":214,"y":277,"on":true},{"x":196,"y":259,"on":false},{"x":197,"y":227,"on":true},{"x":197,"y":56,"on":true}]], "references": [], - "instructions": [179,6,0,1,48,43] + "instructions": "swYAATAr" }, "uni24DE": { "name": "uni24DE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2294","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,129,176,51,43] + "instructions": "sQACsIGwMys=" }, "glyph2294": { "name": "glyph2294", "advanceWidth": 500, "contours": [[{"x":125,"y":177,"on":true},{"x":125,"y":227,"on":true},{"x":125,"y":267,"on":false},{"x":141,"y":296,"on":true},{"x":156,"y":321,"on":false},{"x":181,"y":336,"on":true},{"x":210,"y":352,"on":false},{"x":290,"y":352,"on":false},{"x":319,"y":336,"on":true},{"x":344,"y":321,"on":false},{"x":359,"y":296,"on":true},{"x":376,"y":267,"on":false},{"x":375,"y":227,"on":true},{"x":375,"y":177,"on":true},{"x":375,"y":137,"on":false},{"x":359,"y":108,"on":true},{"x":344,"y":83,"on":false},{"x":319,"y":68,"on":true},{"x":290,"y":52,"on":false},{"x":210,"y":52,"on":false},{"x":181,"y":68,"on":true},{"x":156,"y":83,"on":false},{"x":141,"y":108,"on":true},{"x":124,"y":137,"on":false}],[{"x":192,"y":177,"on":true},{"x":192,"y":145,"on":false},{"x":210,"y":128,"on":true},{"x":225,"y":113,"on":false},{"x":275,"y":113,"on":false},{"x":290,"y":128,"on":true},{"x":308,"y":146,"on":false},{"x":308,"y":177,"on":true},{"x":308,"y":227,"on":true},{"x":308,"y":259,"on":false},{"x":290,"y":276,"on":true},{"x":275,"y":291,"on":false},{"x":225,"y":291,"on":false},{"x":210,"y":276,"on":true},{"x":192,"y":258,"on":false},{"x":192,"y":227,"on":true}]], "references": [], - "instructions": [181,35,27,18,6,2,48,43] + "instructions": "tSMbEgYCMCs=" }, "uni24DF": { "name": "uni24DF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2296","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,129,176,51,43] + "instructions": "sQACsIGwMys=" }, "glyph2296": { "name": "glyph2296", "advanceWidth": 500, "contours": [[{"x":129,"y":0,"on":true},{"x":129,"y":404,"on":true},{"x":197,"y":404,"on":true},{"x":197,"y":367,"on":true},{"x":209,"y":386,"on":false},{"x":228,"y":397,"on":true},{"x":248,"y":408,"on":false},{"x":274,"y":409,"on":true},{"x":302,"y":409,"on":false},{"x":322,"y":397,"on":true},{"x":344,"y":385,"on":false},{"x":357,"y":361,"on":true},{"x":375,"y":330,"on":false},{"x":375,"y":283,"on":true},{"x":375,"y":234,"on":true},{"x":375,"y":188,"on":false},{"x":357,"y":156,"on":true},{"x":344,"y":133,"on":false},{"x":322,"y":120,"on":true},{"x":301,"y":108,"on":false},{"x":274,"y":108,"on":true},{"x":248,"y":108,"on":false},{"x":228,"y":120,"on":true},{"x":210,"y":131,"on":false},{"x":197,"y":150,"on":true},{"x":197,"y":0,"on":true}],[{"x":197,"y":234,"on":true},{"x":197,"y":201,"on":false},{"x":214,"y":183,"on":true},{"x":228,"y":169,"on":false},{"x":250,"y":169,"on":true},{"x":274,"y":169,"on":false},{"x":290,"y":185,"on":true},{"x":308,"y":203,"on":false},{"x":308,"y":234,"on":true},{"x":308,"y":283,"on":true},{"x":308,"y":315,"on":false},{"x":290,"y":332,"on":true},{"x":275,"y":347,"on":false},{"x":250,"y":348,"on":true},{"x":228,"y":348,"on":false},{"x":214,"y":334,"on":true},{"x":196,"y":316,"on":false},{"x":197,"y":283,"on":true}]], "references": [], - "instructions": [181,39,29,7,0,2,48,43] + "instructions": "tScdBwACMCs=" }, "uni24E0": { "name": "uni24E0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2298","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,129,176,51,43] + "instructions": "sQACsIGwMys=" }, "glyph2298": { "name": "glyph2298", "advanceWidth": 500, "contours": [[{"x":125,"y":234,"on":true},{"x":125,"y":283,"on":true},{"x":125,"y":329,"on":false},{"x":143,"y":361,"on":true},{"x":156,"y":384,"on":false},{"x":178,"y":397,"on":true},{"x":199,"y":409,"on":false},{"x":226,"y":409,"on":true},{"x":252,"y":409,"on":false},{"x":272,"y":397,"on":true},{"x":290,"y":386,"on":false},{"x":303,"y":367,"on":true},{"x":303,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":0,"on":true},{"x":303,"y":0,"on":true},{"x":303,"y":150,"on":true},{"x":291,"y":131,"on":false},{"x":272,"y":120,"on":true},{"x":252,"y":109,"on":false},{"x":226,"y":108,"on":true},{"x":198,"y":108,"on":false},{"x":178,"y":120,"on":true},{"x":156,"y":132,"on":false},{"x":143,"y":156,"on":true},{"x":125,"y":187,"on":false}],[{"x":192,"y":234,"on":true},{"x":192,"y":202,"on":false},{"x":210,"y":185,"on":true},{"x":225,"y":170,"on":false},{"x":250,"y":169,"on":true},{"x":272,"y":169,"on":false},{"x":286,"y":183,"on":true},{"x":304,"y":201,"on":false},{"x":303,"y":234,"on":true},{"x":303,"y":283,"on":true},{"x":303,"y":316,"on":false},{"x":286,"y":334,"on":true},{"x":272,"y":348,"on":false},{"x":250,"y":348,"on":true},{"x":226,"y":348,"on":false},{"x":210,"y":332,"on":true},{"x":192,"y":314,"on":false},{"x":192,"y":283,"on":true}]], "references": [], - "instructions": [181,38,30,14,6,2,48,43] + "instructions": "tSYeDgYCMCs=" }, "uni24E1": { "name": "uni24E1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2300","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2300": { "name": "glyph2300", "advanceWidth": 500, "contours": [[{"x":162,"y":56,"on":true},{"x":162,"y":348,"on":true},{"x":230,"y":348,"on":true},{"x":230,"y":298,"on":true},{"x":233,"y":304,"on":false},{"x":235,"y":310,"on":true},{"x":248,"y":333,"on":false},{"x":267,"y":343,"on":true},{"x":283,"y":352,"on":false},{"x":304,"y":352,"on":true},{"x":338,"y":352,"on":false},{"x":360,"y":329,"on":true},{"x":373,"y":316,"on":false},{"x":379,"y":298,"on":true},{"x":316,"y":268,"on":true},{"x":313,"y":275,"on":false},{"x":308,"y":281,"on":true},{"x":297,"y":292,"on":false},{"x":281,"y":291,"on":true},{"x":264,"y":291,"on":false},{"x":251,"y":279,"on":true},{"x":230,"y":258,"on":false},{"x":230,"y":211,"on":true},{"x":230,"y":56,"on":true}]], "references": [], - "instructions": [179,8,0,1,48,43] + "instructions": "swgAATAr" }, "uni24E2": { "name": "uni24E2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2302","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2302": { "name": "glyph2302", "advanceWidth": 500, "contours": [[{"x":127,"y":117,"on":true},{"x":189,"y":142,"on":true},{"x":193,"y":135,"on":false},{"x":198,"y":130,"on":true},{"x":216,"y":112,"on":false},{"x":249,"y":113,"on":true},{"x":285,"y":113,"on":false},{"x":298,"y":126,"on":true},{"x":304,"y":132,"on":false},{"x":304,"y":139,"on":true},{"x":304,"y":148,"on":false},{"x":296,"y":156,"on":true},{"x":283,"y":169,"on":false},{"x":241,"y":169,"on":true},{"x":197,"y":170,"on":false},{"x":174,"y":183,"on":true},{"x":153,"y":195,"on":false},{"x":141,"y":217,"on":true},{"x":128,"y":239,"on":false},{"x":128,"y":265,"on":true},{"x":128,"y":287,"on":false},{"x":138,"y":303,"on":true},{"x":149,"y":321,"on":false},{"x":170,"y":334,"on":true},{"x":202,"y":352,"on":false},{"x":251,"y":352,"on":true},{"x":298,"y":352,"on":false},{"x":358,"y":318,"on":false},{"x":373,"y":287,"on":true},{"x":311,"y":262,"on":true},{"x":307,"y":269,"on":false},{"x":302,"y":274,"on":true},{"x":284,"y":292,"on":false},{"x":251,"y":291,"on":true},{"x":215,"y":291,"on":false},{"x":202,"y":278,"on":true},{"x":196,"y":272,"on":false},{"x":196,"y":265,"on":true},{"x":196,"y":256,"on":false},{"x":204,"y":248,"on":true},{"x":217,"y":235,"on":false},{"x":259,"y":235,"on":true},{"x":303,"y":234,"on":false},{"x":326,"y":221,"on":true},{"x":347,"y":209,"on":false},{"x":359,"y":188,"on":true},{"x":372,"y":166,"on":false},{"x":372,"y":139,"on":true},{"x":372,"y":117,"on":false},{"x":362,"y":101,"on":true},{"x":351,"y":83,"on":false},{"x":330,"y":70,"on":true},{"x":298,"y":52,"on":false},{"x":249,"y":52,"on":true},{"x":202,"y":52,"on":false},{"x":142,"y":86,"on":false}]], "references": [], - "instructions": [179,52,24,1,48,43] + "instructions": "szQYATAr" }, "uni24E3": { "name": "uni24E3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2304","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2304": { "name": "glyph2304", "advanceWidth": 500, "contours": [[{"x":139,"y":231,"on":true},{"x":139,"y":292,"on":true},{"x":189,"y":292,"on":true},{"x":189,"y":404,"on":true},{"x":256,"y":404,"on":true},{"x":256,"y":292,"on":true},{"x":332,"y":292,"on":true},{"x":332,"y":231,"on":true},{"x":256,"y":231,"on":true},{"x":256,"y":126,"on":true},{"x":256,"y":84,"on":false},{"x":275,"y":66,"on":true},{"x":284,"y":57,"on":false},{"x":297,"y":57,"on":true},{"x":311,"y":57,"on":false},{"x":321,"y":66,"on":true},{"x":335,"y":80,"on":false},{"x":339,"y":107,"on":true},{"x":402,"y":85,"on":true},{"x":398,"y":64,"on":false},{"x":387,"y":46,"on":true},{"x":373,"y":21,"on":false},{"x":328,"y":-4,"on":false},{"x":267,"y":-4,"on":false},{"x":221,"y":22,"on":false},{"x":207,"y":46,"on":true},{"x":188,"y":78,"on":false},{"x":189,"y":126,"on":true},{"x":189,"y":231,"on":true}]], "references": [], - "instructions": [179,22,3,1,48,43] + "instructions": "sxYDATAr" }, "uni24E4": { "name": "uni24E4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2306","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2306": { "name": "glyph2306", "advanceWidth": 500, "contours": [[{"x":129,"y":177,"on":true},{"x":129,"y":348,"on":true},{"x":197,"y":348,"on":true},{"x":197,"y":177,"on":true},{"x":197,"y":144,"on":false},{"x":214,"y":127,"on":true},{"x":228,"y":113,"on":false},{"x":272,"y":113,"on":false},{"x":286,"y":127,"on":true},{"x":304,"y":145,"on":false},{"x":303,"y":177,"on":true},{"x":303,"y":348,"on":true},{"x":371,"y":348,"on":true},{"x":371,"y":56,"on":true},{"x":303,"y":56,"on":true},{"x":303,"y":93,"on":true},{"x":291,"y":74,"on":false},{"x":272,"y":63,"on":true},{"x":252,"y":52,"on":false},{"x":201,"y":52,"on":false},{"x":181,"y":63,"on":true},{"x":160,"y":75,"on":false},{"x":147,"y":98,"on":true},{"x":129,"y":130,"on":false}]], "references": [], - "instructions": [179,18,1,1,48,43] + "instructions": "sxIBATAr" }, "uni24E5": { "name": "uni24E5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2308","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2308": { "name": "glyph2308", "advanceWidth": 500, "contours": [[{"x":129,"y":319,"on":true},{"x":129,"y":348,"on":true},{"x":197,"y":348,"on":true},{"x":197,"y":319,"on":true},{"x":197,"y":255,"on":false},{"x":250,"y":115,"on":true},{"x":303,"y":254,"on":false},{"x":303,"y":319,"on":true},{"x":303,"y":348,"on":true},{"x":371,"y":348,"on":true},{"x":371,"y":319,"on":true},{"x":371,"y":240,"on":false},{"x":284,"y":56,"on":true},{"x":216,"y":56,"on":true},{"x":129,"y":239,"on":false}]], "references": [], - "instructions": [179,12,1,1,48,43] + "instructions": "swwBATAr" }, "uni24E6": { "name": "uni24E6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2310","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2310": { "name": "glyph2310", "advanceWidth": 500, "contours": [[{"x":129,"y":275,"on":true},{"x":129,"y":348,"on":true},{"x":197,"y":348,"on":true},{"x":197,"y":275,"on":true},{"x":197,"y":227,"on":false},{"x":205,"y":133,"on":true},{"x":232,"y":231,"on":true},{"x":268,"y":231,"on":true},{"x":295,"y":133,"on":true},{"x":303,"y":227,"on":false},{"x":303,"y":275,"on":true},{"x":303,"y":348,"on":true},{"x":371,"y":348,"on":true},{"x":371,"y":275,"on":true},{"x":371,"y":209,"on":false},{"x":316,"y":56,"on":true},{"x":280,"y":56,"on":true},{"x":250,"y":167,"on":true},{"x":220,"y":56,"on":true},{"x":184,"y":56,"on":true},{"x":129,"y":208,"on":false}]], "references": [], - "instructions": [179,15,1,1,48,43] + "instructions": "sw8BATAr" }, "uni24E7": { "name": "uni24E7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2312","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2312": { "name": "glyph2312", "advanceWidth": 500, "contours": [[{"x":129,"y":56,"on":true},{"x":129,"y":59,"on":true},{"x":129,"y":88,"on":false},{"x":170,"y":146,"on":true},{"x":210,"y":202,"on":true},{"x":170,"y":258,"on":true},{"x":129,"y":316,"on":false},{"x":129,"y":345,"on":true},{"x":129,"y":348,"on":true},{"x":197,"y":348,"on":true},{"x":197,"y":345,"on":true},{"x":197,"y":334,"on":false},{"x":225,"y":293,"on":true},{"x":250,"y":259,"on":true},{"x":275,"y":293,"on":true},{"x":304,"y":333,"on":false},{"x":303,"y":345,"on":true},{"x":303,"y":348,"on":true},{"x":371,"y":348,"on":true},{"x":371,"y":345,"on":true},{"x":371,"y":316,"on":false},{"x":330,"y":258,"on":true},{"x":290,"y":202,"on":true},{"x":330,"y":146,"on":true},{"x":371,"y":88,"on":false},{"x":371,"y":59,"on":true},{"x":371,"y":56,"on":true},{"x":303,"y":56,"on":true},{"x":303,"y":59,"on":true},{"x":303,"y":70,"on":false},{"x":275,"y":111,"on":true},{"x":250,"y":146,"on":true},{"x":225,"y":111,"on":true},{"x":196,"y":71,"on":false},{"x":197,"y":59,"on":true},{"x":197,"y":56,"on":true}]], "references": [], - "instructions": [179,8,0,1,48,43] + "instructions": "swgAATAr" }, "uni24E8": { "name": "uni24E8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2314","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2314": { "name": "glyph2314", "advanceWidth": 500, "contours": [[{"x":129,"y":384,"on":true},{"x":129,"y":404,"on":true},{"x":197,"y":404,"on":true},{"x":197,"y":384,"on":true},{"x":197,"y":353,"on":false},{"x":213,"y":306,"on":true},{"x":249,"y":202,"on":true},{"x":287,"y":306,"on":true},{"x":303,"y":350,"on":false},{"x":303,"y":384,"on":true},{"x":303,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":384,"on":true},{"x":371,"y":340,"on":false},{"x":351,"y":284,"on":true},{"x":260,"y":39,"on":true},{"x":260,"y":38,"on":true},{"x":257,"y":24,"on":false},{"x":256,"y":4,"on":true},{"x":256,"y":0,"on":true},{"x":189,"y":0,"on":true},{"x":189,"y":4,"on":true},{"x":189,"y":39,"on":false},{"x":196,"y":60,"on":true},{"x":216,"y":114,"on":true},{"x":149,"y":284,"on":true},{"x":129,"y":336,"on":false}]], "references": [], - "instructions": [179,19,1,1,48,43] + "instructions": "sxMBATAr" }, "uni24E9": { "name": "uni24E9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2316","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,129,176,51,43] + "instructions": "sQABsIGwMys=" }, "glyph2316": { "name": "glyph2316", "advanceWidth": 500, "contours": [[{"x":129,"y":56,"on":true},{"x":129,"y":117,"on":true},{"x":290,"y":287,"on":true},{"x":129,"y":287,"on":true},{"x":129,"y":348,"on":true},{"x":371,"y":348,"on":true},{"x":371,"y":287,"on":true},{"x":210,"y":117,"on":true},{"x":371,"y":117,"on":true},{"x":371,"y":56,"on":true}]], "references": [], - "instructions": [179,4,0,1,48,43] + "instructions": "swQAATAr" }, "glyph2317": { "name": "glyph2317", "advanceWidth": 500, "contours": [], "references": [], - "instructions": [] + "instructions": "" }, "glyph2318": { "name": "glyph2318", "advanceWidth": 500, "contours": [[{"x":28,"y":171,"on":false},{"x":28,"y":492,"on":false},{"x":95,"y":639,"on":true},{"x":150,"y":616,"on":true},{"x":89,"y":480,"on":false},{"x":89,"y":182,"on":false},{"x":150,"y":46,"on":true},{"x":95,"y":24,"on":true}],[{"x":350,"y":46,"on":true},{"x":411,"y":182,"on":false},{"x":411,"y":480,"on":false},{"x":350,"y":616,"on":true},{"x":405,"y":639,"on":true},{"x":472,"y":492,"on":false},{"x":472,"y":170,"on":false},{"x":405,"y":24,"on":true}]], "references": [], - "instructions": [181,15,12,7,2,2,48,43] + "instructions": "tQ8MBwICMCs=" }, "glyph2319": { "name": "glyph2319", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2196","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2474": { "name": "uni2474", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2196","x":0,"y":132,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,132,176,51,43] + "instructions": "sQIBsISwMys=" }, "glyph2321": { "name": "glyph2321", "advanceWidth": 500, "contours": [[{"x":143,"y":319,"on":true},{"x":147,"y":341,"on":false},{"x":157,"y":359,"on":true},{"x":170,"y":382,"on":false},{"x":193,"y":395,"on":true},{"x":217,"y":409,"on":false},{"x":281,"y":409,"on":false},{"x":305,"y":395,"on":true},{"x":327,"y":382,"on":false},{"x":340,"y":359,"on":true},{"x":357,"y":330,"on":false},{"x":357,"y":295,"on":true},{"x":357,"y":261,"on":false},{"x":338,"y":228,"on":true},{"x":325,"y":205,"on":false},{"x":288,"y":168,"on":true},{"x":251,"y":130,"on":false},{"x":236,"y":105,"on":true},{"x":225,"y":86,"on":false},{"x":219,"y":61,"on":true},{"x":354,"y":61,"on":true},{"x":354,"y":0,"on":true},{"x":146,"y":0,"on":true},{"x":146,"y":1,"on":true},{"x":146,"y":82,"on":false},{"x":171,"y":125,"on":true},{"x":188,"y":154,"on":false},{"x":235,"y":200,"on":true},{"x":289,"y":252,"on":false},{"x":289,"y":295,"on":true},{"x":289,"y":322,"on":false},{"x":274,"y":337,"on":true},{"x":264,"y":347,"on":false},{"x":249,"y":348,"on":true},{"x":234,"y":348,"on":false},{"x":223,"y":337,"on":true},{"x":211,"y":325,"on":false},{"x":208,"y":303,"on":true}]], "references": [], - "instructions": [179,21,5,1,48,43] + "instructions": "sxUFATAr" }, "uni2475": { "name": "uni2475", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2321","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,132,176,51,43] + "instructions": "sQABsISwMys=" }, "glyph2323": { "name": "glyph2323", "advanceWidth": 500, "contours": [[{"x":138,"y":85,"on":true},{"x":204,"y":100,"on":true},{"x":207,"y":81,"on":false},{"x":231,"y":57,"on":false},{"x":269,"y":57,"on":false},{"x":281,"y":69,"on":true},{"x":296,"y":84,"on":false},{"x":296,"y":109,"on":true},{"x":296,"y":128,"on":false},{"x":276,"y":162,"on":false},{"x":259,"y":172,"on":true},{"x":238,"y":184,"on":false},{"x":198,"y":184,"on":true},{"x":198,"y":245,"on":true},{"x":236,"y":245,"on":false},{"x":256,"y":256,"on":true},{"x":271,"y":265,"on":false},{"x":279,"y":279,"on":true},{"x":287,"y":292,"on":false},{"x":287,"y":308,"on":true},{"x":287,"y":327,"on":false},{"x":275,"y":338,"on":true},{"x":265,"y":348,"on":false},{"x":235,"y":348,"on":false},{"x":226,"y":338,"on":true},{"x":215,"y":327,"on":false},{"x":214,"y":310,"on":true},{"x":147,"y":319,"on":true},{"x":149,"y":342,"on":false},{"x":160,"y":362,"on":true},{"x":172,"y":383,"on":false},{"x":194,"y":395,"on":true},{"x":218,"y":409,"on":false},{"x":284,"y":409,"on":false},{"x":307,"y":395,"on":true},{"x":328,"y":383,"on":false},{"x":340,"y":362,"on":true},{"x":354,"y":338,"on":false},{"x":355,"y":308,"on":true},{"x":355,"y":280,"on":false},{"x":341,"y":257,"on":true},{"x":327,"y":233,"on":false},{"x":302,"y":219,"on":true},{"x":298,"y":217,"on":false},{"x":294,"y":214,"on":true},{"x":300,"y":211,"on":false},{"x":305,"y":209,"on":true},{"x":332,"y":193,"on":false},{"x":363,"y":140,"on":false},{"x":363,"y":108,"on":true},{"x":363,"y":75,"on":false},{"x":347,"y":47,"on":true},{"x":333,"y":24,"on":false},{"x":311,"y":10,"on":true},{"x":286,"y":-5,"on":false},{"x":214,"y":-4,"on":false},{"x":189,"y":10,"on":true},{"x":166,"y":23,"on":false},{"x":152,"y":47,"on":true},{"x":142,"y":64,"on":false}]], "references": [], - "instructions": [179,54,32,1,48,43] + "instructions": "szYgATAr" }, "uni2476": { "name": "uni2476", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2323","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,132,176,51,43] + "instructions": "sQABsISwMys=" }, "glyph2325": { "name": "glyph2325", "advanceWidth": 500, "contours": [[{"x":141,"y":101,"on":true},{"x":141,"y":162,"on":true},{"x":235,"y":404,"on":true},{"x":318,"y":404,"on":true},{"x":318,"y":162,"on":true},{"x":354,"y":162,"on":true},{"x":354,"y":101,"on":true},{"x":318,"y":101,"on":true},{"x":318,"y":0,"on":true},{"x":250,"y":0,"on":true},{"x":250,"y":101,"on":true}],[{"x":206,"y":162,"on":true},{"x":250,"y":162,"on":true},{"x":250,"y":276,"on":true}]], "references": [], - "instructions": [181,13,11,8,2,2,48,43] + "instructions": "tQ0LCAICMCs=" }, "uni2477": { "name": "uni2477", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2325","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,132,176,51,43] + "instructions": "sQACsISwMys=" }, "glyph2327": { "name": "glyph2327", "advanceWidth": 500, "contours": [[{"x":143,"y":85,"on":true},{"x":206,"y":108,"on":true},{"x":210,"y":81,"on":false},{"x":224,"y":67,"on":true},{"x":234,"y":57,"on":false},{"x":249,"y":57,"on":true},{"x":263,"y":57,"on":false},{"x":272,"y":66,"on":true},{"x":291,"y":85,"on":false},{"x":291,"y":175,"on":false},{"x":272,"y":193,"on":true},{"x":263,"y":202,"on":false},{"x":251,"y":202,"on":true},{"x":237,"y":202,"on":false},{"x":227,"y":192,"on":true},{"x":216,"y":181,"on":false},{"x":211,"y":160,"on":true},{"x":151,"y":187,"on":true},{"x":151,"y":404,"on":true},{"x":344,"y":404,"on":true},{"x":344,"y":343,"on":true},{"x":218,"y":343,"on":true},{"x":218,"y":259,"on":true},{"x":233,"y":263,"on":false},{"x":251,"y":263,"on":true},{"x":281,"y":263,"on":false},{"x":303,"y":250,"on":true},{"x":326,"y":237,"on":false},{"x":340,"y":212,"on":true},{"x":359,"y":179,"on":false},{"x":359,"y":129,"on":true},{"x":359,"y":80,"on":false},{"x":340,"y":47,"on":true},{"x":326,"y":22,"on":false},{"x":302,"y":9,"on":true},{"x":279,"y":-4,"on":false},{"x":218,"y":-4,"on":false},{"x":172,"y":22,"on":false},{"x":157,"y":47,"on":true},{"x":147,"y":64,"on":false}]], "references": [], - "instructions": [179,35,18,1,48,43] + "instructions": "syMSATAr" }, "uni2478": { "name": "uni2478", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2327","x":0,"y":133,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,133,176,51,43] + "instructions": "sQABsIWwMys=" }, "glyph2329": { "name": "glyph2329", "advanceWidth": 500, "contours": [[{"x":141,"y":121,"on":true},{"x":141,"y":122,"on":true},{"x":141,"y":242,"on":false},{"x":183,"y":314,"on":true},{"x":211,"y":363,"on":false},{"x":258,"y":390,"on":true},{"x":273,"y":399,"on":false},{"x":289,"y":404,"on":true},{"x":313,"y":347,"on":true},{"x":306,"y":344,"on":false},{"x":299,"y":340,"on":true},{"x":264,"y":320,"on":false},{"x":243,"y":283,"on":true},{"x":233,"y":266,"on":false},{"x":225,"y":245,"on":true},{"x":237,"y":247,"on":false},{"x":250,"y":247,"on":true},{"x":282,"y":247,"on":false},{"x":328,"y":221,"on":false},{"x":341,"y":196,"on":true},{"x":359,"y":166,"on":false},{"x":359,"y":122,"on":true},{"x":359,"y":121,"on":true},{"x":359,"y":77,"on":false},{"x":341,"y":46,"on":true},{"x":327,"y":22,"on":false},{"x":305,"y":9,"on":true},{"x":282,"y":-4,"on":false},{"x":218,"y":-4,"on":false},{"x":172,"y":22,"on":false},{"x":159,"y":46,"on":true},{"x":141,"y":77,"on":false}],[{"x":209,"y":121,"on":true},{"x":209,"y":83,"on":false},{"x":226,"y":66,"on":true},{"x":236,"y":56,"on":false},{"x":264,"y":57,"on":false},{"x":274,"y":66,"on":true},{"x":291,"y":83,"on":false},{"x":291,"y":121,"on":true},{"x":291,"y":122,"on":true},{"x":291,"y":159,"on":false},{"x":274,"y":176,"on":true},{"x":264,"y":186,"on":false},{"x":236,"y":186,"on":false},{"x":226,"y":176,"on":true},{"x":209,"y":159,"on":false},{"x":209,"y":122,"on":true}]], "references": [], - "instructions": [181,43,35,27,7,2,48,43] + "instructions": "tSsjGwcCMCs=" }, "uni2479": { "name": "uni2479", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2329","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,132,176,51,43] + "instructions": "sQACsISwMys=" }, "glyph2331": { "name": "glyph2331", "advanceWidth": 500, "contours": [[{"x":146,"y":343,"on":true},{"x":146,"y":404,"on":true},{"x":354,"y":404,"on":true},{"x":354,"y":343,"on":true},{"x":240,"y":0,"on":true},{"x":168,"y":0,"on":true},{"x":283,"y":343,"on":true}]], "references": [], - "instructions": [179,4,1,1,48,43] + "instructions": "swQBATAr" }, "uni247A": { "name": "uni247A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2331","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,132,176,51,43] + "instructions": "sQABsISwMys=" }, "glyph2333": { "name": "glyph2333", "advanceWidth": 500, "contours": [[{"x":141,"y":100,"on":true},{"x":141,"y":130,"on":false},{"x":157,"y":158,"on":true},{"x":170,"y":180,"on":false},{"x":203,"y":208,"on":true},{"x":177,"y":231,"on":false},{"x":166,"y":250,"on":true},{"x":150,"y":278,"on":false},{"x":150,"y":309,"on":true},{"x":150,"y":339,"on":false},{"x":164,"y":363,"on":true},{"x":176,"y":384,"on":false},{"x":196,"y":396,"on":true},{"x":218,"y":409,"on":false},{"x":281,"y":409,"on":false},{"x":304,"y":396,"on":true},{"x":325,"y":384,"on":false},{"x":336,"y":363,"on":true},{"x":350,"y":339,"on":false},{"x":350,"y":279,"on":false},{"x":334,"y":250,"on":true},{"x":323,"y":231,"on":false},{"x":297,"y":208,"on":true},{"x":330,"y":180,"on":false},{"x":343,"y":158,"on":true},{"x":359,"y":130,"on":false},{"x":359,"y":100,"on":true},{"x":359,"y":69,"on":false},{"x":345,"y":44,"on":true},{"x":332,"y":22,"on":false},{"x":310,"y":10,"on":true},{"x":285,"y":-4,"on":false},{"x":215,"y":-4,"on":false},{"x":190,"y":10,"on":true},{"x":168,"y":23,"on":false},{"x":155,"y":44,"on":true},{"x":141,"y":69,"on":false}],[{"x":209,"y":99,"on":true},{"x":209,"y":79,"on":false},{"x":221,"y":68,"on":true},{"x":232,"y":57,"on":false},{"x":268,"y":57,"on":false},{"x":279,"y":68,"on":true},{"x":291,"y":80,"on":false},{"x":291,"y":99,"on":true},{"x":291,"y":117,"on":false},{"x":281,"y":135,"on":true},{"x":272,"y":150,"on":false},{"x":250,"y":170,"on":true},{"x":228,"y":150,"on":false},{"x":219,"y":135,"on":true},{"x":209,"y":117,"on":false}],[{"x":217,"y":309,"on":true},{"x":217,"y":291,"on":false},{"x":228,"y":273,"on":true},{"x":234,"y":262,"on":false},{"x":250,"y":247,"on":true},{"x":266,"y":262,"on":false},{"x":272,"y":273,"on":true},{"x":282,"y":291,"on":false},{"x":283,"y":309,"on":true},{"x":283,"y":328,"on":false},{"x":272,"y":339,"on":true},{"x":264,"y":347,"on":false},{"x":237,"y":348,"on":false},{"x":228,"y":339,"on":true},{"x":217,"y":328,"on":false}]], "references": [], - "instructions": [183,64,56,48,40,31,13,3,48,43] + "instructions": "t0A4MCgfDQMwKw==" }, "uni247B": { "name": "uni247B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2333","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,3,176,132,176,51,43] + "instructions": "sQADsISwMys=" }, "glyph2335": { "name": "glyph2335", "advanceWidth": 500, "contours": [[{"x":141,"y":262,"on":true},{"x":141,"y":283,"on":true},{"x":141,"y":327,"on":false},{"x":159,"y":358,"on":true},{"x":173,"y":382,"on":false},{"x":195,"y":395,"on":true},{"x":218,"y":408,"on":false},{"x":250,"y":409,"on":true},{"x":280,"y":409,"on":false},{"x":302,"y":396,"on":true},{"x":325,"y":383,"on":false},{"x":339,"y":358,"on":true},{"x":359,"y":324,"on":false},{"x":359,"y":273,"on":true},{"x":359,"y":141,"on":true},{"x":359,"y":85,"on":false},{"x":337,"y":48,"on":true},{"x":322,"y":22,"on":false},{"x":299,"y":8,"on":true},{"x":277,"y":-5,"on":false},{"x":218,"y":-4,"on":false},{"x":196,"y":8,"on":true},{"x":173,"y":22,"on":false},{"x":158,"y":48,"on":true},{"x":148,"y":65,"on":false},{"x":143,"y":85,"on":true},{"x":203,"y":112,"on":true},{"x":208,"y":81,"on":false},{"x":224,"y":67,"on":true},{"x":234,"y":57,"on":false},{"x":248,"y":57,"on":true},{"x":261,"y":57,"on":false},{"x":270,"y":66,"on":true},{"x":291,"y":87,"on":false},{"x":291,"y":141,"on":true},{"x":291,"y":153,"on":true},{"x":285,"y":148,"on":false},{"x":279,"y":144,"on":true},{"x":266,"y":137,"on":false},{"x":247,"y":137,"on":true},{"x":218,"y":137,"on":false},{"x":172,"y":163,"on":false},{"x":159,"y":187,"on":true},{"x":141,"y":217,"on":false}],[{"x":209,"y":262,"on":true},{"x":209,"y":224,"on":false},{"x":226,"y":207,"on":true},{"x":235,"y":198,"on":false},{"x":249,"y":198,"on":true},{"x":264,"y":198,"on":false},{"x":274,"y":208,"on":true},{"x":291,"y":225,"on":false},{"x":291,"y":262,"on":true},{"x":291,"y":273,"on":true},{"x":291,"y":319,"on":false},{"x":272,"y":339,"on":true},{"x":263,"y":348,"on":false},{"x":250,"y":348,"on":true},{"x":236,"y":348,"on":false},{"x":226,"y":338,"on":true},{"x":209,"y":321,"on":false},{"x":209,"y":283,"on":true}]], "references": [], - "instructions": [181,56,47,19,7,2,48,43] + "instructions": "tTgvEwcCMCs=" }, "uni247C": { "name": "uni247C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2335","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,132,176,51,43] + "instructions": "sQACsISwMys=" }, "glyph2337": { "name": "glyph2337", "advanceWidth": 500, "contours": [[{"x":141,"y":86,"on":true},{"x":141,"y":114,"on":false},{"x":165,"y":156,"on":false},{"x":187,"y":168,"on":true},{"x":217,"y":185,"on":false},{"x":260,"y":185,"on":true},{"x":287,"y":185,"on":true},{"x":287,"y":203,"on":true},{"x":287,"y":216,"on":false},{"x":279,"y":225,"on":true},{"x":269,"y":235,"on":false},{"x":229,"y":235,"on":false},{"x":219,"y":225,"on":true},{"x":211,"y":217,"on":false},{"x":210,"y":205,"on":true},{"x":144,"y":220,"on":true},{"x":146,"y":235,"on":false},{"x":154,"y":249,"on":true},{"x":166,"y":269,"on":false},{"x":186,"y":281,"on":true},{"x":211,"y":296,"on":false},{"x":286,"y":296,"on":false},{"x":312,"y":281,"on":true},{"x":332,"y":269,"on":false},{"x":343,"y":250,"on":true},{"x":354,"y":230,"on":false},{"x":354,"y":203,"on":true},{"x":354,"y":0,"on":true},{"x":287,"y":0,"on":true},{"x":287,"y":34,"on":true},{"x":276,"y":16,"on":false},{"x":240,"y":-4,"on":false},{"x":196,"y":-4,"on":false},{"x":164,"y":14,"on":false},{"x":154,"y":31,"on":true},{"x":141,"y":54,"on":false}],[{"x":209,"y":87,"on":true},{"x":209,"y":74,"on":false},{"x":217,"y":65,"on":true},{"x":226,"y":56,"on":false},{"x":242,"y":57,"on":true},{"x":260,"y":57,"on":false},{"x":272,"y":68,"on":true},{"x":286,"y":82,"on":false},{"x":287,"y":109,"on":true},{"x":287,"y":124,"on":true},{"x":260,"y":124,"on":true},{"x":232,"y":124,"on":false},{"x":218,"y":110,"on":true},{"x":209,"y":101,"on":false}]], "references": [], - "instructions": [181,45,39,31,20,2,48,43] + "instructions": "tS0nHxQCMCs=" }, "uni249C": { "name": "uni249C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2337","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,132,176,51,43] + "instructions": "sQACsISwMys=" }, "glyph2339": { "name": "glyph2339", "advanceWidth": 500, "contours": [[{"x":146,"y":0,"on":true},{"x":146,"y":404,"on":true},{"x":213,"y":404,"on":true},{"x":213,"y":257,"on":true},{"x":225,"y":278,"on":false},{"x":242,"y":288,"on":true},{"x":256,"y":296,"on":false},{"x":275,"y":296,"on":true},{"x":295,"y":296,"on":false},{"x":310,"y":287,"on":true},{"x":328,"y":277,"on":false},{"x":340,"y":256,"on":true},{"x":359,"y":222,"on":false},{"x":359,"y":170,"on":true},{"x":359,"y":121,"on":true},{"x":359,"y":68,"on":false},{"x":340,"y":36,"on":true},{"x":328,"y":15,"on":false},{"x":310,"y":4,"on":true},{"x":295,"y":-5,"on":false},{"x":275,"y":-4,"on":true},{"x":256,"y":-4,"on":false},{"x":242,"y":4,"on":true},{"x":225,"y":14,"on":false},{"x":213,"y":35,"on":true},{"x":213,"y":0,"on":true}],[{"x":213,"y":121,"on":true},{"x":213,"y":82,"on":false},{"x":230,"y":65,"on":true},{"x":238,"y":57,"on":false},{"x":250,"y":57,"on":true},{"x":264,"y":57,"on":false},{"x":274,"y":66,"on":true},{"x":291,"y":83,"on":false},{"x":291,"y":121,"on":true},{"x":291,"y":170,"on":true},{"x":291,"y":207,"on":false},{"x":274,"y":225,"on":true},{"x":264,"y":235,"on":false},{"x":250,"y":235,"on":true},{"x":238,"y":235,"on":false},{"x":230,"y":227,"on":true},{"x":213,"y":210,"on":false},{"x":213,"y":170,"on":true}]], "references": [], - "instructions": [181,38,29,19,1,2,48,43] + "instructions": "tSYdEwECMCs=" }, "uni249D": { "name": "uni249D", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2339","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,132,176,51,43] + "instructions": "sQACsISwMys=" }, "glyph2341": { "name": "glyph2341", "advanceWidth": 500, "contours": [[{"x":141,"y":121,"on":true},{"x":141,"y":170,"on":true},{"x":141,"y":214,"on":false},{"x":159,"y":245,"on":true},{"x":173,"y":269,"on":false},{"x":195,"y":282,"on":true},{"x":218,"y":296,"on":false},{"x":283,"y":296,"on":false},{"x":306,"y":282,"on":true},{"x":329,"y":269,"on":false},{"x":343,"y":245,"on":true},{"x":353,"y":227,"on":false},{"x":357,"y":206,"on":true},{"x":293,"y":187,"on":true},{"x":290,"y":211,"on":false},{"x":276,"y":225,"on":true},{"x":266,"y":235,"on":false},{"x":236,"y":235,"on":false},{"x":226,"y":225,"on":true},{"x":209,"y":208,"on":false},{"x":209,"y":170,"on":true},{"x":209,"y":121,"on":true},{"x":209,"y":84,"on":false},{"x":226,"y":67,"on":true},{"x":236,"y":57,"on":false},{"x":266,"y":57,"on":false},{"x":276,"y":67,"on":true},{"x":289,"y":80,"on":false},{"x":293,"y":104,"on":true},{"x":357,"y":85,"on":true},{"x":353,"y":64,"on":false},{"x":343,"y":46,"on":true},{"x":329,"y":22,"on":false},{"x":306,"y":9,"on":true},{"x":283,"y":-5,"on":false},{"x":219,"y":-4,"on":false},{"x":195,"y":9,"on":true},{"x":172,"y":22,"on":false},{"x":159,"y":46,"on":true},{"x":141,"y":77,"on":false}]], "references": [], - "instructions": [179,34,6,1,48,43] + "instructions": "syIGATAr" }, "uni249E": { "name": "uni249E", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2341","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,132,176,51,43] + "instructions": "sQABsISwMys=" }, "glyph2343": { "name": "glyph2343", "advanceWidth": 500, "contours": [[{"x":141,"y":121,"on":true},{"x":141,"y":170,"on":true},{"x":141,"y":223,"on":false},{"x":160,"y":256,"on":true},{"x":172,"y":277,"on":false},{"x":190,"y":287,"on":true},{"x":205,"y":296,"on":false},{"x":225,"y":296,"on":true},{"x":244,"y":296,"on":false},{"x":258,"y":288,"on":true},{"x":275,"y":278,"on":false},{"x":287,"y":257,"on":true},{"x":287,"y":404,"on":true},{"x":354,"y":404,"on":true},{"x":354,"y":0,"on":true},{"x":287,"y":0,"on":true},{"x":287,"y":35,"on":true},{"x":281,"y":25,"on":false},{"x":266,"y":9,"on":false},{"x":258,"y":4,"on":true},{"x":251,"y":0,"on":false},{"x":234,"y":-4,"on":false},{"x":225,"y":-4,"on":true},{"x":205,"y":-4,"on":false},{"x":190,"y":4,"on":true},{"x":172,"y":14,"on":false},{"x":160,"y":36,"on":true},{"x":141,"y":69,"on":false}],[{"x":209,"y":121,"on":true},{"x":209,"y":84,"on":false},{"x":226,"y":66,"on":true},{"x":236,"y":56,"on":false},{"x":250,"y":57,"on":true},{"x":262,"y":57,"on":false},{"x":270,"y":65,"on":true},{"x":287,"y":82,"on":false},{"x":287,"y":121,"on":true},{"x":287,"y":170,"on":true},{"x":287,"y":209,"on":false},{"x":270,"y":227,"on":true},{"x":262,"y":235,"on":false},{"x":250,"y":235,"on":true},{"x":236,"y":235,"on":false},{"x":226,"y":225,"on":true},{"x":209,"y":208,"on":false},{"x":209,"y":170,"on":true}]], "references": [], - "instructions": [181,40,31,21,12,2,48,43] + "instructions": "tSgfFQwCMCs=" }, "uni249F": { "name": "uni249F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2343","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,132,176,51,43] + "instructions": "sQACsISwMys=" }, "glyph2345": { "name": "glyph2345", "advanceWidth": 500, "contours": [[{"x":141,"y":121,"on":true},{"x":141,"y":170,"on":true},{"x":141,"y":214,"on":false},{"x":159,"y":245,"on":true},{"x":173,"y":269,"on":false},{"x":195,"y":283,"on":true},{"x":218,"y":296,"on":false},{"x":282,"y":296,"on":false},{"x":328,"y":270,"on":false},{"x":341,"y":245,"on":true},{"x":359,"y":214,"on":false},{"x":359,"y":170,"on":true},{"x":359,"y":115,"on":true},{"x":209,"y":115,"on":true},{"x":210,"y":83,"on":false},{"x":226,"y":68,"on":true},{"x":237,"y":57,"on":false},{"x":271,"y":57,"on":false},{"x":283,"y":68,"on":true},{"x":294,"y":79,"on":false},{"x":297,"y":96,"on":true},{"x":359,"y":72,"on":true},{"x":355,"y":59,"on":false},{"x":349,"y":48,"on":true},{"x":319,"y":-4,"on":false},{"x":254,"y":-4,"on":true},{"x":221,"y":-4,"on":false},{"x":196,"y":10,"on":true},{"x":173,"y":23,"on":false},{"x":159,"y":47,"on":true},{"x":142,"y":77,"on":false}],[{"x":209,"y":176,"on":true},{"x":291,"y":176,"on":true},{"x":290,"y":209,"on":false},{"x":274,"y":225,"on":true},{"x":264,"y":235,"on":false},{"x":236,"y":235,"on":false},{"x":226,"y":225,"on":true},{"x":210,"y":209,"on":false}]], "references": [], - "instructions": [181,35,31,24,6,2,48,43] + "instructions": "tSMfGAYCMCs=" }, "uni24A0": { "name": "uni24A0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2345","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,132,176,51,43] + "instructions": "sQACsISwMys=" }, "glyph2347": { "name": "glyph2347", "advanceWidth": 500, "contours": [[{"x":146,"y":220,"on":true},{"x":146,"y":280,"on":true},{"x":202,"y":280,"on":true},{"x":202,"y":327,"on":true},{"x":202,"y":358,"on":false},{"x":214,"y":380,"on":true},{"x":224,"y":398,"on":false},{"x":241,"y":407,"on":true},{"x":259,"y":417,"on":false},{"x":309,"y":417,"on":false},{"x":328,"y":407,"on":true},{"x":345,"y":397,"on":false},{"x":355,"y":379,"on":true},{"x":364,"y":365,"on":false},{"x":366,"y":349,"on":true},{"x":302,"y":329,"on":true},{"x":301,"y":346,"on":false},{"x":293,"y":353,"on":true},{"x":289,"y":357,"on":false},{"x":284,"y":357,"on":true},{"x":269,"y":357,"on":false},{"x":269,"y":327,"on":true},{"x":269,"y":280,"on":true},{"x":344,"y":280,"on":true},{"x":344,"y":220,"on":true},{"x":269,"y":220,"on":true},{"x":269,"y":0,"on":true},{"x":202,"y":0,"on":true},{"x":202,"y":220,"on":true}]], "references": [], - "instructions": [179,26,8,1,48,43] + "instructions": "sxoIATAr" }, "uni24A1": { "name": "uni24A1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2347","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,132,176,51,43] + "instructions": "sQABsISwMys=" }, "glyph2349": { "name": "glyph2349", "advanceWidth": 500, "contours": [[{"x":136,"y":-19,"on":true},{"x":136,"y":7,"on":false},{"x":147,"y":25,"on":true},{"x":152,"y":33,"on":false},{"x":159,"y":40,"on":true},{"x":149,"y":56,"on":false},{"x":149,"y":75,"on":true},{"x":149,"y":95,"on":false},{"x":159,"y":113,"on":true},{"x":162,"y":118,"on":false},{"x":166,"y":123,"on":true},{"x":159,"y":130,"on":false},{"x":154,"y":139,"on":true},{"x":141,"y":162,"on":false},{"x":141,"y":226,"on":false},{"x":154,"y":249,"on":true},{"x":166,"y":270,"on":false},{"x":187,"y":282,"on":true},{"x":211,"y":296,"on":false},{"x":245,"y":296,"on":true},{"x":264,"y":296,"on":false},{"x":280,"y":292,"on":true},{"x":367,"y":292,"on":true},{"x":367,"y":231,"on":true},{"x":344,"y":231,"on":true},{"x":349,"y":214,"on":false},{"x":349,"y":194,"on":true},{"x":349,"y":162,"on":false},{"x":336,"y":139,"on":true},{"x":324,"y":118,"on":false},{"x":303,"y":106,"on":true},{"x":279,"y":92,"on":false},{"x":245,"y":92,"on":true},{"x":226,"y":92,"on":false},{"x":210,"y":96,"on":true},{"x":209,"y":92,"on":false},{"x":209,"y":88,"on":true},{"x":209,"y":69,"on":false},{"x":234,"y":68,"on":true},{"x":249,"y":68,"on":false},{"x":264,"y":68,"on":true},{"x":300,"y":68,"on":false},{"x":324,"y":54,"on":true},{"x":343,"y":43,"on":false},{"x":354,"y":25,"on":true},{"x":365,"y":6,"on":false},{"x":365,"y":-20,"on":true},{"x":365,"y":-47,"on":false},{"x":353,"y":-68,"on":true},{"x":341,"y":-88,"on":false},{"x":319,"y":-101,"on":true},{"x":291,"y":-117,"on":false},{"x":209,"y":-117,"on":false},{"x":182,"y":-101,"on":true},{"x":160,"y":-88,"on":false},{"x":148,"y":-68,"on":true},{"x":136,"y":-47,"on":false}],[{"x":204,"y":-19,"on":true},{"x":204,"y":-34,"on":false},{"x":213,"y":-44,"on":true},{"x":226,"y":-57,"on":false},{"x":250,"y":-56,"on":true},{"x":275,"y":-56,"on":false},{"x":288,"y":-43,"on":true},{"x":297,"y":-34,"on":false},{"x":297,"y":-20,"on":true},{"x":297,"y":-9,"on":false},{"x":290,"y":-2,"on":true},{"x":281,"y":7,"on":false},{"x":264,"y":7,"on":true},{"x":235,"y":7,"on":true},{"x":222,"y":7,"on":false},{"x":204,"y":-7,"on":false}],[{"x":209,"y":214,"on":false},{"x":209,"y":174,"on":false},{"x":220,"y":163,"on":true},{"x":230,"y":153,"on":false},{"x":261,"y":153,"on":false},{"x":270,"y":163,"on":true},{"x":281,"y":174,"on":false},{"x":281,"y":214,"on":false},{"x":270,"y":225,"on":true},{"x":261,"y":234,"on":false},{"x":248,"y":235,"on":true},{"x":245,"y":235,"on":true},{"x":230,"y":235,"on":false},{"x":220,"y":225,"on":true}]], "references": [], - "instructions": [183,83,76,68,60,51,18,3,48,43] + "instructions": "t1NMRDwzEgMwKw==" }, "uni24A2": { "name": "uni24A2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2349","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,3,176,132,176,51,43] + "instructions": "sQADsISwMys=" }, "glyph2351": { "name": "glyph2351", "advanceWidth": 500, "contours": [[{"x":146,"y":0,"on":true},{"x":146,"y":404,"on":true},{"x":213,"y":404,"on":true},{"x":213,"y":257,"on":true},{"x":225,"y":278,"on":false},{"x":242,"y":288,"on":true},{"x":256,"y":296,"on":false},{"x":293,"y":296,"on":false},{"x":307,"y":288,"on":true},{"x":324,"y":278,"on":false},{"x":335,"y":258,"on":true},{"x":354,"y":224,"on":false},{"x":354,"y":170,"on":true},{"x":354,"y":0,"on":true},{"x":287,"y":0,"on":true},{"x":287,"y":170,"on":true},{"x":287,"y":209,"on":false},{"x":270,"y":227,"on":true},{"x":262,"y":235,"on":false},{"x":238,"y":235,"on":false},{"x":230,"y":227,"on":true},{"x":213,"y":210,"on":false},{"x":213,"y":170,"on":true},{"x":213,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni24A3": { "name": "uni24A3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2351","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,132,176,51,43] + "instructions": "sQABsISwMys=" }, "glyph2353": { "name": "glyph2353", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2282","x":0,"y":2,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,2,176,51,43] + "instructions": "sQACsAKwMys=" }, "uni24A4": { "name": "uni24A4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2282","x":0,"y":135,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,135,176,51,43] + "instructions": "sQICsIewMys=" }, "glyph2355": { "name": "glyph2355", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2284","x":0,"y":-54,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,184,255,202,176,51,43] + "instructions": "sQACuP/KsDMr" }, "uni24A5": { "name": "uni24A5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2284","x":0,"y":79,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,2,176,79,176,51,43] + "instructions": "sQICsE+wMys=" }, "glyph2357": { "name": "glyph2357", "advanceWidth": 500, "contours": [[{"x":146,"y":0,"on":true},{"x":146,"y":404,"on":true},{"x":213,"y":404,"on":true},{"x":213,"y":185,"on":true},{"x":252,"y":226,"on":false},{"x":272,"y":260,"on":true},{"x":283,"y":280,"on":false},{"x":283,"y":291,"on":true},{"x":354,"y":292,"on":true},{"x":354,"y":279,"on":false},{"x":342,"y":258,"on":true},{"x":321,"y":222,"on":false},{"x":280,"y":178,"on":true},{"x":287,"y":166,"on":false},{"x":294,"y":154,"on":true},{"x":359,"y":41,"on":false},{"x":359,"y":0,"on":true},{"x":291,"y":0,"on":true},{"x":291,"y":37,"on":false},{"x":241,"y":140,"on":true},{"x":228,"y":128,"on":false},{"x":213,"y":115,"on":true},{"x":213,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uni24A6": { "name": "uni24A6", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2357","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,132,176,51,43] + "instructions": "sQABsISwMys=" }, "glyph2359": { "name": "glyph2359", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2288","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni24A7": { "name": "uni24A7", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2288","x":0,"y":132,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,2,1,176,132,176,51,43] + "instructions": "sQIBsISwMys=" }, "glyph2361": { "name": "glyph2361", "advanceWidth": 500, "contours": [[{"x":141,"y":0,"on":true},{"x":141,"y":292,"on":true},{"x":196,"y":292,"on":true},{"x":196,"y":272,"on":true},{"x":200,"y":280,"on":false},{"x":206,"y":286,"on":true},{"x":216,"y":296,"on":false},{"x":229,"y":296,"on":true},{"x":243,"y":296,"on":false},{"x":254,"y":286,"on":true},{"x":265,"y":275,"on":false},{"x":271,"y":255,"on":true},{"x":277,"y":275,"on":false},{"x":288,"y":286,"on":true},{"x":298,"y":296,"on":false},{"x":311,"y":296,"on":true},{"x":325,"y":296,"on":false},{"x":335,"y":286,"on":true},{"x":359,"y":262,"on":false},{"x":359,"y":201,"on":true},{"x":359,"y":0,"on":true},{"x":304,"y":0,"on":true},{"x":304,"y":201,"on":true},{"x":304,"y":247,"on":false},{"x":277,"y":246,"on":false},{"x":277,"y":201,"on":true},{"x":277,"y":0,"on":true},{"x":223,"y":0,"on":true},{"x":223,"y":201,"on":true},{"x":223,"y":247,"on":false},{"x":196,"y":246,"on":false},{"x":196,"y":201,"on":true},{"x":196,"y":0,"on":true}]], "references": [], - "instructions": [179,6,0,1,48,43] + "instructions": "swYAATAr" }, "uni24A8": { "name": "uni24A8", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2361","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,132,176,51,43] + "instructions": "sQABsISwMys=" }, "glyph2363": { "name": "glyph2363", "advanceWidth": 500, "contours": [[{"x":146,"y":0,"on":true},{"x":146,"y":292,"on":true},{"x":213,"y":292,"on":true},{"x":213,"y":257,"on":true},{"x":225,"y":278,"on":false},{"x":242,"y":288,"on":true},{"x":256,"y":296,"on":false},{"x":293,"y":296,"on":false},{"x":307,"y":288,"on":true},{"x":324,"y":278,"on":false},{"x":335,"y":258,"on":true},{"x":354,"y":224,"on":false},{"x":354,"y":170,"on":true},{"x":354,"y":0,"on":true},{"x":287,"y":0,"on":true},{"x":287,"y":170,"on":true},{"x":287,"y":209,"on":false},{"x":270,"y":227,"on":true},{"x":262,"y":235,"on":false},{"x":238,"y":235,"on":false},{"x":230,"y":227,"on":true},{"x":213,"y":210,"on":false},{"x":213,"y":170,"on":true},{"x":213,"y":0,"on":true}]], "references": [], - "instructions": [179,6,0,1,48,43] + "instructions": "swYAATAr" }, "uni24A9": { "name": "uni24A9", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2363","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,132,176,51,43] + "instructions": "sQABsISwMys=" }, "glyph2365": { "name": "glyph2365", "advanceWidth": 500, "contours": [[{"x":141,"y":121,"on":true},{"x":141,"y":170,"on":true},{"x":141,"y":214,"on":false},{"x":159,"y":245,"on":true},{"x":173,"y":269,"on":false},{"x":195,"y":283,"on":true},{"x":218,"y":296,"on":false},{"x":282,"y":296,"on":false},{"x":328,"y":270,"on":false},{"x":341,"y":245,"on":true},{"x":359,"y":214,"on":false},{"x":359,"y":170,"on":true},{"x":359,"y":121,"on":true},{"x":359,"y":77,"on":false},{"x":341,"y":46,"on":true},{"x":327,"y":22,"on":false},{"x":305,"y":9,"on":true},{"x":282,"y":-4,"on":false},{"x":218,"y":-4,"on":false},{"x":172,"y":22,"on":false},{"x":159,"y":46,"on":true},{"x":141,"y":76,"on":false}],[{"x":209,"y":121,"on":true},{"x":209,"y":84,"on":false},{"x":226,"y":66,"on":true},{"x":236,"y":56,"on":false},{"x":264,"y":57,"on":false},{"x":274,"y":66,"on":true},{"x":291,"y":83,"on":false},{"x":291,"y":121,"on":true},{"x":291,"y":170,"on":true},{"x":291,"y":207,"on":false},{"x":274,"y":225,"on":true},{"x":264,"y":235,"on":false},{"x":236,"y":235,"on":false},{"x":226,"y":225,"on":true},{"x":209,"y":208,"on":false},{"x":209,"y":170,"on":true}]], "references": [], - "instructions": [181,33,25,17,6,2,48,43] + "instructions": "tSEZEQYCMCs=" }, "uni24AA": { "name": "uni24AA", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2365","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,132,176,51,43] + "instructions": "sQACsISwMys=" }, "glyph2367": { "name": "glyph2367", "advanceWidth": 500, "contours": [[{"x":146,"y":-113,"on":true},{"x":146,"y":292,"on":true},{"x":213,"y":292,"on":true},{"x":213,"y":257,"on":true},{"x":225,"y":278,"on":false},{"x":242,"y":288,"on":true},{"x":256,"y":296,"on":false},{"x":275,"y":296,"on":true},{"x":295,"y":296,"on":false},{"x":310,"y":287,"on":true},{"x":328,"y":277,"on":false},{"x":340,"y":256,"on":true},{"x":359,"y":222,"on":false},{"x":359,"y":170,"on":true},{"x":359,"y":121,"on":true},{"x":359,"y":68,"on":false},{"x":340,"y":36,"on":true},{"x":328,"y":15,"on":false},{"x":310,"y":4,"on":true},{"x":295,"y":-5,"on":false},{"x":275,"y":-4,"on":true},{"x":256,"y":-4,"on":false},{"x":242,"y":4,"on":true},{"x":225,"y":14,"on":false},{"x":213,"y":35,"on":true},{"x":213,"y":-113,"on":true}],[{"x":213,"y":121,"on":true},{"x":213,"y":82,"on":false},{"x":230,"y":65,"on":true},{"x":238,"y":57,"on":false},{"x":250,"y":57,"on":true},{"x":264,"y":57,"on":false},{"x":274,"y":66,"on":true},{"x":291,"y":83,"on":false},{"x":291,"y":121,"on":true},{"x":291,"y":170,"on":true},{"x":291,"y":207,"on":false},{"x":274,"y":225,"on":true},{"x":264,"y":235,"on":false},{"x":250,"y":235,"on":true},{"x":238,"y":235,"on":false},{"x":230,"y":227,"on":true},{"x":213,"y":210,"on":false},{"x":213,"y":170,"on":true}]], "references": [], - "instructions": [181,38,29,6,0,2,48,43] + "instructions": "tSYdBgACMCs=" }, "uni24AB": { "name": "uni24AB", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2367","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,132,176,51,43] + "instructions": "sQACsISwMys=" }, "glyph2369": { "name": "glyph2369", "advanceWidth": 500, "contours": [[{"x":141,"y":121,"on":true},{"x":141,"y":170,"on":true},{"x":141,"y":223,"on":false},{"x":160,"y":256,"on":true},{"x":172,"y":277,"on":false},{"x":190,"y":287,"on":true},{"x":205,"y":296,"on":false},{"x":225,"y":296,"on":true},{"x":244,"y":296,"on":false},{"x":258,"y":288,"on":true},{"x":275,"y":278,"on":false},{"x":287,"y":257,"on":true},{"x":287,"y":292,"on":true},{"x":354,"y":292,"on":true},{"x":354,"y":-113,"on":true},{"x":287,"y":-113,"on":true},{"x":287,"y":35,"on":true},{"x":281,"y":25,"on":false},{"x":266,"y":9,"on":false},{"x":258,"y":4,"on":true},{"x":251,"y":0,"on":false},{"x":234,"y":-4,"on":false},{"x":225,"y":-4,"on":true},{"x":205,"y":-4,"on":false},{"x":190,"y":4,"on":true},{"x":172,"y":14,"on":false},{"x":160,"y":36,"on":true},{"x":141,"y":69,"on":false}],[{"x":209,"y":121,"on":true},{"x":209,"y":84,"on":false},{"x":226,"y":66,"on":true},{"x":236,"y":56,"on":false},{"x":250,"y":57,"on":true},{"x":262,"y":57,"on":false},{"x":270,"y":65,"on":true},{"x":287,"y":82,"on":false},{"x":287,"y":121,"on":true},{"x":287,"y":170,"on":true},{"x":287,"y":209,"on":false},{"x":270,"y":227,"on":true},{"x":262,"y":235,"on":false},{"x":250,"y":235,"on":true},{"x":236,"y":235,"on":false},{"x":226,"y":225,"on":true},{"x":209,"y":208,"on":false},{"x":209,"y":170,"on":true}]], "references": [], - "instructions": [181,40,31,14,6,2,48,43] + "instructions": "tSgfDgYCMCs=" }, "uni24AC": { "name": "uni24AC", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2369","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,176,132,176,51,43] + "instructions": "sQACsISwMys=" }, "glyph2371": { "name": "glyph2371", "advanceWidth": 500, "contours": [[{"x":178,"y":0,"on":true},{"x":178,"y":292,"on":true},{"x":246,"y":292,"on":true},{"x":246,"y":245,"on":true},{"x":250,"y":255,"on":false},{"x":255,"y":263,"on":true},{"x":266,"y":281,"on":false},{"x":279,"y":290,"on":true},{"x":290,"y":296,"on":false},{"x":303,"y":296,"on":true},{"x":325,"y":296,"on":false},{"x":343,"y":279,"on":true},{"x":358,"y":264,"on":false},{"x":363,"y":242,"on":true},{"x":299,"y":212,"on":true},{"x":297,"y":221,"on":false},{"x":291,"y":228,"on":true},{"x":284,"y":235,"on":false},{"x":276,"y":235,"on":true},{"x":269,"y":235,"on":false},{"x":264,"y":230,"on":true},{"x":246,"y":212,"on":false},{"x":246,"y":155,"on":true},{"x":246,"y":0,"on":true}]], "references": [], - "instructions": [179,8,0,1,48,43] + "instructions": "swgAATAr" }, "uni24AD": { "name": "uni24AD", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2371","x":0,"y":133,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,133,176,51,43] + "instructions": "sQABsIWwMys=" }, "glyph2373": { "name": "glyph2373", "advanceWidth": 500, "contours": [[{"x":144,"y":60,"on":true},{"x":206,"y":84,"on":true},{"x":208,"y":75,"on":false},{"x":215,"y":68,"on":true},{"x":226,"y":57,"on":false},{"x":248,"y":57,"on":true},{"x":271,"y":57,"on":false},{"x":281,"y":67,"on":true},{"x":287,"y":73,"on":false},{"x":287,"y":82,"on":true},{"x":287,"y":92,"on":false},{"x":279,"y":100,"on":true},{"x":268,"y":111,"on":false},{"x":235,"y":115,"on":true},{"x":204,"y":118,"on":false},{"x":188,"y":128,"on":true},{"x":170,"y":138,"on":false},{"x":158,"y":157,"on":true},{"x":145,"y":180,"on":false},{"x":145,"y":210,"on":true},{"x":145,"y":234,"on":false},{"x":155,"y":251,"on":true},{"x":165,"y":269,"on":false},{"x":185,"y":281,"on":true},{"x":212,"y":296,"on":false},{"x":252,"y":296,"on":true},{"x":290,"y":296,"on":false},{"x":315,"y":281,"on":true},{"x":336,"y":269,"on":false},{"x":349,"y":248,"on":true},{"x":354,"y":240,"on":false},{"x":356,"y":231,"on":true},{"x":294,"y":208,"on":true},{"x":292,"y":217,"on":false},{"x":285,"y":224,"on":true},{"x":274,"y":235,"on":false},{"x":252,"y":235,"on":true},{"x":229,"y":235,"on":false},{"x":219,"y":225,"on":true},{"x":213,"y":219,"on":false},{"x":213,"y":210,"on":true},{"x":213,"y":200,"on":false},{"x":221,"y":191,"on":true},{"x":232,"y":180,"on":false},{"x":265,"y":177,"on":true},{"x":296,"y":174,"on":false},{"x":312,"y":164,"on":true},{"x":330,"y":154,"on":false},{"x":342,"y":134,"on":true},{"x":355,"y":111,"on":false},{"x":355,"y":82,"on":true},{"x":355,"y":58,"on":false},{"x":335,"y":22,"on":false},{"x":315,"y":11,"on":true},{"x":288,"y":-4,"on":false},{"x":248,"y":-4,"on":true},{"x":210,"y":-4,"on":false},{"x":185,"y":10,"on":true},{"x":164,"y":22,"on":false},{"x":151,"y":44,"on":true},{"x":146,"y":52,"on":false}]], "references": [], - "instructions": [179,54,24,1,48,43] + "instructions": "szYYATAr" }, "uni24AE": { "name": "uni24AE", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2373","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,132,176,51,43] + "instructions": "sQABsISwMys=" }, "glyph2375": { "name": "glyph2375", "advanceWidth": 500, "contours": [[{"x":139,"y":231,"on":true},{"x":139,"y":292,"on":true},{"x":189,"y":292,"on":true},{"x":189,"y":404,"on":true},{"x":256,"y":404,"on":true},{"x":256,"y":292,"on":true},{"x":332,"y":292,"on":true},{"x":332,"y":231,"on":true},{"x":256,"y":231,"on":true},{"x":256,"y":110,"on":true},{"x":256,"y":75,"on":false},{"x":270,"y":62,"on":true},{"x":276,"y":56,"on":false},{"x":283,"y":57,"on":true},{"x":291,"y":57,"on":false},{"x":297,"y":62,"on":true},{"x":309,"y":74,"on":false},{"x":310,"y":101,"on":true},{"x":376,"y":85,"on":true},{"x":373,"y":60,"on":false},{"x":361,"y":40,"on":true},{"x":349,"y":19,"on":false},{"x":328,"y":7,"on":true},{"x":309,"y":-4,"on":false},{"x":257,"y":-4,"on":false},{"x":217,"y":18,"on":false},{"x":205,"y":40,"on":true},{"x":189,"y":69,"on":false},{"x":189,"y":110,"on":true},{"x":189,"y":231,"on":true}]], "references": [], - "instructions": [179,23,3,1,48,43] + "instructions": "sxcDATAr" }, "uni24AF": { "name": "uni24AF", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2375","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,132,176,51,43] + "instructions": "sQABsISwMys=" }, "glyph2377": { "name": "glyph2377", "advanceWidth": 500, "contours": [[{"x":146,"y":121,"on":true},{"x":146,"y":292,"on":true},{"x":213,"y":292,"on":true},{"x":213,"y":121,"on":true},{"x":213,"y":82,"on":false},{"x":230,"y":65,"on":true},{"x":238,"y":57,"on":false},{"x":262,"y":57,"on":false},{"x":270,"y":65,"on":true},{"x":287,"y":82,"on":false},{"x":287,"y":121,"on":true},{"x":287,"y":292,"on":true},{"x":354,"y":292,"on":true},{"x":354,"y":0,"on":true},{"x":287,"y":0,"on":true},{"x":287,"y":35,"on":true},{"x":275,"y":14,"on":false},{"x":258,"y":4,"on":true},{"x":244,"y":-4,"on":false},{"x":207,"y":-4,"on":false},{"x":193,"y":4,"on":true},{"x":176,"y":14,"on":false},{"x":165,"y":33,"on":true},{"x":146,"y":66,"on":false}]], "references": [], - "instructions": [179,18,1,1,48,43] + "instructions": "sxIBATAr" }, "uni24B0": { "name": "uni24B0", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2377","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,132,176,51,43] + "instructions": "sQABsISwMys=" }, "glyph2379": { "name": "glyph2379", "advanceWidth": 500, "contours": [[{"x":146,"y":262,"on":true},{"x":146,"y":292,"on":true},{"x":213,"y":292,"on":true},{"x":213,"y":262,"on":true},{"x":213,"y":201,"on":false},{"x":250,"y":73,"on":true},{"x":287,"y":201,"on":false},{"x":287,"y":262,"on":true},{"x":287,"y":292,"on":true},{"x":354,"y":292,"on":true},{"x":354,"y":262,"on":true},{"x":354,"y":183,"on":false},{"x":284,"y":0,"on":true},{"x":216,"y":0,"on":true},{"x":146,"y":183,"on":false}]], "references": [], - "instructions": [179,12,1,1,48,43] + "instructions": "swwBATAr" }, "uni24B1": { "name": "uni24B1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2379","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,132,176,51,43] + "instructions": "sQABsISwMys=" }, "glyph2381": { "name": "glyph2381", "advanceWidth": 500, "contours": [[{"x":146,"y":219,"on":true},{"x":146,"y":292,"on":true},{"x":213,"y":292,"on":true},{"x":213,"y":219,"on":true},{"x":213,"y":175,"on":false},{"x":212,"y":93,"on":true},{"x":235,"y":175,"on":true},{"x":265,"y":175,"on":true},{"x":288,"y":93,"on":true},{"x":287,"y":175,"on":false},{"x":287,"y":219,"on":true},{"x":287,"y":292,"on":true},{"x":354,"y":292,"on":true},{"x":354,"y":219,"on":true},{"x":354,"y":153,"on":false},{"x":313,"y":0,"on":true},{"x":283,"y":0,"on":true},{"x":250,"y":119,"on":true},{"x":217,"y":0,"on":true},{"x":187,"y":0,"on":true},{"x":146,"y":152,"on":false}]], "references": [], - "instructions": [179,15,1,1,48,43] + "instructions": "sw8BATAr" }, "uni24B2": { "name": "uni24B2", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2381","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,132,176,51,43] + "instructions": "sQABsISwMys=" }, "glyph2383": { "name": "glyph2383", "advanceWidth": 500, "contours": [[{"x":146,"y":0,"on":true},{"x":146,"y":3,"on":true},{"x":146,"y":30,"on":false},{"x":178,"y":87,"on":true},{"x":212,"y":146,"on":true},{"x":178,"y":204,"on":true},{"x":146,"y":261,"on":false},{"x":146,"y":289,"on":true},{"x":146,"y":292,"on":true},{"x":213,"y":292,"on":true},{"x":213,"y":289,"on":true},{"x":213,"y":276,"on":false},{"x":237,"y":235,"on":true},{"x":250,"y":212,"on":true},{"x":263,"y":235,"on":true},{"x":287,"y":276,"on":false},{"x":287,"y":289,"on":true},{"x":287,"y":292,"on":true},{"x":354,"y":292,"on":true},{"x":354,"y":289,"on":true},{"x":354,"y":262,"on":false},{"x":322,"y":204,"on":true},{"x":288,"y":146,"on":true},{"x":322,"y":87,"on":true},{"x":354,"y":30,"on":false},{"x":354,"y":3,"on":true},{"x":354,"y":0,"on":true},{"x":287,"y":0,"on":true},{"x":287,"y":3,"on":true},{"x":287,"y":16,"on":false},{"x":263,"y":57,"on":true},{"x":250,"y":80,"on":true},{"x":237,"y":57,"on":true},{"x":213,"y":16,"on":false},{"x":213,"y":3,"on":true},{"x":213,"y":0,"on":true}]], "references": [], - "instructions": [179,8,0,1,48,43] + "instructions": "swgAATAr" }, "uni24B3": { "name": "uni24B3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2383","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,132,176,51,43] + "instructions": "sQABsISwMys=" }, "glyph2385": { "name": "glyph2385", "advanceWidth": 500, "contours": [[{"x":146,"y":271,"on":true},{"x":146,"y":292,"on":true},{"x":213,"y":292,"on":true},{"x":213,"y":271,"on":true},{"x":213,"y":240,"on":false},{"x":227,"y":191,"on":true},{"x":249,"y":117,"on":true},{"x":273,"y":191,"on":true},{"x":287,"y":236,"on":false},{"x":287,"y":271,"on":true},{"x":287,"y":292,"on":true},{"x":354,"y":292,"on":true},{"x":354,"y":271,"on":true},{"x":354,"y":227,"on":false},{"x":337,"y":173,"on":true},{"x":260,"y":-72,"on":true},{"x":260,"y":-73,"on":false},{"x":259,"y":-74,"on":true},{"x":256,"y":-88,"on":false},{"x":256,"y":-109,"on":true},{"x":256,"y":-113,"on":true},{"x":189,"y":-113,"on":true},{"x":189,"y":-109,"on":true},{"x":189,"y":-75,"on":false},{"x":195,"y":-54,"on":true},{"x":217,"y":15,"on":true},{"x":163,"y":173,"on":true},{"x":146,"y":223,"on":false}]], "references": [], - "instructions": [179,20,1,1,48,43] + "instructions": "sxQBATAr" }, "uni24B4": { "name": "uni24B4", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2385","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,132,176,51,43] + "instructions": "sQABsISwMys=" }, "glyph2387": { "name": "glyph2387", "advanceWidth": 500, "contours": [[{"x":146,"y":0,"on":true},{"x":146,"y":61,"on":true},{"x":273,"y":231,"on":true},{"x":146,"y":231,"on":true},{"x":146,"y":292,"on":true},{"x":354,"y":292,"on":true},{"x":354,"y":231,"on":true},{"x":227,"y":61,"on":true},{"x":354,"y":61,"on":true},{"x":354,"y":0,"on":true}]], "references": [], - "instructions": [179,4,0,1,48,43] + "instructions": "swQAATAr" }, "uni24B5": { "name": "uni24B5", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2387","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,176,132,176,51,43] + "instructions": "sQABsISwMys=" }, "uni1D00": { "name": "uni1D00", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":53,"on":true},{"x":60,"y":197,"on":false},{"x":210,"y":530,"on":true},{"x":290,"y":530,"on":true},{"x":440,"y":197,"on":false},{"x":440,"y":53,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":53,"on":true},{"x":360,"y":82,"on":false},{"x":354,"y":119,"on":true},{"x":146,"y":119,"on":true},{"x":140,"y":82,"on":false},{"x":140,"y":53,"on":true},{"x":140,"y":0,"on":true}],[{"x":161,"y":191,"on":true},{"x":339,"y":191,"on":true},{"x":312,"y":301,"on":false},{"x":250,"y":460,"on":true},{"x":188,"y":301,"on":false}]], "references": [], - "instructions": [64,41,19,1,4,0,1,74,0,4,0,2,1,4,2,102,0,0,0,67,75,5,3,2,1,1,65,1,76,0,0,17,16,0,15,0,15,19,19,19,6,9,23,43] + "instructions": "QCkTAQQAAUoABAACAQQCZgAAAENLBQMCAQFBAUwAABEQAA8ADxMTEwYJFys=" }, "uni1D01": { "name": "uni1D01", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":53,"on":true},{"x":60,"y":198,"on":false},{"x":196,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":458,"on":true},{"x":312,"y":458,"on":true},{"x":312,"y":322,"on":true},{"x":422,"y":322,"on":true},{"x":422,"y":250,"on":true},{"x":312,"y":250,"on":true},{"x":312,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":0,"on":true},{"x":232,"y":0,"on":true},{"x":232,"y":119,"on":true},{"x":145,"y":119,"on":true},{"x":140,"y":82,"on":false},{"x":140,"y":53,"on":true},{"x":140,"y":0,"on":true}],[{"x":158,"y":191,"on":true},{"x":232,"y":191,"on":true},{"x":232,"y":443,"on":true},{"x":181,"y":295,"on":false}]], "references": [], - "instructions": [64,63,22,1,2,1,1,74,0,2,0,3,8,2,3,101,0,8,0,6,4,8,6,101,0,1,1,0,93,0,0,0,67,75,0,4,4,5,93,9,7,2,5,5,65,5,76,0,0,21,20,0,19,0,19,17,17,17,17,17,17,19,10,9,27,43] + "instructions": "QD8WAQIBAUoAAgADCAIDZQAIAAYECAZlAAEBAF0AAABDSwAEBAVdCQcCBQVBBUwAABUUABMAExERERERERMKCRsr" }, "uni1D03": { "name": "uni1D03", "advanceWidth": 500, "contours": [[{"x":18,"y":123,"on":true},{"x":18,"y":195,"on":true},{"x":60,"y":195,"on":true},{"x":60,"y":530,"on":true},{"x":279,"y":530,"on":true},{"x":322,"y":530,"on":false},{"x":354,"y":512,"on":true},{"x":382,"y":496,"on":false},{"x":398,"y":467,"on":true},{"x":418,"y":433,"on":false},{"x":418,"y":386,"on":true},{"x":418,"y":346,"on":false},{"x":402,"y":319,"on":true},{"x":388,"y":295,"on":false},{"x":364,"y":279,"on":true},{"x":374,"y":275,"on":false},{"x":383,"y":269,"on":true},{"x":414,"y":251,"on":false},{"x":432,"y":222,"on":true},{"x":448,"y":194,"on":false},{"x":448,"y":154,"on":true},{"x":448,"y":108,"on":false},{"x":428,"y":74,"on":true},{"x":409,"y":42,"on":false},{"x":377,"y":23,"on":true},{"x":337,"y":0,"on":false},{"x":279,"y":0,"on":true},{"x":60,"y":0,"on":true},{"x":60,"y":123,"on":true}],[{"x":140,"y":72,"on":true},{"x":279,"y":72,"on":true},{"x":309,"y":72,"on":false},{"x":330,"y":84,"on":true},{"x":347,"y":94,"on":false},{"x":357,"y":111,"on":true},{"x":368,"y":129,"on":false},{"x":368,"y":181,"on":false},{"x":357,"y":200,"on":true},{"x":347,"y":217,"on":false},{"x":330,"y":228,"on":true},{"x":309,"y":240,"on":false},{"x":279,"y":240,"on":true},{"x":140,"y":240,"on":true},{"x":140,"y":195,"on":true},{"x":250,"y":195,"on":true},{"x":250,"y":123,"on":true},{"x":140,"y":123,"on":true}],[{"x":140,"y":312,"on":true},{"x":279,"y":312,"on":true},{"x":302,"y":312,"on":false},{"x":318,"y":327,"on":true},{"x":338,"y":347,"on":false},{"x":338,"y":423,"on":false},{"x":318,"y":443,"on":true},{"x":303,"y":458,"on":false},{"x":279,"y":458,"on":true},{"x":140,"y":458,"on":true}]], "references": [], - "instructions": [64,71,14,1,5,8,1,74,0,8,0,5,0,8,5,101,6,1,0,7,10,2,3,4,0,3,101,0,9,9,1,93,0,1,1,67,75,0,4,4,2,93,0,2,2,65,2,76,0,0,56,54,49,47,46,45,44,43,42,40,31,29,0,28,0,28,27,25,33,17,11,9,22,43] + "instructions": "QEcOAQUIAUoACAAFAAgFZQYBAAcKAgMEAANlAAkJAV0AAQFDSwAEBAJdAAICQQJMAAA4NjEvLi0sKyooHx0AHAAcGxkhEQsJFis=" }, "uni1D04": { "name": "uni1D04", "advanceWidth": 500, "contours": [[{"x":52,"y":195,"on":true},{"x":52,"y":335,"on":true},{"x":52,"y":401,"on":false},{"x":79,"y":449,"on":true},{"x":102,"y":489,"on":false},{"x":143,"y":512,"on":true},{"x":188,"y":538,"on":false},{"x":312,"y":538,"on":false},{"x":357,"y":512,"on":true},{"x":397,"y":489,"on":false},{"x":420,"y":448,"on":true},{"x":439,"y":414,"on":false},{"x":445,"y":375,"on":true},{"x":367,"y":361,"on":true},{"x":364,"y":389,"on":false},{"x":350,"y":411,"on":true},{"x":335,"y":437,"on":false},{"x":311,"y":451,"on":true},{"x":285,"y":466,"on":false},{"x":215,"y":466,"on":false},{"x":189,"y":451,"on":true},{"x":165,"y":437,"on":false},{"x":150,"y":412,"on":true},{"x":132,"y":380,"on":false},{"x":132,"y":335,"on":true},{"x":132,"y":195,"on":true},{"x":132,"y":150,"on":false},{"x":150,"y":118,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":285,"y":64,"on":false},{"x":311,"y":79,"on":true},{"x":336,"y":93,"on":false},{"x":350,"y":119,"on":true},{"x":363,"y":142,"on":false},{"x":367,"y":169,"on":true},{"x":445,"y":155,"on":true},{"x":440,"y":115,"on":false},{"x":420,"y":82,"on":true},{"x":397,"y":41,"on":false},{"x":357,"y":18,"on":true},{"x":312,"y":-8,"on":false},{"x":188,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":81,"on":true},{"x":52,"y":128,"on":false}]], "references": [], - "instructions": [64,37,37,36,13,12,4,2,1,1,74,0,1,1,0,95,0,0,0,75,75,0,2,2,3,95,0,3,3,73,3,76,27,27,27,22,4,9,24,43] + "instructions": "QCUlJA0MBAIBAUoAAQEAXwAAAEtLAAICA18AAwNJA0wbGxsWBAkYKw==" }, "uni1D05": { "name": "uni1D05", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":226,"y":530,"on":true},{"x":289,"y":530,"on":false},{"x":336,"y":503,"on":true},{"x":382,"y":477,"on":false},{"x":411,"y":426,"on":true},{"x":448,"y":361,"on":false},{"x":448,"y":267,"on":true},{"x":448,"y":263,"on":true},{"x":448,"y":168,"on":false},{"x":411,"y":104,"on":true},{"x":382,"y":54,"on":false},{"x":336,"y":27,"on":true},{"x":288,"y":0,"on":false},{"x":226,"y":0,"on":true}],[{"x":140,"y":72,"on":true},{"x":226,"y":72,"on":true},{"x":263,"y":72,"on":false},{"x":291,"y":88,"on":true},{"x":321,"y":105,"on":false},{"x":340,"y":139,"on":true},{"x":368,"y":188,"on":false},{"x":368,"y":263,"on":true},{"x":368,"y":267,"on":true},{"x":368,"y":342,"on":false},{"x":340,"y":391,"on":true},{"x":320,"y":425,"on":false},{"x":291,"y":442,"on":true},{"x":262,"y":458,"on":false},{"x":226,"y":458,"on":true},{"x":140,"y":458,"on":true}]], "references": [], - "instructions": [64,36,0,3,3,0,93,0,0,0,67,75,0,2,2,1,93,4,1,1,1,65,1,76,0,0,31,29,18,16,0,15,0,14,33,5,9,21,43] + "instructions": "QCQAAwMAXQAAAENLAAICAV0EAQEBQQFMAAAfHRIQAA8ADiEFCRUr" }, "uni1D06": { "name": "uni1D06", "advanceWidth": 500, "contours": [[{"x":18,"y":240,"on":true},{"x":18,"y":312,"on":true},{"x":60,"y":312,"on":true},{"x":60,"y":530,"on":true},{"x":226,"y":530,"on":true},{"x":289,"y":530,"on":false},{"x":336,"y":503,"on":true},{"x":382,"y":477,"on":false},{"x":411,"y":426,"on":true},{"x":448,"y":361,"on":false},{"x":448,"y":267,"on":true},{"x":448,"y":263,"on":true},{"x":448,"y":168,"on":false},{"x":411,"y":104,"on":true},{"x":382,"y":54,"on":false},{"x":336,"y":27,"on":true},{"x":288,"y":0,"on":false},{"x":226,"y":0,"on":true},{"x":60,"y":0,"on":true},{"x":60,"y":240,"on":true}],[{"x":140,"y":72,"on":true},{"x":226,"y":72,"on":true},{"x":263,"y":72,"on":false},{"x":291,"y":88,"on":true},{"x":321,"y":105,"on":false},{"x":340,"y":139,"on":true},{"x":368,"y":188,"on":false},{"x":368,"y":263,"on":true},{"x":368,"y":267,"on":true},{"x":368,"y":342,"on":false},{"x":340,"y":391,"on":true},{"x":320,"y":425,"on":false},{"x":291,"y":442,"on":true},{"x":262,"y":458,"on":false},{"x":226,"y":458,"on":true},{"x":140,"y":458,"on":true},{"x":140,"y":312,"on":true},{"x":262,"y":312,"on":true},{"x":262,"y":240,"on":true},{"x":140,"y":240,"on":true}]], "references": [], - "instructions": [64,52,6,1,0,7,8,2,3,4,0,3,101,0,5,5,1,93,0,1,1,67,75,0,4,4,2,93,0,2,2,65,2,76,0,0,39,38,37,36,35,33,22,20,0,19,0,19,43,33,17,9,9,23,43] + "instructions": "QDQGAQAHCAIDBAADZQAFBQFdAAEBQ0sABAQCXQACAkECTAAAJyYlJCMhFhQAEwATKyERCQkXKw==" }, "uni1D07": { "name": "uni1D07", "advanceWidth": 500, "contours": [[{"x":90,"y":0,"on":true},{"x":90,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":458,"on":true},{"x":170,"y":458,"on":true},{"x":170,"y":322,"on":true},{"x":383,"y":322,"on":true},{"x":383,"y":250,"on":true},{"x":170,"y":250,"on":true},{"x":170,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":0,"on":true}]], "references": [], - "instructions": [64,44,0,2,0,3,4,2,3,101,0,1,1,0,93,0,0,0,67,75,0,4,4,5,93,6,1,5,5,65,5,76,0,0,0,11,0,11,17,17,17,17,17,7,9,25,43] + "instructions": "QCwAAgADBAIDZQABAQBdAAAAQ0sABAQFXQYBBQVBBUwAAAALAAsREREREQcJGSs=" }, "uni1D08": { "name": "uni1D08", "advanceWidth": 500, "contours": [[{"x":47,"y":155,"on":true},{"x":126,"y":165,"on":true},{"x":126,"y":140,"on":false},{"x":139,"y":118,"on":true},{"x":152,"y":95,"on":false},{"x":176,"y":81,"on":true},{"x":206,"y":64,"on":false},{"x":251,"y":64,"on":true},{"x":302,"y":64,"on":false},{"x":335,"y":83,"on":true},{"x":356,"y":95,"on":false},{"x":366,"y":113,"on":true},{"x":376,"y":130,"on":false},{"x":376,"y":152,"on":true},{"x":376,"y":173,"on":false},{"x":366,"y":190,"on":true},{"x":355,"y":209,"on":false},{"x":334,"y":221,"on":true},{"x":301,"y":240,"on":false},{"x":250,"y":240,"on":true},{"x":193,"y":240,"on":true},{"x":193,"y":312,"on":true},{"x":250,"y":312,"on":true},{"x":295,"y":312,"on":false},{"x":323,"y":328,"on":true},{"x":342,"y":339,"on":false},{"x":352,"y":355,"on":true},{"x":360,"y":370,"on":false},{"x":360,"y":408,"on":false},{"x":351,"y":423,"on":true},{"x":342,"y":439,"on":false},{"x":324,"y":450,"on":true},{"x":296,"y":466,"on":false},{"x":252,"y":466,"on":true},{"x":211,"y":466,"on":false},{"x":185,"y":451,"on":true},{"x":164,"y":439,"on":false},{"x":152,"y":419,"on":true},{"x":141,"y":400,"on":false},{"x":141,"y":378,"on":true},{"x":141,"y":372,"on":false},{"x":142,"y":366,"on":true},{"x":63,"y":375,"on":true},{"x":63,"y":380,"on":false},{"x":63,"y":385,"on":true},{"x":63,"y":423,"on":false},{"x":82,"y":456,"on":true},{"x":102,"y":491,"on":false},{"x":138,"y":512,"on":true},{"x":183,"y":538,"on":false},{"x":251,"y":538,"on":true},{"x":322,"y":538,"on":false},{"x":370,"y":511,"on":true},{"x":405,"y":491,"on":false},{"x":422,"y":459,"on":true},{"x":440,"y":429,"on":false},{"x":440,"y":390,"on":true},{"x":440,"y":357,"on":false},{"x":426,"y":332,"on":true},{"x":410,"y":304,"on":false},{"x":378,"y":286,"on":true},{"x":369,"y":281,"on":false},{"x":359,"y":277,"on":true},{"x":375,"y":271,"on":false},{"x":389,"y":263,"on":true},{"x":424,"y":243,"on":false},{"x":441,"y":213,"on":true},{"x":456,"y":187,"on":false},{"x":456,"y":151,"on":true},{"x":456,"y":109,"on":false},{"x":437,"y":77,"on":true},{"x":418,"y":44,"on":false},{"x":381,"y":22,"on":true},{"x":329,"y":-8,"on":false},{"x":252,"y":-8,"on":true},{"x":178,"y":-8,"on":false},{"x":129,"y":20,"on":true},{"x":91,"y":42,"on":false},{"x":68,"y":80,"on":true},{"x":48,"y":115,"on":false}]], "references": [], - "instructions": [64,56,42,41,39,3,2,3,62,1,1,2,1,0,2,0,1,3,74,0,2,0,1,0,2,1,103,0,3,3,4,95,0,4,4,75,75,0,0,0,5,95,0,5,5,73,5,76,75,73,47,41,33,42,38,6,9,25,43] + "instructions": "QDgqKScDAgM+AQECAQACAAEDSgACAAEAAgFnAAMDBF8ABARLSwAAAAVfAAUFSQVMS0kvKSEqJgYJGSs=" }, "uni1D0A": { "name": "uni1D0A", "advanceWidth": 500, "contours": [[{"x":40,"y":155,"on":true},{"x":118,"y":170,"on":true},{"x":121,"y":140,"on":false},{"x":136,"y":115,"on":true},{"x":150,"y":90,"on":false},{"x":196,"y":64,"on":false},{"x":257,"y":64,"on":false},{"x":279,"y":77,"on":true},{"x":302,"y":90,"on":false},{"x":316,"y":115,"on":true},{"x":335,"y":147,"on":false},{"x":335,"y":195,"on":true},{"x":335,"y":458,"on":true},{"x":200,"y":458,"on":true},{"x":200,"y":530,"on":true},{"x":415,"y":530,"on":true},{"x":415,"y":195,"on":true},{"x":415,"y":127,"on":false},{"x":387,"y":78,"on":true},{"x":364,"y":38,"on":false},{"x":325,"y":16,"on":true},{"x":283,"y":-8,"on":false},{"x":169,"y":-8,"on":false},{"x":127,"y":16,"on":true},{"x":88,"y":38,"on":false},{"x":65,"y":78,"on":true},{"x":45,"y":113,"on":false}]], "references": [], - "instructions": [64,34,1,1,0,1,1,74,0,1,1,2,93,0,2,2,67,75,0,0,0,3,95,0,3,3,73,3,76,22,17,22,21,4,9,24,43] + "instructions": "QCIBAQABAUoAAQECXQACAkNLAAAAA18AAwNJA0wWERYVBAkYKw==" }, "uni1D0B": { "name": "uni1D0B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"kappa","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1D0C": { "name": "uni1D0C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni029F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniE090","x":420,"y":36,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,176,36,176,51,43] + "instructions": "sQEBsCSwMys=" }, "uni1D0D": { "name": "uni1D0D", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":154,"y":530,"on":true},{"x":250,"y":253,"on":true},{"x":346,"y":530,"on":true},{"x":393,"y":530,"on":false},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":106,"on":true},{"x":360,"y":205,"on":false},{"x":368,"y":318,"on":true},{"x":372,"y":371,"on":false},{"x":373,"y":420,"on":true},{"x":282,"y":159,"on":true},{"x":218,"y":159,"on":true},{"x":127,"y":420,"on":true},{"x":129,"y":371,"on":false},{"x":132,"y":318,"on":true},{"x":140,"y":205,"on":false},{"x":140,"y":106,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,44,16,13,11,3,4,3,0,1,74,0,3,0,2,0,3,2,126,1,1,0,0,67,75,5,4,2,2,2,65,2,76,0,0,0,21,0,21,22,17,34,17,6,9,24,43] + "instructions": "QCwQDQsDBAMAAUoAAwACAAMCfgEBAABDSwUEAgICQQJMAAAAFQAVFhEiEQYJGCs=" }, "uni1D0E": { "name": "uni1D0E", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":102,"on":true},{"x":324,"y":530,"on":true},{"x":382,"y":530,"on":false},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":428,"on":true},{"x":176,"y":0,"on":true}]], "references": [], - "instructions": [64,33,9,3,2,2,0,1,74,1,1,0,0,67,75,4,3,2,2,2,65,2,76,0,0,0,10,0,10,17,34,17,5,9,23,43] + "instructions": "QCEJAwICAAFKAQEAAENLBAMCAgJBAkwAAAAKAAoRIhEFCRcr" }, "uni1D0F": { "name": "uni1D0F", "advanceWidth": 500, "contours": [[{"x":52,"y":195,"on":true},{"x":52,"y":335,"on":true},{"x":52,"y":401,"on":false},{"x":79,"y":448,"on":true},{"x":102,"y":488,"on":false},{"x":143,"y":512,"on":true},{"x":188,"y":538,"on":false},{"x":312,"y":538,"on":false},{"x":357,"y":512,"on":true},{"x":397,"y":489,"on":false},{"x":421,"y":448,"on":true},{"x":448,"y":401,"on":false},{"x":448,"y":335,"on":true},{"x":448,"y":195,"on":true},{"x":448,"y":129,"on":false},{"x":421,"y":82,"on":true},{"x":398,"y":42,"on":false},{"x":357,"y":18,"on":true},{"x":312,"y":-8,"on":false},{"x":188,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":79,"y":82,"on":true},{"x":52,"y":129,"on":false}],[{"x":132,"y":195,"on":true},{"x":132,"y":150,"on":false},{"x":150,"y":118,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":285,"y":64,"on":false},{"x":311,"y":79,"on":true},{"x":336,"y":93,"on":false},{"x":350,"y":118,"on":true},{"x":368,"y":149,"on":false},{"x":368,"y":195,"on":true},{"x":368,"y":335,"on":true},{"x":368,"y":380,"on":false},{"x":350,"y":412,"on":true},{"x":335,"y":437,"on":false},{"x":311,"y":451,"on":true},{"x":285,"y":466,"on":false},{"x":215,"y":466,"on":false},{"x":189,"y":451,"on":true},{"x":164,"y":437,"on":false},{"x":150,"y":412,"on":true},{"x":132,"y":381,"on":false},{"x":132,"y":335,"on":true}]], "references": [], - "instructions": [64,28,0,3,3,0,95,0,0,0,75,75,0,2,2,1,95,0,1,1,73,1,76,27,26,27,22,4,9,24,43] + "instructions": "QBwAAwMAXwAAAEtLAAICAV8AAQFJAUwbGhsWBAkYKw==" }, "uni1D10": { "name": "uni1D10", "advanceWidth": 500, "contours": [[{"x":55,"y":155,"on":true},{"x":133,"y":169,"on":true},{"x":136,"y":141,"on":false},{"x":150,"y":119,"on":true},{"x":165,"y":93,"on":false},{"x":189,"y":79,"on":true},{"x":215,"y":64,"on":false},{"x":285,"y":64,"on":false},{"x":311,"y":79,"on":true},{"x":335,"y":93,"on":false},{"x":350,"y":118,"on":true},{"x":368,"y":150,"on":false},{"x":368,"y":195,"on":true},{"x":368,"y":335,"on":true},{"x":368,"y":380,"on":false},{"x":350,"y":412,"on":true},{"x":335,"y":437,"on":false},{"x":311,"y":451,"on":true},{"x":285,"y":466,"on":false},{"x":215,"y":466,"on":false},{"x":189,"y":451,"on":true},{"x":164,"y":437,"on":false},{"x":150,"y":411,"on":true},{"x":137,"y":388,"on":false},{"x":133,"y":361,"on":true},{"x":55,"y":375,"on":true},{"x":60,"y":415,"on":false},{"x":80,"y":448,"on":true},{"x":103,"y":489,"on":false},{"x":143,"y":512,"on":true},{"x":188,"y":538,"on":false},{"x":312,"y":538,"on":false},{"x":357,"y":512,"on":true},{"x":397,"y":489,"on":false},{"x":421,"y":449,"on":true},{"x":448,"y":402,"on":false},{"x":448,"y":335,"on":true},{"x":448,"y":195,"on":true},{"x":448,"y":129,"on":false},{"x":421,"y":81,"on":true},{"x":398,"y":41,"on":false},{"x":357,"y":18,"on":true},{"x":312,"y":-8,"on":false},{"x":188,"y":-8,"on":false},{"x":143,"y":18,"on":true},{"x":103,"y":41,"on":false},{"x":80,"y":82,"on":true},{"x":61,"y":116,"on":false}]], "references": [], - "instructions": [64,36,25,24,1,3,0,1,1,74,0,1,1,2,95,0,2,2,75,75,0,0,0,3,95,0,3,3,73,3,76,27,27,27,22,4,9,24,43] + "instructions": "QCQZGAEDAAEBSgABAQJfAAICS0sAAAADXwADA0kDTBsbGxYECRgr" }, "uni1D15": { "name": "uni1D15", "advanceWidth": 500, "contours": [[{"x":52,"y":110,"on":false},{"x":52,"y":204,"on":false},{"x":72,"y":238,"on":true},{"x":94,"y":276,"on":false},{"x":135,"y":298,"on":true},{"x":101,"y":319,"on":false},{"x":83,"y":352,"on":true},{"x":60,"y":392,"on":false},{"x":60,"y":445,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":445,"on":true},{"x":140,"y":402,"on":false},{"x":157,"y":373,"on":true},{"x":171,"y":349,"on":false},{"x":194,"y":336,"on":true},{"x":218,"y":322,"on":false},{"x":283,"y":322,"on":false},{"x":306,"y":336,"on":true},{"x":329,"y":349,"on":false},{"x":343,"y":373,"on":true},{"x":360,"y":403,"on":false},{"x":360,"y":445,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":445,"on":true},{"x":440,"y":391,"on":false},{"x":417,"y":352,"on":true},{"x":398,"y":319,"on":false},{"x":365,"y":298,"on":true},{"x":407,"y":276,"on":false},{"x":428,"y":238,"on":true},{"x":448,"y":204,"on":false},{"x":448,"y":111,"on":false},{"x":408,"y":41,"on":false},{"x":371,"y":20,"on":true},{"x":322,"y":-8,"on":false},{"x":178,"y":-8,"on":false},{"x":129,"y":20,"on":true},{"x":92,"y":42,"on":false}],[{"x":132,"y":182,"on":false},{"x":132,"y":132,"on":false},{"x":143,"y":113,"on":true},{"x":154,"y":93,"on":false},{"x":176,"y":81,"on":true},{"x":206,"y":64,"on":false},{"x":295,"y":64,"on":false},{"x":324,"y":81,"on":true},{"x":346,"y":93,"on":false},{"x":357,"y":113,"on":true},{"x":368,"y":132,"on":false},{"x":368,"y":182,"on":false},{"x":357,"y":201,"on":true},{"x":346,"y":221,"on":false},{"x":324,"y":233,"on":true},{"x":295,"y":250,"on":false},{"x":205,"y":250,"on":false},{"x":176,"y":233,"on":true},{"x":154,"y":221,"on":false},{"x":143,"y":201,"on":true}]], "references": [], - "instructions": [64,41,29,4,2,5,1,1,74,0,1,0,5,4,1,5,103,2,1,0,0,67,75,0,4,4,3,95,0,3,3,73,3,76,25,24,28,22,22,25,6,9,26,43] + "instructions": "QCkdBAIFAQFKAAEABQQBBWcCAQAAQ0sABAQDXwADA0kDTBkYHBYWGQYJGis=" }, "uni1D18": { "name": "uni1D18", "advanceWidth": 500, "contours": [[{"x":75,"y":0,"on":true},{"x":75,"y":530,"on":true},{"x":295,"y":530,"on":true},{"x":342,"y":530,"on":false},{"x":377,"y":510,"on":true},{"x":408,"y":492,"on":false},{"x":426,"y":460,"on":true},{"x":448,"y":422,"on":false},{"x":448,"y":315,"on":false},{"x":426,"y":277,"on":true},{"x":407,"y":245,"on":false},{"x":377,"y":227,"on":true},{"x":342,"y":207,"on":false},{"x":295,"y":207,"on":true},{"x":155,"y":207,"on":true},{"x":155,"y":0,"on":true}],[{"x":155,"y":279,"on":true},{"x":295,"y":279,"on":true},{"x":315,"y":279,"on":false},{"x":345,"y":297,"on":false},{"x":355,"y":313,"on":true},{"x":368,"y":335,"on":false},{"x":368,"y":401,"on":false},{"x":355,"y":424,"on":true},{"x":345,"y":441,"on":false},{"x":330,"y":449,"on":true},{"x":315,"y":458,"on":false},{"x":295,"y":458,"on":true},{"x":155,"y":458,"on":true}]], "references": [], - "instructions": [64,40,0,3,0,1,2,3,1,101,0,4,4,0,93,0,0,0,67,75,5,1,2,2,65,2,76,0,0,28,26,18,16,0,15,0,15,41,33,6,9,22,43] + "instructions": "QCgAAwABAgMBZQAEBABdAAAAQ0sFAQICQQJMAAAcGhIQAA8ADykhBgkWKw==" }, "uni1D19": { "name": "uni1D19", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni044F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1D1A": { "name": "uni1D1A", "advanceWidth": 500, "contours": [[{"x":52,"y":108,"on":false},{"x":52,"y":215,"on":false},{"x":74,"y":253,"on":true},{"x":93,"y":285,"on":false},{"x":123,"y":303,"on":true},{"x":142,"y":314,"on":false},{"x":165,"y":319,"on":true},{"x":114,"y":374,"on":false},{"x":86,"y":424,"on":true},{"x":52,"y":483,"on":false},{"x":52,"y":530,"on":true},{"x":132,"y":530,"on":true},{"x":132,"y":494,"on":false},{"x":157,"y":451,"on":true},{"x":190,"y":393,"on":false},{"x":267,"y":323,"on":true},{"x":360,"y":323,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":205,"y":0,"on":true},{"x":158,"y":0,"on":false},{"x":123,"y":20,"on":true},{"x":92,"y":38,"on":false},{"x":74,"y":70,"on":true}],[{"x":132,"y":195,"on":false},{"x":132,"y":129,"on":false},{"x":145,"y":106,"on":true},{"x":155,"y":89,"on":false},{"x":170,"y":81,"on":true},{"x":185,"y":72,"on":false},{"x":205,"y":72,"on":true},{"x":360,"y":72,"on":true},{"x":360,"y":251,"on":true},{"x":205,"y":251,"on":true},{"x":185,"y":251,"on":false},{"x":155,"y":233,"on":false},{"x":145,"y":217,"on":true}]], "references": [], - "instructions": [64,40,6,1,5,1,1,74,0,1,0,5,4,1,5,101,2,1,0,0,67,75,0,4,4,3,94,0,3,3,65,3,76,33,41,33,17,20,26,6,9,26,43] + "instructions": "QCgGAQUBAUoAAQAFBAEFZQIBAABDSwAEBANeAAMDQQNMISkhERQaBgkaKw==" }, "uni1D1B": { "name": "uni1D1B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph440","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1D20": { "name": "uni1D20", "advanceWidth": 500, "contours": [], "references": [{"glyph":"v","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1D21": { "name": "uni1D21", "advanceWidth": 500, "contours": [[{"x":60,"y":398,"on":true},{"x":60,"y":530,"on":true},{"x":140,"y":530,"on":true},{"x":140,"y":398,"on":true},{"x":140,"y":303,"on":false},{"x":164,"y":109,"on":true},{"x":223,"y":318,"on":true},{"x":277,"y":318,"on":true},{"x":336,"y":109,"on":true},{"x":360,"y":304,"on":false},{"x":360,"y":398,"on":true},{"x":360,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":398,"on":true},{"x":440,"y":277,"on":false},{"x":365,"y":0,"on":true},{"x":310,"y":0,"on":true},{"x":250,"y":220,"on":true},{"x":190,"y":0,"on":true},{"x":135,"y":0,"on":true},{"x":60,"y":278,"on":false}]], "references": [], - "instructions": [64,37,17,8,5,3,3,1,1,74,0,1,0,3,0,1,3,126,2,1,0,0,67,75,4,1,3,3,65,3,76,18,19,20,20,17,5,9,25,43] + "instructions": "QCURCAUDAwEBSgABAAMAAQN+AgEAAENLBAEDA0EDTBITFBQRBQkZKw==" }, "uni1D22": { "name": "uni1D22", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":72,"on":true},{"x":348,"y":458,"on":true},{"x":60,"y":458,"on":true},{"x":60,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":458,"on":true},{"x":152,"y":72,"on":true},{"x":440,"y":72,"on":true},{"x":440,"y":0,"on":true}]], "references": [], - "instructions": [64,42,6,1,0,1,1,2,2,73,0,0,0,1,93,0,1,1,67,75,0,2,2,3,93,4,1,3,3,65,3,76,0,0,0,9,0,9,18,17,18,5,9,23,43] + "instructions": "QCoGAQABAQICSQAAAAFdAAEBQ0sAAgIDXQQBAwNBA0wAAAAJAAkSERIFCRcr" }, "uni1D23": { "name": "uni1D23", "advanceWidth": 500, "contours": [[{"x":55,"y":112,"on":true},{"x":129,"y":139,"on":true},{"x":132,"y":132,"on":false},{"x":135,"y":126,"on":true},{"x":149,"y":102,"on":false},{"x":173,"y":88,"on":true},{"x":201,"y":72,"on":false},{"x":244,"y":72,"on":true},{"x":289,"y":72,"on":false},{"x":319,"y":89,"on":true},{"x":340,"y":101,"on":false},{"x":350,"y":119,"on":true},{"x":360,"y":136,"on":false},{"x":360,"y":160,"on":true},{"x":360,"y":183,"on":false},{"x":350,"y":200,"on":true},{"x":339,"y":218,"on":false},{"x":319,"y":230,"on":true},{"x":291,"y":246,"on":false},{"x":250,"y":246,"on":true},{"x":136,"y":246,"on":true},{"x":136,"y":318,"on":true},{"x":316,"y":458,"on":true},{"x":60,"y":458,"on":true},{"x":60,"y":530,"on":true},{"x":412,"y":530,"on":true},{"x":412,"y":458,"on":true},{"x":232,"y":318,"on":true},{"x":250,"y":318,"on":true},{"x":319,"y":318,"on":false},{"x":366,"y":291,"on":true},{"x":402,"y":270,"on":false},{"x":440,"y":204,"on":false},{"x":440,"y":160,"on":true},{"x":440,"y":115,"on":false},{"x":402,"y":49,"on":false},{"x":365,"y":28,"on":true},{"x":316,"y":0,"on":false},{"x":244,"y":0,"on":true},{"x":174,"y":0,"on":false},{"x":128,"y":27,"on":true},{"x":89,"y":50,"on":false},{"x":66,"y":89,"on":true},{"x":59,"y":100,"on":false}]], "references": [], - "instructions": [64,53,1,0,2,0,1,1,74,26,1,2,21,1,4,2,73,0,4,0,1,0,4,1,101,0,2,2,3,93,0,3,3,67,75,0,0,0,5,95,0,5,5,65,5,76,40,34,17,18,42,38,6,9,26,43] + "instructions": "QDUBAAIAAQFKGgECFQEEAkkABAABAAQBZQACAgNdAAMDQ0sAAAAFXwAFBUEFTCgiERIqJgYJGis=" }, "uni1D26": { "name": "uni1D26", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph475","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1D27": { "name": "uni1D27", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":53,"on":true},{"x":60,"y":98,"on":false},{"x":77,"y":148,"on":true},{"x":104,"y":232,"on":true},{"x":158,"y":402,"on":false},{"x":214,"y":530,"on":true},{"x":286,"y":530,"on":true},{"x":342,"y":402,"on":false},{"x":396,"y":232,"on":true},{"x":423,"y":148,"on":true},{"x":440,"y":98,"on":false},{"x":440,"y":53,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":53,"on":true},{"x":360,"y":95,"on":false},{"x":345,"y":143,"on":true},{"x":337,"y":169,"on":false},{"x":323,"y":221,"on":true},{"x":287,"y":345,"on":false},{"x":250,"y":447,"on":true},{"x":213,"y":346,"on":false},{"x":177,"y":221,"on":true},{"x":162,"y":169,"on":false},{"x":155,"y":144,"on":true},{"x":140,"y":95,"on":false},{"x":140,"y":53,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,30,21,1,1,0,1,74,0,0,0,67,75,3,2,2,1,1,65,1,76,0,0,0,28,0,28,22,22,4,9,22,43] + "instructions": "QB4VAQEAAUoAAABDSwMCAgEBQQFMAAAAHAAcFhYECRYr" }, "uni1D28": { "name": "uni1D28", "advanceWidth": 500, "contours": [[{"x":60,"y":0,"on":true},{"x":60,"y":530,"on":true},{"x":440,"y":530,"on":true},{"x":440,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":360,"y":458,"on":true},{"x":140,"y":458,"on":true},{"x":140,"y":0,"on":true}]], "references": [], - "instructions": [64,30,0,2,2,0,93,0,0,0,67,75,4,3,2,1,1,65,1,76,0,0,0,7,0,7,17,17,17,5,9,23,43] + "instructions": "QB4AAgIAXQAAAENLBAMCAQFBAUwAAAAHAAcREREFCRcr" }, "uni1D29": { "name": "uni1D29", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1D18","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1D2B": { "name": "uni1D2B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni043B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2070": { "name": "uni2070", "advanceWidth": 500, "contours": [[{"x":90,"y":452,"on":true},{"x":90,"y":658,"on":true},{"x":90,"y":709,"on":false},{"x":112,"y":746,"on":true},{"x":130,"y":778,"on":false},{"x":162,"y":797,"on":true},{"x":199,"y":818,"on":false},{"x":301,"y":818,"on":false},{"x":338,"y":797,"on":true},{"x":370,"y":778,"on":false},{"x":388,"y":746,"on":true},{"x":409,"y":708,"on":false},{"x":410,"y":658,"on":true},{"x":410,"y":452,"on":true},{"x":410,"y":401,"on":false},{"x":388,"y":364,"on":true},{"x":370,"y":332,"on":false},{"x":338,"y":313,"on":true},{"x":302,"y":292,"on":false},{"x":199,"y":292,"on":false},{"x":162,"y":313,"on":true},{"x":130,"y":332,"on":false},{"x":112,"y":364,"on":true},{"x":91,"y":401,"on":false}],[{"x":170,"y":514,"on":true},{"x":324,"y":695,"on":true},{"x":315,"y":723,"on":false},{"x":291,"y":736,"on":true},{"x":274,"y":746,"on":false},{"x":226,"y":746,"on":false},{"x":192,"y":726,"on":false},{"x":182,"y":709,"on":true},{"x":170,"y":688,"on":false},{"x":170,"y":658,"on":true}],[{"x":176,"y":416,"on":true},{"x":185,"y":388,"on":false},{"x":209,"y":374,"on":true},{"x":226,"y":364,"on":false},{"x":274,"y":364,"on":false},{"x":308,"y":384,"on":false},{"x":318,"y":401,"on":true},{"x":330,"y":422,"on":false},{"x":330,"y":452,"on":true},{"x":330,"y":597,"on":true}]], "references": [], - "instructions": [64,36,43,25,24,3,3,2,1,74,0,2,2,0,95,0,0,0,112,75,0,3,3,1,95,0,1,1,113,1,76,24,25,27,22,4,11,24,43] + "instructions": "QCQrGRgDAwIBSgACAgBfAAAAcEsAAwMBXwABAXEBTBgZGxYECxgr" }, "uni00B9": { "name": "uni00B9", "advanceWidth": 500, "contours": [[{"x":122,"y":731,"on":true},{"x":231,"y":812,"on":true},{"x":311,"y":812,"on":true},{"x":311,"y":298,"on":true},{"x":231,"y":298,"on":true},{"x":231,"y":719,"on":true},{"x":170,"y":673,"on":true}]], "references": [], - "instructions": [64,23,6,5,2,1,0,1,74,0,0,0,104,75,0,1,1,105,1,76,17,17,2,11,22,43] + "instructions": "QBcGBQIBAAFKAAAAaEsAAQFpAUwREQILFis=" }, "uni00B2": { "name": "uni00B2", "advanceWidth": 500, "contours": [[{"x":92,"y":704,"on":true},{"x":95,"y":727,"on":false},{"x":108,"y":748,"on":true},{"x":126,"y":778,"on":false},{"x":156,"y":796,"on":true},{"x":194,"y":818,"on":false},{"x":248,"y":818,"on":true},{"x":301,"y":818,"on":false},{"x":339,"y":797,"on":true},{"x":370,"y":779,"on":false},{"x":388,"y":748,"on":true},{"x":407,"y":715,"on":false},{"x":407,"y":635,"on":false},{"x":385,"y":597,"on":true},{"x":362,"y":557,"on":false},{"x":292,"y":505,"on":true},{"x":223,"y":454,"on":false},{"x":200,"y":415,"on":true},{"x":189,"y":396,"on":false},{"x":183,"y":370,"on":true},{"x":404,"y":370,"on":true},{"x":404,"y":298,"on":true},{"x":96,"y":298,"on":true},{"x":96,"y":299,"on":true},{"x":96,"y":395,"on":false},{"x":126,"y":448,"on":true},{"x":153,"y":494,"on":false},{"x":230,"y":548,"on":true},{"x":293,"y":593,"on":false},{"x":313,"y":625,"on":true},{"x":327,"y":650,"on":false},{"x":327,"y":675,"on":true},{"x":327,"y":695,"on":false},{"x":318,"y":711,"on":true},{"x":309,"y":726,"on":false},{"x":293,"y":735,"on":true},{"x":274,"y":746,"on":false},{"x":248,"y":746,"on":true},{"x":221,"y":746,"on":false},{"x":202,"y":735,"on":true},{"x":187,"y":726,"on":false},{"x":178,"y":711,"on":true},{"x":171,"y":699,"on":false},{"x":170,"y":685,"on":true}]], "references": [], - "instructions": [64,34,43,1,1,3,1,74,0,3,3,0,95,0,0,0,112,75,0,1,1,2,93,0,2,2,105,2,76,46,17,28,37,4,11,24,43] + "instructions": "QCIrAQEDAUoAAwMAXwAAAHBLAAEBAl0AAgJpAkwuERwlBAsYKw==" }, "uni00B3": { "name": "uni00B3", "advanceWidth": 500, "contours": [[{"x":87,"y":406,"on":true},{"x":164,"y":427,"on":true},{"x":166,"y":414,"on":false},{"x":172,"y":403,"on":true},{"x":182,"y":386,"on":false},{"x":198,"y":376,"on":true},{"x":219,"y":364,"on":false},{"x":279,"y":364,"on":false},{"x":300,"y":376,"on":true},{"x":335,"y":396,"on":false},{"x":335,"y":438,"on":true},{"x":335,"y":462,"on":false},{"x":323,"y":483,"on":true},{"x":310,"y":506,"on":false},{"x":287,"y":519,"on":true},{"x":260,"y":535,"on":false},{"x":208,"y":535,"on":true},{"x":208,"y":607,"on":true},{"x":256,"y":607,"on":false},{"x":282,"y":621,"on":true},{"x":303,"y":633,"on":false},{"x":314,"y":653,"on":true},{"x":324,"y":670,"on":false},{"x":324,"y":688,"on":true},{"x":324,"y":710,"on":false},{"x":309,"y":726,"on":true},{"x":289,"y":746,"on":false},{"x":251,"y":746,"on":true},{"x":214,"y":746,"on":false},{"x":194,"y":726,"on":true},{"x":178,"y":710,"on":false},{"x":176,"y":688,"on":true},{"x":98,"y":704,"on":true},{"x":101,"y":729,"on":false},{"x":114,"y":751,"on":true},{"x":131,"y":780,"on":false},{"x":160,"y":797,"on":true},{"x":197,"y":818,"on":false},{"x":305,"y":818,"on":false},{"x":342,"y":797,"on":true},{"x":371,"y":780,"on":false},{"x":388,"y":752,"on":true},{"x":405,"y":723,"on":false},{"x":404,"y":656,"on":false},{"x":387,"y":626,"on":true},{"x":369,"y":595,"on":false},{"x":337,"y":577,"on":true},{"x":331,"y":574,"on":false},{"x":325,"y":571,"on":true},{"x":334,"y":567,"on":false},{"x":342,"y":563,"on":true},{"x":377,"y":543,"on":false},{"x":396,"y":509,"on":true},{"x":415,"y":476,"on":false},{"x":415,"y":398,"on":false},{"x":396,"y":365,"on":true},{"x":378,"y":334,"on":false},{"x":346,"y":315,"on":true},{"x":306,"y":292,"on":false},{"x":249,"y":292,"on":true},{"x":191,"y":292,"on":false},{"x":153,"y":315,"on":true},{"x":121,"y":333,"on":false},{"x":102,"y":365,"on":true},{"x":91,"y":384,"on":false}]], "references": [], - "instructions": [64,54,32,31,2,2,3,48,1,1,2,1,1,0,1,3,74,0,2,0,1,0,2,1,103,0,3,3,4,95,0,4,4,112,75,0,0,0,5,95,0,5,5,113,5,76,60,58,25,40,17,24,22,6,11,25,43] + "instructions": "QDYgHwICAzABAQIBAQABA0oAAgABAAIBZwADAwRfAAQEcEsAAAAFXwAFBXEFTDw6GSgRGBYGCxkr" }, "uni2074": { "name": "uni2074", "advanceWidth": 500, "contours": [[{"x":90,"y":432,"on":true},{"x":90,"y":504,"on":true},{"x":252,"y":812,"on":true},{"x":350,"y":812,"on":true},{"x":350,"y":504,"on":true},{"x":404,"y":504,"on":true},{"x":404,"y":432,"on":true},{"x":350,"y":432,"on":true},{"x":350,"y":298,"on":true},{"x":270,"y":298,"on":true},{"x":270,"y":432,"on":true}],[{"x":170,"y":504,"on":true},{"x":270,"y":504,"on":true},{"x":270,"y":693,"on":true}]], "references": [], - "instructions": [64,48,13,1,1,0,1,74,1,1,1,1,73,5,1,1,6,4,2,2,3,1,2,102,0,0,0,104,75,0,3,3,105,3,76,0,0,12,11,0,10,0,10,17,17,17,18,7,11,24,43] + "instructions": "QDANAQEAAUoBAQEBSQUBAQYEAgIDAQJmAAAAaEsAAwNpA0wAAAwLAAoAChERERIHCxgr" }, "uni2075": { "name": "uni2075", "advanceWidth": 500, "contours": [[{"x":92,"y":406,"on":true},{"x":168,"y":430,"on":true},{"x":171,"y":415,"on":false},{"x":179,"y":403,"on":true},{"x":190,"y":384,"on":false},{"x":224,"y":364,"on":false},{"x":248,"y":364,"on":true},{"x":271,"y":364,"on":false},{"x":305,"y":384,"on":false},{"x":316,"y":403,"on":true},{"x":330,"y":427,"on":false},{"x":330,"y":499,"on":false},{"x":315,"y":524,"on":true},{"x":305,"y":542,"on":false},{"x":288,"y":552,"on":true},{"x":272,"y":561,"on":false},{"x":251,"y":561,"on":true},{"x":218,"y":561,"on":false},{"x":197,"y":540,"on":true},{"x":183,"y":526,"on":false},{"x":176,"y":506,"on":true},{"x":104,"y":536,"on":true},{"x":104,"y":812,"on":true},{"x":389,"y":812,"on":true},{"x":389,"y":740,"on":true},{"x":184,"y":740,"on":true},{"x":184,"y":621,"on":true},{"x":213,"y":633,"on":false},{"x":251,"y":633,"on":true},{"x":300,"y":633,"on":false},{"x":334,"y":613,"on":true},{"x":367,"y":594,"on":false},{"x":386,"y":560,"on":true},{"x":409,"y":520,"on":false},{"x":410,"y":463,"on":true},{"x":410,"y":406,"on":false},{"x":387,"y":366,"on":true},{"x":367,"y":332,"on":false},{"x":334,"y":313,"on":true},{"x":298,"y":292,"on":false},{"x":198,"y":292,"on":false},{"x":162,"y":313,"on":true},{"x":129,"y":332,"on":false},{"x":109,"y":366,"on":true},{"x":98,"y":384,"on":false}]], "references": [], - "instructions": [64,50,26,1,1,4,21,20,1,3,0,1,2,74,0,4,0,1,0,4,1,103,0,3,3,2,93,0,2,2,104,75,0,0,0,5,95,0,5,5,113,5,76,26,34,17,21,40,37,6,11,26,43] + "instructions": "QDIaAQEEFRQBAwABAkoABAABAAQBZwADAwJdAAICaEsAAAAFXwAFBXEFTBoiERUoJQYLGis=" }, "uni2076": { "name": "uni2076", "advanceWidth": 500, "contours": [[{"x":90,"y":452,"on":true},{"x":90,"y":453,"on":true},{"x":90,"y":588,"on":false},{"x":141,"y":675,"on":true},{"x":181,"y":745,"on":false},{"x":249,"y":784,"on":true},{"x":282,"y":802,"on":false},{"x":318,"y":812,"on":true},{"x":339,"y":743,"on":true},{"x":316,"y":736,"on":false},{"x":294,"y":724,"on":true},{"x":243,"y":694,"on":false},{"x":212,"y":641,"on":true},{"x":202,"y":624,"on":false},{"x":195,"y":605,"on":true},{"x":220,"y":612,"on":false},{"x":250,"y":612,"on":true},{"x":301,"y":612,"on":false},{"x":338,"y":591,"on":true},{"x":370,"y":572,"on":false},{"x":388,"y":541,"on":true},{"x":409,"y":504,"on":false},{"x":410,"y":453,"on":true},{"x":410,"y":452,"on":true},{"x":410,"y":401,"on":false},{"x":388,"y":364,"on":true},{"x":370,"y":332,"on":false},{"x":338,"y":313,"on":true},{"x":302,"y":292,"on":false},{"x":199,"y":292,"on":false},{"x":162,"y":313,"on":true},{"x":130,"y":332,"on":false},{"x":112,"y":364,"on":true},{"x":90,"y":401,"on":false}],[{"x":170,"y":452,"on":true},{"x":170,"y":422,"on":false},{"x":182,"y":401,"on":true},{"x":203,"y":364,"on":false},{"x":250,"y":364,"on":true},{"x":274,"y":364,"on":false},{"x":308,"y":384,"on":false},{"x":318,"y":401,"on":true},{"x":330,"y":422,"on":false},{"x":330,"y":452,"on":true},{"x":330,"y":453,"on":true},{"x":330,"y":483,"on":false},{"x":318,"y":504,"on":true},{"x":297,"y":541,"on":false},{"x":250,"y":540,"on":true},{"x":226,"y":540,"on":false},{"x":192,"y":520,"on":false},{"x":182,"y":504,"on":true},{"x":170,"y":483,"on":false},{"x":170,"y":453,"on":true}]], "references": [], - "instructions": [64,37,14,1,3,0,1,74,8,7,2,0,72,0,0,0,3,2,0,3,103,0,2,2,1,95,0,1,1,113,1,76,40,40,27,47,4,11,24,43] + "instructions": "QCUOAQMAAUoIBwIASAAAAAMCAANnAAICAV8AAQFxAUwoKBsvBAsYKw==" }, "uni2077": { "name": "uni2077", "advanceWidth": 500, "contours": [[{"x":96,"y":740,"on":true},{"x":96,"y":812,"on":true},{"x":404,"y":812,"on":true},{"x":404,"y":740,"on":true},{"x":226,"y":298,"on":true},{"x":139,"y":298,"on":true},{"x":317,"y":740,"on":true}]], "references": [], - "instructions": [64,33,3,1,2,1,73,3,1,2,2,0,93,0,0,0,104,75,0,1,1,105,1,76,0,0,0,6,0,6,18,17,4,11,22,43] + "instructions": "QCEDAQIBSQMBAgIAXQAAAGhLAAEBaQFMAAAABgAGEhEECxYr" }, "uni2078": { "name": "uni2078", "advanceWidth": 500, "contours": [[{"x":90,"y":424,"on":true},{"x":90,"y":460,"on":false},{"x":109,"y":492,"on":true},{"x":130,"y":529,"on":false},{"x":181,"y":562,"on":true},{"x":140,"y":591,"on":false},{"x":122,"y":623,"on":true},{"x":103,"y":655,"on":false},{"x":103,"y":691,"on":true},{"x":103,"y":726,"on":false},{"x":120,"y":754,"on":true},{"x":136,"y":781,"on":false},{"x":164,"y":798,"on":true},{"x":199,"y":818,"on":false},{"x":301,"y":818,"on":false},{"x":336,"y":798,"on":true},{"x":365,"y":782,"on":false},{"x":380,"y":754,"on":true},{"x":396,"y":725,"on":false},{"x":397,"y":691,"on":true},{"x":397,"y":655,"on":false},{"x":378,"y":623,"on":true},{"x":360,"y":591,"on":false},{"x":319,"y":562,"on":true},{"x":370,"y":529,"on":false},{"x":391,"y":492,"on":true},{"x":410,"y":460,"on":false},{"x":410,"y":424,"on":true},{"x":410,"y":389,"on":false},{"x":393,"y":361,"on":true},{"x":377,"y":333,"on":false},{"x":346,"y":315,"on":true},{"x":307,"y":292,"on":false},{"x":193,"y":292,"on":false},{"x":154,"y":315,"on":true},{"x":124,"y":333,"on":false},{"x":107,"y":361,"on":true},{"x":90,"y":390,"on":false}],[{"x":170,"y":424,"on":true},{"x":170,"y":402,"on":false},{"x":186,"y":386,"on":true},{"x":208,"y":364,"on":false},{"x":292,"y":364,"on":false},{"x":314,"y":386,"on":true},{"x":329,"y":401,"on":false},{"x":330,"y":424,"on":true},{"x":330,"y":443,"on":false},{"x":319,"y":461,"on":true},{"x":301,"y":491,"on":false},{"x":250,"y":521,"on":true},{"x":199,"y":491,"on":false},{"x":181,"y":461,"on":true},{"x":170,"y":442,"on":false}],[{"x":183,"y":692,"on":true},{"x":183,"y":674,"on":false},{"x":194,"y":655,"on":true},{"x":209,"y":628,"on":false},{"x":250,"y":602,"on":true},{"x":291,"y":628,"on":false},{"x":306,"y":655,"on":true},{"x":317,"y":673,"on":false},{"x":317,"y":692,"on":true},{"x":317,"y":714,"on":false},{"x":302,"y":728,"on":true},{"x":284,"y":746,"on":false},{"x":216,"y":746,"on":false},{"x":198,"y":728,"on":true},{"x":183,"y":713,"on":false}]], "references": [], - "instructions": [64,40,57,49,23,4,4,2,3,1,74,0,3,3,0,95,0,0,0,112,75,0,2,2,1,95,0,1,1,113,1,76,65,64,42,41,33,32,29,4,11,21,43] + "instructions": "QCg5MRcEBAIDAUoAAwMAXwAAAHBLAAICAV8AAQFxAUxBQCopISAdBAsVKw==" }, "uni2079": { "name": "uni2079", "advanceWidth": 500, "contours": [[{"x":90,"y":635,"on":true},{"x":90,"y":658,"on":true},{"x":90,"y":709,"on":false},{"x":112,"y":746,"on":true},{"x":130,"y":778,"on":false},{"x":162,"y":797,"on":true},{"x":198,"y":818,"on":false},{"x":249,"y":818,"on":true},{"x":298,"y":818,"on":false},{"x":334,"y":798,"on":true},{"x":367,"y":779,"on":false},{"x":386,"y":745,"on":true},{"x":409,"y":704,"on":false},{"x":410,"y":647,"on":true},{"x":410,"y":478,"on":true},{"x":410,"y":413,"on":false},{"x":384,"y":368,"on":true},{"x":363,"y":332,"on":false},{"x":329,"y":313,"on":true},{"x":294,"y":293,"on":false},{"x":199,"y":292,"on":false},{"x":164,"y":313,"on":true},{"x":130,"y":333,"on":false},{"x":109,"y":368,"on":true},{"x":98,"y":386,"on":false},{"x":92,"y":406,"on":true},{"x":166,"y":435,"on":true},{"x":170,"y":418,"on":false},{"x":178,"y":405,"on":true},{"x":190,"y":385,"on":false},{"x":208,"y":374,"on":true},{"x":225,"y":364,"on":false},{"x":267,"y":364,"on":false},{"x":284,"y":374,"on":true},{"x":302,"y":384,"on":false},{"x":313,"y":404,"on":true},{"x":330,"y":433,"on":false},{"x":330,"y":478,"on":true},{"x":330,"y":509,"on":true},{"x":319,"y":497,"on":false},{"x":304,"y":488,"on":true},{"x":281,"y":475,"on":false},{"x":247,"y":475,"on":true},{"x":199,"y":475,"on":false},{"x":162,"y":496,"on":true},{"x":130,"y":515,"on":false},{"x":112,"y":547,"on":true},{"x":91,"y":584,"on":false}],[{"x":170,"y":635,"on":true},{"x":170,"y":605,"on":false},{"x":183,"y":583,"on":true},{"x":204,"y":547,"on":false},{"x":249,"y":547,"on":true},{"x":273,"y":547,"on":false},{"x":291,"y":557,"on":true},{"x":308,"y":567,"on":false},{"x":318,"y":584,"on":true},{"x":330,"y":605,"on":false},{"x":330,"y":635,"on":true},{"x":330,"y":647,"on":true},{"x":330,"y":684,"on":false},{"x":315,"y":709,"on":true},{"x":304,"y":727,"on":false},{"x":288,"y":737,"on":true},{"x":272,"y":746,"on":false},{"x":249,"y":746,"on":true},{"x":203,"y":746,"on":false},{"x":182,"y":710,"on":true},{"x":170,"y":688,"on":false},{"x":170,"y":658,"on":true}]], "references": [], - "instructions": [64,49,38,1,3,4,26,25,2,2,3,2,74,0,4,0,3,2,4,3,103,0,5,5,0,95,0,0,0,112,75,0,2,2,1,95,0,1,1,113,1,76,43,40,41,27,27,38,6,11,26,43] + "instructions": "QDEmAQMEGhkCAgMCSgAEAAMCBANnAAUFAF8AAABwSwACAgFfAAEBcQFMKygpGxsmBgsaKw==" }, "uni02B0": { "name": "uni02B0", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":812,"on":true},{"x":176,"y":812,"on":true},{"x":176,"y":620,"on":true},{"x":192,"y":645,"on":false},{"x":216,"y":660,"on":true},{"x":242,"y":675,"on":false},{"x":311,"y":675,"on":false},{"x":337,"y":660,"on":true},{"x":364,"y":644,"on":false},{"x":381,"y":615,"on":true},{"x":404,"y":575,"on":false},{"x":404,"y":515,"on":true},{"x":404,"y":298,"on":true},{"x":324,"y":298,"on":true},{"x":324,"y":515,"on":true},{"x":324,"y":547,"on":false},{"x":312,"y":568,"on":true},{"x":302,"y":585,"on":false},{"x":271,"y":603,"on":false},{"x":229,"y":603,"on":false},{"x":198,"y":585,"on":false},{"x":188,"y":568,"on":true},{"x":176,"y":547,"on":false},{"x":176,"y":515,"on":true},{"x":176,"y":298,"on":true}]], "references": [], - "instructions": [64,42,3,1,3,1,1,74,0,0,0,104,75,0,3,3,1,95,0,1,1,115,75,5,4,2,2,2,105,2,76,0,0,0,25,0,25,21,22,20,17,6,11,24,43] + "instructions": "QCoDAQMBAUoAAABoSwADAwFfAAEBc0sFBAICAmkCTAAAABkAGRUWFBEGCxgr" }, "uni02B1": { "name": "uni02B1", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":658,"on":true},{"x":96,"y":709,"on":false},{"x":117,"y":747,"on":true},{"x":135,"y":779,"on":false},{"x":168,"y":797,"on":true},{"x":204,"y":818,"on":false},{"x":304,"y":818,"on":false},{"x":340,"y":797,"on":true},{"x":372,"y":779,"on":false},{"x":391,"y":747,"on":true},{"x":402,"y":727,"on":false},{"x":408,"y":704,"on":true},{"x":331,"y":684,"on":true},{"x":328,"y":698,"on":false},{"x":321,"y":710,"on":true},{"x":300,"y":746,"on":false},{"x":254,"y":746,"on":true},{"x":209,"y":746,"on":false},{"x":188,"y":710,"on":true},{"x":176,"y":688,"on":false},{"x":176,"y":658,"on":true},{"x":176,"y":620,"on":true},{"x":192,"y":645,"on":false},{"x":216,"y":660,"on":true},{"x":242,"y":675,"on":false},{"x":311,"y":675,"on":false},{"x":337,"y":660,"on":true},{"x":364,"y":644,"on":false},{"x":381,"y":615,"on":true},{"x":404,"y":575,"on":false},{"x":404,"y":515,"on":true},{"x":404,"y":298,"on":true},{"x":324,"y":298,"on":true},{"x":324,"y":515,"on":true},{"x":324,"y":547,"on":false},{"x":312,"y":568,"on":true},{"x":302,"y":585,"on":false},{"x":271,"y":603,"on":false},{"x":229,"y":603,"on":false},{"x":198,"y":585,"on":false},{"x":188,"y":568,"on":true},{"x":176,"y":547,"on":false},{"x":176,"y":515,"on":true},{"x":176,"y":298,"on":true}]], "references": [], - "instructions": [64,53,13,12,2,2,1,22,1,4,2,2,74,0,1,1,0,95,0,0,0,112,75,0,4,4,2,95,0,2,2,115,75,6,5,2,3,3,105,3,76,0,0,0,44,0,44,21,22,23,41,22,7,11,25,43] + "instructions": "QDUNDAICARYBBAICSgABAQBfAAAAcEsABAQCXwACAnNLBgUCAwNpA0wAAAAsACwVFhcpFgcLGSs=" }, "uni02B2": { "name": "uni02B2", "advanceWidth": 500, "contours": [[{"x":72,"y":249,"on":true},{"x":148,"y":271,"on":true},{"x":152,"y":249,"on":false},{"x":180,"y":221,"on":false},{"x":222,"y":221,"on":false},{"x":235,"y":234,"on":true},{"x":254,"y":253,"on":false},{"x":254,"y":291,"on":true},{"x":254,"y":597,"on":true},{"x":172,"y":597,"on":true},{"x":172,"y":669,"on":true},{"x":334,"y":669,"on":true},{"x":334,"y":291,"on":true},{"x":334,"y":243,"on":false},{"x":315,"y":210,"on":true},{"x":299,"y":182,"on":false},{"x":271,"y":166,"on":true},{"x":242,"y":149,"on":false},{"x":160,"y":149,"on":false},{"x":131,"y":166,"on":true},{"x":104,"y":182,"on":false},{"x":87,"y":210,"on":true},{"x":77,"y":228,"on":false}],[{"x":237,"y":757,"on":false},{"x":237,"y":798,"on":false},{"x":261,"y":821,"on":false},{"x":301,"y":821,"on":false},{"x":325,"y":798,"on":false},{"x":325,"y":757,"on":false},{"x":301,"y":734,"on":false},{"x":261,"y":734,"on":false}]], "references": [], - "instructions": [64,46,1,1,0,1,1,74,0,5,5,4,95,0,4,4,114,75,0,1,1,2,93,0,2,2,107,75,0,0,0,3,95,0,3,3,117,3,76,19,23,22,17,20,19,6,11,26,43] + "instructions": "QC4BAQABAUoABQUEXwAEBHJLAAEBAl0AAgJrSwAAAANfAAMDdQNMExcWERQTBgsaKw==" }, "uni02B3": { "name": "uni02B3", "advanceWidth": 500, "contours": [[{"x":138,"y":298,"on":true},{"x":138,"y":669,"on":true},{"x":218,"y":669,"on":true},{"x":218,"y":604,"on":true},{"x":221,"y":612,"on":false},{"x":226,"y":619,"on":true},{"x":243,"y":648,"on":false},{"x":267,"y":662,"on":true},{"x":288,"y":674,"on":false},{"x":316,"y":675,"on":true},{"x":346,"y":675,"on":false},{"x":370,"y":660,"on":true},{"x":393,"y":647,"on":false},{"x":406,"y":624,"on":true},{"x":410,"y":615,"on":false},{"x":414,"y":606,"on":true},{"x":340,"y":571,"on":true},{"x":336,"y":581,"on":false},{"x":329,"y":588,"on":true},{"x":314,"y":603,"on":false},{"x":291,"y":603,"on":true},{"x":273,"y":603,"on":false},{"x":260,"y":595,"on":true},{"x":245,"y":586,"on":false},{"x":234,"y":568,"on":true},{"x":218,"y":540,"on":false},{"x":218,"y":495,"on":true},{"x":218,"y":298,"on":true}]], "references": [], - "instructions": [64,11,15,3,2,2,0,16,1,3,2,2,74,75,176,45,80,88,64,18,0,2,2,0,95,1,1,0,0,107,75,4,1,3,3,105,3,76,27,64,22,0,0,0,107,75,0,2,2,1,95,0,1,1,115,75,4,1,3,3,105,3,76,89,64,12,0,0,0,27,0,27,41,38,17,5,11,23,43] + "instructions": "QAsPAwICABABAwICSkuwLVBYQBIAAgIAXwEBAABrSwQBAwNpA0wbQBYAAABrSwACAgFfAAEBc0sEAQMDaQNMWUAMAAAAGwAbKSYRBQsXKw==" }, "uni02B4": { "name": "uni02B4", "advanceWidth": 500, "contours": [[{"x":86,"y":361,"on":true},{"x":160,"y":396,"on":true},{"x":164,"y":386,"on":false},{"x":171,"y":379,"on":true},{"x":186,"y":364,"on":false},{"x":209,"y":364,"on":true},{"x":227,"y":364,"on":false},{"x":240,"y":372,"on":true},{"x":255,"y":381,"on":false},{"x":266,"y":399,"on":true},{"x":282,"y":427,"on":false},{"x":282,"y":472,"on":true},{"x":282,"y":669,"on":true},{"x":362,"y":669,"on":true},{"x":362,"y":298,"on":true},{"x":282,"y":298,"on":true},{"x":282,"y":363,"on":true},{"x":279,"y":355,"on":false},{"x":274,"y":348,"on":true},{"x":257,"y":319,"on":false},{"x":233,"y":305,"on":true},{"x":212,"y":293,"on":false},{"x":184,"y":292,"on":true},{"x":154,"y":292,"on":false},{"x":130,"y":307,"on":true},{"x":107,"y":320,"on":false},{"x":94,"y":343,"on":true},{"x":90,"y":352,"on":false}]], "references": [], - "instructions": [64,11,1,1,0,1,16,0,2,2,0,2,74,75,176,38,80,88,64,17,0,1,1,107,75,0,0,0,2,95,3,1,2,2,105,2,76,27,64,21,0,1,1,107,75,0,2,2,105,75,0,0,0,3,95,0,3,3,113,3,76,89,182,38,17,22,36,4,11,24,43] + "instructions": "QAsBAQABEAACAgACSkuwJlBYQBEAAQFrSwAAAAJfAwECAmkCTBtAFQABAWtLAAICaUsAAAADXwADA3EDTFm2JhEWJAQLGCs=" }, "uni02B5": { "name": "uni02B5", "advanceWidth": 500, "contours": [[{"x":86,"y":361,"on":true},{"x":160,"y":396,"on":true},{"x":164,"y":386,"on":false},{"x":171,"y":379,"on":true},{"x":186,"y":364,"on":false},{"x":209,"y":364,"on":true},{"x":227,"y":364,"on":false},{"x":240,"y":372,"on":true},{"x":255,"y":381,"on":false},{"x":266,"y":399,"on":true},{"x":282,"y":427,"on":false},{"x":282,"y":472,"on":true},{"x":282,"y":669,"on":true},{"x":282,"y":697,"on":false},{"x":274,"y":712,"on":true},{"x":267,"y":724,"on":false},{"x":254,"y":732,"on":true},{"x":237,"y":742,"on":false},{"x":203,"y":742,"on":true},{"x":203,"y":814,"on":true},{"x":273,"y":814,"on":false},{"x":306,"y":794,"on":true},{"x":331,"y":780,"on":false},{"x":345,"y":755,"on":true},{"x":362,"y":726,"on":false},{"x":362,"y":669,"on":true},{"x":362,"y":298,"on":true},{"x":282,"y":298,"on":true},{"x":282,"y":363,"on":true},{"x":279,"y":355,"on":false},{"x":274,"y":348,"on":true},{"x":257,"y":319,"on":false},{"x":233,"y":305,"on":true},{"x":212,"y":293,"on":false},{"x":184,"y":292,"on":true},{"x":154,"y":292,"on":false},{"x":130,"y":307,"on":true},{"x":107,"y":320,"on":false},{"x":94,"y":343,"on":true},{"x":90,"y":352,"on":false}]], "references": [], - "instructions": [64,11,1,1,0,1,28,0,2,3,0,2,74,75,176,38,80,88,64,22,0,1,1,2,95,0,2,2,104,75,0,0,0,3,95,4,1,3,3,105,3,76,27,64,26,0,1,1,2,95,0,2,2,104,75,0,3,3,105,75,0,0,0,4,95,0,4,4,113,4,76,89,183,38,22,17,27,36,5,11,25,43] + "instructions": "QAsBAQABHAACAwACSkuwJlBYQBYAAQECXwACAmhLAAAAA18EAQMDaQNMG0AaAAEBAl8AAgJoSwADA2lLAAAABF8ABARxBExZtyYWERskBQsZKw==" }, "uni02B6": { "name": "uni02B6", "advanceWidth": 500, "contours": [[{"x":101,"y":298,"on":true},{"x":101,"y":669,"on":true},{"x":181,"y":669,"on":true},{"x":181,"y":547,"on":true},{"x":235,"y":547,"on":true},{"x":296,"y":594,"on":false},{"x":318,"y":631,"on":true},{"x":330,"y":651,"on":false},{"x":330,"y":669,"on":true},{"x":410,"y":669,"on":true},{"x":410,"y":641,"on":false},{"x":390,"y":607,"on":true},{"x":372,"y":575,"on":false},{"x":337,"y":539,"on":true},{"x":359,"y":531,"on":false},{"x":376,"y":515,"on":true},{"x":410,"y":481,"on":false},{"x":410,"y":422,"on":true},{"x":410,"y":381,"on":false},{"x":393,"y":352,"on":true},{"x":379,"y":327,"on":false},{"x":355,"y":313,"on":true},{"x":329,"y":298,"on":false},{"x":292,"y":298,"on":true}],[{"x":181,"y":370,"on":true},{"x":292,"y":370,"on":true},{"x":306,"y":370,"on":false},{"x":315,"y":379,"on":true},{"x":329,"y":393,"on":false},{"x":330,"y":451,"on":false},{"x":315,"y":465,"on":true},{"x":306,"y":474,"on":false},{"x":292,"y":475,"on":true},{"x":181,"y":475,"on":true}]], "references": [], - "instructions": [64,48,13,1,5,1,1,74,0,1,0,5,4,1,5,101,2,1,0,0,107,75,0,4,4,3,94,6,1,3,3,105,3,76,0,0,33,32,26,24,0,23,0,22,20,17,17,7,11,23,43] + "instructions": "QDANAQUBAUoAAQAFBAEFZQIBAABrSwAEBANeBgEDA2kDTAAAISAaGAAXABYUEREHCxcr" }, "uni02B7": { "name": "uni02B7", "advanceWidth": 500, "contours": [[{"x":96,"y":576,"on":true},{"x":96,"y":669,"on":true},{"x":176,"y":669,"on":true},{"x":176,"y":576,"on":true},{"x":176,"y":513,"on":false},{"x":190,"y":387,"on":true},{"x":228,"y":521,"on":true},{"x":272,"y":521,"on":true},{"x":310,"y":387,"on":true},{"x":324,"y":513,"on":false},{"x":324,"y":576,"on":true},{"x":324,"y":669,"on":true},{"x":404,"y":669,"on":true},{"x":404,"y":576,"on":true},{"x":404,"y":491,"on":false},{"x":333,"y":298,"on":true},{"x":289,"y":298,"on":true},{"x":250,"y":440,"on":true},{"x":211,"y":298,"on":true},{"x":167,"y":298,"on":true},{"x":96,"y":492,"on":false}]], "references": [], - "instructions": [64,37,17,8,5,3,3,1,1,74,0,1,0,3,0,1,3,126,2,1,0,0,107,75,4,1,3,3,105,3,76,18,19,20,20,17,5,11,25,43] + "instructions": "QCURCAUDAwEBSgABAAMAAQN+AgEAAGtLBAEDA2kDTBITFBQRBQsZKw==" }, "uni02B8": { "name": "uni02B8", "advanceWidth": 500, "contours": [[{"x":96,"y":643,"on":true},{"x":96,"y":669,"on":true},{"x":176,"y":669,"on":true},{"x":176,"y":643,"on":true},{"x":176,"y":604,"on":false},{"x":197,"y":544,"on":true},{"x":249,"y":400,"on":true},{"x":303,"y":544,"on":true},{"x":324,"y":601,"on":false},{"x":324,"y":643,"on":true},{"x":324,"y":669,"on":true},{"x":404,"y":669,"on":true},{"x":404,"y":643,"on":true},{"x":404,"y":589,"on":false},{"x":378,"y":519,"on":true},{"x":260,"y":205,"on":true},{"x":260,"y":204,"on":false},{"x":259,"y":203,"on":true},{"x":255,"y":185,"on":false},{"x":255,"y":160,"on":true},{"x":255,"y":154,"on":true},{"x":175,"y":154,"on":true},{"x":175,"y":160,"on":true},{"x":175,"y":204,"on":false},{"x":185,"y":230,"on":true},{"x":210,"y":297,"on":true},{"x":122,"y":519,"on":true},{"x":96,"y":586,"on":false}]], "references": [], - "instructions": [64,19,25,21,19,6,4,0,71,1,1,0,0,107,0,76,24,17,2,11,22,43] + "instructions": "QBMZFRMGBABHAQEAAGsATBgRAgsWKw==" }, "uni02C0": { "name": "uni02C0", "advanceWidth": 500, "contours": [[{"x":92,"y":704,"on":true},{"x":95,"y":728,"on":false},{"x":108,"y":749,"on":true},{"x":125,"y":779,"on":false},{"x":156,"y":797,"on":true},{"x":193,"y":819,"on":false},{"x":246,"y":818,"on":true},{"x":297,"y":818,"on":false},{"x":333,"y":797,"on":true},{"x":365,"y":779,"on":false},{"x":383,"y":747,"on":true},{"x":404,"y":711,"on":false},{"x":404,"y":667,"on":true},{"x":404,"y":621,"on":false},{"x":381,"y":581,"on":true},{"x":368,"y":559,"on":false},{"x":341,"y":529,"on":true},{"x":289,"y":473,"on":false},{"x":289,"y":409,"on":true},{"x":289,"y":298,"on":true},{"x":211,"y":298,"on":true},{"x":211,"y":409,"on":true},{"x":211,"y":474,"on":false},{"x":233,"y":513,"on":true},{"x":244,"y":532,"on":false},{"x":274,"y":566,"on":true},{"x":326,"y":625,"on":false},{"x":326,"y":667,"on":true},{"x":326,"y":692,"on":false},{"x":314,"y":711,"on":true},{"x":304,"y":728,"on":false},{"x":288,"y":737,"on":true},{"x":270,"y":747,"on":false},{"x":246,"y":747,"on":true},{"x":219,"y":747,"on":false},{"x":201,"y":736,"on":true},{"x":186,"y":727,"on":false},{"x":177,"y":712,"on":true},{"x":170,"y":699,"on":false},{"x":168,"y":685,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,33,39,1,1,2,1,74,0,1,2,1,132,0,0,2,2,0,87,0,0,0,2,95,0,2,0,2,79,44,28,37,3,9,23,43,177,6,0,68] + "instructions": "sQZkREAhJwEBAgFKAAECAYQAAAICAFcAAAACXwACAAJPLBwlAwkXK7EGAEQ=" }, "uni02C1": { "name": "uni02C1", "advanceWidth": 500, "contours": [[{"x":96,"y":667,"on":true},{"x":96,"y":711,"on":false},{"x":117,"y":747,"on":true},{"x":135,"y":779,"on":false},{"x":167,"y":797,"on":true},{"x":203,"y":818,"on":false},{"x":254,"y":818,"on":true},{"x":307,"y":818,"on":false},{"x":344,"y":797,"on":true},{"x":374,"y":780,"on":false},{"x":392,"y":749,"on":true},{"x":404,"y":728,"on":false},{"x":408,"y":704,"on":true},{"x":332,"y":685,"on":true},{"x":331,"y":699,"on":false},{"x":323,"y":712,"on":true},{"x":314,"y":727,"on":false},{"x":299,"y":736,"on":true},{"x":280,"y":747,"on":false},{"x":254,"y":747,"on":true},{"x":230,"y":747,"on":false},{"x":212,"y":737,"on":true},{"x":196,"y":728,"on":false},{"x":186,"y":711,"on":true},{"x":175,"y":691,"on":false},{"x":174,"y":667,"on":true},{"x":174,"y":625,"on":false},{"x":226,"y":566,"on":true},{"x":256,"y":532,"on":false},{"x":267,"y":513,"on":true},{"x":289,"y":474,"on":false},{"x":289,"y":409,"on":true},{"x":289,"y":298,"on":true},{"x":211,"y":298,"on":true},{"x":211,"y":409,"on":true},{"x":211,"y":472,"on":false},{"x":159,"y":529,"on":true},{"x":131,"y":559,"on":false},{"x":119,"y":581,"on":true},{"x":96,"y":621,"on":false}]], "references": [], - "instructions": [177,6,100,68,64,34,13,12,2,2,1,1,74,0,2,1,2,132,0,0,1,1,0,87,0,0,0,1,95,0,1,0,1,79,28,43,37,3,9,23,43,177,6,0,68] + "instructions": "sQZkREAiDQwCAgEBSgACAQKEAAABAQBXAAAAAV8AAQABTxwrJQMJFyuxBgBE" }, "uni02E0": { "name": "uni02E0", "advanceWidth": 500, "contours": [[{"x":90,"y":669,"on":true},{"x":170,"y":669,"on":true},{"x":217,"y":580,"on":false},{"x":250,"y":506,"on":true},{"x":283,"y":580,"on":false},{"x":330,"y":669,"on":true},{"x":410,"y":669,"on":true},{"x":329,"y":526,"on":false},{"x":285,"y":421,"on":true},{"x":330,"y":302,"on":false},{"x":330,"y":233,"on":true},{"x":330,"y":208,"on":false},{"x":321,"y":190,"on":true},{"x":312,"y":174,"on":false},{"x":295,"y":165,"on":true},{"x":276,"y":154,"on":false},{"x":250,"y":154,"on":true},{"x":212,"y":154,"on":false},{"x":190,"y":176,"on":true},{"x":184,"y":182,"on":false},{"x":179,"y":190,"on":true},{"x":169,"y":207,"on":false},{"x":170,"y":233,"on":true},{"x":170,"y":302,"on":false},{"x":215,"y":421,"on":true},{"x":172,"y":526,"on":false}],[{"x":236,"y":233,"on":true},{"x":236,"y":214,"on":false},{"x":264,"y":214,"on":false},{"x":264,"y":233,"on":true},{"x":264,"y":271,"on":false},{"x":250,"y":322,"on":true},{"x":236,"y":271,"on":false}]], "references": [], - "instructions": [64,33,31,24,8,3,4,3,0,1,74,1,1,0,0,107,75,0,3,3,2,95,0,2,2,109,2,76,26,41,20,16,4,11,24,43] + "instructions": "QCEfGAgDBAMAAUoBAQAAa0sAAwMCXwACAm0CTBopFBAECxgr" }, "uni02E1": { "name": "uni02E1", "advanceWidth": 500, "contours": [[{"x":128,"y":298,"on":true},{"x":128,"y":370,"on":true},{"x":215,"y":370,"on":true},{"x":215,"y":740,"on":true},{"x":137,"y":740,"on":true},{"x":137,"y":812,"on":true},{"x":295,"y":812,"on":true},{"x":295,"y":370,"on":true},{"x":372,"y":370,"on":true},{"x":372,"y":298,"on":true}]], "references": [], - "instructions": [64,36,0,1,1,2,93,0,2,2,104,75,3,1,0,0,4,93,5,1,4,4,105,4,76,0,0,0,9,0,9,17,17,17,17,6,11,24,43] + "instructions": "QCQAAQECXQACAmhLAwEAAARdBQEEBGkETAAAAAkACREREREGCxgr" }, "uni02E2": { "name": "uni02E2", "advanceWidth": 500, "contours": [[{"x":94,"y":375,"on":true},{"x":167,"y":405,"on":true},{"x":172,"y":396,"on":false},{"x":179,"y":388,"on":true},{"x":203,"y":364,"on":false},{"x":248,"y":364,"on":true},{"x":298,"y":364,"on":false},{"x":317,"y":383,"on":true},{"x":325,"y":391,"on":false},{"x":325,"y":403,"on":true},{"x":325,"y":416,"on":false},{"x":314,"y":426,"on":true},{"x":296,"y":444,"on":false},{"x":241,"y":444,"on":true},{"x":184,"y":445,"on":false},{"x":153,"y":463,"on":true},{"x":127,"y":478,"on":false},{"x":111,"y":505,"on":true},{"x":95,"y":533,"on":false},{"x":95,"y":564,"on":true},{"x":95,"y":591,"on":false},{"x":107,"y":613,"on":true},{"x":120,"y":636,"on":false},{"x":147,"y":651,"on":true},{"x":188,"y":675,"on":false},{"x":252,"y":675,"on":true},{"x":311,"y":675,"on":false},{"x":350,"y":652,"on":true},{"x":388,"y":630,"on":false},{"x":406,"y":592,"on":true},{"x":333,"y":562,"on":true},{"x":328,"y":571,"on":false},{"x":321,"y":579,"on":true},{"x":297,"y":603,"on":false},{"x":252,"y":603,"on":true},{"x":202,"y":603,"on":false},{"x":183,"y":584,"on":true},{"x":175,"y":576,"on":false},{"x":175,"y":564,"on":true},{"x":175,"y":551,"on":false},{"x":186,"y":541,"on":true},{"x":204,"y":523,"on":false},{"x":259,"y":523,"on":true},{"x":316,"y":522,"on":false},{"x":347,"y":504,"on":true},{"x":373,"y":489,"on":false},{"x":389,"y":462,"on":true},{"x":405,"y":434,"on":false},{"x":405,"y":403,"on":true},{"x":405,"y":376,"on":false},{"x":393,"y":354,"on":true},{"x":380,"y":331,"on":false},{"x":353,"y":316,"on":true},{"x":312,"y":292,"on":false},{"x":248,"y":292,"on":true},{"x":189,"y":292,"on":false},{"x":150,"y":315,"on":true},{"x":112,"y":337,"on":false}]], "references": [], - "instructions": [64,49,30,29,2,4,3,1,1,0,1,2,74,0,4,0,1,0,4,1,103,0,3,3,2,95,0,2,2,115,75,0,0,0,5,95,0,5,5,113,5,76,42,38,39,42,38,36,6,11,26,43] + "instructions": "QDEeHQIEAwEBAAECSgAEAAEABAFnAAMDAl8AAgJzSwAAAAVfAAUFcQVMKiYnKiYkBgsaKw==" }, "uni02E3": { "name": "uni02E3", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":302,"on":true},{"x":96,"y":338,"on":false},{"x":149,"y":411,"on":true},{"x":202,"y":484,"on":true},{"x":149,"y":556,"on":true},{"x":96,"y":629,"on":false},{"x":96,"y":665,"on":true},{"x":96,"y":669,"on":true},{"x":176,"y":669,"on":true},{"x":176,"y":665,"on":true},{"x":176,"y":650,"on":false},{"x":214,"y":599,"on":true},{"x":250,"y":549,"on":true},{"x":286,"y":599,"on":true},{"x":324,"y":651,"on":false},{"x":324,"y":665,"on":true},{"x":324,"y":669,"on":true},{"x":404,"y":669,"on":true},{"x":404,"y":665,"on":true},{"x":404,"y":629,"on":false},{"x":351,"y":556,"on":true},{"x":298,"y":484,"on":true},{"x":351,"y":411,"on":true},{"x":404,"y":338,"on":false},{"x":404,"y":302,"on":true},{"x":404,"y":298,"on":true},{"x":324,"y":298,"on":true},{"x":324,"y":302,"on":true},{"x":324,"y":317,"on":false},{"x":286,"y":368,"on":true},{"x":250,"y":418,"on":true},{"x":214,"y":368,"on":true},{"x":176,"y":316,"on":false},{"x":176,"y":302,"on":true},{"x":176,"y":298,"on":true}]], "references": [], - "instructions": [64,35,31,22,13,4,4,2,0,1,74,1,1,0,0,107,75,4,3,2,2,2,105,2,76,0,0,0,35,0,34,39,39,39,5,11,23,43] + "instructions": "QCMfFg0EBAIAAUoBAQAAa0sEAwICAmkCTAAAACMAIicnJwULFys=" }, "uni02E4": { "name": "uni02E4", "advanceWidth": 500, "contours": [[{"x":96,"y":667,"on":true},{"x":96,"y":712,"on":false},{"x":117,"y":747,"on":true},{"x":135,"y":779,"on":false},{"x":167,"y":797,"on":true},{"x":203,"y":818,"on":false},{"x":254,"y":818,"on":true},{"x":307,"y":818,"on":false},{"x":344,"y":797,"on":true},{"x":374,"y":780,"on":false},{"x":392,"y":749,"on":true},{"x":404,"y":728,"on":false},{"x":408,"y":704,"on":true},{"x":330,"y":685,"on":true},{"x":329,"y":699,"on":false},{"x":322,"y":712,"on":true},{"x":313,"y":727,"on":false},{"x":299,"y":735,"on":true},{"x":280,"y":746,"on":false},{"x":254,"y":746,"on":true},{"x":230,"y":746,"on":false},{"x":213,"y":736,"on":true},{"x":197,"y":727,"on":false},{"x":187,"y":711,"on":true},{"x":176,"y":691,"on":false},{"x":176,"y":667,"on":true},{"x":176,"y":625,"on":false},{"x":227,"y":566,"on":true},{"x":256,"y":533,"on":false},{"x":268,"y":514,"on":true},{"x":290,"y":475,"on":false},{"x":290,"y":409,"on":true},{"x":290,"y":298,"on":true},{"x":210,"y":298,"on":true},{"x":210,"y":409,"on":true},{"x":210,"y":472,"on":false},{"x":159,"y":529,"on":true},{"x":132,"y":559,"on":false},{"x":119,"y":581,"on":true},{"x":96,"y":621,"on":false}]], "references": [], - "instructions": [64,29,13,12,2,2,1,1,74,0,1,1,0,95,0,0,0,112,75,0,2,2,105,2,76,28,43,37,3,11,23,43] + "instructions": "QB0NDAICAQFKAAEBAF8AAABwSwACAmkCTBwrJQMLFys=" }, "uni2071": { "name": "uni2071", "advanceWidth": 500, "contours": [[{"x":128,"y":298,"on":true},{"x":128,"y":370,"on":true},{"x":215,"y":370,"on":true},{"x":215,"y":597,"on":true},{"x":137,"y":597,"on":true},{"x":137,"y":669,"on":true},{"x":295,"y":669,"on":true},{"x":295,"y":370,"on":true},{"x":372,"y":370,"on":true},{"x":372,"y":298,"on":true}],[{"x":206,"y":757,"on":false},{"x":206,"y":798,"on":false},{"x":230,"y":821,"on":false},{"x":270,"y":821,"on":false},{"x":294,"y":798,"on":false},{"x":294,"y":757,"on":false},{"x":270,"y":734,"on":false},{"x":230,"y":734,"on":false}]], "references": [], - "instructions": [64,50,0,6,6,5,95,0,5,5,114,75,0,1,1,2,93,0,2,2,107,75,3,1,0,0,4,93,7,1,4,4,105,4,76,0,0,17,16,13,12,0,9,0,9,17,17,17,17,8,11,24,43] + "instructions": "QDIABgYFXwAFBXJLAAEBAl0AAgJrSwMBAAAEXQcBBARpBEwAABEQDQwACQAJEREREQgLGCs=" }, "uni207F": { "name": "uni207F", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":669,"on":true},{"x":176,"y":669,"on":true},{"x":176,"y":620,"on":true},{"x":192,"y":645,"on":false},{"x":216,"y":660,"on":true},{"x":242,"y":675,"on":false},{"x":311,"y":675,"on":false},{"x":337,"y":660,"on":true},{"x":364,"y":644,"on":false},{"x":381,"y":615,"on":true},{"x":404,"y":575,"on":false},{"x":404,"y":515,"on":true},{"x":404,"y":298,"on":true},{"x":324,"y":298,"on":true},{"x":324,"y":515,"on":true},{"x":324,"y":547,"on":false},{"x":312,"y":568,"on":true},{"x":302,"y":585,"on":false},{"x":271,"y":603,"on":false},{"x":229,"y":603,"on":false},{"x":198,"y":585,"on":false},{"x":188,"y":568,"on":true},{"x":176,"y":547,"on":false},{"x":176,"y":515,"on":true},{"x":176,"y":298,"on":true}]], "references": [], - "instructions": [181,3,1,3,0,1,74,75,176,38,80,88,64,19,0,3,3,0,95,1,1,0,0,107,75,5,4,2,2,2,105,2,76,27,64,23,0,0,0,107,75,0,3,3,1,95,0,1,1,115,75,5,4,2,2,2,105,2,76,89,64,13,0,0,0,25,0,25,21,22,20,17,6,11,24,43] + "instructions": "tQMBAwABSkuwJlBYQBMAAwMAXwEBAABrSwUEAgICaQJMG0AXAAAAa0sAAwMBXwABAXNLBQQCAgJpAkxZQA0AAAAZABkVFhQRBgsYKw==" }, "uni1D43": { "name": "uni1D43", "advanceWidth": 500, "contours": [[{"x":90,"y":407,"on":true},{"x":90,"y":438,"on":false},{"x":104,"y":461,"on":true},{"x":119,"y":487,"on":false},{"x":148,"y":505,"on":true},{"x":193,"y":531,"on":false},{"x":265,"y":531,"on":true},{"x":324,"y":531,"on":true},{"x":324,"y":556,"on":true},{"x":324,"y":572,"on":false},{"x":313,"y":583,"on":true},{"x":293,"y":603,"on":false},{"x":248,"y":603,"on":true},{"x":207,"y":603,"on":false},{"x":186,"y":581,"on":true},{"x":174,"y":569,"on":false},{"x":170,"y":555,"on":true},{"x":94,"y":578,"on":true},{"x":98,"y":592,"on":false},{"x":106,"y":605,"on":true},{"x":124,"y":636,"on":false},{"x":154,"y":653,"on":true},{"x":191,"y":674,"on":false},{"x":248,"y":675,"on":true},{"x":308,"y":675,"on":false},{"x":348,"y":652,"on":true},{"x":376,"y":636,"on":false},{"x":391,"y":610,"on":true},{"x":404,"y":587,"on":false},{"x":404,"y":556,"on":true},{"x":404,"y":298,"on":true},{"x":324,"y":298,"on":true},{"x":324,"y":344,"on":true},{"x":309,"y":323,"on":false},{"x":286,"y":310,"on":true},{"x":256,"y":292,"on":false},{"x":215,"y":292,"on":true},{"x":173,"y":292,"on":false},{"x":144,"y":309,"on":true},{"x":119,"y":323,"on":false},{"x":105,"y":347,"on":true},{"x":90,"y":373,"on":false}],[{"x":170,"y":408,"on":true},{"x":170,"y":393,"on":false},{"x":181,"y":383,"on":true},{"x":200,"y":364,"on":false},{"x":241,"y":364,"on":true},{"x":270,"y":364,"on":false},{"x":290,"y":376,"on":true},{"x":324,"y":395,"on":false},{"x":324,"y":437,"on":true},{"x":324,"y":459,"on":true},{"x":265,"y":459,"on":true},{"x":205,"y":459,"on":false},{"x":182,"y":435,"on":true},{"x":171,"y":424,"on":false}]], "references": [], - "instructions": [64,11,17,16,2,0,1,32,1,3,5,2,74,75,176,38,80,88,64,30,0,0,0,6,5,0,6,103,0,1,1,2,95,0,2,2,115,75,0,5,5,3,95,4,1,3,3,105,3,76,27,64,34,0,0,0,6,5,0,6,103,0,1,1,2,95,0,2,2,115,75,0,3,3,105,75,0,5,5,4,95,0,4,4,113,4,76,89,64,10,36,40,36,22,41,36,37,7,11,27,43] + "instructions": "QAsREAIAASABAwUCSkuwJlBYQB4AAAAGBQAGZwABAQJfAAICc0sABQUDXwQBAwNpA0wbQCIAAAAGBQAGZwABAQJfAAICc0sAAwNpSwAFBQRfAAQEcQRMWUAKJCgkFikkJQcLGys=" }, "uni1D44": { "name": "uni1D44", "advanceWidth": 500, "contours": [[{"x":96,"y":411,"on":true},{"x":96,"y":669,"on":true},{"x":176,"y":669,"on":true},{"x":176,"y":623,"on":true},{"x":191,"y":644,"on":false},{"x":214,"y":657,"on":true},{"x":244,"y":675,"on":false},{"x":285,"y":675,"on":true},{"x":327,"y":675,"on":false},{"x":356,"y":658,"on":true},{"x":381,"y":644,"on":false},{"x":395,"y":620,"on":true},{"x":410,"y":594,"on":false},{"x":410,"y":560,"on":true},{"x":410,"y":529,"on":false},{"x":396,"y":506,"on":true},{"x":381,"y":480,"on":false},{"x":352,"y":462,"on":true},{"x":307,"y":436,"on":false},{"x":235,"y":436,"on":true},{"x":176,"y":436,"on":true},{"x":176,"y":411,"on":true},{"x":176,"y":395,"on":false},{"x":187,"y":384,"on":true},{"x":207,"y":364,"on":false},{"x":252,"y":364,"on":true},{"x":293,"y":364,"on":false},{"x":314,"y":386,"on":true},{"x":326,"y":398,"on":false},{"x":330,"y":412,"on":true},{"x":406,"y":389,"on":true},{"x":402,"y":375,"on":false},{"x":394,"y":362,"on":true},{"x":376,"y":331,"on":false},{"x":346,"y":314,"on":true},{"x":309,"y":293,"on":false},{"x":252,"y":292,"on":true},{"x":192,"y":292,"on":false},{"x":152,"y":315,"on":true},{"x":124,"y":331,"on":false},{"x":109,"y":357,"on":true},{"x":96,"y":380,"on":false}],[{"x":176,"y":508,"on":true},{"x":235,"y":508,"on":true},{"x":295,"y":508,"on":false},{"x":318,"y":532,"on":true},{"x":329,"y":543,"on":false},{"x":330,"y":559,"on":true},{"x":330,"y":574,"on":false},{"x":319,"y":584,"on":true},{"x":300,"y":603,"on":false},{"x":259,"y":603,"on":true},{"x":230,"y":603,"on":false},{"x":210,"y":591,"on":true},{"x":176,"y":572,"on":false},{"x":176,"y":530,"on":true}]], "references": [], - "instructions": [64,11,3,1,6,0,30,29,2,3,2,2,74,75,176,38,80,88,64,30,0,5,0,2,3,5,2,103,0,6,6,0,95,1,1,0,0,107,75,0,3,3,4,95,0,4,4,113,4,76,27,64,34,0,5,0,2,3,5,2,103,0,0,0,107,75,0,6,6,1,95,0,1,1,115,75,0,3,3,4,95,0,4,4,113,4,76,89,64,10,38,37,41,36,42,36,17,7,11,27,43] + "instructions": "QAsDAQYAHh0CAwICSkuwJlBYQB4ABQACAwUCZwAGBgBfAQEAAGtLAAMDBF8ABARxBEwbQCIABQACAwUCZwAAAGtLAAYGAV8AAQFzSwADAwRfAAQEcQRMWUAKJiUpJCokEQcLGys=" }, "uni1D45": { "name": "uni1D45", "advanceWidth": 500, "contours": [[{"x":90,"y":452,"on":true},{"x":90,"y":515,"on":true},{"x":90,"y":573,"on":false},{"x":113,"y":613,"on":true},{"x":130,"y":643,"on":false},{"x":186,"y":675,"on":false},{"x":223,"y":675,"on":true},{"x":258,"y":675,"on":false},{"x":284,"y":660,"on":true},{"x":308,"y":646,"on":false},{"x":324,"y":620,"on":true},{"x":324,"y":633,"on":true},{"x":404,"y":675,"on":true},{"x":404,"y":298,"on":true},{"x":324,"y":298,"on":true},{"x":324,"y":347,"on":true},{"x":308,"y":322,"on":false},{"x":284,"y":307,"on":true},{"x":258,"y":292,"on":false},{"x":223,"y":292,"on":true},{"x":186,"y":292,"on":false},{"x":130,"y":324,"on":false},{"x":113,"y":354,"on":true},{"x":90,"y":393,"on":false}],[{"x":170,"y":452,"on":true},{"x":170,"y":422,"on":false},{"x":182,"y":401,"on":true},{"x":203,"y":364,"on":false},{"x":250,"y":364,"on":true},{"x":271,"y":364,"on":false},{"x":302,"y":382,"on":false},{"x":312,"y":399,"on":true},{"x":324,"y":420,"on":false},{"x":324,"y":452,"on":true},{"x":324,"y":515,"on":true},{"x":324,"y":547,"on":false},{"x":312,"y":568,"on":true},{"x":302,"y":585,"on":false},{"x":271,"y":603,"on":false},{"x":250,"y":603,"on":true},{"x":204,"y":603,"on":false},{"x":182,"y":566,"on":true},{"x":170,"y":545,"on":false},{"x":170,"y":515,"on":true}]], "references": [], - "instructions": [64,15,11,10,2,4,0,15,1,1,3,2,74,12,1,0,72,75,176,38,80,88,64,22,0,4,4,0,95,0,0,0,115,75,0,3,3,1,95,2,1,1,1,105,1,76,27,64,26,0,4,4,0,95,0,0,0,115,75,0,1,1,105,75,0,3,3,2,95,0,2,2,113,2,76,89,183,41,39,36,22,37,5,11,25,43] + "instructions": "QA8LCgIEAA8BAQMCSgwBAEhLsCZQWEAWAAQEAF8AAABzSwADAwFfAgEBAWkBTBtAGgAEBABfAAAAc0sAAQFpSwADAwJfAAICcQJMWbcpJyQWJQULGSs=" }, "uni1D46": { "name": "uni1D46", "advanceWidth": 500, "contours": [[{"x":81,"y":578,"on":true},{"x":81,"y":579,"on":false},{"x":81,"y":580,"on":true},{"x":81,"y":606,"on":false},{"x":94,"y":628,"on":true},{"x":106,"y":648,"on":false},{"x":126,"y":660,"on":true},{"x":150,"y":674,"on":false},{"x":220,"y":675,"on":false},{"x":245,"y":660,"on":true},{"x":247,"y":659,"on":false},{"x":250,"y":658,"on":true},{"x":253,"y":660,"on":false},{"x":255,"y":661,"on":true},{"x":279,"y":675,"on":false},{"x":312,"y":675,"on":true},{"x":344,"y":675,"on":false},{"x":366,"y":662,"on":true},{"x":387,"y":650,"on":false},{"x":400,"y":628,"on":true},{"x":415,"y":602,"on":false},{"x":415,"y":565,"on":true},{"x":415,"y":527,"on":false},{"x":399,"y":500,"on":true},{"x":384,"y":473,"on":false},{"x":328,"y":441,"on":false},{"x":290,"y":437,"on":true},{"x":290,"y":390,"on":true},{"x":290,"y":376,"on":false},{"x":297,"y":370,"on":true},{"x":303,"y":364,"on":false},{"x":312,"y":364,"on":true},{"x":317,"y":364,"on":false},{"x":321,"y":366,"on":true},{"x":334,"y":374,"on":false},{"x":334,"y":397,"on":true},{"x":413,"y":389,"on":true},{"x":413,"y":388,"on":false},{"x":413,"y":387,"on":true},{"x":413,"y":360,"on":false},{"x":400,"y":338,"on":true},{"x":388,"y":318,"on":false},{"x":369,"y":306,"on":true},{"x":345,"y":292,"on":false},{"x":278,"y":292,"on":false},{"x":255,"y":306,"on":true},{"x":252,"y":308,"on":false},{"x":250,"y":309,"on":true},{"x":248,"y":307,"on":false},{"x":245,"y":306,"on":true},{"x":221,"y":292,"on":false},{"x":153,"y":292,"on":false},{"x":130,"y":306,"on":true},{"x":109,"y":318,"on":false},{"x":98,"y":338,"on":true},{"x":85,"y":360,"on":false},{"x":85,"y":390,"on":true},{"x":85,"y":520,"on":true},{"x":210,"y":520,"on":true},{"x":210,"y":577,"on":true},{"x":210,"y":590,"on":false},{"x":203,"y":596,"on":true},{"x":196,"y":603,"on":false},{"x":185,"y":603,"on":true},{"x":175,"y":603,"on":false},{"x":170,"y":597,"on":true},{"x":161,"y":588,"on":false},{"x":160,"y":570,"on":true},{"x":160,"y":569,"on":true}],[{"x":164,"y":390,"on":true},{"x":164,"y":377,"on":false},{"x":172,"y":370,"on":true},{"x":178,"y":364,"on":false},{"x":197,"y":364,"on":false},{"x":203,"y":370,"on":true},{"x":210,"y":377,"on":false},{"x":210,"y":390,"on":true},{"x":210,"y":448,"on":true},{"x":164,"y":448,"on":true}],[{"x":290,"y":510,"on":true},{"x":309,"y":514,"on":false},{"x":321,"y":526,"on":true},{"x":336,"y":541,"on":false},{"x":336,"y":565,"on":true},{"x":336,"y":587,"on":false},{"x":326,"y":598,"on":true},{"x":321,"y":603,"on":false},{"x":303,"y":603,"on":false},{"x":297,"y":597,"on":true},{"x":290,"y":590,"on":false},{"x":290,"y":577,"on":true}]], "references": [], - "instructions": [64,75,9,1,7,0,67,0,2,6,7,79,1,9,6,36,35,26,3,2,9,4,74,0,6,0,9,2,6,9,101,10,1,7,7,0,95,1,1,0,0,115,75,0,4,4,105,75,8,1,2,2,3,95,5,1,3,3,113,3,76,87,86,78,77,24,36,22,17,65,28,30,38,23,11,11,29,43] + "instructions": "QEsJAQcAQwACBgdPAQkGJCMaAwIJBEoABgAJAgYJZQoBBwcAXwEBAABzSwAEBGlLCAECAgNfBQEDA3EDTFdWTk0YJBYRQRweJhcLCx0r" }, "uni1D47": { "name": "uni1D47", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":812,"on":true},{"x":176,"y":812,"on":true},{"x":176,"y":620,"on":true},{"x":192,"y":645,"on":false},{"x":216,"y":660,"on":true},{"x":242,"y":675,"on":false},{"x":277,"y":675,"on":true},{"x":314,"y":675,"on":false},{"x":370,"y":643,"on":false},{"x":387,"y":613,"on":true},{"x":410,"y":574,"on":false},{"x":410,"y":515,"on":true},{"x":410,"y":452,"on":true},{"x":410,"y":394,"on":false},{"x":387,"y":354,"on":true},{"x":370,"y":324,"on":false},{"x":314,"y":292,"on":false},{"x":277,"y":292,"on":true},{"x":242,"y":292,"on":false},{"x":216,"y":307,"on":true},{"x":192,"y":321,"on":false},{"x":176,"y":347,"on":true},{"x":176,"y":298,"on":true}],[{"x":176,"y":452,"on":true},{"x":176,"y":420,"on":false},{"x":188,"y":399,"on":true},{"x":198,"y":382,"on":false},{"x":229,"y":364,"on":false},{"x":250,"y":364,"on":true},{"x":296,"y":364,"on":false},{"x":318,"y":401,"on":true},{"x":330,"y":422,"on":false},{"x":330,"y":452,"on":true},{"x":330,"y":515,"on":true},{"x":330,"y":545,"on":false},{"x":318,"y":566,"on":true},{"x":297,"y":603,"on":false},{"x":250,"y":603,"on":true},{"x":229,"y":603,"on":false},{"x":198,"y":585,"on":false},{"x":188,"y":568,"on":true},{"x":176,"y":547,"on":false},{"x":176,"y":515,"on":true}]], "references": [], - "instructions": [75,176,38,80,88,64,10,3,1,5,1,22,1,2,4,2,74,27,64,10,3,1,5,1,22,1,3,4,2,74,89,75,176,38,80,88,64,28,0,0,0,104,75,0,5,5,1,95,0,1,1,115,75,0,4,4,2,95,6,3,2,2,2,113,2,76,27,64,32,0,0,0,104,75,0,5,5,1,95,0,1,1,115,75,6,1,3,3,105,75,0,4,4,2,95,0,2,2,113,2,76,89,64,16,0,0,39,37,30,28,0,23,0,23,41,36,17,7,11,23,43] + "instructions": "S7AmUFhACgMBBQEWAQIEAkobQAoDAQUBFgEDBAJKWUuwJlBYQBwAAABoSwAFBQFfAAEBc0sABAQCXwYDAgICcQJMG0AgAAAAaEsABQUBXwABAXNLBgEDA2lLAAQEAl8AAgJxAkxZQBAAACclHhwAFwAXKSQRBwsXKw==" }, "uni1D48": { "name": "uni1D48", "advanceWidth": 500, "contours": [[{"x":90,"y":452,"on":true},{"x":90,"y":515,"on":true},{"x":90,"y":573,"on":false},{"x":113,"y":613,"on":true},{"x":130,"y":643,"on":false},{"x":186,"y":675,"on":false},{"x":223,"y":675,"on":true},{"x":258,"y":675,"on":false},{"x":284,"y":660,"on":true},{"x":308,"y":646,"on":false},{"x":324,"y":620,"on":true},{"x":324,"y":812,"on":true},{"x":404,"y":812,"on":true},{"x":404,"y":298,"on":true},{"x":324,"y":298,"on":true},{"x":324,"y":347,"on":true},{"x":308,"y":322,"on":false},{"x":284,"y":307,"on":true},{"x":258,"y":292,"on":false},{"x":223,"y":292,"on":true},{"x":186,"y":292,"on":false},{"x":130,"y":324,"on":false},{"x":113,"y":354,"on":true},{"x":90,"y":393,"on":false}],[{"x":170,"y":452,"on":true},{"x":170,"y":422,"on":false},{"x":182,"y":401,"on":true},{"x":203,"y":364,"on":false},{"x":250,"y":364,"on":true},{"x":271,"y":364,"on":false},{"x":302,"y":382,"on":false},{"x":312,"y":399,"on":true},{"x":324,"y":420,"on":false},{"x":324,"y":452,"on":true},{"x":324,"y":515,"on":true},{"x":324,"y":547,"on":false},{"x":312,"y":568,"on":true},{"x":302,"y":585,"on":false},{"x":271,"y":603,"on":false},{"x":250,"y":603,"on":true},{"x":204,"y":603,"on":false},{"x":182,"y":566,"on":true},{"x":170,"y":545,"on":false},{"x":170,"y":515,"on":true}]], "references": [], - "instructions": [64,10,10,1,5,0,15,1,2,4,2,74,75,176,38,80,88,64,27,0,1,1,104,75,0,5,5,0,95,0,0,0,115,75,0,4,4,2,95,3,1,2,2,105,2,76,27,64,31,0,1,1,104,75,0,5,5,0,95,0,0,0,115,75,0,2,2,105,75,0,4,4,3,95,0,3,3,113,3,76,89,64,9,41,39,36,17,20,37,6,11,26,43] + "instructions": "QAoKAQUADwECBAJKS7AmUFhAGwABAWhLAAUFAF8AAABzSwAEBAJfAwECAmkCTBtAHwABAWhLAAUFAF8AAABzSwACAmlLAAQEA18AAwNxA0xZQAkpJyQRFCUGCxor" }, "uni1D49": { "name": "uni1D49", "advanceWidth": 500, "contours": [[{"x":90,"y":452,"on":true},{"x":90,"y":515,"on":true},{"x":90,"y":566,"on":false},{"x":112,"y":603,"on":true},{"x":130,"y":635,"on":false},{"x":162,"y":654,"on":true},{"x":198,"y":675,"on":false},{"x":301,"y":675,"on":false},{"x":338,"y":654,"on":true},{"x":370,"y":635,"on":false},{"x":388,"y":603,"on":true},{"x":409,"y":566,"on":false},{"x":410,"y":515,"on":true},{"x":410,"y":448,"on":true},{"x":170,"y":448,"on":true},{"x":171,"y":422,"on":false},{"x":182,"y":403,"on":true},{"x":192,"y":386,"on":false},{"x":210,"y":375,"on":true},{"x":229,"y":364,"on":false},{"x":255,"y":364,"on":true},{"x":295,"y":364,"on":false},{"x":319,"y":387,"on":true},{"x":332,"y":400,"on":false},{"x":336,"y":416,"on":true},{"x":410,"y":389,"on":true},{"x":406,"y":377,"on":false},{"x":399,"y":365,"on":true},{"x":381,"y":333,"on":false},{"x":349,"y":314,"on":true},{"x":311,"y":292,"on":false},{"x":255,"y":292,"on":true},{"x":201,"y":292,"on":false},{"x":163,"y":315,"on":true},{"x":130,"y":334,"on":false},{"x":111,"y":366,"on":true},{"x":90,"y":402,"on":false}],[{"x":170,"y":520,"on":true},{"x":330,"y":520,"on":true},{"x":329,"y":547,"on":false},{"x":318,"y":566,"on":true},{"x":297,"y":603,"on":false},{"x":250,"y":603,"on":true},{"x":226,"y":603,"on":false},{"x":192,"y":583,"on":false},{"x":182,"y":566,"on":true},{"x":171,"y":547,"on":false}]], "references": [], - "instructions": [64,45,25,24,2,2,1,1,74,0,4,0,1,2,4,1,101,0,5,5,0,95,0,0,0,115,75,0,2,2,3,95,0,3,3,113,3,76,35,21,41,37,22,22,6,11,26,43] + "instructions": "QC0ZGAICAQFKAAQAAQIEAWUABQUAXwAAAHNLAAICA18AAwNxA0wjFSklFhYGCxor" }, "uni1D4A": { "name": "uni1D4A", "advanceWidth": 500, "contours": [[{"x":90,"y":452,"on":true},{"x":90,"y":520,"on":true},{"x":330,"y":520,"on":true},{"x":329,"y":546,"on":false},{"x":318,"y":564,"on":true},{"x":308,"y":581,"on":false},{"x":290,"y":592,"on":true},{"x":271,"y":603,"on":false},{"x":245,"y":603,"on":true},{"x":205,"y":603,"on":false},{"x":181,"y":580,"on":true},{"x":168,"y":567,"on":false},{"x":164,"y":551,"on":true},{"x":90,"y":578,"on":true},{"x":94,"y":590,"on":false},{"x":101,"y":602,"on":true},{"x":119,"y":634,"on":false},{"x":151,"y":653,"on":true},{"x":189,"y":675,"on":false},{"x":245,"y":675,"on":true},{"x":299,"y":675,"on":false},{"x":337,"y":652,"on":true},{"x":370,"y":633,"on":false},{"x":389,"y":601,"on":true},{"x":410,"y":565,"on":false},{"x":410,"y":515,"on":true},{"x":410,"y":452,"on":true},{"x":410,"y":401,"on":false},{"x":388,"y":364,"on":true},{"x":370,"y":332,"on":false},{"x":338,"y":313,"on":true},{"x":302,"y":292,"on":false},{"x":199,"y":292,"on":false},{"x":162,"y":313,"on":true},{"x":130,"y":332,"on":false},{"x":112,"y":364,"on":true},{"x":91,"y":401,"on":false}],[{"x":170,"y":448,"on":true},{"x":171,"y":421,"on":false},{"x":182,"y":401,"on":true},{"x":203,"y":364,"on":false},{"x":250,"y":364,"on":true},{"x":274,"y":364,"on":false},{"x":308,"y":384,"on":false},{"x":318,"y":401,"on":true},{"x":329,"y":421,"on":false},{"x":330,"y":448,"on":true}]], "references": [], - "instructions": [64,51,13,12,2,0,1,1,74,0,0,6,1,5,4,0,5,101,0,1,1,2,95,0,2,2,115,75,0,4,4,3,95,0,3,3,113,3,76,37,37,37,46,37,46,40,27,41,37,17,7,11,25,43] + "instructions": "QDMNDAIAAQFKAAAGAQUEAAVlAAEBAl8AAgJzSwAEBANfAAMDcQNMJSUlLiUuKBspJREHCxkr" }, "uni1D4B": { "name": "uni1D4B", "advanceWidth": 500, "contours": [[{"x":85,"y":409,"on":true},{"x":85,"y":432,"on":false},{"x":95,"y":448,"on":true},{"x":107,"y":469,"on":false},{"x":132,"y":483,"on":true},{"x":140,"y":488,"on":false},{"x":149,"y":492,"on":true},{"x":144,"y":494,"on":false},{"x":139,"y":497,"on":true},{"x":116,"y":510,"on":false},{"x":105,"y":529,"on":true},{"x":96,"y":545,"on":false},{"x":96,"y":566,"on":true},{"x":96,"y":592,"on":false},{"x":108,"y":613,"on":true},{"x":121,"y":636,"on":false},{"x":148,"y":652,"on":true},{"x":188,"y":675,"on":false},{"x":250,"y":675,"on":true},{"x":308,"y":675,"on":false},{"x":384,"y":631,"on":false},{"x":402,"y":592,"on":true},{"x":329,"y":562,"on":true},{"x":324,"y":572,"on":false},{"x":316,"y":580,"on":true},{"x":293,"y":603,"on":false},{"x":250,"y":603,"on":true},{"x":202,"y":603,"on":false},{"x":184,"y":584,"on":true},{"x":176,"y":576,"on":false},{"x":176,"y":554,"on":false},{"x":184,"y":546,"on":true},{"x":203,"y":527,"on":false},{"x":250,"y":527,"on":true},{"x":296,"y":527,"on":true},{"x":296,"y":455,"on":true},{"x":250,"y":455,"on":true},{"x":197,"y":455,"on":false},{"x":175,"y":433,"on":true},{"x":165,"y":423,"on":false},{"x":165,"y":396,"on":false},{"x":174,"y":386,"on":true},{"x":196,"y":364,"on":false},{"x":251,"y":364,"on":true},{"x":302,"y":364,"on":false},{"x":329,"y":392,"on":true},{"x":336,"y":399,"on":false},{"x":342,"y":407,"on":true},{"x":413,"y":375,"on":true},{"x":393,"y":338,"on":false},{"x":355,"y":316,"on":true},{"x":314,"y":292,"on":false},{"x":251,"y":292,"on":true},{"x":183,"y":292,"on":false},{"x":140,"y":317,"on":true},{"x":112,"y":333,"on":false},{"x":98,"y":358,"on":true},{"x":85,"y":381,"on":false}]], "references": [], - "instructions": [64,60,22,21,2,2,1,6,1,3,2,48,47,2,4,3,3,74,0,2,0,3,4,2,3,103,0,1,1,0,95,0,0,0,115,75,0,4,4,5,95,0,5,5,113,5,76,53,51,44,42,37,35,34,32,27,25,19,17,6,11,20,43] + "instructions": "QDwWFQICAQYBAwIwLwIEAwNKAAIAAwQCA2cAAQEAXwAAAHNLAAQEBV8ABQVxBUw1MywqJSMiIBsZExEGCxQr" }, "uni1D4C": { "name": "uni1D4C", "advanceWidth": 500, "contours": [[{"x":87,"y":375,"on":true},{"x":158,"y":407,"on":true},{"x":163,"y":399,"on":false},{"x":171,"y":392,"on":true},{"x":198,"y":365,"on":false},{"x":249,"y":364,"on":true},{"x":304,"y":364,"on":false},{"x":326,"y":386,"on":true},{"x":336,"y":396,"on":false},{"x":335,"y":423,"on":false},{"x":325,"y":433,"on":true},{"x":303,"y":455,"on":false},{"x":250,"y":455,"on":true},{"x":204,"y":455,"on":true},{"x":204,"y":527,"on":true},{"x":250,"y":527,"on":true},{"x":297,"y":527,"on":false},{"x":316,"y":546,"on":true},{"x":324,"y":554,"on":false},{"x":324,"y":576,"on":false},{"x":316,"y":584,"on":true},{"x":298,"y":602,"on":false},{"x":250,"y":603,"on":true},{"x":207,"y":603,"on":false},{"x":184,"y":580,"on":true},{"x":176,"y":572,"on":false},{"x":171,"y":562,"on":true},{"x":98,"y":592,"on":true},{"x":116,"y":631,"on":false},{"x":192,"y":675,"on":false},{"x":250,"y":675,"on":true},{"x":312,"y":676,"on":false},{"x":352,"y":652,"on":true},{"x":379,"y":637,"on":false},{"x":392,"y":613,"on":true},{"x":404,"y":592,"on":false},{"x":404,"y":566,"on":true},{"x":404,"y":545,"on":false},{"x":395,"y":529,"on":true},{"x":384,"y":510,"on":false},{"x":361,"y":497,"on":true},{"x":356,"y":494,"on":false},{"x":351,"y":492,"on":true},{"x":360,"y":488,"on":false},{"x":368,"y":483,"on":true},{"x":393,"y":468,"on":false},{"x":405,"y":448,"on":true},{"x":415,"y":431,"on":false},{"x":415,"y":409,"on":true},{"x":415,"y":381,"on":false},{"x":402,"y":358,"on":true},{"x":388,"y":334,"on":false},{"x":360,"y":317,"on":true},{"x":317,"y":292,"on":false},{"x":249,"y":292,"on":true},{"x":186,"y":292,"on":false},{"x":145,"y":316,"on":true},{"x":107,"y":338,"on":false}]], "references": [], - "instructions": [64,54,27,26,2,2,3,42,1,1,2,1,1,0,1,3,74,0,2,0,1,0,2,1,103,0,3,3,4,95,0,4,4,115,75,0,0,0,5,95,0,5,5,113,5,76,55,53,38,37,33,37,36,6,11,25,43] + "instructions": "QDYbGgICAyoBAQIBAQABA0oAAgABAAIBZwADAwRfAAQEc0sAAAAFXwAFBXEFTDc1JiUhJSQGCxkr" }, "uni1D4D": { "name": "uni1D4D", "advanceWidth": 500, "contours": [[{"x":87,"y":272,"on":true},{"x":87,"y":301,"on":false},{"x":100,"y":323,"on":true},{"x":108,"y":337,"on":false},{"x":120,"y":348,"on":true},{"x":117,"y":352,"on":false},{"x":114,"y":357,"on":true},{"x":104,"y":375,"on":false},{"x":104,"y":418,"on":false},{"x":115,"y":437,"on":true},{"x":121,"y":447,"on":false},{"x":129,"y":456,"on":true},{"x":115,"y":468,"on":false},{"x":106,"y":484,"on":true},{"x":91,"y":510,"on":false},{"x":90,"y":582,"on":false},{"x":106,"y":608,"on":true},{"x":122,"y":635,"on":false},{"x":150,"y":652,"on":true},{"x":189,"y":674,"on":false},{"x":247,"y":675,"on":true},{"x":276,"y":675,"on":false},{"x":300,"y":669,"on":true},{"x":415,"y":669,"on":true},{"x":415,"y":597,"on":true},{"x":393,"y":598,"on":true},{"x":403,"y":575,"on":false},{"x":403,"y":546,"on":true},{"x":403,"y":510,"on":false},{"x":388,"y":484,"on":true},{"x":372,"y":457,"on":false},{"x":343,"y":440,"on":true},{"x":304,"y":418,"on":false},{"x":247,"y":418,"on":true},{"x":212,"y":418,"on":false},{"x":183,"y":426,"on":true},{"x":182,"y":425,"on":true},{"x":175,"y":418,"on":false},{"x":175,"y":399,"on":false},{"x":182,"y":392,"on":true},{"x":192,"y":382,"on":false},{"x":244,"y":382,"on":false},{"x":270,"y":382,"on":true},{"x":325,"y":382,"on":false},{"x":362,"y":361,"on":true},{"x":387,"y":346,"on":false},{"x":401,"y":324,"on":true},{"x":414,"y":302,"on":false},{"x":413,"y":271,"on":true},{"x":413,"y":240,"on":false},{"x":399,"y":216,"on":true},{"x":384,"y":190,"on":false},{"x":355,"y":173,"on":true},{"x":313,"y":149,"on":false},{"x":187,"y":149,"on":false},{"x":145,"y":173,"on":true},{"x":116,"y":190,"on":false},{"x":101,"y":216,"on":true},{"x":87,"y":240,"on":false}],[{"x":167,"y":272,"on":true},{"x":167,"y":255,"on":false},{"x":179,"y":243,"on":true},{"x":201,"y":221,"on":false},{"x":299,"y":221,"on":false},{"x":321,"y":243,"on":true},{"x":333,"y":255,"on":false},{"x":333,"y":271,"on":true},{"x":333,"y":285,"on":false},{"x":324,"y":293,"on":true},{"x":307,"y":310,"on":false},{"x":270,"y":310,"on":true},{"x":248,"y":310,"on":false},{"x":227,"y":310,"on":true},{"x":193,"y":310,"on":false},{"x":176,"y":293,"on":true},{"x":167,"y":284,"on":false}],[{"x":171,"y":568,"on":false},{"x":170,"y":525,"on":false},{"x":185,"y":511,"on":true},{"x":206,"y":490,"on":false},{"x":288,"y":490,"on":false},{"x":309,"y":511,"on":true},{"x":323,"y":525,"on":false},{"x":323,"y":568,"on":false},{"x":309,"y":582,"on":true},{"x":291,"y":600,"on":false},{"x":257,"y":602,"on":true},{"x":247,"y":603,"on":true},{"x":206,"y":603,"on":false},{"x":185,"y":582,"on":true}]], "references": [], - "instructions": [64,11,35,11,2,3,8,4,1,7,4,2,74,75,176,38,80,88,64,42,0,8,0,3,4,8,3,103,10,9,2,2,2,0,95,1,1,0,0,115,75,0,4,4,7,95,0,7,7,105,75,0,6,6,5,95,0,5,5,117,5,76,27,75,176,41,80,88,64,52,0,8,0,3,4,8,3,103,0,10,10,0,95,1,1,0,0,115,75,9,1,2,2,0,95,1,1,0,0,115,75,0,4,4,7,95,0,7,7,105,75,0,6,6,5,95,0,5,5,117,5,76,27,75,176,45,80,88,64,50,0,8,0,3,4,8,3,103,0,4,0,7,6,4,7,103,0,10,10,0,95,1,1,0,0,115,75,9,1,2,2,0,95,1,1,0,0,115,75,0,6,6,5,95,0,5,5,117,5,76,27,64,48,0,8,0,3,4,8,3,103,0,4,0,7,6,4,7,103,0,10,10,0,95,0,0,0,115,75,9,1,2,2,1,93,0,1,1,107,75,0,6,6,5,95,0,5,5,117,5,76,89,89,89,64,25,88,87,86,85,80,79,73,69,63,62,54,53,43,40,34,32,25,24,23,22,21,19,11,11,20,43] + "instructions": "QAsjCwIDCAQBBwQCSkuwJlBYQCoACAADBAgDZwoJAgICAF8BAQAAc0sABAQHXwAHB2lLAAYGBV8ABQV1BUwbS7ApUFhANAAIAAMECANnAAoKAF8BAQAAc0sJAQICAF8BAQAAc0sABAQHXwAHB2lLAAYGBV8ABQV1BUwbS7AtUFhAMgAIAAMECANnAAQABwYEB2cACgoAXwEBAABzSwkBAgIAXwEBAABzSwAGBgVfAAUFdQVMG0AwAAgAAwQIA2cABAAHBgQHZwAKCgBfAAAAc0sJAQICAV0AAQFrSwAGBgVfAAUFdQVMWVlZQBlYV1ZVUE9JRT8+NjUrKCIgGRgXFhUTCwsUKw==" }, "uni1D4E": { "name": "uni1D4E", "advanceWidth": 500, "contours": [[{"x":128,"y":597,"on":true},{"x":128,"y":669,"on":true},{"x":372,"y":669,"on":true},{"x":372,"y":597,"on":true},{"x":285,"y":597,"on":true},{"x":285,"y":370,"on":true},{"x":363,"y":370,"on":true},{"x":363,"y":298,"on":true},{"x":205,"y":298,"on":true},{"x":205,"y":597,"on":true}],[{"x":206,"y":169,"on":false},{"x":206,"y":210,"on":false},{"x":230,"y":233,"on":false},{"x":270,"y":233,"on":false},{"x":294,"y":210,"on":false},{"x":294,"y":169,"on":false},{"x":270,"y":146,"on":false},{"x":230,"y":146,"on":false}]], "references": [], - "instructions": [64,50,7,4,2,1,1,0,93,0,0,0,107,75,0,2,2,3,93,0,3,3,105,75,0,5,5,6,95,0,6,6,117,6,76,0,0,17,16,13,12,0,9,0,9,17,17,17,17,8,11,24,43] + "instructions": "QDIHBAIBAQBdAAAAa0sAAgIDXQADA2lLAAUFBl8ABgZ1BkwAABEQDQwACQAJEREREQgLGCs=" }, "uni1D4F": { "name": "uni1D4F", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":812,"on":true},{"x":176,"y":812,"on":true},{"x":176,"y":527,"on":true},{"x":285,"y":602,"on":false},{"x":314,"y":651,"on":true},{"x":320,"y":662,"on":false},{"x":320,"y":669,"on":true},{"x":404,"y":669,"on":true},{"x":404,"y":657,"on":false},{"x":394,"y":640,"on":true},{"x":367,"y":593,"on":false},{"x":291,"y":529,"on":true},{"x":333,"y":468,"on":false},{"x":361,"y":420,"on":true},{"x":410,"y":336,"on":false},{"x":410,"y":298,"on":true},{"x":330,"y":298,"on":true},{"x":330,"y":328,"on":false},{"x":292,"y":394,"on":true},{"x":269,"y":434,"on":false},{"x":234,"y":484,"on":true},{"x":207,"y":464,"on":false},{"x":176,"y":443,"on":true},{"x":176,"y":298,"on":true}]], "references": [], - "instructions": [64,34,23,21,12,8,3,5,1,0,1,74,0,0,0,104,75,3,2,2,1,1,105,1,76,0,0,0,24,0,24,30,17,4,11,22,43] + "instructions": "QCIXFQwIAwUBAAFKAAAAaEsDAgIBAWkBTAAAABgAGB4RBAsWKw==" }, "uni1D50": { "name": "uni1D50", "advanceWidth": 500, "contours": [[{"x":90,"y":298,"on":true},{"x":90,"y":669,"on":true},{"x":170,"y":669,"on":true},{"x":170,"y":649,"on":true},{"x":179,"y":661,"on":false},{"x":190,"y":668,"on":true},{"x":202,"y":675,"on":false},{"x":217,"y":675,"on":true},{"x":233,"y":675,"on":false},{"x":245,"y":667,"on":true},{"x":260,"y":658,"on":false},{"x":271,"y":640,"on":true},{"x":275,"y":634,"on":false},{"x":278,"y":626,"on":true},{"x":281,"y":634,"on":false},{"x":285,"y":642,"on":true},{"x":295,"y":660,"on":false},{"x":310,"y":668,"on":true},{"x":322,"y":675,"on":false},{"x":337,"y":675,"on":true},{"x":353,"y":675,"on":false},{"x":365,"y":667,"on":true},{"x":380,"y":658,"on":false},{"x":391,"y":640,"on":true},{"x":410,"y":608,"on":false},{"x":410,"y":554,"on":true},{"x":410,"y":298,"on":true},{"x":330,"y":298,"on":true},{"x":330,"y":554,"on":true},{"x":330,"y":588,"on":false},{"x":319,"y":599,"on":true},{"x":315,"y":603,"on":false},{"x":305,"y":603,"on":false},{"x":301,"y":599,"on":true},{"x":290,"y":588,"on":false},{"x":290,"y":554,"on":true},{"x":290,"y":298,"on":true},{"x":210,"y":298,"on":true},{"x":210,"y":554,"on":true},{"x":210,"y":588,"on":false},{"x":199,"y":599,"on":true},{"x":195,"y":603,"on":false},{"x":185,"y":603,"on":false},{"x":181,"y":599,"on":true},{"x":170,"y":588,"on":false},{"x":170,"y":554,"on":true},{"x":170,"y":298,"on":true}]], "references": [], - "instructions": [182,13,3,2,3,0,1,74,75,176,38,80,88,64,16,2,1,2,0,0,107,75,6,5,4,3,3,3,105,3,76,27,64,20,2,1,1,1,115,75,0,0,0,107,75,6,5,4,3,3,3,105,3,76,89,64,14,0,0,0,46,0,46,25,22,42,36,17,7,11,25,43] + "instructions": "tg0DAgMAAUpLsCZQWEAQAgECAABrSwYFBAMDA2kDTBtAFAIBAQFzSwAAAGtLBgUEAwMDaQNMWUAOAAAALgAuGRYqJBEHCxkr" }, "uni1D51": { "name": "uni1D51", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":669,"on":true},{"x":176,"y":669,"on":true},{"x":176,"y":620,"on":true},{"x":192,"y":645,"on":false},{"x":216,"y":660,"on":true},{"x":242,"y":675,"on":false},{"x":311,"y":675,"on":false},{"x":337,"y":660,"on":true},{"x":364,"y":644,"on":false},{"x":381,"y":615,"on":true},{"x":404,"y":575,"on":false},{"x":404,"y":515,"on":true},{"x":404,"y":298,"on":true},{"x":404,"y":255,"on":false},{"x":386,"y":223,"on":true},{"x":369,"y":193,"on":false},{"x":337,"y":175,"on":true},{"x":299,"y":154,"on":false},{"x":245,"y":154,"on":true},{"x":245,"y":226,"on":true},{"x":272,"y":226,"on":false},{"x":291,"y":236,"on":true},{"x":324,"y":255,"on":false},{"x":324,"y":298,"on":true},{"x":324,"y":515,"on":true},{"x":324,"y":547,"on":false},{"x":312,"y":568,"on":true},{"x":302,"y":585,"on":false},{"x":271,"y":603,"on":false},{"x":229,"y":603,"on":false},{"x":198,"y":585,"on":false},{"x":188,"y":568,"on":true},{"x":176,"y":547,"on":false},{"x":176,"y":515,"on":true},{"x":176,"y":298,"on":true}]], "references": [], - "instructions": [181,3,1,4,0,1,74,75,176,38,80,88,64,28,0,4,4,0,95,1,1,0,0,107,75,6,1,5,5,105,75,0,3,3,2,95,0,2,2,109,2,76,27,64,32,0,0,0,107,75,0,4,4,1,95,0,1,1,115,75,6,1,5,5,105,75,0,3,3,2,95,0,2,2,109,2,76,89,64,14,0,0,0,35,0,35,24,17,27,20,17,7,11,25,43] + "instructions": "tQMBBAABSkuwJlBYQBwABAQAXwEBAABrSwYBBQVpSwADAwJfAAICbQJMG0AgAAAAa0sABAQBXwABAXNLBgEFBWlLAAMDAl8AAgJtAkxZQA4AAAAjACMYERsUEQcLGSs=" }, "uni1D52": { "name": "uni1D52", "advanceWidth": 500, "contours": [[{"x":90,"y":452,"on":true},{"x":90,"y":515,"on":true},{"x":90,"y":566,"on":false},{"x":112,"y":603,"on":true},{"x":130,"y":635,"on":false},{"x":162,"y":654,"on":true},{"x":199,"y":675,"on":false},{"x":301,"y":675,"on":false},{"x":338,"y":654,"on":true},{"x":370,"y":635,"on":false},{"x":388,"y":603,"on":true},{"x":409,"y":566,"on":false},{"x":410,"y":515,"on":true},{"x":410,"y":452,"on":true},{"x":410,"y":401,"on":false},{"x":388,"y":364,"on":true},{"x":370,"y":332,"on":false},{"x":338,"y":313,"on":true},{"x":302,"y":292,"on":false},{"x":199,"y":292,"on":false},{"x":162,"y":313,"on":true},{"x":130,"y":332,"on":false},{"x":112,"y":364,"on":true},{"x":91,"y":401,"on":false}],[{"x":170,"y":452,"on":true},{"x":170,"y":422,"on":false},{"x":182,"y":401,"on":true},{"x":203,"y":364,"on":false},{"x":250,"y":364,"on":true},{"x":274,"y":364,"on":false},{"x":308,"y":384,"on":false},{"x":318,"y":401,"on":true},{"x":330,"y":422,"on":false},{"x":330,"y":452,"on":true},{"x":330,"y":515,"on":true},{"x":330,"y":545,"on":false},{"x":318,"y":566,"on":true},{"x":296,"y":603,"on":false},{"x":250,"y":603,"on":true},{"x":226,"y":603,"on":false},{"x":192,"y":583,"on":false},{"x":182,"y":566,"on":true},{"x":170,"y":545,"on":false},{"x":170,"y":515,"on":true}]], "references": [], - "instructions": [64,28,0,3,3,0,95,0,0,0,115,75,0,2,2,1,95,0,1,1,113,1,76,40,40,27,22,4,11,24,43] + "instructions": "QBwAAwMAXwAAAHNLAAICAV8AAQFxAUwoKBsWBAsYKw==" }, "uni1D53": { "name": "uni1D53", "advanceWidth": 500, "contours": [[{"x":92,"y":406,"on":true},{"x":169,"y":427,"on":true},{"x":170,"y":413,"on":false},{"x":178,"y":400,"on":true},{"x":187,"y":384,"on":false},{"x":202,"y":376,"on":true},{"x":221,"y":365,"on":false},{"x":249,"y":364,"on":true},{"x":274,"y":364,"on":false},{"x":291,"y":375,"on":true},{"x":308,"y":385,"on":false},{"x":318,"y":401,"on":true},{"x":330,"y":422,"on":false},{"x":330,"y":452,"on":true},{"x":330,"y":515,"on":true},{"x":330,"y":545,"on":false},{"x":318,"y":566,"on":true},{"x":308,"y":583,"on":false},{"x":291,"y":592,"on":true},{"x":273,"y":602,"on":false},{"x":249,"y":603,"on":true},{"x":222,"y":603,"on":false},{"x":202,"y":591,"on":true},{"x":186,"y":582,"on":false},{"x":178,"y":567,"on":true},{"x":171,"y":555,"on":false},{"x":169,"y":540,"on":true},{"x":92,"y":560,"on":true},{"x":96,"y":583,"on":false},{"x":108,"y":604,"on":true},{"x":126,"y":635,"on":false},{"x":156,"y":653,"on":true},{"x":194,"y":675,"on":false},{"x":249,"y":675,"on":true},{"x":301,"y":675,"on":false},{"x":338,"y":653,"on":true},{"x":370,"y":634,"on":false},{"x":388,"y":602,"on":true},{"x":409,"y":565,"on":false},{"x":410,"y":515,"on":true},{"x":410,"y":452,"on":true},{"x":410,"y":401,"on":false},{"x":388,"y":365,"on":true},{"x":369,"y":333,"on":false},{"x":338,"y":314,"on":true},{"x":301,"y":293,"on":false},{"x":249,"y":292,"on":true},{"x":195,"y":292,"on":false},{"x":156,"y":314,"on":true},{"x":125,"y":332,"on":false},{"x":108,"y":363,"on":true},{"x":96,"y":384,"on":false}]], "references": [], - "instructions": [64,36,27,26,1,3,0,1,1,74,0,1,1,2,95,0,2,2,115,75,0,0,0,3,95,0,3,3,113,3,76,43,43,43,38,4,11,24,43] + "instructions": "QCQbGgEDAAEBSgABAQJfAAICc0sAAAADXwADA3EDTCsrKyYECxgr" }, "uni1D54": { "name": "uni1D54", "advanceWidth": 500, "contours": [[{"x":90,"y":484,"on":true},{"x":90,"y":515,"on":true},{"x":90,"y":566,"on":false},{"x":112,"y":603,"on":true},{"x":130,"y":635,"on":false},{"x":162,"y":654,"on":true},{"x":198,"y":675,"on":false},{"x":301,"y":675,"on":false},{"x":338,"y":654,"on":true},{"x":370,"y":635,"on":false},{"x":388,"y":603,"on":true},{"x":409,"y":566,"on":false},{"x":410,"y":515,"on":true},{"x":410,"y":484,"on":true},{"x":330,"y":484,"on":true},{"x":330,"y":515,"on":true},{"x":330,"y":545,"on":false},{"x":318,"y":566,"on":true},{"x":297,"y":603,"on":false},{"x":250,"y":603,"on":true},{"x":226,"y":603,"on":false},{"x":192,"y":583,"on":false},{"x":182,"y":566,"on":true},{"x":170,"y":545,"on":false},{"x":170,"y":515,"on":true},{"x":170,"y":484,"on":true}]], "references": [], - "instructions": [64,30,4,3,2,1,2,1,132,0,2,2,0,95,0,0,0,115,2,76,0,0,0,25,0,25,36,22,22,5,11,23,43] + "instructions": "QB4EAwIBAgGEAAICAF8AAABzAkwAAAAZABkkFhYFCxcr" }, "uni1D55": { "name": "uni1D55", "advanceWidth": 500, "contours": [[{"x":90,"y":452,"on":true},{"x":90,"y":484,"on":true},{"x":170,"y":484,"on":true},{"x":170,"y":452,"on":true},{"x":170,"y":422,"on":false},{"x":182,"y":401,"on":true},{"x":203,"y":364,"on":false},{"x":250,"y":364,"on":true},{"x":274,"y":364,"on":false},{"x":308,"y":384,"on":false},{"x":318,"y":401,"on":true},{"x":330,"y":422,"on":false},{"x":330,"y":452,"on":true},{"x":330,"y":484,"on":true},{"x":410,"y":484,"on":true},{"x":410,"y":452,"on":true},{"x":410,"y":401,"on":false},{"x":388,"y":364,"on":true},{"x":370,"y":332,"on":false},{"x":338,"y":313,"on":true},{"x":302,"y":292,"on":false},{"x":199,"y":292,"on":false},{"x":162,"y":313,"on":true},{"x":130,"y":332,"on":false},{"x":112,"y":364,"on":true},{"x":91,"y":401,"on":false}]], "references": [], - "instructions": [64,24,2,1,0,1,0,131,0,1,1,3,95,0,3,3,113,3,76,22,21,36,17,4,11,24,43] + "instructions": "QBgCAQABAIMAAQEDXwADA3EDTBYVJBEECxgr" }, "uni1D56": { "name": "uni1D56", "advanceWidth": 500, "contours": [[{"x":96,"y":154,"on":true},{"x":96,"y":669,"on":true},{"x":176,"y":669,"on":true},{"x":176,"y":620,"on":true},{"x":192,"y":645,"on":false},{"x":216,"y":660,"on":true},{"x":242,"y":675,"on":false},{"x":277,"y":675,"on":true},{"x":314,"y":675,"on":false},{"x":370,"y":643,"on":false},{"x":387,"y":613,"on":true},{"x":410,"y":574,"on":false},{"x":410,"y":515,"on":true},{"x":410,"y":452,"on":true},{"x":410,"y":394,"on":false},{"x":387,"y":354,"on":true},{"x":370,"y":324,"on":false},{"x":314,"y":292,"on":false},{"x":277,"y":292,"on":true},{"x":242,"y":292,"on":false},{"x":216,"y":307,"on":true},{"x":192,"y":321,"on":false},{"x":176,"y":347,"on":true},{"x":176,"y":154,"on":true}],[{"x":176,"y":452,"on":true},{"x":176,"y":420,"on":false},{"x":188,"y":399,"on":true},{"x":198,"y":382,"on":false},{"x":229,"y":364,"on":false},{"x":250,"y":364,"on":true},{"x":296,"y":364,"on":false},{"x":318,"y":401,"on":true},{"x":330,"y":422,"on":false},{"x":330,"y":452,"on":true},{"x":330,"y":515,"on":true},{"x":330,"y":545,"on":false},{"x":318,"y":566,"on":true},{"x":297,"y":603,"on":false},{"x":250,"y":603,"on":true},{"x":229,"y":603,"on":false},{"x":198,"y":585,"on":false},{"x":188,"y":568,"on":true},{"x":176,"y":547,"on":false},{"x":176,"y":515,"on":true}]], "references": [], - "instructions": [64,10,3,1,5,0,22,1,2,4,2,74,75,176,38,80,88,64,28,0,5,5,0,95,1,1,0,0,107,75,0,4,4,2,95,0,2,2,113,75,6,1,3,3,109,3,76,27,64,32,0,0,0,107,75,0,5,5,1,95,0,1,1,115,75,0,4,4,2,95,0,2,2,113,75,6,1,3,3,109,3,76,89,64,16,0,0,39,37,30,28,0,23,0,23,41,36,17,7,11,23,43] + "instructions": "QAoDAQUAFgECBAJKS7AmUFhAHAAFBQBfAQEAAGtLAAQEAl8AAgJxSwYBAwNtA0wbQCAAAABrSwAFBQFfAAEBc0sABAQCXwACAnFLBgEDA20DTFlAEAAAJyUeHAAXABcpJBEHCxcr" }, "uni1D57": { "name": "uni1D57", "advanceWidth": 500, "contours": [[{"x":110,"y":597,"on":true},{"x":110,"y":669,"on":true},{"x":175,"y":669,"on":true},{"x":175,"y":812,"on":true},{"x":255,"y":812,"on":true},{"x":255,"y":669,"on":true},{"x":354,"y":669,"on":true},{"x":354,"y":597,"on":true},{"x":255,"y":597,"on":true},{"x":255,"y":458,"on":true},{"x":255,"y":403,"on":false},{"x":280,"y":378,"on":true},{"x":293,"y":365,"on":false},{"x":312,"y":364,"on":true},{"x":332,"y":364,"on":false},{"x":346,"y":378,"on":true},{"x":364,"y":396,"on":false},{"x":370,"y":432,"on":true},{"x":445,"y":406,"on":true},{"x":439,"y":379,"on":false},{"x":426,"y":357,"on":true},{"x":408,"y":326,"on":false},{"x":379,"y":309,"on":true},{"x":350,"y":293,"on":false},{"x":274,"y":292,"on":false},{"x":216,"y":326,"on":false},{"x":199,"y":356,"on":true},{"x":175,"y":397,"on":false},{"x":175,"y":458,"on":true},{"x":175,"y":597,"on":true}]], "references": [], - "instructions": [64,51,18,17,2,4,3,1,74,0,1,1,104,75,7,6,2,3,3,0,93,2,1,0,0,107,75,0,4,4,5,95,0,5,5,113,5,76,0,0,0,29,0,29,25,36,17,17,17,17,8,11,26,43] + "instructions": "QDMSEQIEAwFKAAEBaEsHBgIDAwBdAgEAAGtLAAQEBV8ABQVxBUwAAAAdAB0ZJBEREREICxor" }, "uni1D58": { "name": "uni1D58", "advanceWidth": 500, "contours": [[{"x":96,"y":452,"on":true},{"x":96,"y":669,"on":true},{"x":176,"y":669,"on":true},{"x":176,"y":452,"on":true},{"x":176,"y":420,"on":false},{"x":188,"y":399,"on":true},{"x":198,"y":382,"on":false},{"x":229,"y":364,"on":false},{"x":271,"y":364,"on":false},{"x":302,"y":382,"on":false},{"x":312,"y":399,"on":true},{"x":324,"y":420,"on":false},{"x":324,"y":452,"on":true},{"x":324,"y":669,"on":true},{"x":404,"y":669,"on":true},{"x":404,"y":298,"on":true},{"x":324,"y":298,"on":true},{"x":324,"y":347,"on":true},{"x":308,"y":322,"on":false},{"x":284,"y":307,"on":true},{"x":258,"y":292,"on":false},{"x":189,"y":292,"on":false},{"x":163,"y":307,"on":true},{"x":136,"y":323,"on":false},{"x":119,"y":352,"on":true},{"x":96,"y":392,"on":false}]], "references": [], - "instructions": [181,17,1,3,1,1,74,75,176,38,80,88,64,18,2,1,0,0,107,75,0,1,1,3,95,4,1,3,3,105,3,76,27,64,22,2,1,0,0,107,75,0,3,3,105,75,0,1,1,4,95,0,4,4,113,4,76,89,183,20,17,21,21,17,5,11,25,43] + "instructions": "tREBAwEBSkuwJlBYQBICAQAAa0sAAQEDXwQBAwNpA0wbQBYCAQAAa0sAAwNpSwABAQRfAAQEcQRMWbcUERUVEQULGSs=" }, "uni1D5A": { "name": "uni1D5A", "advanceWidth": 500, "contours": [[{"x":90,"y":414,"on":true},{"x":90,"y":669,"on":true},{"x":170,"y":669,"on":true},{"x":170,"y":414,"on":true},{"x":170,"y":380,"on":false},{"x":181,"y":368,"on":true},{"x":185,"y":364,"on":false},{"x":195,"y":364,"on":false},{"x":199,"y":368,"on":true},{"x":210,"y":380,"on":false},{"x":210,"y":414,"on":true},{"x":210,"y":669,"on":true},{"x":290,"y":669,"on":true},{"x":290,"y":414,"on":true},{"x":290,"y":380,"on":false},{"x":301,"y":368,"on":true},{"x":305,"y":364,"on":false},{"x":315,"y":364,"on":false},{"x":319,"y":368,"on":true},{"x":330,"y":380,"on":false},{"x":330,"y":414,"on":true},{"x":330,"y":669,"on":true},{"x":410,"y":669,"on":true},{"x":410,"y":298,"on":true},{"x":330,"y":298,"on":true},{"x":330,"y":318,"on":true},{"x":321,"y":306,"on":false},{"x":310,"y":299,"on":true},{"x":298,"y":292,"on":false},{"x":283,"y":292,"on":true},{"x":267,"y":292,"on":false},{"x":255,"y":300,"on":true},{"x":240,"y":309,"on":false},{"x":229,"y":327,"on":true},{"x":225,"y":333,"on":false},{"x":222,"y":341,"on":true},{"x":219,"y":333,"on":false},{"x":215,"y":325,"on":true},{"x":205,"y":307,"on":false},{"x":190,"y":299,"on":true},{"x":178,"y":292,"on":false},{"x":163,"y":292,"on":true},{"x":147,"y":292,"on":false},{"x":135,"y":300,"on":true},{"x":120,"y":309,"on":false},{"x":109,"y":327,"on":true},{"x":90,"y":360,"on":false}]], "references": [], - "instructions": [182,35,25,2,3,0,1,74,75,176,38,80,88,64,15,2,1,2,0,0,107,75,5,4,2,3,3,105,3,76,27,64,19,2,1,2,0,0,107,75,0,3,3,105,75,5,1,4,4,113,4,76,89,64,9,42,36,17,25,25,17,6,11,26,43] + "instructions": "tiMZAgMAAUpLsCZQWEAPAgECAABrSwUEAgMDaQNMG0ATAgECAABrSwADA2lLBQEEBHEETFlACSokERkZEQYLGis=" }, "uni1D5B": { "name": "uni1D5B", "advanceWidth": 500, "contours": [[{"x":96,"y":632,"on":true},{"x":96,"y":669,"on":true},{"x":176,"y":669,"on":true},{"x":176,"y":632,"on":true},{"x":176,"y":548,"on":false},{"x":250,"y":365,"on":true},{"x":324,"y":548,"on":false},{"x":324,"y":632,"on":true},{"x":324,"y":669,"on":true},{"x":404,"y":669,"on":true},{"x":404,"y":632,"on":true},{"x":404,"y":531,"on":false},{"x":290,"y":298,"on":true},{"x":210,"y":298,"on":true},{"x":96,"y":531,"on":false}]], "references": [], - "instructions": [64,24,5,1,2,0,1,74,1,1,0,0,107,75,0,2,2,105,2,76,19,22,17,3,11,23,43] + "instructions": "QBgFAQIAAUoBAQAAa0sAAgJpAkwTFhEDCxcr" }, "uni1D5D": { "name": "uni1D5D", "advanceWidth": 500, "contours": [[{"x":96,"y":154,"on":true},{"x":96,"y":658,"on":true},{"x":96,"y":712,"on":false},{"x":118,"y":750,"on":true},{"x":136,"y":781,"on":false},{"x":167,"y":799,"on":true},{"x":200,"y":818,"on":false},{"x":245,"y":818,"on":true},{"x":294,"y":818,"on":false},{"x":329,"y":798,"on":true},{"x":358,"y":781,"on":false},{"x":375,"y":752,"on":true},{"x":393,"y":721,"on":false},{"x":393,"y":681,"on":true},{"x":393,"y":648,"on":false},{"x":379,"y":625,"on":true},{"x":365,"y":600,"on":false},{"x":338,"y":585,"on":true},{"x":335,"y":583,"on":false},{"x":333,"y":582,"on":true},{"x":372,"y":563,"on":false},{"x":392,"y":528,"on":true},{"x":409,"y":498,"on":false},{"x":410,"y":456,"on":true},{"x":410,"y":408,"on":false},{"x":389,"y":372,"on":true},{"x":370,"y":339,"on":false},{"x":337,"y":320,"on":true},{"x":299,"y":298,"on":false},{"x":245,"y":298,"on":true},{"x":176,"y":298,"on":true},{"x":176,"y":154,"on":true}],[{"x":176,"y":370,"on":true},{"x":245,"y":370,"on":true},{"x":272,"y":370,"on":false},{"x":291,"y":381,"on":true},{"x":308,"y":391,"on":false},{"x":318,"y":409,"on":true},{"x":330,"y":429,"on":false},{"x":330,"y":457,"on":true},{"x":330,"y":486,"on":false},{"x":318,"y":506,"on":true},{"x":308,"y":524,"on":false},{"x":290,"y":534,"on":true},{"x":271,"y":545,"on":false},{"x":245,"y":545,"on":true},{"x":188,"y":545,"on":true},{"x":188,"y":617,"on":true},{"x":244,"y":617,"on":true},{"x":267,"y":617,"on":false},{"x":284,"y":626,"on":true},{"x":313,"y":643,"on":false},{"x":313,"y":680,"on":true},{"x":313,"y":701,"on":false},{"x":304,"y":716,"on":true},{"x":296,"y":730,"on":false},{"x":283,"y":737,"on":true},{"x":267,"y":746,"on":false},{"x":245,"y":746,"on":true},{"x":226,"y":746,"on":false},{"x":212,"y":738,"on":true},{"x":197,"y":730,"on":false},{"x":189,"y":714,"on":true},{"x":176,"y":692,"on":false},{"x":176,"y":658,"on":true}]], "references": [], - "instructions": [64,61,17,1,4,5,1,74,0,5,0,4,3,5,4,103,0,6,6,0,95,0,0,0,112,75,0,3,3,1,95,0,1,1,105,75,7,1,2,2,109,2,76,0,0,59,57,49,47,46,44,34,32,0,31,0,31,30,28,38,8,11,21,43] + "instructions": "QD0RAQQFAUoABQAEAwUEZwAGBgBfAAAAcEsAAwMBXwABAWlLBwECAm0CTAAAOzkxLy4sIiAAHwAfHhwmCAsVKw==" }, "uni1D5E": { "name": "uni1D5E", "advanceWidth": 500, "contours": [[{"x":63,"y":632,"on":true},{"x":128,"y":675,"on":true},{"x":152,"y":642,"on":false},{"x":174,"y":604,"on":true},{"x":232,"y":504,"on":false},{"x":256,"y":418,"on":true},{"x":324,"y":561,"on":false},{"x":324,"y":632,"on":true},{"x":324,"y":669,"on":true},{"x":404,"y":669,"on":true},{"x":404,"y":632,"on":true},{"x":404,"y":530,"on":false},{"x":274,"y":298,"on":true},{"x":274,"y":154,"on":true},{"x":194,"y":154,"on":true},{"x":194,"y":298,"on":true},{"x":194,"y":414,"on":false},{"x":103,"y":571,"on":true},{"x":84,"y":603,"on":false}]], "references": [], - "instructions": [64,27,12,5,2,1,0,1,74,1,1,0,72,0,0,0,107,75,0,1,1,109,1,76,20,24,2,11,22,43] + "instructions": "QBsMBQIBAAFKAQEASAAAAGtLAAEBbQFMFBgCCxYr" }, "uni1D5F": { "name": "uni1D5F", "advanceWidth": 500, "contours": [[{"x":90,"y":446,"on":true},{"x":90,"y":506,"on":true},{"x":90,"y":542,"on":false},{"x":106,"y":569,"on":true},{"x":121,"y":595,"on":false},{"x":150,"y":612,"on":true},{"x":135,"y":624,"on":false},{"x":124,"y":642,"on":true},{"x":109,"y":668,"on":false},{"x":110,"y":699,"on":true},{"x":110,"y":732,"on":false},{"x":126,"y":759,"on":true},{"x":141,"y":785,"on":false},{"x":166,"y":799,"on":true},{"x":198,"y":818,"on":false},{"x":243,"y":818,"on":true},{"x":307,"y":818,"on":false},{"x":381,"y":784,"on":true},{"x":381,"y":712,"on":true},{"x":309,"y":746,"on":false},{"x":249,"y":746,"on":true},{"x":218,"y":746,"on":false},{"x":202,"y":731,"on":true},{"x":189,"y":718,"on":false},{"x":190,"y":700,"on":true},{"x":190,"y":683,"on":false},{"x":201,"y":670,"on":true},{"x":212,"y":659,"on":false},{"x":247,"y":655,"on":true},{"x":315,"y":646,"on":false},{"x":351,"y":625,"on":true},{"x":379,"y":609,"on":false},{"x":394,"y":584,"on":true},{"x":410,"y":557,"on":false},{"x":410,"y":506,"on":true},{"x":410,"y":446,"on":true},{"x":410,"y":398,"on":false},{"x":390,"y":363,"on":true},{"x":372,"y":332,"on":false},{"x":340,"y":314,"on":true},{"x":303,"y":293,"on":false},{"x":197,"y":292,"on":false},{"x":160,"y":314,"on":true},{"x":128,"y":332,"on":false},{"x":110,"y":363,"on":true},{"x":90,"y":398,"on":false}],[{"x":170,"y":446,"on":true},{"x":170,"y":419,"on":false},{"x":181,"y":400,"on":true},{"x":190,"y":384,"on":false},{"x":207,"y":375,"on":true},{"x":225,"y":365,"on":false},{"x":275,"y":364,"on":false},{"x":293,"y":375,"on":true},{"x":309,"y":384,"on":false},{"x":319,"y":400,"on":true},{"x":330,"y":419,"on":false},{"x":330,"y":446,"on":true},{"x":330,"y":506,"on":true},{"x":330,"y":532,"on":false},{"x":322,"y":546,"on":true},{"x":315,"y":559,"on":false},{"x":299,"y":568,"on":true},{"x":282,"y":578,"on":false},{"x":236,"y":584,"on":true},{"x":221,"y":586,"on":false},{"x":208,"y":589,"on":true},{"x":193,"y":580,"on":false},{"x":184,"y":563,"on":true},{"x":171,"y":540,"on":false},{"x":170,"y":506,"on":true}]], "references": [], - "instructions": [64,42,17,1,1,0,66,18,5,3,3,1,2,74,0,1,1,0,95,0,0,0,112,75,0,3,3,2,95,0,2,2,113,2,76,52,51,41,40,35,46,4,11,22,43] + "instructions": "QCoRAQEAQhIFAwMBAkoAAQEAXwAAAHBLAAMDAl8AAgJxAkw0MykoIy4ECxYr" }, "uni1D60": { "name": "uni1D60", "advanceWidth": 500, "contours": [[{"x":85,"y":497,"on":true},{"x":85,"y":585,"on":false},{"x":127,"y":669,"on":true},{"x":198,"y":637,"on":true},{"x":164,"y":569,"on":false},{"x":164,"y":498,"on":true},{"x":164,"y":441,"on":false},{"x":185,"y":404,"on":true},{"x":195,"y":386,"on":false},{"x":210,"y":376,"on":true},{"x":210,"y":543,"on":true},{"x":210,"y":591,"on":false},{"x":229,"y":623,"on":true},{"x":242,"y":646,"on":false},{"x":262,"y":658,"on":true},{"x":281,"y":669,"on":false},{"x":308,"y":669,"on":true},{"x":333,"y":669,"on":false},{"x":352,"y":658,"on":true},{"x":375,"y":645,"on":false},{"x":390,"y":618,"on":true},{"x":416,"y":574,"on":false},{"x":415,"y":503,"on":true},{"x":415,"y":423,"on":false},{"x":385,"y":370,"on":true},{"x":363,"y":332,"on":false},{"x":328,"y":312,"on":true},{"x":311,"y":302,"on":false},{"x":290,"y":297,"on":true},{"x":290,"y":154,"on":true},{"x":210,"y":154,"on":true},{"x":210,"y":297,"on":true},{"x":190,"y":302,"on":false},{"x":172,"y":312,"on":true},{"x":137,"y":332,"on":false},{"x":115,"y":370,"on":true},{"x":85,"y":423,"on":false}],[{"x":290,"y":376,"on":true},{"x":304,"y":386,"on":false},{"x":314,"y":404,"on":true},{"x":335,"y":441,"on":false},{"x":336,"y":504,"on":true},{"x":336,"y":575,"on":false},{"x":317,"y":593,"on":true},{"x":313,"y":597,"on":false},{"x":308,"y":597,"on":true},{"x":290,"y":597,"on":false},{"x":290,"y":543,"on":true}]], "references": [], - "instructions": [64,39,3,1,2,0,37,31,28,9,4,1,2,2,74,2,1,0,72,0,2,2,0,95,0,0,0,107,75,0,1,1,109,1,76,31,28,47,3,11,23,43] + "instructions": "QCcDAQIAJR8cCQQBAgJKAgEASAACAgBfAAAAa0sAAQFtAUwfHC8DCxcr" }, "uni1D61": { "name": "uni1D61", "advanceWidth": 500, "contours": [[{"x":96,"y":154,"on":true},{"x":96,"y":167,"on":true},{"x":96,"y":202,"on":false},{"x":146,"y":298,"on":true},{"x":206,"y":412,"on":true},{"x":146,"y":526,"on":true},{"x":96,"y":622,"on":false},{"x":96,"y":656,"on":true},{"x":96,"y":669,"on":true},{"x":176,"y":669,"on":true},{"x":176,"y":656,"on":true},{"x":176,"y":637,"on":false},{"x":217,"y":559,"on":true},{"x":250,"y":496,"on":true},{"x":283,"y":559,"on":true},{"x":324,"y":637,"on":false},{"x":324,"y":656,"on":true},{"x":324,"y":669,"on":true},{"x":404,"y":669,"on":true},{"x":404,"y":656,"on":true},{"x":404,"y":621,"on":false},{"x":354,"y":526,"on":true},{"x":294,"y":412,"on":true},{"x":354,"y":298,"on":true},{"x":404,"y":202,"on":false},{"x":404,"y":167,"on":true},{"x":404,"y":154,"on":true},{"x":324,"y":154,"on":true},{"x":324,"y":167,"on":true},{"x":324,"y":186,"on":false},{"x":283,"y":265,"on":true},{"x":250,"y":327,"on":true},{"x":217,"y":265,"on":true},{"x":176,"y":187,"on":false},{"x":176,"y":167,"on":true},{"x":176,"y":154,"on":true}]], "references": [], - "instructions": [64,35,31,22,13,4,4,2,0,1,74,1,1,0,0,107,75,4,3,2,2,2,109,2,76,0,0,0,35,0,35,24,24,24,5,11,23,43] + "instructions": "QCMfFg0EBAIAAUoBAQAAa0sEAwICAm0CTAAAACMAIxgYGAULFys=" }, "uni1D78": { "name": "uni1D78", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":669,"on":true},{"x":176,"y":669,"on":true},{"x":176,"y":529,"on":true},{"x":324,"y":529,"on":true},{"x":324,"y":669,"on":true},{"x":404,"y":669,"on":true},{"x":404,"y":298,"on":true},{"x":324,"y":298,"on":true},{"x":324,"y":457,"on":true},{"x":176,"y":457,"on":true},{"x":176,"y":298,"on":true}]], "references": [], - "instructions": [64,36,0,1,0,4,3,1,4,101,2,1,0,0,107,75,6,5,2,3,3,105,3,76,0,0,0,11,0,11,17,17,17,17,17,7,11,25,43] + "instructions": "QCQAAQAEAwEEZQIBAABrSwYFAgMDaQNMAAAACwALEREREREHCxkr" }, "uni1D9B": { "name": "uni1D9B", "advanceWidth": 500, "contours": [[{"x":96,"y":292,"on":true},{"x":96,"y":669,"on":true},{"x":176,"y":669,"on":true},{"x":176,"y":620,"on":true},{"x":192,"y":645,"on":false},{"x":216,"y":660,"on":true},{"x":242,"y":675,"on":false},{"x":277,"y":675,"on":true},{"x":314,"y":675,"on":false},{"x":370,"y":643,"on":false},{"x":387,"y":613,"on":true},{"x":410,"y":574,"on":false},{"x":410,"y":515,"on":true},{"x":410,"y":452,"on":true},{"x":410,"y":394,"on":false},{"x":387,"y":354,"on":true},{"x":370,"y":324,"on":false},{"x":314,"y":292,"on":false},{"x":277,"y":292,"on":true},{"x":242,"y":292,"on":false},{"x":216,"y":307,"on":true},{"x":192,"y":321,"on":false},{"x":176,"y":347,"on":true},{"x":176,"y":334,"on":true}],[{"x":176,"y":452,"on":true},{"x":176,"y":420,"on":false},{"x":188,"y":399,"on":true},{"x":198,"y":382,"on":false},{"x":229,"y":364,"on":false},{"x":250,"y":364,"on":true},{"x":296,"y":364,"on":false},{"x":318,"y":401,"on":true},{"x":330,"y":422,"on":false},{"x":330,"y":452,"on":true},{"x":330,"y":515,"on":true},{"x":330,"y":545,"on":false},{"x":318,"y":566,"on":true},{"x":297,"y":603,"on":false},{"x":250,"y":603,"on":true},{"x":229,"y":603,"on":false},{"x":198,"y":585,"on":false},{"x":188,"y":568,"on":true},{"x":176,"y":547,"on":false},{"x":176,"y":515,"on":true}]], "references": [], - "instructions": [64,15,3,1,4,0,23,22,2,2,3,2,74,0,1,2,71,75,176,38,80,88,64,22,0,4,4,0,95,1,1,0,0,107,75,0,3,3,2,95,0,2,2,113,2,76,27,64,26,0,0,0,107,75,0,4,4,1,95,0,1,1,115,75,0,3,3,2,95,0,2,2,113,2,76,89,183,39,41,41,36,17,5,11,25,43] + "instructions": "QA8DAQQAFxYCAgMCSgABAkdLsCZQWEAWAAQEAF8BAQAAa0sAAwMCXwACAnECTBtAGgAAAGtLAAQEAV8AAQFzSwADAwJfAAICcQJMWbcnKSkkEQULGSs=" }, "uni1D9C": { "name": "uni1D9C", "advanceWidth": 500, "contours": [[{"x":90,"y":452,"on":true},{"x":90,"y":515,"on":true},{"x":90,"y":566,"on":false},{"x":112,"y":602,"on":true},{"x":131,"y":634,"on":false},{"x":162,"y":653,"on":true},{"x":199,"y":674,"on":false},{"x":251,"y":675,"on":true},{"x":305,"y":675,"on":false},{"x":344,"y":653,"on":true},{"x":375,"y":635,"on":false},{"x":392,"y":604,"on":true},{"x":404,"y":582,"on":false},{"x":408,"y":560,"on":true},{"x":331,"y":540,"on":true},{"x":330,"y":554,"on":false},{"x":322,"y":567,"on":true},{"x":313,"y":583,"on":false},{"x":298,"y":591,"on":true},{"x":279,"y":602,"on":false},{"x":251,"y":603,"on":true},{"x":226,"y":603,"on":false},{"x":209,"y":592,"on":true},{"x":192,"y":582,"on":false},{"x":182,"y":566,"on":true},{"x":170,"y":545,"on":false},{"x":170,"y":515,"on":true},{"x":170,"y":452,"on":true},{"x":170,"y":422,"on":false},{"x":182,"y":401,"on":true},{"x":192,"y":384,"on":false},{"x":209,"y":375,"on":true},{"x":227,"y":365,"on":false},{"x":251,"y":364,"on":true},{"x":278,"y":364,"on":false},{"x":298,"y":376,"on":true},{"x":314,"y":385,"on":false},{"x":322,"y":400,"on":true},{"x":329,"y":412,"on":false},{"x":331,"y":427,"on":true},{"x":408,"y":406,"on":true},{"x":404,"y":383,"on":false},{"x":392,"y":363,"on":true},{"x":374,"y":332,"on":false},{"x":344,"y":314,"on":true},{"x":306,"y":292,"on":false},{"x":251,"y":292,"on":true},{"x":199,"y":292,"on":false},{"x":162,"y":314,"on":true},{"x":130,"y":333,"on":false},{"x":112,"y":365,"on":true},{"x":91,"y":402,"on":false}]], "references": [], - "instructions": [64,37,40,39,14,13,4,2,1,1,74,0,1,1,0,95,0,0,0,115,75,0,2,2,3,95,0,3,3,113,3,76,43,43,43,38,4,11,24,43] + "instructions": "QCUoJw4NBAIBAUoAAQEAXwAAAHNLAAICA18AAwNxA0wrKysmBAsYKw==" }, "uni1D9D": { "name": "uni1D9D", "advanceWidth": 500, "contours": [[{"x":42,"y":303,"on":true},{"x":53,"y":334,"on":false},{"x":69,"y":362,"on":true},{"x":82,"y":384,"on":false},{"x":97,"y":404,"on":true},{"x":91,"y":426,"on":false},{"x":90,"y":452,"on":true},{"x":90,"y":515,"on":true},{"x":90,"y":563,"on":false},{"x":110,"y":597,"on":true},{"x":128,"y":628,"on":false},{"x":161,"y":647,"on":true},{"x":199,"y":669,"on":false},{"x":251,"y":669,"on":true},{"x":306,"y":669,"on":false},{"x":344,"y":647,"on":true},{"x":375,"y":629,"on":false},{"x":393,"y":598,"on":true},{"x":404,"y":580,"on":false},{"x":408,"y":560,"on":true},{"x":331,"y":539,"on":true},{"x":328,"y":560,"on":false},{"x":312,"y":575,"on":true},{"x":290,"y":597,"on":false},{"x":252,"y":597,"on":true},{"x":226,"y":597,"on":false},{"x":207,"y":586,"on":true},{"x":191,"y":577,"on":false},{"x":181,"y":560,"on":true},{"x":170,"y":541,"on":false},{"x":170,"y":515,"on":true},{"x":170,"y":473,"on":true},{"x":176,"y":477,"on":false},{"x":183,"y":480,"on":true},{"x":229,"y":507,"on":false},{"x":283,"y":507,"on":true},{"x":327,"y":507,"on":false},{"x":360,"y":488,"on":true},{"x":385,"y":473,"on":false},{"x":399,"y":449,"on":true},{"x":412,"y":426,"on":false},{"x":412,"y":372,"on":false},{"x":398,"y":348,"on":true},{"x":366,"y":292,"on":false},{"x":277,"y":292,"on":true},{"x":210,"y":292,"on":false},{"x":165,"y":319,"on":true},{"x":153,"y":326,"on":false},{"x":143,"y":334,"on":true},{"x":127,"y":308,"on":false},{"x":118,"y":279,"on":true}],[{"x":192,"y":395,"on":true},{"x":200,"y":386,"on":false},{"x":211,"y":380,"on":true},{"x":237,"y":365,"on":false},{"x":277,"y":364,"on":true},{"x":309,"y":364,"on":false},{"x":323,"y":379,"on":true},{"x":332,"y":388,"on":false},{"x":332,"y":411,"on":false},{"x":323,"y":420,"on":true},{"x":309,"y":434,"on":false},{"x":281,"y":435,"on":true},{"x":251,"y":435,"on":false},{"x":225,"y":419,"on":true},{"x":208,"y":409,"on":false}]], "references": [], - "instructions": [64,61,20,19,2,2,1,31,1,5,2,4,1,4,5,48,1,3,4,4,74,50,1,3,71,0,2,0,5,4,2,5,103,0,1,1,0,95,0,0,0,107,75,0,4,4,3,95,0,3,3,113,3,76,37,41,39,41,41,44,6,11,26,43] + "instructions": "QD0UEwICAR8BBQIEAQQFMAEDBARKMgEDRwACAAUEAgVnAAEBAF8AAABrSwAEBANfAAMDcQNMJSknKSksBgsaKw==" }, "uni1D9E": { "name": "uni1D9E", "advanceWidth": 500, "contours": [[{"x":90,"y":452,"on":true},{"x":90,"y":453,"on":true},{"x":90,"y":504,"on":false},{"x":112,"y":541,"on":true},{"x":130,"y":573,"on":false},{"x":162,"y":591,"on":true},{"x":198,"y":612,"on":false},{"x":250,"y":612,"on":true},{"x":279,"y":612,"on":false},{"x":304,"y":605,"on":true},{"x":293,"y":632,"on":false},{"x":277,"y":655,"on":true},{"x":134,"y":624,"on":true},{"x":119,"y":686,"on":true},{"x":224,"y":709,"on":true},{"x":214,"y":716,"on":false},{"x":204,"y":722,"on":true},{"x":181,"y":735,"on":false},{"x":155,"y":743,"on":true},{"x":175,"y":812,"on":true},{"x":258,"y":791,"on":false},{"x":317,"y":729,"on":true},{"x":381,"y":743,"on":true},{"x":396,"y":681,"on":true},{"x":359,"y":673,"on":true},{"x":410,"y":587,"on":false},{"x":410,"y":453,"on":true},{"x":410,"y":452,"on":true},{"x":410,"y":401,"on":false},{"x":388,"y":364,"on":true},{"x":370,"y":332,"on":false},{"x":338,"y":313,"on":true},{"x":302,"y":292,"on":false},{"x":199,"y":292,"on":false},{"x":162,"y":313,"on":true},{"x":130,"y":332,"on":false},{"x":112,"y":364,"on":true},{"x":91,"y":401,"on":false}],[{"x":170,"y":452,"on":true},{"x":170,"y":422,"on":false},{"x":182,"y":401,"on":true},{"x":203,"y":364,"on":false},{"x":250,"y":364,"on":true},{"x":274,"y":364,"on":false},{"x":308,"y":384,"on":false},{"x":318,"y":401,"on":true},{"x":330,"y":422,"on":false},{"x":330,"y":452,"on":true},{"x":330,"y":453,"on":true},{"x":330,"y":483,"on":false},{"x":318,"y":504,"on":true},{"x":297,"y":541,"on":false},{"x":250,"y":540,"on":true},{"x":226,"y":540,"on":false},{"x":192,"y":520,"on":false},{"x":182,"y":504,"on":true},{"x":170,"y":483,"on":false},{"x":170,"y":453,"on":true}]], "references": [], - "instructions": [64,48,9,1,3,0,1,74,24,23,22,21,19,18,14,13,12,11,10,0,72,0,0,0,3,2,0,3,103,0,2,2,1,95,0,1,1,113,1,76,53,51,43,41,33,32,38,4,11,21,43] + "instructions": "QDAJAQMAAUoYFxYVExIODQwLCgBIAAAAAwIAA2cAAgIBXwABAXEBTDUzKykhICYECxUr" }, "uni1D9F": { "name": "uni1D9F", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1D4C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni1DA0": { "name": "uni1DA0", "advanceWidth": 500, "contours": [[{"x":96,"y":582,"on":true},{"x":96,"y":654,"on":true},{"x":184,"y":654,"on":true},{"x":184,"y":714,"on":true},{"x":184,"y":750,"on":false},{"x":199,"y":777,"on":true},{"x":212,"y":800,"on":false},{"x":236,"y":813,"on":true},{"x":263,"y":829,"on":false},{"x":341,"y":829,"on":false},{"x":368,"y":813,"on":true},{"x":392,"y":799,"on":false},{"x":405,"y":776,"on":true},{"x":414,"y":760,"on":false},{"x":418,"y":742,"on":true},{"x":341,"y":723,"on":true},{"x":339,"y":738,"on":false},{"x":329,"y":747,"on":true},{"x":319,"y":757,"on":false},{"x":302,"y":757,"on":true},{"x":286,"y":757,"on":false},{"x":275,"y":747,"on":true},{"x":263,"y":734,"on":false},{"x":264,"y":714,"on":true},{"x":264,"y":654,"on":true},{"x":389,"y":654,"on":true},{"x":389,"y":582,"on":true},{"x":264,"y":582,"on":true},{"x":264,"y":298,"on":true},{"x":184,"y":298,"on":true},{"x":184,"y":582,"on":true}]], "references": [], - "instructions": [182,15,14,2,0,2,1,74,75,176,34,80,88,64,29,0,2,2,1,95,0,1,1,114,75,7,6,2,4,4,0,93,3,1,0,0,107,75,0,5,5,105,5,76,27,64,27,3,1,0,7,6,2,4,5,0,4,101,0,2,2,1,95,0,1,1,114,75,0,5,5,105,5,76,89,64,15,0,0,0,30,0,30,17,17,20,41,22,17,8,11,26,43] + "instructions": "tg8OAgACAUpLsCJQWEAdAAICAV8AAQFySwcGAgQEAF0DAQAAa0sABQVpBUwbQBsDAQAHBgIEBQAEZQACAgFfAAEBcksABQVpBUxZQA8AAAAeAB4RERQpFhEICxor" }, "uni1DA1": { "name": "uni1DA1", "advanceWidth": 500, "contours": [[{"x":82,"y":225,"on":true},{"x":159,"y":244,"on":true},{"x":161,"y":229,"on":false},{"x":171,"y":220,"on":true},{"x":181,"y":210,"on":false},{"x":198,"y":210,"on":true},{"x":214,"y":210,"on":false},{"x":225,"y":220,"on":true},{"x":237,"y":232,"on":false},{"x":236,"y":252,"on":true},{"x":236,"y":313,"on":true},{"x":111,"y":313,"on":true},{"x":111,"y":385,"on":true},{"x":236,"y":385,"on":true},{"x":236,"y":669,"on":true},{"x":316,"y":669,"on":true},{"x":316,"y":385,"on":true},{"x":404,"y":385,"on":true},{"x":404,"y":313,"on":true},{"x":316,"y":313,"on":true},{"x":316,"y":252,"on":true},{"x":316,"y":216,"on":false},{"x":301,"y":190,"on":true},{"x":288,"y":167,"on":false},{"x":264,"y":154,"on":true},{"x":237,"y":138,"on":false},{"x":159,"y":138,"on":false},{"x":132,"y":154,"on":true},{"x":108,"y":168,"on":false},{"x":95,"y":191,"on":true},{"x":86,"y":207,"on":false}]], "references": [], - "instructions": [181,1,1,0,1,1,74,75,176,34,80,88,64,28,0,3,3,107,75,4,1,2,2,1,93,5,1,1,1,105,75,0,0,0,6,95,0,6,6,117,6,76,27,75,176,45,80,88,64,26,4,1,2,5,1,1,0,2,1,101,0,3,3,107,75,0,0,0,6,95,0,6,6,117,6,76,27,64,23,4,1,2,5,1,1,0,2,1,101,0,0,0,6,0,6,99,0,3,3,107,3,76,89,89,64,10,22,17,17,17,17,20,36,7,11,27,43] + "instructions": "tQEBAAEBSkuwIlBYQBwAAwNrSwQBAgIBXQUBAQFpSwAAAAZfAAYGdQZMG0uwLVBYQBoEAQIFAQEAAgFlAAMDa0sAAAAGXwAGBnUGTBtAFwQBAgUBAQACAWUAAAAGAAZjAAMDawNMWVlAChYRERERFCQHCxsr" }, "uni1DA2": { "name": "uni1DA2", "advanceWidth": 500, "contours": [[{"x":90,"y":452,"on":true},{"x":90,"y":515,"on":true},{"x":90,"y":573,"on":false},{"x":113,"y":613,"on":true},{"x":130,"y":643,"on":false},{"x":186,"y":675,"on":false},{"x":223,"y":675,"on":true},{"x":258,"y":675,"on":false},{"x":284,"y":660,"on":true},{"x":308,"y":646,"on":false},{"x":324,"y":620,"on":true},{"x":324,"y":669,"on":true},{"x":404,"y":669,"on":true},{"x":404,"y":308,"on":true},{"x":404,"y":258,"on":false},{"x":383,"y":222,"on":true},{"x":364,"y":190,"on":false},{"x":332,"y":171,"on":true},{"x":294,"y":149,"on":false},{"x":186,"y":149,"on":false},{"x":149,"y":170,"on":true},{"x":110,"y":192,"on":false},{"x":92,"y":232,"on":true},{"x":164,"y":263,"on":true},{"x":169,"y":252,"on":false},{"x":178,"y":244,"on":true},{"x":201,"y":221,"on":false},{"x":240,"y":221,"on":true},{"x":266,"y":221,"on":false},{"x":285,"y":232,"on":true},{"x":302,"y":242,"on":false},{"x":312,"y":259,"on":true},{"x":324,"y":280,"on":false},{"x":324,"y":308,"on":true},{"x":324,"y":347,"on":true},{"x":308,"y":322,"on":false},{"x":284,"y":307,"on":true},{"x":258,"y":292,"on":false},{"x":223,"y":292,"on":true},{"x":186,"y":292,"on":false},{"x":130,"y":324,"on":false},{"x":113,"y":354,"on":true},{"x":90,"y":393,"on":false}],[{"x":170,"y":452,"on":true},{"x":170,"y":422,"on":false},{"x":182,"y":401,"on":true},{"x":203,"y":364,"on":false},{"x":250,"y":364,"on":true},{"x":271,"y":364,"on":false},{"x":302,"y":382,"on":false},{"x":312,"y":399,"on":true},{"x":324,"y":420,"on":false},{"x":324,"y":452,"on":true},{"x":324,"y":515,"on":true},{"x":324,"y":547,"on":false},{"x":312,"y":568,"on":true},{"x":302,"y":585,"on":false},{"x":271,"y":603,"on":false},{"x":250,"y":603,"on":true},{"x":204,"y":603,"on":false},{"x":182,"y":566,"on":true},{"x":170,"y":545,"on":false},{"x":170,"y":515,"on":true}]], "references": [], - "instructions": [75,176,38,80,88,64,15,10,1,6,0,34,1,4,5,23,22,2,3,4,3,74,27,64,15,10,1,6,1,34,1,4,5,23,22,2,3,4,3,74,89,75,176,38,80,88,64,32,0,6,6,0,95,1,1,0,0,115,75,0,5,5,4,95,0,4,4,113,75,0,3,3,2,95,0,2,2,117,2,76,27,64,36,0,1,1,107,75,0,6,6,0,95,0,0,0,115,75,0,5,5,4,95,0,4,4,113,75,0,3,3,2,95,0,2,2,117,2,76,89,64,10,41,39,41,39,22,20,37,7,11,27,43] + "instructions": "S7AmUFhADwoBBgAiAQQFFxYCAwQDShtADwoBBgEiAQQFFxYCAwQDSllLsCZQWEAgAAYGAF8BAQAAc0sABQUEXwAEBHFLAAMDAl8AAgJ1AkwbQCQAAQFrSwAGBgBfAAAAc0sABQUEXwAEBHFLAAMDAl8AAgJ1AkxZQAopJyknFhQlBwsbKw==" }, "uni1DA3": { "name": "uni1DA3", "advanceWidth": 500, "contours": [[{"x":96,"y":452,"on":true},{"x":96,"y":669,"on":true},{"x":176,"y":669,"on":true},{"x":176,"y":452,"on":true},{"x":176,"y":420,"on":false},{"x":188,"y":399,"on":true},{"x":198,"y":382,"on":false},{"x":229,"y":364,"on":false},{"x":271,"y":364,"on":false},{"x":302,"y":382,"on":false},{"x":312,"y":399,"on":true},{"x":324,"y":420,"on":false},{"x":324,"y":452,"on":true},{"x":324,"y":669,"on":true},{"x":404,"y":669,"on":true},{"x":404,"y":154,"on":true},{"x":324,"y":154,"on":true},{"x":324,"y":347,"on":true},{"x":308,"y":322,"on":false},{"x":284,"y":307,"on":true},{"x":258,"y":292,"on":false},{"x":189,"y":292,"on":false},{"x":163,"y":307,"on":true},{"x":136,"y":323,"on":false},{"x":119,"y":352,"on":true},{"x":96,"y":392,"on":false}]], "references": [], - "instructions": [64,36,17,1,4,1,1,74,2,1,0,0,107,75,0,1,1,4,95,0,4,4,113,75,0,3,3,109,3,76,20,17,21,21,17,5,11,25,43] + "instructions": "QCQRAQQBAUoCAQAAa0sAAQEEXwAEBHFLAAMDbQNMFBEVFREFCxkr" }, "uni1DA4": { "name": "uni1DA4", "advanceWidth": 500, "contours": [[{"x":128,"y":298,"on":true},{"x":128,"y":370,"on":true},{"x":215,"y":370,"on":true},{"x":215,"y":459,"on":true},{"x":158,"y":459,"on":true},{"x":158,"y":523,"on":true},{"x":215,"y":523,"on":true},{"x":215,"y":597,"on":true},{"x":137,"y":597,"on":true},{"x":137,"y":669,"on":true},{"x":295,"y":669,"on":true},{"x":295,"y":523,"on":true},{"x":342,"y":523,"on":true},{"x":342,"y":459,"on":true},{"x":295,"y":459,"on":true},{"x":295,"y":370,"on":true},{"x":372,"y":370,"on":true},{"x":372,"y":298,"on":true}],[{"x":206,"y":757,"on":false},{"x":206,"y":798,"on":false},{"x":230,"y":821,"on":false},{"x":270,"y":821,"on":false},{"x":294,"y":798,"on":false},{"x":294,"y":757,"on":false},{"x":270,"y":734,"on":false},{"x":230,"y":734,"on":false}]], "references": [], - "instructions": [64,64,5,1,2,6,1,1,0,2,1,101,0,10,10,9,95,0,9,9,114,75,0,3,3,4,93,0,4,4,107,75,7,1,0,0,8,93,11,1,8,8,105,8,76,0,0,25,24,21,20,0,17,0,17,17,17,17,17,17,17,17,17,12,11,28,43] + "instructions": "QEAFAQIGAQEAAgFlAAoKCV8ACQlySwADAwRdAAQEa0sHAQAACF0LAQgIaQhMAAAZGBUUABEAERERERERERERDAscKw==" }, "uni1DA5": { "name": "uni1DA5", "advanceWidth": 500, "contours": [[{"x":128,"y":597,"on":true},{"x":128,"y":669,"on":true},{"x":290,"y":669,"on":true},{"x":290,"y":406,"on":true},{"x":290,"y":388,"on":false},{"x":300,"y":379,"on":true},{"x":308,"y":370,"on":false},{"x":322,"y":370,"on":true},{"x":379,"y":370,"on":true},{"x":379,"y":298,"on":true},{"x":322,"y":298,"on":true},{"x":285,"y":298,"on":false},{"x":259,"y":313,"on":true},{"x":237,"y":326,"on":false},{"x":224,"y":348,"on":true},{"x":210,"y":372,"on":false},{"x":210,"y":406,"on":true},{"x":210,"y":597,"on":true}]], "references": [], - "instructions": [64,34,4,1,3,3,0,93,0,0,0,107,75,0,1,1,2,95,0,2,2,105,2,76,0,0,0,17,0,17,33,36,17,5,11,23,43] + "instructions": "QCIEAQMDAF0AAABrSwABAQJfAAICaQJMAAAAEQARISQRBQsXKw==" }, "uni1DA6": { "name": "uni1DA6", "advanceWidth": 500, "contours": [[{"x":152,"y":298,"on":true},{"x":152,"y":370,"on":true},{"x":210,"y":370,"on":true},{"x":210,"y":597,"on":true},{"x":152,"y":597,"on":true},{"x":152,"y":669,"on":true},{"x":348,"y":669,"on":true},{"x":348,"y":597,"on":true},{"x":290,"y":597,"on":true},{"x":290,"y":370,"on":true},{"x":348,"y":370,"on":true},{"x":348,"y":298,"on":true}]], "references": [], - "instructions": [64,38,3,1,1,1,2,93,0,2,2,107,75,4,1,0,0,5,93,6,1,5,5,105,5,76,0,0,0,11,0,11,17,17,17,17,17,7,11,25,43] + "instructions": "QCYDAQEBAl0AAgJrSwQBAAAFXQYBBQVpBUwAAAALAAsREREREQcLGSs=" }, "uni1DA7": { "name": "uni1DA7", "advanceWidth": 500, "contours": [[{"x":152,"y":298,"on":true},{"x":152,"y":370,"on":true},{"x":210,"y":370,"on":true},{"x":210,"y":459,"on":true},{"x":158,"y":459,"on":true},{"x":158,"y":523,"on":true},{"x":210,"y":523,"on":true},{"x":210,"y":597,"on":true},{"x":152,"y":597,"on":true},{"x":152,"y":669,"on":true},{"x":348,"y":669,"on":true},{"x":348,"y":597,"on":true},{"x":290,"y":597,"on":true},{"x":290,"y":523,"on":true},{"x":342,"y":523,"on":true},{"x":342,"y":459,"on":true},{"x":290,"y":459,"on":true},{"x":290,"y":370,"on":true},{"x":348,"y":370,"on":true},{"x":348,"y":298,"on":true}]], "references": [], - "instructions": [64,52,6,1,2,7,1,1,0,2,1,101,5,1,3,3,4,93,0,4,4,107,75,8,1,0,0,9,93,10,1,9,9,105,9,76,0,0,0,19,0,19,17,17,17,17,17,17,17,17,17,11,11,29,43] + "instructions": "QDQGAQIHAQEAAgFlBQEDAwRdAAQEa0sIAQAACV0KAQkJaQlMAAAAEwATERERERERERERCwsdKw==" }, "uni1DA8": { "name": "uni1DA8", "advanceWidth": 500, "contours": [[{"x":124,"y":250,"on":true},{"x":124,"y":283,"on":false},{"x":138,"y":307,"on":true},{"x":149,"y":325,"on":false},{"x":167,"y":337,"on":true},{"x":191,"y":351,"on":false},{"x":226,"y":351,"on":true},{"x":240,"y":350,"on":false},{"x":254,"y":348,"on":true},{"x":254,"y":597,"on":true},{"x":172,"y":597,"on":true},{"x":172,"y":669,"on":true},{"x":334,"y":669,"on":true},{"x":334,"y":313,"on":true},{"x":382,"y":279,"on":false},{"x":415,"y":222,"on":true},{"x":429,"y":198,"on":false},{"x":438,"y":171,"on":true},{"x":367,"y":149,"on":true},{"x":360,"y":171,"on":false},{"x":348,"y":191,"on":true},{"x":339,"y":207,"on":false},{"x":328,"y":220,"on":true},{"x":324,"y":208,"on":false},{"x":319,"y":199,"on":true},{"x":306,"y":177,"on":false},{"x":283,"y":163,"on":true},{"x":258,"y":149,"on":false},{"x":227,"y":149,"on":true},{"x":194,"y":149,"on":false},{"x":169,"y":164,"on":true},{"x":150,"y":175,"on":false},{"x":138,"y":194,"on":true},{"x":124,"y":218,"on":false}],[{"x":200,"y":267,"on":false},{"x":200,"y":233,"on":false},{"x":216,"y":217,"on":false},{"x":227,"y":217,"on":true},{"x":237,"y":217,"on":false},{"x":244,"y":224,"on":true},{"x":254,"y":234,"on":false},{"x":254,"y":260,"on":true},{"x":254,"y":269,"on":false},{"x":254,"y":278,"on":true},{"x":241,"y":283,"on":false},{"x":230,"y":283,"on":true},{"x":216,"y":283,"on":false}],[{"x":250,"y":757,"on":false},{"x":250,"y":798,"on":false},{"x":274,"y":821,"on":false},{"x":314,"y":821,"on":false},{"x":338,"y":798,"on":false},{"x":338,"y":757,"on":false},{"x":314,"y":734,"on":false},{"x":274,"y":734,"on":false}]], "references": [], - "instructions": [64,72,13,8,2,5,0,43,22,2,4,5,17,1,3,4,3,74,18,1,3,71,0,7,7,6,95,0,6,6,114,75,0,1,1,2,93,0,2,2,107,75,0,0,0,5,95,0,5,5,113,75,0,4,4,3,95,0,3,3,117,3,76,19,19,38,39,47,17,19,21,8,11,28,43] + "instructions": "QEgNCAIFACsWAgQFEQEDBANKEgEDRwAHBwZfAAYGcksAAQECXQACAmtLAAAABV8ABQVxSwAEBANfAAMDdQNMExMmJy8RExUICxwr" }, "uni1DAB": { "name": "uni1DAB", "advanceWidth": 500, "contours": [[{"x":106,"y":298,"on":true},{"x":106,"y":669,"on":true},{"x":186,"y":669,"on":true},{"x":186,"y":370,"on":true},{"x":410,"y":370,"on":true},{"x":410,"y":298,"on":true}]], "references": [], - "instructions": [64,28,0,0,0,107,75,0,1,1,2,94,3,1,2,2,105,2,76,0,0,0,5,0,5,17,17,4,11,22,43] + "instructions": "QBwAAABrSwABAQJeAwECAmkCTAAAAAUABRERBAsWKw==" }, "uni1DA9": { "name": "uni1DA9", "advanceWidth": 500, "contours": [[{"x":132,"y":740,"on":true},{"x":132,"y":812,"on":true},{"x":295,"y":812,"on":true},{"x":295,"y":298,"on":true},{"x":295,"y":269,"on":false},{"x":303,"y":255,"on":true},{"x":310,"y":243,"on":false},{"x":323,"y":235,"on":true},{"x":340,"y":226,"on":false},{"x":374,"y":226,"on":true},{"x":374,"y":154,"on":true},{"x":304,"y":154,"on":false},{"x":271,"y":173,"on":true},{"x":246,"y":187,"on":false},{"x":232,"y":212,"on":true},{"x":215,"y":241,"on":false},{"x":215,"y":298,"on":true},{"x":215,"y":740,"on":true}]], "references": [], - "instructions": [64,34,4,1,3,3,0,93,0,0,0,104,75,0,1,1,2,95,0,2,2,109,2,76,0,0,0,17,0,17,17,22,17,5,11,23,43] + "instructions": "QCIEAQMDAF0AAABoSwABAQJfAAICbQJMAAAAEQARERYRBQsXKw==" }, "uni1DAC": { "name": "uni1DAC", "advanceWidth": 500, "contours": [[{"x":90,"y":298,"on":true},{"x":90,"y":669,"on":true},{"x":170,"y":669,"on":true},{"x":170,"y":649,"on":true},{"x":179,"y":661,"on":false},{"x":190,"y":668,"on":true},{"x":202,"y":675,"on":false},{"x":217,"y":675,"on":true},{"x":233,"y":675,"on":false},{"x":245,"y":667,"on":true},{"x":260,"y":658,"on":false},{"x":271,"y":640,"on":true},{"x":275,"y":634,"on":false},{"x":278,"y":626,"on":true},{"x":281,"y":634,"on":false},{"x":285,"y":642,"on":true},{"x":295,"y":660,"on":false},{"x":310,"y":668,"on":true},{"x":322,"y":675,"on":false},{"x":337,"y":675,"on":true},{"x":353,"y":675,"on":false},{"x":365,"y":667,"on":true},{"x":380,"y":658,"on":false},{"x":391,"y":640,"on":true},{"x":410,"y":608,"on":false},{"x":410,"y":554,"on":true},{"x":410,"y":298,"on":true},{"x":410,"y":214,"on":false},{"x":343,"y":176,"on":true},{"x":305,"y":154,"on":false},{"x":251,"y":154,"on":true},{"x":251,"y":225,"on":true},{"x":278,"y":225,"on":false},{"x":297,"y":236,"on":true},{"x":330,"y":255,"on":false},{"x":330,"y":298,"on":true},{"x":330,"y":554,"on":true},{"x":330,"y":588,"on":false},{"x":319,"y":599,"on":true},{"x":315,"y":603,"on":false},{"x":305,"y":603,"on":false},{"x":301,"y":599,"on":true},{"x":290,"y":588,"on":false},{"x":290,"y":554,"on":true},{"x":290,"y":298,"on":true},{"x":210,"y":298,"on":true},{"x":210,"y":554,"on":true},{"x":210,"y":588,"on":false},{"x":199,"y":599,"on":true},{"x":195,"y":603,"on":false},{"x":185,"y":603,"on":false},{"x":181,"y":599,"on":true},{"x":170,"y":588,"on":false},{"x":170,"y":554,"on":true},{"x":170,"y":298,"on":true}]], "references": [], - "instructions": [182,13,3,2,5,0,1,74,75,176,38,80,88,64,25,2,1,2,0,0,107,75,7,6,2,5,5,105,75,0,4,4,3,95,0,3,3,109,3,76,27,64,29,2,1,1,1,115,75,0,0,0,107,75,7,6,2,5,5,105,75,0,4,4,3,95,0,3,3,109,3,76,89,64,15,0,0,0,54,0,54,28,17,25,42,36,17,8,11,26,43] + "instructions": "tg0DAgUAAUpLsCZQWEAZAgECAABrSwcGAgUFaUsABAQDXwADA20DTBtAHQIBAQFzSwAAAGtLBwYCBQVpSwAEBANfAAMDbQNMWUAPAAAANgA2HBEZKiQRCAsaKw==" }, "uni1DAD": { "name": "uni1DAD", "advanceWidth": 500, "contours": [[{"x":90,"y":414,"on":true},{"x":90,"y":669,"on":true},{"x":170,"y":669,"on":true},{"x":170,"y":414,"on":true},{"x":170,"y":380,"on":false},{"x":181,"y":368,"on":true},{"x":185,"y":364,"on":false},{"x":195,"y":364,"on":false},{"x":199,"y":368,"on":true},{"x":210,"y":380,"on":false},{"x":210,"y":414,"on":true},{"x":210,"y":669,"on":true},{"x":290,"y":669,"on":true},{"x":290,"y":414,"on":true},{"x":290,"y":380,"on":false},{"x":301,"y":368,"on":true},{"x":305,"y":364,"on":false},{"x":315,"y":364,"on":false},{"x":319,"y":368,"on":true},{"x":330,"y":380,"on":false},{"x":330,"y":414,"on":true},{"x":330,"y":669,"on":true},{"x":410,"y":669,"on":true},{"x":410,"y":154,"on":true},{"x":330,"y":154,"on":true},{"x":330,"y":318,"on":true},{"x":321,"y":306,"on":false},{"x":310,"y":299,"on":true},{"x":298,"y":292,"on":false},{"x":283,"y":292,"on":true},{"x":267,"y":292,"on":false},{"x":255,"y":300,"on":true},{"x":240,"y":309,"on":false},{"x":229,"y":327,"on":true},{"x":225,"y":333,"on":false},{"x":222,"y":341,"on":true},{"x":219,"y":333,"on":false},{"x":215,"y":325,"on":true},{"x":205,"y":307,"on":false},{"x":190,"y":299,"on":true},{"x":178,"y":292,"on":false},{"x":163,"y":292,"on":true},{"x":147,"y":292,"on":false},{"x":135,"y":300,"on":true},{"x":120,"y":309,"on":false},{"x":109,"y":327,"on":true},{"x":90,"y":360,"on":false}]], "references": [], - "instructions": [64,35,35,25,2,4,0,1,74,2,1,2,0,0,107,75,5,1,4,4,113,75,0,3,3,109,3,76,42,36,17,25,25,17,6,11,26,43] + "instructions": "QCMjGQIEAAFKAgECAABrSwUBBARxSwADA20DTCokERkZEQYLGis=" }, "uni1DAE": { "name": "uni1DAE", "advanceWidth": 500, "contours": [[{"x":17,"y":154,"on":true},{"x":17,"y":226,"on":true},{"x":44,"y":226,"on":false},{"x":63,"y":236,"on":true},{"x":96,"y":256,"on":false},{"x":96,"y":298,"on":true},{"x":96,"y":669,"on":true},{"x":176,"y":669,"on":true},{"x":176,"y":620,"on":true},{"x":192,"y":645,"on":false},{"x":216,"y":660,"on":true},{"x":242,"y":675,"on":false},{"x":311,"y":675,"on":false},{"x":337,"y":660,"on":true},{"x":364,"y":644,"on":false},{"x":381,"y":615,"on":true},{"x":404,"y":575,"on":false},{"x":404,"y":515,"on":true},{"x":404,"y":298,"on":true},{"x":324,"y":298,"on":true},{"x":324,"y":515,"on":true},{"x":324,"y":547,"on":false},{"x":312,"y":568,"on":true},{"x":302,"y":585,"on":false},{"x":271,"y":603,"on":false},{"x":229,"y":603,"on":false},{"x":198,"y":585,"on":false},{"x":188,"y":568,"on":true},{"x":176,"y":547,"on":false},{"x":176,"y":515,"on":true},{"x":176,"y":298,"on":true},{"x":176,"y":255,"on":false},{"x":158,"y":223,"on":true},{"x":141,"y":193,"on":false},{"x":109,"y":175,"on":true},{"x":71,"y":154,"on":false}]], "references": [], - "instructions": [181,8,1,4,1,1,74,75,176,38,80,88,64,28,0,4,4,1,95,2,1,1,1,107,75,0,3,3,105,75,0,0,0,5,95,6,1,5,5,109,5,76,27,64,32,0,1,1,107,75,0,4,4,2,95,0,2,2,115,75,0,3,3,105,75,0,0,0,5,95,6,1,5,5,109,5,76,89,64,14,0,0,0,35,0,35,21,22,20,20,17,7,11,25,43] + "instructions": "tQgBBAEBSkuwJlBYQBwABAQBXwIBAQFrSwADA2lLAAAABV8GAQUFbQVMG0AgAAEBa0sABAQCXwACAnNLAAMDaUsAAAAFXwYBBQVtBUxZQA4AAAAjACMVFhQUEQcLGSs=" }, "uni1DAF": { "name": "uni1DAF", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":669,"on":true},{"x":176,"y":669,"on":true},{"x":176,"y":620,"on":true},{"x":192,"y":645,"on":false},{"x":216,"y":660,"on":true},{"x":242,"y":675,"on":false},{"x":311,"y":675,"on":false},{"x":337,"y":660,"on":true},{"x":364,"y":644,"on":false},{"x":381,"y":615,"on":true},{"x":404,"y":575,"on":false},{"x":404,"y":515,"on":true},{"x":404,"y":298,"on":true},{"x":404,"y":269,"on":false},{"x":412,"y":255,"on":true},{"x":419,"y":243,"on":false},{"x":432,"y":235,"on":true},{"x":449,"y":226,"on":false},{"x":483,"y":226,"on":true},{"x":483,"y":154,"on":true},{"x":413,"y":154,"on":false},{"x":380,"y":173,"on":true},{"x":355,"y":187,"on":false},{"x":341,"y":212,"on":true},{"x":324,"y":241,"on":false},{"x":324,"y":298,"on":true},{"x":324,"y":515,"on":true},{"x":324,"y":547,"on":false},{"x":312,"y":568,"on":true},{"x":302,"y":585,"on":false},{"x":271,"y":603,"on":false},{"x":229,"y":603,"on":false},{"x":198,"y":585,"on":false},{"x":188,"y":568,"on":true},{"x":176,"y":547,"on":false},{"x":176,"y":515,"on":true},{"x":176,"y":298,"on":true}]], "references": [], - "instructions": [181,3,1,4,0,1,74,75,176,38,80,88,64,28,0,4,4,0,95,1,1,0,0,107,75,6,1,5,5,105,75,0,2,2,3,95,0,3,3,109,3,76,27,64,32,0,0,0,107,75,0,4,4,1,95,0,1,1,115,75,6,1,5,5,105,75,0,2,2,3,95,0,3,3,109,3,76,89,64,14,0,0,0,37,0,37,26,17,27,20,17,7,11,25,43] + "instructions": "tQMBBAABSkuwJlBYQBwABAQAXwEBAABrSwYBBQVpSwACAgNfAAMDbQNMG0AgAAAAa0sABAQBXwABAXNLBgEFBWlLAAICA18AAwNtA0xZQA4AAAAlACUaERsUEQcLGSs=" }, "uni1DB0": { "name": "uni1DB0", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":669,"on":true},{"x":206,"y":669,"on":true},{"x":327,"y":396,"on":true},{"x":327,"y":403,"on":false},{"x":326,"y":409,"on":true},{"x":324,"y":468,"on":false},{"x":324,"y":521,"on":true},{"x":324,"y":669,"on":true},{"x":404,"y":669,"on":true},{"x":404,"y":298,"on":true},{"x":294,"y":298,"on":true},{"x":173,"y":571,"on":true},{"x":173,"y":564,"on":false},{"x":174,"y":558,"on":true},{"x":176,"y":499,"on":false},{"x":176,"y":446,"on":true},{"x":176,"y":298,"on":true}]], "references": [], - "instructions": [64,35,14,12,5,3,4,2,0,1,74,1,1,0,0,107,75,4,3,2,2,2,105,2,76,0,0,0,17,0,17,17,22,17,5,11,23,43] + "instructions": "QCMODAUDBAIAAUoBAQAAa0sEAwICAmkCTAAAABEAEREWEQULFys=" }, "uni1DB1": { "name": "uni1DB1", "advanceWidth": 500, "contours": [[{"x":90,"y":452,"on":true},{"x":90,"y":515,"on":true},{"x":90,"y":566,"on":false},{"x":112,"y":603,"on":true},{"x":130,"y":635,"on":false},{"x":162,"y":654,"on":true},{"x":199,"y":675,"on":false},{"x":301,"y":675,"on":false},{"x":338,"y":654,"on":true},{"x":370,"y":635,"on":false},{"x":388,"y":603,"on":true},{"x":409,"y":566,"on":false},{"x":410,"y":515,"on":true},{"x":410,"y":452,"on":true},{"x":410,"y":401,"on":false},{"x":388,"y":364,"on":true},{"x":370,"y":332,"on":false},{"x":338,"y":313,"on":true},{"x":302,"y":292,"on":false},{"x":199,"y":292,"on":false},{"x":162,"y":313,"on":true},{"x":130,"y":332,"on":false},{"x":112,"y":364,"on":true},{"x":91,"y":401,"on":false}],[{"x":170,"y":452,"on":true},{"x":170,"y":422,"on":false},{"x":182,"y":401,"on":true},{"x":203,"y":364,"on":false},{"x":250,"y":364,"on":true},{"x":274,"y":364,"on":false},{"x":308,"y":384,"on":false},{"x":318,"y":401,"on":true},{"x":330,"y":422,"on":false},{"x":330,"y":452,"on":true}],[{"x":170,"y":515,"on":true},{"x":330,"y":515,"on":true},{"x":330,"y":545,"on":false},{"x":318,"y":566,"on":true},{"x":296,"y":603,"on":false},{"x":250,"y":603,"on":true},{"x":226,"y":603,"on":false},{"x":192,"y":583,"on":false},{"x":182,"y":566,"on":true},{"x":170,"y":545,"on":false}]], "references": [], - "instructions": [64,46,0,4,6,1,3,2,4,3,101,0,5,5,0,95,0,0,0,115,75,0,2,2,1,95,0,1,1,113,1,76,24,24,40,38,35,34,24,33,24,33,40,27,22,7,11,23,43] + "instructions": "QC4ABAYBAwIEA2UABQUAXwAAAHNLAAICAV8AAQFxAUwYGCgmIyIYIRghKBsWBwsXKw==" }, "uni1DB2": { "name": "uni1DB2", "advanceWidth": 500, "contours": [[{"x":90,"y":452,"on":true},{"x":90,"y":515,"on":true},{"x":90,"y":566,"on":false},{"x":112,"y":603,"on":true},{"x":130,"y":635,"on":false},{"x":162,"y":654,"on":true},{"x":184,"y":666,"on":false},{"x":210,"y":671,"on":true},{"x":210,"y":812,"on":true},{"x":290,"y":812,"on":true},{"x":290,"y":671,"on":true},{"x":316,"y":666,"on":false},{"x":338,"y":654,"on":true},{"x":370,"y":635,"on":false},{"x":388,"y":603,"on":true},{"x":409,"y":566,"on":false},{"x":410,"y":515,"on":true},{"x":410,"y":452,"on":true},{"x":410,"y":401,"on":false},{"x":388,"y":364,"on":true},{"x":370,"y":332,"on":false},{"x":338,"y":313,"on":true},{"x":317,"y":301,"on":false},{"x":290,"y":296,"on":true},{"x":290,"y":154,"on":true},{"x":210,"y":154,"on":true},{"x":210,"y":296,"on":true},{"x":184,"y":301,"on":false},{"x":162,"y":313,"on":true},{"x":130,"y":332,"on":false},{"x":112,"y":364,"on":true},{"x":91,"y":401,"on":false}],[{"x":170,"y":452,"on":true},{"x":170,"y":422,"on":false},{"x":182,"y":401,"on":true},{"x":192,"y":383,"on":false},{"x":210,"y":373,"on":true},{"x":210,"y":594,"on":true},{"x":192,"y":584,"on":false},{"x":182,"y":566,"on":true},{"x":170,"y":545,"on":false},{"x":170,"y":515,"on":true}],[{"x":290,"y":373,"on":true},{"x":308,"y":383,"on":false},{"x":318,"y":401,"on":true},{"x":330,"y":422,"on":false},{"x":330,"y":452,"on":true},{"x":330,"y":515,"on":true},{"x":330,"y":545,"on":false},{"x":318,"y":566,"on":true},{"x":308,"y":584,"on":false},{"x":290,"y":594,"on":true}]], "references": [], - "instructions": [64,29,51,42,37,36,26,23,10,7,8,1,0,1,74,0,0,0,104,75,0,1,1,109,1,76,31,24,2,11,22,43] + "instructions": "QB0zKiUkGhcKBwgBAAFKAAAAaEsAAQFtAUwfGAILFis=" }, "uni1DB3": { "name": "uni1DB3", "advanceWidth": 500, "contours": [[{"x":92,"y":298,"on":true},{"x":92,"y":375,"on":true},{"x":94,"y":375,"on":true},{"x":167,"y":405,"on":true},{"x":172,"y":396,"on":false},{"x":179,"y":388,"on":true},{"x":203,"y":364,"on":false},{"x":248,"y":364,"on":true},{"x":298,"y":364,"on":false},{"x":317,"y":383,"on":true},{"x":325,"y":391,"on":false},{"x":325,"y":403,"on":true},{"x":325,"y":416,"on":false},{"x":314,"y":426,"on":true},{"x":296,"y":444,"on":false},{"x":241,"y":444,"on":true},{"x":184,"y":445,"on":false},{"x":153,"y":463,"on":true},{"x":127,"y":478,"on":false},{"x":111,"y":505,"on":true},{"x":95,"y":533,"on":false},{"x":95,"y":564,"on":true},{"x":95,"y":591,"on":false},{"x":107,"y":613,"on":true},{"x":120,"y":636,"on":false},{"x":147,"y":651,"on":true},{"x":188,"y":675,"on":false},{"x":252,"y":675,"on":true},{"x":311,"y":675,"on":false},{"x":350,"y":652,"on":true},{"x":388,"y":630,"on":false},{"x":406,"y":592,"on":true},{"x":333,"y":562,"on":true},{"x":328,"y":571,"on":false},{"x":321,"y":579,"on":true},{"x":297,"y":603,"on":false},{"x":252,"y":603,"on":true},{"x":202,"y":603,"on":false},{"x":183,"y":584,"on":true},{"x":175,"y":576,"on":false},{"x":175,"y":564,"on":true},{"x":175,"y":551,"on":false},{"x":186,"y":541,"on":true},{"x":204,"y":523,"on":false},{"x":259,"y":523,"on":true},{"x":316,"y":522,"on":false},{"x":347,"y":504,"on":true},{"x":373,"y":489,"on":false},{"x":389,"y":462,"on":true},{"x":405,"y":434,"on":false},{"x":405,"y":403,"on":true},{"x":405,"y":376,"on":false},{"x":393,"y":354,"on":true},{"x":380,"y":331,"on":false},{"x":353,"y":316,"on":true},{"x":312,"y":292,"on":false},{"x":248,"y":292,"on":true},{"x":204,"y":292,"on":false},{"x":172,"y":304,"on":true},{"x":172,"y":298,"on":true},{"x":172,"y":269,"on":false},{"x":181,"y":255,"on":true},{"x":188,"y":243,"on":false},{"x":201,"y":235,"on":true},{"x":218,"y":226,"on":false},{"x":251,"y":226,"on":true},{"x":252,"y":154,"on":true},{"x":182,"y":154,"on":false},{"x":148,"y":173,"on":true},{"x":123,"y":187,"on":false},{"x":109,"y":212,"on":true},{"x":92,"y":241,"on":false}]], "references": [], - "instructions": [64,66,32,31,2,4,3,3,1,2,0,1,58,1,5,0,3,74,0,4,0,1,0,4,1,103,0,3,3,2,95,0,2,2,115,75,0,0,0,5,95,0,5,5,113,75,0,6,6,7,95,0,7,7,109,7,76,17,23,42,38,39,42,38,38,8,11,28,43] + "instructions": "QEIgHwIEAwMBAgABOgEFAANKAAQAAQAEAWcAAwMCXwACAnNLAAAABV8ABQVxSwAGBgdfAAcHbQdMERcqJicqJiYICxwr" }, "uni1DB4": { "name": "uni1DB4", "advanceWidth": 500, "contours": [[{"x":131,"y":162,"on":true},{"x":131,"y":234,"on":true},{"x":133,"y":234,"on":true},{"x":169,"y":234,"on":false},{"x":185,"y":243,"on":true},{"x":196,"y":250,"on":false},{"x":203,"y":261,"on":true},{"x":210,"y":274,"on":false},{"x":210,"y":298,"on":true},{"x":210,"y":704,"on":true},{"x":210,"y":757,"on":false},{"x":226,"y":784,"on":true},{"x":240,"y":808,"on":false},{"x":263,"y":821,"on":true},{"x":296,"y":840,"on":false},{"x":369,"y":840,"on":true},{"x":369,"y":768,"on":true},{"x":367,"y":768,"on":true},{"x":331,"y":768,"on":false},{"x":315,"y":759,"on":true},{"x":304,"y":752,"on":false},{"x":297,"y":741,"on":true},{"x":290,"y":728,"on":false},{"x":290,"y":704,"on":true},{"x":290,"y":298,"on":true},{"x":290,"y":245,"on":false},{"x":274,"y":218,"on":true},{"x":260,"y":194,"on":false},{"x":237,"y":181,"on":true},{"x":204,"y":162,"on":false}]], "references": [], - "instructions": [75,176,26,80,88,64,22,0,2,2,1,95,0,1,1,114,75,0,0,0,3,95,4,1,3,3,109,3,76,27,64,20,0,1,0,2,0,1,2,103,0,0,0,3,95,4,1,3,3,109,3,76,89,64,12,0,0,0,29,0,29,33,27,33,5,11,23,43] + "instructions": "S7AaUFhAFgACAgFfAAEBcksAAAADXwQBAwNtA0wbQBQAAQACAAECZwAAAANfBAEDA20DTFlADAAAAB0AHSEbIQULFys=" }, "uni1DB5": { "name": "uni1DB5", "advanceWidth": 500, "contours": [[{"x":110,"y":597,"on":true},{"x":110,"y":669,"on":true},{"x":175,"y":669,"on":true},{"x":175,"y":812,"on":true},{"x":255,"y":812,"on":true},{"x":255,"y":669,"on":true},{"x":354,"y":669,"on":true},{"x":354,"y":597,"on":true},{"x":255,"y":597,"on":true},{"x":255,"y":458,"on":true},{"x":255,"y":403,"on":false},{"x":280,"y":378,"on":true},{"x":293,"y":365,"on":false},{"x":312,"y":364,"on":true},{"x":332,"y":364,"on":false},{"x":346,"y":378,"on":true},{"x":364,"y":396,"on":false},{"x":370,"y":432,"on":true},{"x":445,"y":406,"on":true},{"x":445,"y":298,"on":true},{"x":445,"y":255,"on":false},{"x":426,"y":223,"on":true},{"x":409,"y":193,"on":false},{"x":378,"y":175,"on":true},{"x":340,"y":154,"on":false},{"x":286,"y":154,"on":true},{"x":286,"y":226,"on":true},{"x":313,"y":226,"on":false},{"x":332,"y":236,"on":true},{"x":365,"y":255,"on":false},{"x":365,"y":298,"on":true},{"x":365,"y":302,"on":true},{"x":342,"y":293,"on":false},{"x":312,"y":292,"on":true},{"x":274,"y":292,"on":false},{"x":216,"y":326,"on":false},{"x":199,"y":356,"on":true},{"x":175,"y":397,"on":false},{"x":175,"y":458,"on":true},{"x":175,"y":597,"on":true}]], "references": [], - "instructions": [64,67,18,17,2,4,3,30,1,7,4,2,74,0,1,1,104,75,9,8,2,3,3,0,93,2,1,0,0,107,75,0,4,4,7,95,0,7,7,113,75,0,6,6,5,95,0,5,5,109,5,76,0,0,0,39,0,39,37,17,26,36,17,17,17,17,10,11,28,43] + "instructions": "QEMSEQIEAx4BBwQCSgABAWhLCQgCAwMAXQIBAABrSwAEBAdfAAcHcUsABgYFXwAFBW0FTAAAACcAJyURGiQRERERCgscKw==" }, "uni1DB6": { "name": "uni1DB6", "advanceWidth": 500, "contours": [[{"x":86,"y":459,"on":true},{"x":86,"y":523,"on":true},{"x":96,"y":523,"on":true},{"x":96,"y":669,"on":true},{"x":176,"y":669,"on":true},{"x":176,"y":523,"on":true},{"x":324,"y":523,"on":true},{"x":324,"y":669,"on":true},{"x":404,"y":669,"on":true},{"x":404,"y":523,"on":true},{"x":414,"y":523,"on":true},{"x":414,"y":459,"on":true},{"x":404,"y":459,"on":true},{"x":404,"y":298,"on":true},{"x":324,"y":298,"on":true},{"x":324,"y":347,"on":true},{"x":308,"y":322,"on":false},{"x":284,"y":307,"on":true},{"x":258,"y":292,"on":false},{"x":189,"y":292,"on":false},{"x":163,"y":307,"on":true},{"x":136,"y":323,"on":false},{"x":119,"y":352,"on":true},{"x":96,"y":392,"on":false},{"x":96,"y":452,"on":true},{"x":96,"y":459,"on":true}],[{"x":176,"y":452,"on":true},{"x":176,"y":420,"on":false},{"x":188,"y":399,"on":true},{"x":198,"y":382,"on":false},{"x":229,"y":364,"on":false},{"x":271,"y":364,"on":false},{"x":302,"y":382,"on":false},{"x":312,"y":399,"on":true},{"x":324,"y":420,"on":false},{"x":324,"y":452,"on":true},{"x":324,"y":459,"on":true},{"x":176,"y":459,"on":true}]], "references": [], - "instructions": [64,15,24,1,8,5,15,1,6,8,2,74,0,1,5,1,73,75,176,38,80,88,64,29,4,2,2,0,9,1,5,8,0,5,101,3,1,1,1,107,75,0,8,8,6,95,7,1,6,6,105,6,76,27,64,33,4,2,2,0,9,1,5,8,0,5,101,3,1,1,1,107,75,0,6,6,105,75,0,8,8,7,95,0,7,7,113,7,76,89,64,14,37,35,27,20,17,17,17,17,17,17,17,10,11,29,43] + "instructions": "QA8YAQgFDwEGCAJKAAEFAUlLsCZQWEAdBAICAAkBBQgABWUDAQEBa0sACAgGXwcBBgZpBkwbQCEEAgIACQEFCAAFZQMBAQFrSwAGBmlLAAgIB18ABwdxB0xZQA4lIxsUEREREREREQoLHSs=" }, "uni1DB7": { "name": "uni1DB7", "advanceWidth": 500, "contours": [[{"x":96,"y":452,"on":true},{"x":96,"y":485,"on":true},{"x":96,"y":532,"on":false},{"x":115,"y":565,"on":true},{"x":126,"y":584,"on":false},{"x":143,"y":597,"on":true},{"x":96,"y":597,"on":true},{"x":96,"y":669,"on":true},{"x":219,"y":669,"on":true},{"x":219,"y":567,"on":true},{"x":218,"y":567,"on":true},{"x":206,"y":567,"on":false},{"x":197,"y":558,"on":true},{"x":176,"y":537,"on":false},{"x":176,"y":485,"on":true},{"x":176,"y":452,"on":true},{"x":176,"y":420,"on":false},{"x":188,"y":399,"on":true},{"x":198,"y":382,"on":false},{"x":229,"y":364,"on":false},{"x":271,"y":364,"on":false},{"x":302,"y":382,"on":false},{"x":312,"y":399,"on":true},{"x":324,"y":420,"on":false},{"x":324,"y":452,"on":true},{"x":324,"y":485,"on":true},{"x":324,"y":537,"on":false},{"x":303,"y":558,"on":true},{"x":294,"y":567,"on":false},{"x":282,"y":567,"on":true},{"x":281,"y":567,"on":true},{"x":281,"y":669,"on":true},{"x":404,"y":669,"on":true},{"x":404,"y":597,"on":true},{"x":357,"y":597,"on":true},{"x":374,"y":584,"on":false},{"x":385,"y":565,"on":true},{"x":404,"y":533,"on":false},{"x":404,"y":485,"on":true},{"x":404,"y":452,"on":true},{"x":404,"y":399,"on":false},{"x":383,"y":362,"on":true},{"x":365,"y":330,"on":false},{"x":333,"y":312,"on":true},{"x":299,"y":292,"on":false},{"x":202,"y":292,"on":false},{"x":167,"y":312,"on":true},{"x":135,"y":330,"on":false},{"x":117,"y":362,"on":true},{"x":96,"y":399,"on":false}]], "references": [], - "instructions": [75,176,41,80,88,64,31,4,1,2,0,3,0,2,112,6,1,0,0,1,93,5,1,1,1,107,75,0,3,3,7,95,0,7,7,113,7,76,27,75,176,42,80,88,64,32,4,1,2,0,3,0,2,3,126,6,1,0,0,1,93,5,1,1,1,107,75,0,3,3,7,95,0,7,7,113,7,76,27,75,176,43,80,88,64,31,4,1,2,0,3,0,2,112,6,1,0,0,1,93,5,1,1,1,107,75,0,3,3,7,95,0,7,7,113,7,76,27,64,32,4,1,2,0,3,0,2,3,126,6,1,0,0,1,93,5,1,1,1,107,75,0,3,3,7,95,0,7,7,113,7,76,89,89,89,64,11,26,17,18,24,24,33,17,21,8,11,28,43] + "instructions": "S7ApUFhAHwQBAgADAAJwBgEAAAFdBQEBAWtLAAMDB18ABwdxB0wbS7AqUFhAIAQBAgADAAIDfgYBAAABXQUBAQFrSwADAwdfAAcHcQdMG0uwK1BYQB8EAQIAAwACcAYBAAABXQUBAQFrSwADAwdfAAcHcQdMG0AgBAECAAMAAgN+BgEAAAFdBQEBAWtLAAMDB18ABwdxB0xZWVlACxoREhgYIREVCAscKw==" }, "uni1DB8": { "name": "uni1DB8", "advanceWidth": 500, "contours": [[{"x":96,"y":434,"on":true},{"x":96,"y":669,"on":true},{"x":176,"y":669,"on":true},{"x":176,"y":434,"on":true},{"x":176,"y":392,"on":false},{"x":208,"y":374,"on":true},{"x":225,"y":364,"on":false},{"x":275,"y":364,"on":false},{"x":292,"y":374,"on":true},{"x":324,"y":392,"on":false},{"x":324,"y":434,"on":true},{"x":324,"y":669,"on":true},{"x":404,"y":669,"on":true},{"x":404,"y":434,"on":true},{"x":404,"y":391,"on":false},{"x":386,"y":360,"on":true},{"x":369,"y":331,"on":false},{"x":339,"y":313,"on":true},{"x":303,"y":292,"on":false},{"x":198,"y":292,"on":false},{"x":161,"y":313,"on":true},{"x":96,"y":350,"on":false}]], "references": [], - "instructions": [64,24,2,1,0,0,107,75,0,1,1,3,95,0,3,3,113,3,76,22,20,20,17,4,11,24,43] + "instructions": "QBgCAQAAa0sAAQEDXwADA3EDTBYUFBEECxgr" }, "uni1DB9": { "name": "uni1DB9", "advanceWidth": 500, "contours": [[{"x":96,"y":452,"on":true},{"x":96,"y":669,"on":true},{"x":176,"y":669,"on":true},{"x":176,"y":452,"on":true},{"x":176,"y":420,"on":false},{"x":188,"y":399,"on":true},{"x":198,"y":382,"on":false},{"x":229,"y":364,"on":false},{"x":271,"y":364,"on":false},{"x":302,"y":382,"on":false},{"x":312,"y":399,"on":true},{"x":324,"y":420,"on":false},{"x":324,"y":452,"on":true},{"x":324,"y":524,"on":true},{"x":404,"y":524,"on":true},{"x":404,"y":452,"on":true},{"x":404,"y":399,"on":false},{"x":383,"y":362,"on":true},{"x":365,"y":330,"on":false},{"x":333,"y":312,"on":true},{"x":299,"y":292,"on":false},{"x":202,"y":292,"on":false},{"x":167,"y":312,"on":true},{"x":135,"y":330,"on":false},{"x":117,"y":362,"on":true},{"x":96,"y":399,"on":false}],[{"x":250,"y":597,"on":true},{"x":250,"y":669,"on":true},{"x":302,"y":669,"on":false},{"x":338,"y":648,"on":true},{"x":368,"y":630,"on":false},{"x":385,"y":601,"on":true},{"x":404,"y":569,"on":false},{"x":404,"y":525,"on":true},{"x":324,"y":524,"on":true},{"x":324,"y":547,"on":false},{"x":314,"y":564,"on":true},{"x":306,"y":579,"on":false},{"x":291,"y":587,"on":true},{"x":274,"y":597,"on":false}]], "references": [], - "instructions": [64,53,0,5,6,2,6,5,2,126,0,2,1,6,2,1,124,7,1,6,6,0,95,4,1,0,0,107,75,0,1,1,3,95,0,3,3,113,3,76,26,26,26,39,26,39,21,22,22,21,21,17,8,11,26,43] + "instructions": "QDUABQYCBgUCfgACAQYCAXwHAQYGAF8EAQAAa0sAAQEDXwADA3EDTBoaGicaJxUWFhUVEQgLGis=" }, "uni1DBA": { "name": "uni1DBA", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":335,"on":true},{"x":96,"y":436,"on":false},{"x":210,"y":669,"on":true},{"x":290,"y":669,"on":true},{"x":404,"y":436,"on":false},{"x":404,"y":335,"on":true},{"x":404,"y":298,"on":true},{"x":324,"y":298,"on":true},{"x":324,"y":335,"on":true},{"x":324,"y":419,"on":false},{"x":250,"y":602,"on":true},{"x":176,"y":419,"on":false},{"x":176,"y":335,"on":true},{"x":176,"y":298,"on":true}]], "references": [], - "instructions": [64,30,11,1,1,0,1,74,0,0,0,107,75,3,2,2,1,1,105,1,76,0,0,0,14,0,14,19,19,4,11,22,43] + "instructions": "QB4LAQEAAUoAAABrSwMCAgEBaQFMAAAADgAOExMECxYr" }, "uni1DBC": { "name": "uni1DBC", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":370,"on":true},{"x":308,"y":597,"on":true},{"x":96,"y":597,"on":true},{"x":96,"y":669,"on":true},{"x":404,"y":669,"on":true},{"x":404,"y":597,"on":true},{"x":192,"y":370,"on":true},{"x":404,"y":370,"on":true},{"x":404,"y":298,"on":true},{"x":404,"y":269,"on":false},{"x":412,"y":255,"on":true},{"x":419,"y":243,"on":false},{"x":432,"y":235,"on":true},{"x":449,"y":226,"on":false},{"x":483,"y":226,"on":true},{"x":483,"y":154,"on":true},{"x":413,"y":154,"on":false},{"x":380,"y":173,"on":true},{"x":355,"y":187,"on":false},{"x":341,"y":212,"on":true},{"x":324,"y":241,"on":false},{"x":324,"y":298,"on":true}]], "references": [], - "instructions": [64,54,6,1,0,1,1,2,2,73,0,0,0,1,93,0,1,1,107,75,0,2,2,5,93,6,1,5,5,105,75,0,3,3,4,95,0,4,4,109,4,76,0,0,0,22,0,22,17,22,18,17,18,7,11,25,43] + "instructions": "QDYGAQABAQICSQAAAAFdAAEBa0sAAgIFXQYBBQVpSwADAwRfAAQEbQRMAAAAFgAWERYSERIHCxkr" }, "uni1DBD": { "name": "uni1DBD", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":370,"on":true},{"x":308,"y":597,"on":true},{"x":96,"y":597,"on":true},{"x":96,"y":669,"on":true},{"x":404,"y":669,"on":true},{"x":404,"y":597,"on":true},{"x":192,"y":370,"on":true},{"x":220,"y":370,"on":true},{"x":224,"y":378,"on":false},{"x":229,"y":386,"on":true},{"x":257,"y":435,"on":false},{"x":293,"y":456,"on":true},{"x":320,"y":471,"on":false},{"x":351,"y":471,"on":true},{"x":380,"y":471,"on":false},{"x":401,"y":459,"on":true},{"x":419,"y":449,"on":false},{"x":429,"y":431,"on":true},{"x":440,"y":411,"on":false},{"x":440,"y":385,"on":true},{"x":440,"y":360,"on":false},{"x":430,"y":341,"on":true},{"x":420,"y":323,"on":false},{"x":400,"y":312,"on":true},{"x":376,"y":298,"on":false},{"x":342,"y":298,"on":true},{"x":256,"y":298,"on":true},{"x":246,"y":265,"on":false},{"x":239,"y":224,"on":true},{"x":174,"y":235,"on":true},{"x":182,"y":269,"on":false},{"x":191,"y":298,"on":true}],[{"x":288,"y":370,"on":true},{"x":342,"y":370,"on":true},{"x":361,"y":370,"on":false},{"x":369,"y":379,"on":true},{"x":374,"y":384,"on":false},{"x":374,"y":391,"on":true},{"x":374,"y":400,"on":false},{"x":369,"y":405,"on":true},{"x":363,"y":411,"on":false},{"x":351,"y":411,"on":true},{"x":335,"y":411,"on":false},{"x":321,"y":403,"on":true},{"x":303,"y":393,"on":false}]], "references": [], - "instructions": [64,63,6,1,0,1,1,2,2,73,30,29,2,4,71,0,3,0,7,2,3,7,103,0,0,0,1,93,0,1,1,107,75,6,1,2,2,4,93,8,5,2,4,4,105,4,76,0,0,43,41,35,33,0,32,0,32,42,37,18,17,18,9,11,25,43] + "instructions": "QD8GAQABAQICSR4dAgRHAAMABwIDB2cAAAABXQABAWtLBgECAgRdCAUCBARpBEwAACspIyEAIAAgKiUSERIJCxkr" }, "uni1DBE": { "name": "uni1DBE", "advanceWidth": 500, "contours": [[{"x":92,"y":263,"on":true},{"x":169,"y":284,"on":true},{"x":172,"y":263,"on":false},{"x":187,"y":248,"on":true},{"x":208,"y":226,"on":false},{"x":246,"y":226,"on":true},{"x":270,"y":226,"on":false},{"x":287,"y":237,"on":true},{"x":303,"y":246,"on":false},{"x":313,"y":262,"on":true},{"x":324,"y":281,"on":false},{"x":324,"y":337,"on":false},{"x":313,"y":357,"on":true},{"x":293,"y":391,"on":false},{"x":250,"y":391,"on":true},{"x":158,"y":391,"on":true},{"x":158,"y":463,"on":true},{"x":285,"y":597,"on":true},{"x":96,"y":597,"on":true},{"x":96,"y":669,"on":true},{"x":381,"y":669,"on":true},{"x":381,"y":597,"on":true},{"x":254,"y":463,"on":true},{"x":301,"y":462,"on":false},{"x":335,"y":443,"on":true},{"x":366,"y":425,"on":false},{"x":384,"y":394,"on":true},{"x":404,"y":359,"on":false},{"x":404,"y":261,"on":false},{"x":384,"y":225,"on":true},{"x":366,"y":194,"on":false},{"x":334,"y":176,"on":true},{"x":297,"y":154,"on":false},{"x":246,"y":154,"on":true},{"x":192,"y":154,"on":false},{"x":155,"y":176,"on":true},{"x":125,"y":193,"on":false},{"x":107,"y":224,"on":true},{"x":96,"y":243,"on":false}]], "references": [], - "instructions": [64,53,16,1,4,2,1,1,0,1,2,74,21,1,2,1,73,0,4,0,1,0,4,1,101,0,2,2,3,93,0,3,3,107,75,0,0,0,5,95,0,5,5,109,5,76,41,18,17,18,39,36,6,11,26,43] + "instructions": "QDUQAQQCAQEAAQJKFQECAUkABAABAAQBZQACAgNdAAMDa0sAAAAFXwAFBW0FTCkSERInJAYLGis=" }, "uni1DBF": { "name": "uni1DBF", "advanceWidth": 500, "contours": [[{"x":96,"y":436,"on":false},{"x":96,"y":675,"on":false},{"x":137,"y":746,"on":true},{"x":160,"y":785,"on":false},{"x":191,"y":803,"on":true},{"x":217,"y":818,"on":false},{"x":283,"y":818,"on":false},{"x":309,"y":803,"on":true},{"x":341,"y":785,"on":false},{"x":363,"y":746,"on":true},{"x":404,"y":675,"on":false},{"x":404,"y":436,"on":false},{"x":363,"y":365,"on":true},{"x":340,"y":326,"on":false},{"x":309,"y":307,"on":true},{"x":283,"y":292,"on":false},{"x":217,"y":292,"on":false},{"x":191,"y":307,"on":true},{"x":159,"y":325,"on":false},{"x":137,"y":365,"on":true}],[{"x":177,"y":519,"on":true},{"x":181,"y":438,"on":false},{"x":206,"y":396,"on":true},{"x":217,"y":378,"on":false},{"x":229,"y":370,"on":true},{"x":239,"y":364,"on":false},{"x":261,"y":364,"on":false},{"x":271,"y":370,"on":true},{"x":284,"y":377,"on":false},{"x":294,"y":396,"on":true},{"x":319,"y":438,"on":false},{"x":323,"y":519,"on":true}],[{"x":177,"y":591,"on":true},{"x":323,"y":591,"on":true},{"x":319,"y":672,"on":false},{"x":294,"y":715,"on":true},{"x":283,"y":733,"on":false},{"x":271,"y":740,"on":true},{"x":261,"y":746,"on":false},{"x":239,"y":746,"on":false},{"x":229,"y":740,"on":true},{"x":216,"y":733,"on":false},{"x":206,"y":715,"on":true},{"x":182,"y":673,"on":false}]], "references": [], - "instructions": [64,46,0,4,6,1,3,2,4,3,101,0,5,5,0,95,0,0,0,112,75,0,2,2,1,95,0,1,1,113,1,76,20,20,39,38,33,32,20,31,20,31,25,25,21,7,11,23,43] + "instructions": "QC4ABAYBAwIEA2UABQUAXwAAAHBLAAICAV8AAQFxAUwUFCcmISAUHxQfGRkVBwsXKw==" }, "uni1DBB": { "name": "uni1DBB", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":370,"on":true},{"x":308,"y":597,"on":true},{"x":96,"y":597,"on":true},{"x":96,"y":669,"on":true},{"x":404,"y":669,"on":true},{"x":404,"y":597,"on":true},{"x":192,"y":370,"on":true},{"x":404,"y":370,"on":true},{"x":404,"y":298,"on":true}]], "references": [], - "instructions": [64,42,6,1,0,1,1,2,2,73,0,0,0,1,93,0,1,1,107,75,0,2,2,3,93,4,1,3,3,105,3,76,0,0,0,9,0,9,18,17,18,5,11,23,43] + "instructions": "QCoGAQABAQICSQAAAAFdAAEBa0sAAgIDXQQBAwNpA0wAAAAJAAkSERIFCxcr" }, "uni1D2C": { "name": "uni1D2C", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":349,"on":true},{"x":96,"y":488,"on":false},{"x":210,"y":812,"on":true},{"x":290,"y":812,"on":true},{"x":404,"y":489,"on":false},{"x":404,"y":349,"on":true},{"x":404,"y":298,"on":true},{"x":324,"y":298,"on":true},{"x":324,"y":349,"on":true},{"x":324,"y":376,"on":false},{"x":320,"y":412,"on":true},{"x":180,"y":412,"on":true},{"x":176,"y":377,"on":false},{"x":176,"y":349,"on":true},{"x":176,"y":298,"on":true}],[{"x":191,"y":484,"on":true},{"x":309,"y":484,"on":true},{"x":291,"y":584,"on":false},{"x":250,"y":725,"on":true},{"x":209,"y":584,"on":false}]], "references": [], - "instructions": [64,41,19,1,4,0,1,74,0,4,0,2,1,4,2,102,0,0,0,104,75,5,3,2,1,1,105,1,76,0,0,17,16,0,15,0,15,19,19,19,6,11,23,43] + "instructions": "QCkTAQQAAUoABAACAQQCZgAAAGhLBQMCAQFpAUwAABEQAA8ADxMTEwYLFys=" }, "uni1D2D": { "name": "uni1D2D", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":349,"on":true},{"x":96,"y":490,"on":false},{"x":196,"y":812,"on":true},{"x":404,"y":812,"on":true},{"x":404,"y":740,"on":true},{"x":312,"y":740,"on":true},{"x":312,"y":612,"on":true},{"x":386,"y":612,"on":true},{"x":386,"y":540,"on":true},{"x":312,"y":540,"on":true},{"x":312,"y":370,"on":true},{"x":404,"y":370,"on":true},{"x":404,"y":298,"on":true},{"x":232,"y":298,"on":true},{"x":232,"y":412,"on":true},{"x":179,"y":412,"on":true},{"x":176,"y":377,"on":false},{"x":176,"y":349,"on":true},{"x":176,"y":298,"on":true}],[{"x":188,"y":484,"on":true},{"x":232,"y":484,"on":true},{"x":232,"y":697,"on":true},{"x":202,"y":574,"on":false}]], "references": [], - "instructions": [64,63,22,1,2,1,1,74,0,2,0,3,8,2,3,101,0,8,0,6,4,8,6,101,0,1,1,0,93,0,0,0,104,75,0,4,4,5,93,9,7,2,5,5,105,5,76,0,0,21,20,0,19,0,19,17,17,17,17,17,17,19,10,11,27,43] + "instructions": "QD8WAQIBAUoAAgADCAIDZQAIAAYECAZlAAEBAF0AAABoSwAEBAVdCQcCBQVpBUwAABUUABMAExERERERERMKCxsr" }, "uni1D2E": { "name": "uni1D2E", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":812,"on":true},{"x":266,"y":812,"on":true},{"x":307,"y":812,"on":false},{"x":337,"y":795,"on":true},{"x":364,"y":779,"on":false},{"x":380,"y":752,"on":true},{"x":399,"y":719,"on":false},{"x":399,"y":672,"on":true},{"x":399,"y":633,"on":false},{"x":383,"y":606,"on":true},{"x":369,"y":581,"on":false},{"x":344,"y":566,"on":true},{"x":375,"y":550,"on":false},{"x":393,"y":520,"on":true},{"x":410,"y":491,"on":false},{"x":410,"y":448,"on":true},{"x":410,"y":399,"on":false},{"x":389,"y":364,"on":true},{"x":372,"y":334,"on":false},{"x":343,"y":317,"on":true},{"x":311,"y":298,"on":false},{"x":266,"y":298,"on":true}],[{"x":176,"y":370,"on":true},{"x":266,"y":370,"on":true},{"x":283,"y":370,"on":false},{"x":310,"y":385,"on":false},{"x":318,"y":400,"on":true},{"x":329,"y":420,"on":false},{"x":330,"y":449,"on":true},{"x":330,"y":479,"on":false},{"x":318,"y":500,"on":true},{"x":310,"y":515,"on":false},{"x":283,"y":530,"on":false},{"x":266,"y":530,"on":true},{"x":176,"y":530,"on":true}],[{"x":176,"y":602,"on":true},{"x":266,"y":602,"on":true},{"x":286,"y":602,"on":false},{"x":300,"y":615,"on":true},{"x":319,"y":634,"on":false},{"x":319,"y":708,"on":false},{"x":300,"y":727,"on":true},{"x":287,"y":740,"on":false},{"x":266,"y":740,"on":true},{"x":176,"y":740,"on":true}]], "references": [], - "instructions": [64,54,12,1,3,4,1,74,0,4,0,3,2,4,3,101,0,5,5,0,93,0,0,0,104,75,0,2,2,1,93,6,1,1,1,105,1,76,0,0,45,43,38,36,35,33,25,23,0,22,0,21,33,7,11,21,43] + "instructions": "QDYMAQMEAUoABAADAgQDZQAFBQBdAAAAaEsAAgIBXQYBAQFpAUwAAC0rJiQjIRkXABYAFSEHCxUr" }, "uni1D2F": { "name": "uni1D2F", "advanceWidth": 500, "contours": [[{"x":81,"y":421,"on":true},{"x":81,"y":484,"on":true},{"x":96,"y":484,"on":true},{"x":96,"y":812,"on":true},{"x":266,"y":812,"on":true},{"x":307,"y":812,"on":false},{"x":337,"y":795,"on":true},{"x":364,"y":779,"on":false},{"x":380,"y":752,"on":true},{"x":399,"y":719,"on":false},{"x":399,"y":672,"on":true},{"x":399,"y":633,"on":false},{"x":383,"y":606,"on":true},{"x":369,"y":581,"on":false},{"x":344,"y":566,"on":true},{"x":375,"y":550,"on":false},{"x":393,"y":520,"on":true},{"x":410,"y":491,"on":false},{"x":410,"y":448,"on":true},{"x":410,"y":399,"on":false},{"x":389,"y":364,"on":true},{"x":372,"y":334,"on":false},{"x":343,"y":317,"on":true},{"x":311,"y":298,"on":false},{"x":266,"y":298,"on":true},{"x":96,"y":298,"on":true},{"x":96,"y":421,"on":true}],[{"x":176,"y":370,"on":true},{"x":266,"y":370,"on":true},{"x":283,"y":370,"on":false},{"x":310,"y":385,"on":false},{"x":318,"y":400,"on":true},{"x":329,"y":420,"on":false},{"x":330,"y":449,"on":true},{"x":330,"y":479,"on":false},{"x":318,"y":500,"on":true},{"x":310,"y":515,"on":false},{"x":283,"y":530,"on":false},{"x":266,"y":530,"on":true},{"x":176,"y":530,"on":true},{"x":176,"y":484,"on":true},{"x":250,"y":484,"on":true},{"x":250,"y":421,"on":true},{"x":176,"y":421,"on":true}],[{"x":176,"y":602,"on":true},{"x":266,"y":602,"on":true},{"x":286,"y":602,"on":false},{"x":300,"y":615,"on":true},{"x":319,"y":634,"on":false},{"x":319,"y":708,"on":false},{"x":300,"y":727,"on":true},{"x":287,"y":740,"on":false},{"x":266,"y":740,"on":true},{"x":176,"y":740,"on":true}]], "references": [], - "instructions": [64,71,14,1,5,8,1,74,0,8,0,5,0,8,5,101,6,1,0,7,10,2,3,4,0,3,101,0,9,9,1,93,0,1,1,104,75,0,4,4,2,93,0,2,2,105,2,76,0,0,53,51,46,44,43,42,41,40,39,37,29,27,0,26,0,26,25,23,33,17,11,11,22,43] + "instructions": "QEcOAQUIAUoACAAFAAgFZQYBAAcKAgMEAANlAAkJAV0AAQFoSwAEBAJdAAICaQJMAAA1My4sKyopKCclHRsAGgAaGRchEQsLFis=" }, "uni1D30": { "name": "uni1D30", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":812,"on":true},{"x":254,"y":812,"on":true},{"x":298,"y":812,"on":false},{"x":331,"y":793,"on":true},{"x":363,"y":774,"on":false},{"x":384,"y":740,"on":true},{"x":410,"y":695,"on":false},{"x":410,"y":628,"on":true},{"x":410,"y":482,"on":true},{"x":410,"y":416,"on":false},{"x":384,"y":371,"on":true},{"x":364,"y":336,"on":false},{"x":298,"y":298,"on":false},{"x":254,"y":298,"on":true}],[{"x":176,"y":370,"on":true},{"x":254,"y":370,"on":true},{"x":272,"y":370,"on":false},{"x":286,"y":378,"on":true},{"x":302,"y":387,"on":false},{"x":313,"y":406,"on":true},{"x":330,"y":435,"on":false},{"x":330,"y":482,"on":true},{"x":330,"y":628,"on":true},{"x":330,"y":675,"on":false},{"x":313,"y":705,"on":true},{"x":302,"y":724,"on":false},{"x":286,"y":732,"on":true},{"x":272,"y":740,"on":false},{"x":254,"y":740,"on":true},{"x":176,"y":740,"on":true}]], "references": [], - "instructions": [64,36,0,3,3,0,93,0,0,0,104,75,0,2,2,1,93,4,1,1,1,105,1,76,0,0,30,28,17,15,0,14,0,13,33,5,11,21,43] + "instructions": "QCQAAwMAXQAAAGhLAAICAV0EAQEBaQFMAAAeHBEPAA4ADSEFCxUr" }, "uni1D31": { "name": "uni1D31", "advanceWidth": 500, "contours": [[{"x":106,"y":298,"on":true},{"x":106,"y":812,"on":true},{"x":404,"y":812,"on":true},{"x":404,"y":740,"on":true},{"x":186,"y":740,"on":true},{"x":186,"y":612,"on":true},{"x":358,"y":612,"on":true},{"x":358,"y":540,"on":true},{"x":186,"y":540,"on":true},{"x":186,"y":370,"on":true},{"x":404,"y":370,"on":true},{"x":404,"y":298,"on":true}]], "references": [], - "instructions": [64,44,0,2,0,3,4,2,3,101,0,1,1,0,93,0,0,0,104,75,0,4,4,5,93,6,1,5,5,105,5,76,0,0,0,11,0,11,17,17,17,17,17,7,11,25,43] + "instructions": "QCwAAgADBAIDZQABAQBdAAAAaEsABAQFXQYBBQVpBUwAAAALAAsREREREQcLGSs=" }, "uni1D32": { "name": "uni1D32", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":370,"on":true},{"x":314,"y":370,"on":true},{"x":314,"y":499,"on":true},{"x":142,"y":499,"on":true},{"x":142,"y":571,"on":true},{"x":314,"y":571,"on":true},{"x":314,"y":740,"on":true},{"x":96,"y":740,"on":true},{"x":96,"y":812,"on":true},{"x":394,"y":812,"on":true},{"x":394,"y":298,"on":true}]], "references": [], - "instructions": [64,44,0,2,0,1,0,2,1,101,0,3,3,4,93,0,4,4,104,75,0,0,0,5,93,6,1,5,5,105,5,76,0,0,0,11,0,11,17,17,17,17,17,7,11,25,43] + "instructions": "QCwAAgABAAIBZQADAwRdAAQEaEsAAAAFXQYBBQVpBUwAAAALAAsREREREQcLGSs=" }, "uni1D33": { "name": "uni1D33", "advanceWidth": 500, "contours": [[{"x":90,"y":434,"on":true},{"x":90,"y":676,"on":true},{"x":90,"y":718,"on":false},{"x":108,"y":749,"on":true},{"x":125,"y":779,"on":false},{"x":156,"y":796,"on":true},{"x":194,"y":818,"on":false},{"x":306,"y":818,"on":false},{"x":344,"y":796,"on":true},{"x":374,"y":778,"on":false},{"x":392,"y":748,"on":true},{"x":404,"y":727,"on":false},{"x":408,"y":704,"on":true},{"x":330,"y":686,"on":true},{"x":329,"y":699,"on":false},{"x":322,"y":711,"on":true},{"x":302,"y":746,"on":false},{"x":250,"y":746,"on":true},{"x":222,"y":746,"on":false},{"x":203,"y":735,"on":true},{"x":171,"y":716,"on":false},{"x":170,"y":676,"on":true},{"x":170,"y":434,"on":true},{"x":170,"y":394,"on":false},{"x":203,"y":375,"on":true},{"x":222,"y":364,"on":false},{"x":249,"y":364,"on":true},{"x":274,"y":364,"on":false},{"x":292,"y":374,"on":true},{"x":324,"y":392,"on":false},{"x":324,"y":434,"on":true},{"x":324,"y":512,"on":true},{"x":250,"y":512,"on":true},{"x":250,"y":584,"on":true},{"x":404,"y":584,"on":true},{"x":404,"y":434,"on":true},{"x":404,"y":391,"on":false},{"x":386,"y":360,"on":true},{"x":369,"y":331,"on":false},{"x":339,"y":313,"on":true},{"x":303,"y":292,"on":false},{"x":250,"y":292,"on":true},{"x":195,"y":292,"on":false},{"x":156,"y":315,"on":true},{"x":90,"y":352,"on":false}]], "references": [], - "instructions": [64,45,13,12,2,4,1,1,74,0,4,0,3,2,4,3,101,0,1,1,0,95,0,0,0,112,75,0,2,2,5,95,0,5,5,113,5,76,38,17,20,39,41,22,6,11,26,43] + "instructions": "QC0NDAIEAQFKAAQAAwIEA2UAAQEAXwAAAHBLAAICBV8ABQVxBUwmERQnKRYGCxor" }, "uni1D34": { "name": "uni1D34", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":812,"on":true},{"x":176,"y":812,"on":true},{"x":176,"y":604,"on":true},{"x":324,"y":604,"on":true},{"x":324,"y":812,"on":true},{"x":404,"y":812,"on":true},{"x":404,"y":298,"on":true},{"x":324,"y":298,"on":true},{"x":324,"y":532,"on":true},{"x":176,"y":532,"on":true},{"x":176,"y":298,"on":true}]], "references": [], - "instructions": [64,36,0,1,0,4,3,1,4,101,2,1,0,0,104,75,6,5,2,3,3,105,3,76,0,0,0,11,0,11,17,17,17,17,17,7,11,25,43] + "instructions": "QCQAAQAEAwEEZQIBAABoSwYFAgMDaQNMAAAACwALEREREREHCxkr" }, "uni1D35": { "name": "uni1D35", "advanceWidth": 500, "contours": [[{"x":152,"y":298,"on":true},{"x":152,"y":370,"on":true},{"x":210,"y":370,"on":true},{"x":210,"y":740,"on":true},{"x":152,"y":740,"on":true},{"x":152,"y":812,"on":true},{"x":348,"y":812,"on":true},{"x":348,"y":740,"on":true},{"x":290,"y":740,"on":true},{"x":290,"y":370,"on":true},{"x":348,"y":370,"on":true},{"x":348,"y":298,"on":true}]], "references": [], - "instructions": [64,38,3,1,1,1,2,93,0,2,2,104,75,4,1,0,0,5,93,6,1,5,5,105,5,76,0,0,0,11,0,11,17,17,17,17,17,7,11,25,43] + "instructions": "QCYDAQEBAl0AAgJoSwQBAAAFXQYBBQVpBUwAAAALAAsREREREQcLGSs=" }, "uni1D36": { "name": "uni1D36", "advanceWidth": 500, "contours": [[{"x":87,"y":406,"on":true},{"x":165,"y":422,"on":true},{"x":165,"y":399,"on":false},{"x":182,"y":383,"on":true},{"x":200,"y":365,"on":false},{"x":233,"y":364,"on":true},{"x":254,"y":364,"on":false},{"x":270,"y":373,"on":true},{"x":284,"y":381,"on":false},{"x":292,"y":395,"on":true},{"x":301,"y":410,"on":false},{"x":301,"y":434,"on":true},{"x":301,"y":740,"on":true},{"x":219,"y":740,"on":true},{"x":219,"y":812,"on":true},{"x":381,"y":812,"on":true},{"x":381,"y":434,"on":true},{"x":381,"y":390,"on":false},{"x":363,"y":358,"on":true},{"x":346,"y":329,"on":false},{"x":316,"y":312,"on":true},{"x":282,"y":292,"on":false},{"x":233,"y":292,"on":true},{"x":182,"y":292,"on":false},{"x":147,"y":313,"on":true},{"x":119,"y":329,"on":false},{"x":103,"y":357,"on":true},{"x":89,"y":380,"on":false}]], "references": [], - "instructions": [64,34,1,1,0,1,1,74,0,1,1,2,93,0,2,2,104,75,0,0,0,3,95,0,3,3,113,3,76,38,17,22,36,4,11,24,43] + "instructions": "QCIBAQABAUoAAQECXQACAmhLAAAAA18AAwNxA0wmERYkBAsYKw==" }, "uni1D37": { "name": "uni1D37", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":812,"on":true},{"x":176,"y":812,"on":true},{"x":176,"y":599,"on":true},{"x":259,"y":684,"on":false},{"x":298,"y":753,"on":true},{"x":320,"y":791,"on":false},{"x":320,"y":812,"on":true},{"x":404,"y":812,"on":true},{"x":404,"y":785,"on":false},{"x":377,"y":739,"on":true},{"x":345,"y":683,"on":false},{"x":289,"y":617,"on":true},{"x":410,"y":379,"on":false},{"x":410,"y":298,"on":true},{"x":330,"y":298,"on":true},{"x":330,"y":367,"on":false},{"x":235,"y":558,"on":true},{"x":207,"y":529,"on":false},{"x":176,"y":499,"on":true},{"x":176,"y":298,"on":true}]], "references": [], - "instructions": [64,35,19,17,12,3,4,2,0,1,74,1,1,0,0,104,75,4,3,2,2,2,105,2,76,0,0,0,20,0,20,22,21,17,5,11,23,43] + "instructions": "QCMTEQwDBAIAAUoBAQAAaEsEAwICAmkCTAAAABQAFBYVEQULFys=" }, "uni1D38": { "name": "uni1D38", "advanceWidth": 500, "contours": [[{"x":106,"y":298,"on":true},{"x":106,"y":812,"on":true},{"x":186,"y":812,"on":true},{"x":186,"y":370,"on":true},{"x":410,"y":370,"on":true},{"x":410,"y":298,"on":true}]], "references": [], - "instructions": [64,28,0,0,0,104,75,0,1,1,2,94,3,1,2,2,105,2,76,0,0,0,5,0,5,17,17,4,11,22,43] + "instructions": "QBwAAABoSwABAQJeAwECAmkCTAAAAAUABRERBAsWKw==" }, "uni1D39": { "name": "uni1D39", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":812,"on":true},{"x":173,"y":812,"on":true},{"x":250,"y":544,"on":true},{"x":327,"y":812,"on":true},{"x":366,"y":812,"on":false},{"x":404,"y":812,"on":true},{"x":404,"y":298,"on":true},{"x":324,"y":298,"on":true},{"x":324,"y":401,"on":true},{"x":324,"y":497,"on":false},{"x":337,"y":607,"on":true},{"x":343,"y":653,"on":false},{"x":346,"y":695,"on":true},{"x":277,"y":452,"on":true},{"x":223,"y":452,"on":true},{"x":154,"y":695,"on":true},{"x":157,"y":652,"on":false},{"x":163,"y":607,"on":true},{"x":176,"y":498,"on":false},{"x":176,"y":401,"on":true},{"x":176,"y":298,"on":true}]], "references": [], - "instructions": [64,43,16,13,3,3,3,0,1,74,0,3,0,2,0,3,2,126,1,1,0,0,104,75,5,4,2,2,2,105,2,76,0,0,0,21,0,21,22,17,34,17,6,11,24,43] + "instructions": "QCsQDQMDAwABSgADAAIAAwJ+AQEAAGhLBQQCAgJpAkwAAAAVABUWESIRBgsYKw==" }, "uni1D3A": { "name": "uni1D3A", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":812,"on":true},{"x":192,"y":812,"on":true},{"x":334,"y":412,"on":true},{"x":333,"y":432,"on":false},{"x":331,"y":452,"on":true},{"x":324,"y":534,"on":false},{"x":324,"y":607,"on":true},{"x":324,"y":812,"on":true},{"x":404,"y":812,"on":true},{"x":404,"y":298,"on":true},{"x":308,"y":298,"on":true},{"x":166,"y":699,"on":true},{"x":167,"y":679,"on":false},{"x":169,"y":658,"on":true},{"x":176,"y":576,"on":false},{"x":176,"y":504,"on":true},{"x":176,"y":298,"on":true}]], "references": [], - "instructions": [64,33,12,3,2,2,0,1,74,1,1,0,0,104,75,4,3,2,2,2,105,2,76,0,0,0,17,0,17,17,22,17,5,11,23,43] + "instructions": "QCEMAwICAAFKAQEAAGhLBAMCAgJpAkwAAAARABERFhEFCxcr" }, "uni1D3B": { "name": "uni1D3B", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":812,"on":true},{"x":176,"y":812,"on":true},{"x":176,"y":607,"on":true},{"x":176,"y":535,"on":false},{"x":169,"y":452,"on":true},{"x":167,"y":431,"on":false},{"x":166,"y":412,"on":true},{"x":308,"y":812,"on":true},{"x":356,"y":812,"on":false},{"x":404,"y":812,"on":true},{"x":404,"y":298,"on":true},{"x":324,"y":298,"on":true},{"x":324,"y":504,"on":true},{"x":324,"y":576,"on":false},{"x":331,"y":658,"on":true},{"x":333,"y":679,"on":false},{"x":334,"y":699,"on":true},{"x":192,"y":298,"on":true},{"x":144,"y":298,"on":false}]], "references": [], - "instructions": [64,33,17,7,2,2,0,1,74,1,1,0,0,104,75,4,3,2,2,2,105,2,76,0,0,0,19,0,18,17,38,17,5,11,23,43] + "instructions": "QCERBwICAAFKAQEAAGhLBAMCAgJpAkwAAAATABIRJhEFCxcr" }, "uni1D3C": { "name": "uni1D3C", "advanceWidth": 500, "contours": [[{"x":90,"y":434,"on":true},{"x":90,"y":676,"on":true},{"x":90,"y":758,"on":false},{"x":156,"y":796,"on":true},{"x":194,"y":818,"on":false},{"x":306,"y":818,"on":false},{"x":344,"y":796,"on":true},{"x":410,"y":758,"on":false},{"x":410,"y":676,"on":true},{"x":410,"y":434,"on":true},{"x":410,"y":352,"on":false},{"x":344,"y":315,"on":true},{"x":306,"y":293,"on":false},{"x":194,"y":292,"on":false},{"x":156,"y":315,"on":true},{"x":90,"y":352,"on":false}],[{"x":170,"y":434,"on":true},{"x":170,"y":394,"on":false},{"x":203,"y":375,"on":true},{"x":222,"y":364,"on":false},{"x":278,"y":364,"on":false},{"x":297,"y":375,"on":true},{"x":330,"y":394,"on":false},{"x":330,"y":434,"on":true},{"x":330,"y":676,"on":true},{"x":330,"y":716,"on":false},{"x":297,"y":735,"on":true},{"x":278,"y":746,"on":false},{"x":222,"y":746,"on":false},{"x":203,"y":735,"on":true},{"x":170,"y":716,"on":false},{"x":170,"y":676,"on":true}]], "references": [], - "instructions": [64,28,0,3,3,0,95,0,0,0,112,75,0,2,2,1,95,0,1,1,113,1,76,23,22,23,20,4,11,24,43] + "instructions": "QBwAAwMAXwAAAHBLAAICAV8AAQFxAUwXFhcUBAsYKw==" }, "uni1D3D": { "name": "uni1D3D", "advanceWidth": 500, "contours": [[{"x":90,"y":434,"on":true},{"x":90,"y":468,"on":true},{"x":90,"y":510,"on":false},{"x":108,"y":541,"on":true},{"x":122,"y":565,"on":false},{"x":147,"y":581,"on":true},{"x":123,"y":596,"on":false},{"x":110,"y":619,"on":true},{"x":96,"y":643,"on":false},{"x":96,"y":674,"on":true},{"x":96,"y":812,"on":true},{"x":176,"y":812,"on":true},{"x":176,"y":674,"on":true},{"x":176,"y":637,"on":false},{"x":206,"y":620,"on":true},{"x":224,"y":610,"on":false},{"x":276,"y":610,"on":false},{"x":294,"y":620,"on":true},{"x":324,"y":637,"on":false},{"x":324,"y":674,"on":true},{"x":324,"y":812,"on":true},{"x":404,"y":812,"on":true},{"x":404,"y":674,"on":true},{"x":404,"y":614,"on":false},{"x":353,"y":581,"on":true},{"x":377,"y":564,"on":false},{"x":392,"y":541,"on":true},{"x":410,"y":510,"on":false},{"x":410,"y":468,"on":true},{"x":410,"y":434,"on":true},{"x":410,"y":352,"on":false},{"x":344,"y":315,"on":true},{"x":306,"y":293,"on":false},{"x":194,"y":292,"on":false},{"x":156,"y":315,"on":true},{"x":90,"y":352,"on":false}],[{"x":170,"y":434,"on":true},{"x":170,"y":394,"on":false},{"x":203,"y":375,"on":true},{"x":222,"y":364,"on":false},{"x":278,"y":364,"on":false},{"x":297,"y":375,"on":true},{"x":330,"y":394,"on":false},{"x":330,"y":434,"on":true},{"x":330,"y":468,"on":true},{"x":330,"y":508,"on":false},{"x":297,"y":527,"on":true},{"x":278,"y":538,"on":false},{"x":222,"y":538,"on":false},{"x":203,"y":527,"on":true},{"x":170,"y":508,"on":false},{"x":170,"y":468,"on":true}]], "references": [], - "instructions": [64,41,24,5,2,5,1,1,74,0,1,0,5,4,1,5,103,2,1,0,0,104,75,0,4,4,3,95,0,3,3,113,3,76,23,22,27,20,20,26,6,11,26,43] + "instructions": "QCkYBQIFAQFKAAEABQQBBWcCAQAAaEsABAQDXwADA3EDTBcWGxQUGgYLGis=" }, "uni1D3E": { "name": "uni1D3E", "advanceWidth": 500, "contours": [[{"x":101,"y":298,"on":true},{"x":101,"y":812,"on":true},{"x":262,"y":812,"on":true},{"x":307,"y":812,"on":false},{"x":340,"y":793,"on":true},{"x":370,"y":776,"on":false},{"x":388,"y":745,"on":true},{"x":409,"y":708,"on":false},{"x":410,"y":601,"on":false},{"x":388,"y":564,"on":true},{"x":370,"y":533,"on":false},{"x":340,"y":516,"on":true},{"x":307,"y":497,"on":false},{"x":262,"y":497,"on":true},{"x":181,"y":497,"on":true},{"x":181,"y":298,"on":true}],[{"x":181,"y":569,"on":true},{"x":262,"y":569,"on":true},{"x":280,"y":569,"on":false},{"x":308,"y":585,"on":false},{"x":317,"y":600,"on":true},{"x":329,"y":622,"on":false},{"x":330,"y":687,"on":false},{"x":317,"y":709,"on":true},{"x":308,"y":725,"on":false},{"x":280,"y":740,"on":false},{"x":262,"y":740,"on":true},{"x":181,"y":740,"on":true}]], "references": [], - "instructions": [64,40,0,3,0,1,2,3,1,101,0,4,4,0,93,0,0,0,104,75,5,1,2,2,105,2,76,0,0,27,25,18,16,0,15,0,15,41,33,6,11,22,43] + "instructions": "QCgAAwABAgMBZQAEBABdAAAAaEsFAQICaQJMAAAbGRIQAA8ADykhBgsWKw==" }, "uni1D3F": { "name": "uni1D3F", "advanceWidth": 500, "contours": [[{"x":96,"y":298,"on":true},{"x":96,"y":812,"on":true},{"x":262,"y":812,"on":true},{"x":307,"y":812,"on":false},{"x":340,"y":793,"on":true},{"x":370,"y":776,"on":false},{"x":388,"y":745,"on":true},{"x":409,"y":708,"on":false},{"x":410,"y":601,"on":false},{"x":388,"y":564,"on":true},{"x":370,"y":533,"on":false},{"x":340,"y":516,"on":true},{"x":330,"y":510,"on":false},{"x":320,"y":506,"on":true},{"x":345,"y":472,"on":false},{"x":363,"y":440,"on":true},{"x":409,"y":360,"on":false},{"x":410,"y":298,"on":true},{"x":330,"y":298,"on":true},{"x":330,"y":346,"on":false},{"x":294,"y":408,"on":true},{"x":270,"y":450,"on":false},{"x":230,"y":497,"on":true},{"x":176,"y":497,"on":true},{"x":176,"y":298,"on":true}],[{"x":176,"y":569,"on":true},{"x":262,"y":569,"on":true},{"x":280,"y":569,"on":false},{"x":308,"y":585,"on":false},{"x":317,"y":600,"on":true},{"x":329,"y":622,"on":false},{"x":330,"y":687,"on":false},{"x":317,"y":709,"on":true},{"x":308,"y":725,"on":false},{"x":280,"y":740,"on":false},{"x":262,"y":740,"on":true},{"x":176,"y":740,"on":true}]], "references": [], - "instructions": [64,48,13,1,2,4,1,74,0,4,0,2,1,4,2,101,0,5,5,0,93,0,0,0,104,75,6,3,2,1,1,105,1,76,0,0,36,34,27,25,0,24,0,24,20,30,33,7,11,23,43] + "instructions": "QDANAQIEAUoABAACAQQCZQAFBQBdAAAAaEsGAwIBAWkBTAAAJCIbGQAYABgUHiEHCxcr" }, "glyph2532": { "name": "glyph2532", "advanceWidth": 500, "contours": [[{"x":92,"y":406,"on":true},{"x":170,"y":424,"on":true},{"x":172,"y":402,"on":false},{"x":188,"y":385,"on":true},{"x":209,"y":364,"on":false},{"x":247,"y":364,"on":true},{"x":275,"y":364,"on":false},{"x":294,"y":375,"on":true},{"x":308,"y":383,"on":false},{"x":324,"y":410,"on":false},{"x":324,"y":426,"on":true},{"x":324,"y":444,"on":false},{"x":315,"y":461,"on":true},{"x":302,"y":484,"on":false},{"x":272,"y":501,"on":true},{"x":261,"y":508,"on":false},{"x":238,"y":517,"on":true},{"x":201,"y":534,"on":false},{"x":184,"y":544,"on":true},{"x":139,"y":570,"on":false},{"x":116,"y":608,"on":true},{"x":96,"y":643,"on":false},{"x":96,"y":682,"on":true},{"x":96,"y":719,"on":false},{"x":114,"y":750,"on":true},{"x":131,"y":779,"on":false},{"x":161,"y":796,"on":true},{"x":199,"y":818,"on":false},{"x":253,"y":818,"on":true},{"x":308,"y":818,"on":false},{"x":345,"y":797,"on":true},{"x":375,"y":780,"on":false},{"x":392,"y":749,"on":true},{"x":404,"y":727,"on":false},{"x":408,"y":704,"on":true},{"x":330,"y":687,"on":true},{"x":328,"y":709,"on":false},{"x":312,"y":725,"on":true},{"x":291,"y":746,"on":false},{"x":253,"y":746,"on":true},{"x":225,"y":746,"on":false},{"x":206,"y":735,"on":true},{"x":192,"y":727,"on":false},{"x":176,"y":700,"on":false},{"x":176,"y":684,"on":true},{"x":176,"y":666,"on":false},{"x":185,"y":650,"on":true},{"x":198,"y":627,"on":false},{"x":228,"y":610,"on":true},{"x":239,"y":603,"on":false},{"x":262,"y":593,"on":true},{"x":299,"y":576,"on":false},{"x":316,"y":567,"on":true},{"x":361,"y":541,"on":false},{"x":384,"y":502,"on":true},{"x":404,"y":467,"on":false},{"x":404,"y":428,"on":true},{"x":404,"y":391,"on":false},{"x":386,"y":361,"on":true},{"x":369,"y":332,"on":false},{"x":339,"y":314,"on":true},{"x":301,"y":292,"on":false},{"x":247,"y":292,"on":true},{"x":192,"y":292,"on":false},{"x":155,"y":314,"on":true},{"x":125,"y":331,"on":false},{"x":108,"y":361,"on":true},{"x":96,"y":382,"on":false}]], "references": [], - "instructions": [179,61,27,1,48,43] + "instructions": "sz0bATAr" }, "uni1D40": { "name": "uni1D40", "advanceWidth": 500, "contours": [[{"x":96,"y":740,"on":true},{"x":96,"y":812,"on":true},{"x":404,"y":812,"on":true},{"x":404,"y":740,"on":true},{"x":290,"y":740,"on":true},{"x":290,"y":298,"on":true},{"x":210,"y":298,"on":true},{"x":210,"y":740,"on":true}]], "references": [], - "instructions": [64,30,4,3,2,1,1,0,93,0,0,0,104,75,0,2,2,105,2,76,0,0,0,7,0,7,17,17,17,5,11,23,43] + "instructions": "QB4EAwIBAQBdAAAAaEsAAgJpAkwAAAAHAAcREREFCxcr" }, "uni1D41": { "name": "uni1D41", "advanceWidth": 500, "contours": [[{"x":96,"y":434,"on":true},{"x":96,"y":812,"on":true},{"x":176,"y":812,"on":true},{"x":176,"y":434,"on":true},{"x":176,"y":392,"on":false},{"x":208,"y":374,"on":true},{"x":225,"y":364,"on":false},{"x":275,"y":364,"on":false},{"x":292,"y":374,"on":true},{"x":324,"y":392,"on":false},{"x":324,"y":434,"on":true},{"x":324,"y":812,"on":true},{"x":404,"y":812,"on":true},{"x":404,"y":434,"on":true},{"x":404,"y":391,"on":false},{"x":386,"y":360,"on":true},{"x":369,"y":331,"on":false},{"x":339,"y":313,"on":true},{"x":303,"y":292,"on":false},{"x":198,"y":292,"on":false},{"x":161,"y":313,"on":true},{"x":96,"y":350,"on":false}]], "references": [], - "instructions": [64,24,2,1,0,0,104,75,0,1,1,3,95,0,3,3,113,3,76,22,20,20,17,4,11,24,43] + "instructions": "QBgCAQAAaEsAAQEDXwADA3EDTBYUFBEECxgr" }, "uni1D42": { "name": "uni1D42", "advanceWidth": 500, "contours": [[{"x":96,"y":684,"on":true},{"x":96,"y":812,"on":true},{"x":176,"y":812,"on":true},{"x":176,"y":684,"on":true},{"x":176,"y":596,"on":false},{"x":191,"y":421,"on":true},{"x":228,"y":607,"on":true},{"x":272,"y":607,"on":true},{"x":309,"y":421,"on":true},{"x":324,"y":596,"on":false},{"x":324,"y":684,"on":true},{"x":324,"y":812,"on":true},{"x":404,"y":812,"on":true},{"x":404,"y":684,"on":true},{"x":404,"y":567,"on":false},{"x":333,"y":298,"on":true},{"x":289,"y":298,"on":true},{"x":250,"y":495,"on":true},{"x":211,"y":298,"on":true},{"x":167,"y":298,"on":true},{"x":96,"y":567,"on":false}]], "references": [], - "instructions": [64,37,17,8,5,3,3,1,1,74,0,1,0,3,0,1,3,126,2,1,0,0,104,75,4,1,3,3,105,3,76,18,19,20,20,17,5,11,25,43] + "instructions": "QCURCAUDAwEBSgABAAMAAQN+AgEAAGhLBAEDA2kDTBITFBQRBQsZKw==" }, "uni2C7D": { "name": "uni2C7D", "advanceWidth": 500, "contours": [[{"x":96,"y":761,"on":true},{"x":96,"y":812,"on":true},{"x":176,"y":812,"on":true},{"x":176,"y":761,"on":true},{"x":176,"y":642,"on":false},{"x":250,"y":386,"on":true},{"x":324,"y":643,"on":false},{"x":324,"y":761,"on":true},{"x":324,"y":812,"on":true},{"x":404,"y":812,"on":true},{"x":404,"y":761,"on":true},{"x":404,"y":621,"on":false},{"x":290,"y":298,"on":true},{"x":210,"y":298,"on":true},{"x":96,"y":621,"on":false}]], "references": [], - "instructions": [64,24,5,1,2,0,1,74,1,1,0,0,104,75,0,2,2,105,2,76,19,22,17,3,11,23,43] + "instructions": "QBgFAQIAAUoBAQAAaEsAAgJpAkwTFhEDCxcr" }, "uni207A": { "name": "uni207A", "advanceWidth": 500, "contours": [[{"x":96,"y":494,"on":true},{"x":96,"y":566,"on":true},{"x":210,"y":566,"on":true},{"x":210,"y":699,"on":true},{"x":290,"y":699,"on":true},{"x":290,"y":566,"on":true},{"x":404,"y":566,"on":true},{"x":404,"y":494,"on":true},{"x":290,"y":494,"on":true},{"x":290,"y":360,"on":true},{"x":210,"y":360,"on":true},{"x":210,"y":494,"on":true}]], "references": [], - "instructions": [64,41,0,1,0,4,1,85,2,1,0,6,5,2,3,4,0,3,101,0,1,1,4,93,0,4,1,4,77,0,0,0,11,0,11,17,17,17,17,17,7,11,25,43] + "instructions": "QCkAAQAEAVUCAQAGBQIDBAADZQABAQRdAAQBBE0AAAALAAsREREREQcLGSs=" }, "uni207B": { "name": "uni207B", "advanceWidth": 500, "contours": [[{"x":96,"y":494,"on":true},{"x":96,"y":566,"on":true},{"x":404,"y":566,"on":true},{"x":404,"y":494,"on":true}]], "references": [], - "instructions": [64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,11,21,43] + "instructions": "QBsAAAEBAFUAAAABXQIBAQABTQAAAAMAAxEDCxUr" }, "uni207C": { "name": "uni207C", "advanceWidth": 500, "contours": [[{"x":96,"y":415,"on":true},{"x":96,"y":487,"on":true},{"x":404,"y":487,"on":true},{"x":404,"y":415,"on":true}],[{"x":96,"y":573,"on":true},{"x":96,"y":645,"on":true},{"x":404,"y":645,"on":true},{"x":404,"y":573,"on":true}]], "references": [], - "instructions": [75,176,10,80,88,64,26,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,27,75,176,20,80,88,64,20,0,0,4,1,1,0,1,97,5,1,3,3,2,93,0,2,2,107,3,76,27,64,26,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,89,89,64,18,4,4,0,0,4,7,4,7,6,5,0,3,0,3,17,6,11,21,43] + "instructions": "S7AKUFhAGgACBQEDAAIDZQAAAQEAVQAAAAFdBAEBAAFNG0uwFFBYQBQAAAQBAQABYQUBAwMCXQACAmsDTBtAGgACBQEDAAIDZQAAAQEAVQAAAAFdBAEBAAFNWVlAEgQEAAAEBwQHBgUAAwADEQYLFSs=" }, "uni207D": { "name": "uni207D", "advanceWidth": 500, "contours": [[{"x":142,"y":393,"on":false},{"x":142,"y":667,"on":false},{"x":205,"y":776,"on":true},{"x":242,"y":839,"on":false},{"x":296,"y":889,"on":true},{"x":350,"y":835,"on":true},{"x":306,"y":794,"on":false},{"x":277,"y":743,"on":true},{"x":223,"y":649,"on":false},{"x":222,"y":411,"on":false},{"x":277,"y":317,"on":true},{"x":307,"y":265,"on":false},{"x":350,"y":224,"on":true},{"x":296,"y":171,"on":true},{"x":242,"y":220,"on":false},{"x":205,"y":284,"on":true}]], "references": [], - "instructions": [179,13,4,1,48,43] + "instructions": "sw0EATAr" }, "uni207E": { "name": "uni207E", "advanceWidth": 500, "contours": [[{"x":150,"y":224,"on":true},{"x":194,"y":265,"on":false},{"x":223,"y":317,"on":true},{"x":277,"y":411,"on":false},{"x":278,"y":649,"on":false},{"x":223,"y":743,"on":true},{"x":193,"y":795,"on":false},{"x":150,"y":835,"on":true},{"x":204,"y":889,"on":true},{"x":258,"y":840,"on":false},{"x":295,"y":776,"on":true},{"x":358,"y":667,"on":false},{"x":358,"y":393,"on":false},{"x":295,"y":284,"on":true},{"x":258,"y":221,"on":false},{"x":204,"y":171,"on":true}]], "references": [], - "instructions": [179,15,8,1,48,43] + "instructions": "sw8IATAr" }, "ordfeminine": { "name": "ordfeminine", "advanceWidth": 500, "contours": [[{"x":90,"y":473,"on":true},{"x":90,"y":504,"on":false},{"x":104,"y":527,"on":true},{"x":119,"y":553,"on":false},{"x":148,"y":571,"on":true},{"x":193,"y":597,"on":false},{"x":265,"y":597,"on":true},{"x":324,"y":597,"on":true},{"x":324,"y":622,"on":true},{"x":324,"y":633,"on":false},{"x":320,"y":640,"on":true},{"x":314,"y":650,"on":false},{"x":302,"y":657,"on":true},{"x":282,"y":669,"on":false},{"x":248,"y":669,"on":true},{"x":218,"y":669,"on":false},{"x":200,"y":658,"on":true},{"x":185,"y":649,"on":false},{"x":176,"y":633,"on":true},{"x":172,"y":627,"on":false},{"x":170,"y":621,"on":true},{"x":94,"y":644,"on":true},{"x":98,"y":658,"on":false},{"x":106,"y":671,"on":true},{"x":124,"y":702,"on":false},{"x":154,"y":719,"on":true},{"x":191,"y":740,"on":false},{"x":248,"y":741,"on":true},{"x":308,"y":741,"on":false},{"x":348,"y":718,"on":true},{"x":376,"y":702,"on":false},{"x":391,"y":676,"on":true},{"x":404,"y":653,"on":false},{"x":404,"y":622,"on":true},{"x":404,"y":364,"on":true},{"x":324,"y":364,"on":true},{"x":324,"y":410,"on":true},{"x":309,"y":389,"on":false},{"x":286,"y":376,"on":true},{"x":256,"y":358,"on":false},{"x":215,"y":358,"on":true},{"x":173,"y":358,"on":false},{"x":144,"y":375,"on":true},{"x":119,"y":389,"on":false},{"x":105,"y":413,"on":true},{"x":90,"y":439,"on":false}],[{"x":117,"y":220,"on":true},{"x":117,"y":271,"on":true},{"x":383,"y":271,"on":true},{"x":383,"y":220,"on":true}],[{"x":170,"y":484,"on":false},{"x":170,"y":464,"on":false},{"x":175,"y":457,"on":true},{"x":180,"y":448,"on":false},{"x":191,"y":441,"on":true},{"x":210,"y":430,"on":false},{"x":241,"y":430,"on":true},{"x":270,"y":430,"on":false},{"x":290,"y":442,"on":true},{"x":324,"y":461,"on":false},{"x":324,"y":503,"on":true},{"x":324,"y":525,"on":true},{"x":265,"y":525,"on":true},{"x":219,"y":525,"on":false},{"x":194,"y":510,"on":true},{"x":181,"y":502,"on":false},{"x":175,"y":492,"on":true}]], "references": [], - "instructions": [64,10,21,1,0,1,36,1,3,7,2,74,75,176,38,80,88,64,42,0,2,0,1,0,2,1,103,0,0,0,8,7,0,8,103,0,7,4,1,3,5,7,3,103,0,5,6,6,5,85,0,5,5,6,93,9,1,6,5,6,77,27,64,49,0,3,7,4,7,3,4,126,0,2,0,1,0,2,1,103,0,0,0,8,7,0,8,103,0,7,0,4,5,7,4,103,0,5,6,6,5,85,0,5,5,6,93,9,1,6,5,6,77,89,64,19,46,46,63,61,57,55,46,49,46,49,22,36,22,43,38,37,10,11,26,43] + "instructions": "QAoVAQABJAEDBwJKS7AmUFhAKgACAAEAAgFnAAAACAcACGcABwQBAwUHA2cABQYGBVUABQUGXQkBBgUGTRtAMQADBwQHAwR+AAIAAQACAWcAAAAIBwAIZwAHAAQFBwRnAAUGBgVVAAUFBl0JAQYFBk1ZQBMuLj89OTcuMS4xFiQWKyYlCgsaKw==" }, "ordmasculine": { "name": "ordmasculine", "advanceWidth": 500, "contours": [[{"x":90,"y":518,"on":true},{"x":90,"y":581,"on":true},{"x":90,"y":632,"on":false},{"x":112,"y":669,"on":true},{"x":130,"y":701,"on":false},{"x":162,"y":720,"on":true},{"x":199,"y":741,"on":false},{"x":301,"y":741,"on":false},{"x":338,"y":720,"on":true},{"x":370,"y":701,"on":false},{"x":388,"y":669,"on":true},{"x":409,"y":632,"on":false},{"x":410,"y":581,"on":true},{"x":410,"y":518,"on":true},{"x":410,"y":467,"on":false},{"x":388,"y":430,"on":true},{"x":370,"y":398,"on":false},{"x":338,"y":379,"on":true},{"x":302,"y":358,"on":false},{"x":199,"y":358,"on":false},{"x":162,"y":379,"on":true},{"x":130,"y":398,"on":false},{"x":112,"y":430,"on":true},{"x":91,"y":467,"on":false}],[{"x":117,"y":220,"on":true},{"x":117,"y":271,"on":true},{"x":383,"y":271,"on":true},{"x":383,"y":220,"on":true}],[{"x":170,"y":518,"on":true},{"x":170,"y":488,"on":false},{"x":182,"y":467,"on":true},{"x":203,"y":430,"on":false},{"x":250,"y":430,"on":true},{"x":274,"y":430,"on":false},{"x":308,"y":450,"on":false},{"x":318,"y":467,"on":true},{"x":330,"y":488,"on":false},{"x":330,"y":518,"on":true},{"x":330,"y":581,"on":true},{"x":330,"y":611,"on":false},{"x":318,"y":632,"on":true},{"x":296,"y":669,"on":false},{"x":250,"y":669,"on":true},{"x":226,"y":669,"on":false},{"x":192,"y":649,"on":false},{"x":182,"y":632,"on":true},{"x":170,"y":611,"on":false},{"x":170,"y":581,"on":true}]], "references": [], - "instructions": [64,49,0,0,0,5,4,0,5,103,0,4,0,1,2,4,1,103,0,2,3,3,2,85,0,2,2,3,93,6,1,3,2,3,77,24,24,43,41,33,31,24,27,24,27,22,27,22,7,11,23,43] + "instructions": "QDEAAAAFBAAFZwAEAAECBAFnAAIDAwJVAAICA10GAQMCA00YGCspIR8YGxgbFhsWBwsXKw==" }, "uni2080": { "name": "uni2080", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2070","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,3,184,254,112,176,51,43] + "instructions": "sQADuP5wsDMr" }, "uni2081": { "name": "uni2081", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni00B9","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,112,176,51,43] + "instructions": "sQABuP5wsDMr" }, "uni2082": { "name": "uni2082", "advanceWidth": 500, "contours": [[{"x":92,"y":304,"on":true},{"x":95,"y":327,"on":false},{"x":108,"y":348,"on":true},{"x":126,"y":378,"on":false},{"x":156,"y":396,"on":true},{"x":194,"y":418,"on":false},{"x":248,"y":418,"on":true},{"x":301,"y":418,"on":false},{"x":339,"y":396,"on":true},{"x":370,"y":378,"on":false},{"x":388,"y":347,"on":true},{"x":407,"y":314,"on":false},{"x":407,"y":234,"on":false},{"x":385,"y":196,"on":true},{"x":362,"y":156,"on":false},{"x":292,"y":105,"on":true},{"x":223,"y":54,"on":false},{"x":200,"y":14,"on":true},{"x":189,"y":-4,"on":false},{"x":183,"y":-30,"on":true},{"x":404,"y":-30,"on":true},{"x":404,"y":-102,"on":true},{"x":96,"y":-102,"on":true},{"x":96,"y":-5,"on":false},{"x":126,"y":47,"on":true},{"x":153,"y":93,"on":false},{"x":230,"y":148,"on":true},{"x":293,"y":193,"on":false},{"x":313,"y":225,"on":true},{"x":327,"y":250,"on":false},{"x":327,"y":274,"on":true},{"x":327,"y":294,"on":false},{"x":318,"y":311,"on":true},{"x":309,"y":326,"on":false},{"x":293,"y":335,"on":true},{"x":274,"y":346,"on":false},{"x":248,"y":346,"on":true},{"x":221,"y":346,"on":false},{"x":202,"y":335,"on":true},{"x":187,"y":326,"on":false},{"x":178,"y":311,"on":true},{"x":171,"y":299,"on":false},{"x":170,"y":285,"on":true}]], "references": [], - "instructions": [64,34,42,1,1,3,1,74,0,3,3,0,95,0,0,0,92,75,0,1,1,2,93,0,2,2,85,2,76,45,17,28,37,4,10,24,43] + "instructions": "QCIqAQEDAUoAAwMAXwAAAFxLAAEBAl0AAgJVAkwtERwlBAoYKw==" }, "uni2083": { "name": "uni2083", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni00B3","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,112,176,51,43] + "instructions": "sQABuP5wsDMr" }, "uni2084": { "name": "uni2084", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2074","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,184,254,112,176,51,43] + "instructions": "sQACuP5wsDMr" }, "uni2085": { "name": "uni2085", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2075","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,112,176,51,43] + "instructions": "sQABuP5wsDMr" }, "uni2086": { "name": "uni2086", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2076","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,184,254,112,176,51,43] + "instructions": "sQACuP5wsDMr" }, "uni2087": { "name": "uni2087", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2077","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,112,176,51,43] + "instructions": "sQABuP5wsDMr" }, "uni2088": { "name": "uni2088", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2078","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,3,184,254,112,176,51,43] + "instructions": "sQADuP5wsDMr" }, "uni2089": { "name": "uni2089", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2079","x":0,"y":-401,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,184,254,111,176,51,43] + "instructions": "sQACuP5vsDMr" }, "uni2090": { "name": "uni2090", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1D43","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,184,254,112,176,51,43] + "instructions": "sQACuP5wsDMr" }, "uni2091": { "name": "uni2091", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1D49","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,184,254,112,176,51,43] + "instructions": "sQACuP5wsDMr" }, "uni2092": { "name": "uni2092", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1D52","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,184,254,112,176,51,43] + "instructions": "sQACuP5wsDMr" }, "uni2093": { "name": "uni2093", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni02E3","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,112,176,51,43] + "instructions": "sQABuP5wsDMr" }, "uni2094": { "name": "uni2094", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1D4A","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,184,254,112,176,51,43] + "instructions": "sQACuP5wsDMr" }, "uni2095": { "name": "uni2095", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni02B0","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,112,176,51,43] + "instructions": "sQABuP5wsDMr" }, "uni2096": { "name": "uni2096", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1D4F","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,112,176,51,43] + "instructions": "sQABuP5wsDMr" }, "uni2097": { "name": "uni2097", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni02E1","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,112,176,51,43] + "instructions": "sQABuP5wsDMr" }, "uni2098": { "name": "uni2098", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1D50","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,112,176,51,43] + "instructions": "sQABuP5wsDMr" }, "uni2099": { "name": "uni2099", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni207F","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,112,176,51,43] + "instructions": "sQABuP5wsDMr" }, "uni209A": { "name": "uni209A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1D56","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,184,254,112,176,51,43] + "instructions": "sQACuP5wsDMr" }, "uni209B": { "name": "uni209B", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni02E2","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,112,176,51,43] + "instructions": "sQABuP5wsDMr" }, "uni209C": { "name": "uni209C", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1D57","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,112,176,51,43] + "instructions": "sQABuP5wsDMr" }, "uni1D62": { "name": "uni1D62", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni2071","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,184,254,112,176,51,43] + "instructions": "sQACuP5wsDMr" }, "uni1D63": { "name": "uni1D63", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni02B3","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,112,176,51,43] + "instructions": "sQABuP5wsDMr" }, "uni1D64": { "name": "uni1D64", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1D58","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,112,176,51,43] + "instructions": "sQABuP5wsDMr" }, "uni1D65": { "name": "uni1D65", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1D5B","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,112,176,51,43] + "instructions": "sQABuP5wsDMr" }, "uni1D66": { "name": "uni1D66", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1D5D","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,184,254,112,176,51,43] + "instructions": "sQACuP5wsDMr" }, "uni1D67": { "name": "uni1D67", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1D5E","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,112,176,51,43] + "instructions": "sQABuP5wsDMr" }, "uni1D68": { "name": "uni1D68", "advanceWidth": 500, "contours": [[{"x":90,"y":114,"on":true},{"x":90,"y":165,"on":false},{"x":112,"y":202,"on":true},{"x":130,"y":234,"on":false},{"x":162,"y":253,"on":true},{"x":198,"y":274,"on":false},{"x":301,"y":274,"on":false},{"x":338,"y":253,"on":true},{"x":370,"y":234,"on":false},{"x":388,"y":202,"on":true},{"x":409,"y":164,"on":false},{"x":410,"y":114,"on":true},{"x":410,"y":52,"on":true},{"x":410,"y":1,"on":false},{"x":388,"y":-36,"on":true},{"x":370,"y":-68,"on":false},{"x":338,"y":-87,"on":true},{"x":302,"y":-108,"on":false},{"x":250,"y":-108,"on":true},{"x":204,"y":-108,"on":false},{"x":170,"y":-91,"on":true},{"x":170,"y":-246,"on":true},{"x":90,"y":-246,"on":true}],[{"x":170,"y":51,"on":true},{"x":170,"y":21,"on":false},{"x":182,"y":1,"on":true},{"x":203,"y":-36,"on":false},{"x":250,"y":-36,"on":true},{"x":274,"y":-36,"on":false},{"x":308,"y":-16,"on":false},{"x":318,"y":1,"on":true},{"x":330,"y":22,"on":false},{"x":330,"y":52,"on":true},{"x":330,"y":114,"on":true},{"x":330,"y":144,"on":false},{"x":318,"y":165,"on":true},{"x":296,"y":202,"on":false},{"x":250,"y":202,"on":true},{"x":226,"y":202,"on":false},{"x":192,"y":182,"on":false},{"x":182,"y":165,"on":true},{"x":170,"y":144,"on":false},{"x":170,"y":114,"on":true}]], "references": [], - "instructions": [64,40,20,1,1,3,1,74,0,4,4,0,95,0,0,0,95,75,0,3,3,1,95,0,1,1,93,75,0,2,2,89,2,76,40,36,18,43,21,5,10,25,43] + "instructions": "QCgUAQEDAUoABAQAXwAAAF9LAAMDAV8AAQFdSwACAlkCTCgkEisVBQoZKw==" }, "uni1D69": { "name": "uni1D69", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1D60","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,2,184,254,112,176,51,43] + "instructions": "sQACuP5wsDMr" }, "uni1D6A": { "name": "uni1D6A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni1D61","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,112,176,51,43] + "instructions": "sQABuP5wsDMr" }, "uni2C7C": { "name": "uni2C7C", "advanceWidth": 500, "contours": [[{"x":72,"y":-152,"on":true},{"x":148,"y":-130,"on":true},{"x":152,"y":-152,"on":false},{"x":180,"y":-180,"on":false},{"x":222,"y":-180,"on":false},{"x":235,"y":-166,"on":true},{"x":254,"y":-148,"on":false},{"x":254,"y":-110,"on":true},{"x":254,"y":196,"on":true},{"x":172,"y":196,"on":true},{"x":172,"y":268,"on":true},{"x":334,"y":268,"on":true},{"x":334,"y":-110,"on":true},{"x":334,"y":-158,"on":false},{"x":315,"y":-191,"on":true},{"x":299,"y":-219,"on":false},{"x":271,"y":-235,"on":true},{"x":242,"y":-252,"on":false},{"x":160,"y":-252,"on":false},{"x":131,"y":-235,"on":true},{"x":104,"y":-219,"on":false},{"x":87,"y":-191,"on":true},{"x":77,"y":-174,"on":false}],[{"x":237,"y":357,"on":false},{"x":237,"y":397,"on":false},{"x":261,"y":421,"on":false},{"x":301,"y":421,"on":false},{"x":325,"y":397,"on":false},{"x":325,"y":357,"on":false},{"x":301,"y":333,"on":false},{"x":261,"y":333,"on":false}]], "references": [], - "instructions": [64,46,1,1,0,1,1,74,0,5,5,4,95,0,4,4,94,75,0,1,1,2,93,0,2,2,87,75,0,0,0,3,95,0,3,3,89,3,76,19,23,22,17,20,19,6,10,26,43] + "instructions": "QC4BAQABAUoABQUEXwAEBF5LAAEBAl0AAgJXSwAAAANfAAMDWQNMExcWERQTBgoaKw==" }, "uni208A": { "name": "uni208A", "advanceWidth": 500, "contours": [[{"x":96,"y":93,"on":true},{"x":96,"y":165,"on":true},{"x":210,"y":165,"on":true},{"x":210,"y":299,"on":true},{"x":290,"y":299,"on":true},{"x":290,"y":165,"on":true},{"x":404,"y":165,"on":true},{"x":404,"y":93,"on":true},{"x":290,"y":93,"on":true},{"x":290,"y":-40,"on":true},{"x":210,"y":-40,"on":true},{"x":210,"y":93,"on":true}]], "references": [], - "instructions": [64,41,0,1,0,4,1,85,2,1,0,6,5,2,3,4,0,3,101,0,1,1,4,93,0,4,1,4,77,0,0,0,11,0,11,17,17,17,17,17,7,10,25,43] + "instructions": "QCkAAQAEAVUCAQAGBQIDBAADZQABAQRdAAQBBE0AAAALAAsREREREQcKGSs=" }, "uni208B": { "name": "uni208B", "advanceWidth": 500, "contours": [[{"x":96,"y":93,"on":true},{"x":96,"y":165,"on":true},{"x":404,"y":165,"on":true},{"x":404,"y":93,"on":true}]], "references": [], - "instructions": [64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,10,21,43] + "instructions": "QBsAAAEBAFUAAAABXQIBAQABTQAAAAMAAxEDChUr" }, "uni208C": { "name": "uni208C", "advanceWidth": 500, "contours": [[{"x":96,"y":14,"on":true},{"x":96,"y":86,"on":true},{"x":404,"y":86,"on":true},{"x":404,"y":14,"on":true}],[{"x":96,"y":172,"on":true},{"x":96,"y":244,"on":true},{"x":404,"y":244,"on":true},{"x":404,"y":172,"on":true}]], "references": [], - "instructions": [64,44,0,2,5,1,3,0,2,3,101,0,0,1,1,0,85,0,0,0,1,93,4,1,1,0,1,77,4,4,0,0,4,7,4,7,6,5,0,3,0,3,17,6,10,21,43] + "instructions": "QCwAAgUBAwACA2UAAAEBAFUAAAABXQQBAQABTQQEAAAEBwQHBgUAAwADEQYKFSs=" }, "uni208D": { "name": "uni208D", "advanceWidth": 500, "contours": [[{"x":142,"y":-8,"on":false},{"x":142,"y":266,"on":false},{"x":205,"y":375,"on":true},{"x":242,"y":438,"on":false},{"x":296,"y":488,"on":true},{"x":350,"y":435,"on":true},{"x":306,"y":394,"on":false},{"x":277,"y":343,"on":true},{"x":223,"y":249,"on":false},{"x":222,"y":10,"on":false},{"x":277,"y":-84,"on":true},{"x":307,"y":-136,"on":false},{"x":350,"y":-176,"on":true},{"x":296,"y":-229,"on":true},{"x":242,"y":-180,"on":false},{"x":205,"y":-117,"on":true}]], "references": [], - "instructions": [179,13,4,1,48,43] + "instructions": "sw0EATAr" }, "uni208E": { "name": "uni208E", "advanceWidth": 500, "contours": [[{"x":150,"y":-176,"on":true},{"x":194,"y":-135,"on":false},{"x":223,"y":-84,"on":true},{"x":277,"y":10,"on":false},{"x":278,"y":248,"on":false},{"x":223,"y":343,"on":true},{"x":193,"y":395,"on":false},{"x":150,"y":435,"on":true},{"x":204,"y":488,"on":true},{"x":258,"y":439,"on":false},{"x":295,"y":375,"on":true},{"x":358,"y":266,"on":false},{"x":358,"y":-7,"on":false},{"x":295,"y":-117,"on":true},{"x":258,"y":-180,"on":false},{"x":204,"y":-229,"on":true}]], "references": [], - "instructions": [179,15,8,1,48,43] + "instructions": "sw8IATAr" }, "onequarter": { "name": "onequarter", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2584","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,184,255,77,176,51,43,177,3,1,184,1,181,176,51,43] + "instructions": "sQECuP9NsDMrsQMBuAG1sDMr" }, "glyph2583": { "name": "glyph2583", "advanceWidth": 500, "contours": [[{"x":150,"y":340,"on":true},{"x":232,"y":404,"on":true},{"x":301,"y":404,"on":true},{"x":301,"y":0,"on":true},{"x":232,"y":0,"on":true},{"x":232,"y":321,"on":true},{"x":193,"y":291,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "glyph2584": { "name": "glyph2584", "advanceWidth": 500, "contours": [[{"x":125,"y":99,"on":true},{"x":125,"y":162,"on":true},{"x":243,"y":404,"on":true},{"x":329,"y":404,"on":true},{"x":329,"y":162,"on":true},{"x":371,"y":162,"on":true},{"x":371,"y":99,"on":true},{"x":329,"y":99,"on":true},{"x":329,"y":0,"on":true},{"x":259,"y":0,"on":true},{"x":259,"y":99,"on":true}],[{"x":193,"y":162,"on":true},{"x":259,"y":162,"on":true},{"x":259,"y":294,"on":true}]], "references": [], - "instructions": [181,13,11,8,2,2,48,43] + "instructions": "tQ0LCAICMCs=" }, "onehalf": { "name": "onehalf", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2587","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,77,176,51,43,177,2,1,184,1,181,176,51,43] + "instructions": "sQEBuP9NsDMrsQIBuAG1sDMr" }, "glyph2586": { "name": "glyph2586", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph2587": { "name": "glyph2587", "advanceWidth": 500, "contours": [[{"x":126,"y":319,"on":true},{"x":129,"y":337,"on":false},{"x":139,"y":354,"on":true},{"x":153,"y":378,"on":false},{"x":176,"y":392,"on":true},{"x":206,"y":409,"on":false},{"x":248,"y":409,"on":true},{"x":289,"y":409,"on":false},{"x":319,"y":392,"on":true},{"x":344,"y":378,"on":false},{"x":358,"y":353,"on":true},{"x":374,"y":326,"on":false},{"x":373,"y":294,"on":true},{"x":373,"y":262,"on":false},{"x":339,"y":202,"on":false},{"x":287,"y":162,"on":true},{"x":236,"y":122,"on":false},{"x":218,"y":92,"on":true},{"x":211,"y":79,"on":false},{"x":206,"y":63,"on":true},{"x":371,"y":63,"on":true},{"x":371,"y":0,"on":true},{"x":129,"y":0,"on":true},{"x":129,"y":1,"on":true},{"x":129,"y":78,"on":false},{"x":153,"y":119,"on":true},{"x":173,"y":154,"on":false},{"x":231,"y":197,"on":true},{"x":278,"y":232,"on":false},{"x":292,"y":256,"on":true},{"x":303,"y":275,"on":false},{"x":303,"y":294,"on":true},{"x":303,"y":316,"on":false},{"x":289,"y":331,"on":true},{"x":274,"y":346,"on":false},{"x":248,"y":346,"on":true},{"x":221,"y":346,"on":false},{"x":207,"y":331,"on":true},{"x":195,"y":319,"on":false},{"x":194,"y":302,"on":true}]], "references": [], - "instructions": [179,21,5,1,48,43] + "instructions": "sxUFATAr" }, "threequarters": { "name": "threequarters", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2589","x":0,"y":437,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2584","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,1,181,176,51,43,177,2,2,184,255,77,176,51,43] + "instructions": "sQEBuAG1sDMrsQICuP9NsDMr" }, "glyph2589": { "name": "glyph2589", "advanceWidth": 500, "contours": [[{"x":122,"y":85,"on":true},{"x":189,"y":103,"on":true},{"x":191,"y":87,"on":false},{"x":203,"y":75,"on":true},{"x":219,"y":59,"on":false},{"x":280,"y":58,"on":false},{"x":296,"y":75,"on":true},{"x":310,"y":89,"on":false},{"x":310,"y":110,"on":true},{"x":310,"y":127,"on":false},{"x":301,"y":143,"on":true},{"x":291,"y":160,"on":false},{"x":273,"y":171,"on":true},{"x":252,"y":183,"on":false},{"x":213,"y":183,"on":true},{"x":213,"y":246,"on":true},{"x":249,"y":246,"on":false},{"x":269,"y":257,"on":true},{"x":285,"y":266,"on":false},{"x":294,"y":282,"on":true},{"x":301,"y":294,"on":false},{"x":301,"y":307,"on":true},{"x":301,"y":322,"on":false},{"x":291,"y":332,"on":true},{"x":277,"y":346,"on":false},{"x":250,"y":346,"on":true},{"x":224,"y":346,"on":false},{"x":211,"y":332,"on":true},{"x":200,"y":321,"on":false},{"x":199,"y":305,"on":true},{"x":131,"y":319,"on":true},{"x":133,"y":338,"on":false},{"x":143,"y":356,"on":true},{"x":156,"y":379,"on":false},{"x":179,"y":392,"on":true},{"x":208,"y":409,"on":false},{"x":293,"y":409,"on":false},{"x":322,"y":392,"on":true},{"x":345,"y":379,"on":false},{"x":371,"y":333,"on":false},{"x":371,"y":281,"on":false},{"x":358,"y":258,"on":true},{"x":344,"y":234,"on":false},{"x":318,"y":218,"on":true},{"x":315,"y":216,"on":false},{"x":310,"y":215,"on":true},{"x":316,"y":213,"on":false},{"x":321,"y":209,"on":true},{"x":349,"y":193,"on":false},{"x":365,"y":166,"on":true},{"x":380,"y":140,"on":false},{"x":380,"y":79,"on":false},{"x":365,"y":53,"on":true},{"x":351,"y":29,"on":false},{"x":325,"y":14,"on":true},{"x":294,"y":-4,"on":false},{"x":250,"y":-4,"on":true},{"x":205,"y":-4,"on":false},{"x":173,"y":13,"on":true},{"x":148,"y":27,"on":false},{"x":134,"y":53,"on":true},{"x":125,"y":68,"on":false}]], "references": [], - "instructions": [179,55,35,1,48,43] + "instructions": "szcjATAr" }, "glyph2590": { "name": "glyph2590", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2584","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2150": { "name": "uni2150", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2593","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,77,176,51,43,177,2,1,184,1,181,176,51,43] + "instructions": "sQEBuP9NsDMrsQIBuAG1sDMr" }, "glyph2592": { "name": "glyph2592", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph2593": { "name": "glyph2593", "advanceWidth": 500, "contours": [[{"x":129,"y":341,"on":true},{"x":129,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":341,"on":true},{"x":235,"y":0,"on":true},{"x":159,"y":0,"on":true},{"x":295,"y":341,"on":true}]], "references": [], - "instructions": [179,4,1,1,48,43] + "instructions": "swQBATAr" }, "uni2151": { "name": "uni2151", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2596","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,184,255,77,176,51,43,177,3,1,184,1,181,176,51,43] + "instructions": "sQECuP9NsDMrsQMBuAG1sDMr" }, "glyph2595": { "name": "glyph2595", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph2596": { "name": "glyph2596", "advanceWidth": 500, "contours": [[{"x":125,"y":261,"on":true},{"x":125,"y":283,"on":true},{"x":125,"y":323,"on":false},{"x":141,"y":352,"on":true},{"x":156,"y":377,"on":false},{"x":181,"y":392,"on":true},{"x":210,"y":408,"on":false},{"x":250,"y":409,"on":true},{"x":288,"y":409,"on":false},{"x":315,"y":393,"on":true},{"x":341,"y":378,"on":false},{"x":357,"y":351,"on":true},{"x":376,"y":319,"on":false},{"x":375,"y":272,"on":true},{"x":375,"y":141,"on":true},{"x":375,"y":90,"on":false},{"x":355,"y":55,"on":true},{"x":339,"y":27,"on":false},{"x":285,"y":-5,"on":false},{"x":210,"y":-4,"on":false},{"x":182,"y":11,"on":true},{"x":155,"y":26,"on":false},{"x":139,"y":55,"on":true},{"x":131,"y":69,"on":false},{"x":126,"y":85,"on":true},{"x":190,"y":111,"on":true},{"x":196,"y":88,"on":false},{"x":210,"y":74,"on":true},{"x":225,"y":59,"on":false},{"x":247,"y":58,"on":true},{"x":268,"y":58,"on":false},{"x":283,"y":73,"on":true},{"x":305,"y":95,"on":false},{"x":306,"y":141,"on":true},{"x":306,"y":158,"on":true},{"x":299,"y":151,"on":false},{"x":290,"y":146,"on":true},{"x":273,"y":136,"on":false},{"x":247,"y":136,"on":true},{"x":210,"y":136,"on":false},{"x":181,"y":152,"on":true},{"x":156,"y":167,"on":false},{"x":141,"y":192,"on":true},{"x":124,"y":221,"on":false}],[{"x":194,"y":261,"on":true},{"x":194,"y":230,"on":false},{"x":212,"y":213,"on":true},{"x":226,"y":199,"on":false},{"x":249,"y":199,"on":true},{"x":273,"y":199,"on":false},{"x":289,"y":214,"on":true},{"x":306,"y":231,"on":false},{"x":306,"y":261,"on":true},{"x":306,"y":272,"on":true},{"x":306,"y":311,"on":false},{"x":286,"y":332,"on":true},{"x":272,"y":346,"on":false},{"x":226,"y":346,"on":false},{"x":212,"y":331,"on":true},{"x":195,"y":314,"on":false},{"x":194,"y":283,"on":true}]], "references": [], - "instructions": [181,56,47,18,7,2,48,43] + "instructions": "tTgvEgcCMCs=" }, "uni2152": { "name": "uni2152", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2599","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,4,184,255,77,176,51,43,177,5,1,184,1,181,176,51,43] + "instructions": "sQEEuP9NsDMrsQUBuAG1sDMr" }, "glyph2598": { "name": "glyph2598", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph2599": { "name": "glyph2599", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2637","x":138,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":-138,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "onethird": { "name": "onethird", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2589","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,77,176,51,43,177,2,1,184,1,181,176,51,43] + "instructions": "sQEBuP9NsDMrsQIBuAG1sDMr" }, "glyph2601": { "name": "glyph2601", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph2602": { "name": "glyph2602", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2589","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "twothirds": { "name": "twothirds", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2589","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2587","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,77,176,51,43,177,2,1,184,1,181,176,51,43] + "instructions": "sQEBuP9NsDMrsQIBuAG1sDMr" }, "glyph2604": { "name": "glyph2604", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2587","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph2605": { "name": "glyph2605", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2589","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2155": { "name": "uni2155", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2608","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,77,176,51,43,177,2,1,184,1,181,176,51,43] + "instructions": "sQEBuP9NsDMrsQIBuAG1sDMr" }, "glyph2607": { "name": "glyph2607", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph2608": { "name": "glyph2608", "advanceWidth": 500, "contours": [[{"x":126,"y":85,"on":true},{"x":192,"y":106,"on":true},{"x":196,"y":86,"on":false},{"x":209,"y":74,"on":true},{"x":224,"y":59,"on":false},{"x":248,"y":58,"on":true},{"x":271,"y":58,"on":false},{"x":286,"y":73,"on":true},{"x":305,"y":92,"on":false},{"x":306,"y":130,"on":true},{"x":306,"y":167,"on":false},{"x":286,"y":186,"on":true},{"x":272,"y":200,"on":false},{"x":251,"y":200,"on":true},{"x":228,"y":200,"on":false},{"x":213,"y":186,"on":true},{"x":203,"y":176,"on":false},{"x":198,"y":161,"on":true},{"x":135,"y":187,"on":true},{"x":135,"y":404,"on":true},{"x":359,"y":404,"on":true},{"x":359,"y":341,"on":true},{"x":205,"y":341,"on":true},{"x":205,"y":256,"on":true},{"x":226,"y":263,"on":false},{"x":251,"y":263,"on":true},{"x":289,"y":263,"on":false},{"x":316,"y":247,"on":true},{"x":342,"y":232,"on":false},{"x":357,"y":206,"on":true},{"x":375,"y":175,"on":false},{"x":375,"y":129,"on":true},{"x":375,"y":84,"on":false},{"x":357,"y":54,"on":true},{"x":342,"y":27,"on":false},{"x":316,"y":12,"on":true},{"x":288,"y":-4,"on":false},{"x":209,"y":-4,"on":false},{"x":181,"y":12,"on":true},{"x":155,"y":27,"on":false},{"x":139,"y":54,"on":true},{"x":130,"y":69,"on":false}]], "references": [], - "instructions": [179,36,19,1,48,43] + "instructions": "syQTATAr" }, "uni2156": { "name": "uni2156", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2608","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2587","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,77,176,51,43,177,2,1,184,1,181,176,51,43] + "instructions": "sQEBuP9NsDMrsQIBuAG1sDMr" }, "glyph2610": { "name": "glyph2610", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2587","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph2611": { "name": "glyph2611", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2608","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2157": { "name": "uni2157", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2608","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2589","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,77,176,51,43,177,2,1,184,1,181,176,51,43] + "instructions": "sQEBuP9NsDMrsQIBuAG1sDMr" }, "glyph2613": { "name": "glyph2613", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2589","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph2614": { "name": "glyph2614", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2608","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2158": { "name": "uni2158", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2608","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2584","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,77,176,51,43,177,2,2,184,1,181,176,51,43] + "instructions": "sQEBuP9NsDMrsQICuAG1sDMr" }, "glyph2616": { "name": "glyph2616", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2584","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph2617": { "name": "glyph2617", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2608","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2159": { "name": "uni2159", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2620","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,184,255,77,176,51,43,177,3,1,184,1,181,176,51,43] + "instructions": "sQECuP9NsDMrsQMBuAG1sDMr" }, "glyph2619": { "name": "glyph2619", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph2620": { "name": "glyph2620", "advanceWidth": 500, "contours": [[{"x":125,"y":121,"on":true},{"x":125,"y":122,"on":true},{"x":125,"y":230,"on":false},{"x":165,"y":298,"on":true},{"x":196,"y":352,"on":false},{"x":248,"y":383,"on":true},{"x":272,"y":397,"on":false},{"x":300,"y":404,"on":true},{"x":319,"y":344,"on":true},{"x":303,"y":339,"on":false},{"x":288,"y":330,"on":true},{"x":250,"y":308,"on":false},{"x":227,"y":268,"on":true},{"x":220,"y":256,"on":false},{"x":215,"y":243,"on":true},{"x":231,"y":247,"on":false},{"x":250,"y":247,"on":true},{"x":290,"y":247,"on":false},{"x":319,"y":230,"on":true},{"x":344,"y":215,"on":false},{"x":359,"y":191,"on":true},{"x":376,"y":162,"on":false},{"x":375,"y":122,"on":true},{"x":375,"y":121,"on":true},{"x":375,"y":81,"on":false},{"x":359,"y":52,"on":true},{"x":344,"y":27,"on":false},{"x":319,"y":12,"on":true},{"x":290,"y":-4,"on":false},{"x":210,"y":-4,"on":false},{"x":181,"y":12,"on":true},{"x":156,"y":27,"on":false},{"x":141,"y":52,"on":true},{"x":125,"y":81,"on":false}],[{"x":194,"y":121,"on":true},{"x":194,"y":90,"on":false},{"x":212,"y":73,"on":true},{"x":227,"y":58,"on":false},{"x":274,"y":58,"on":false},{"x":288,"y":73,"on":true},{"x":305,"y":90,"on":false},{"x":306,"y":121,"on":true},{"x":306,"y":122,"on":true},{"x":306,"y":153,"on":false},{"x":288,"y":169,"on":true},{"x":273,"y":184,"on":false},{"x":226,"y":184,"on":false},{"x":212,"y":169,"on":true},{"x":195,"y":152,"on":false},{"x":194,"y":122,"on":true}]], "references": [], - "instructions": [181,45,37,28,7,2,48,43] + "instructions": "tS0lHAcCMCs=" }, "uni215A": { "name": "uni215A", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2620","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2608","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,184,255,77,176,51,43,177,3,1,184,1,181,176,51,43] + "instructions": "sQECuP9NsDMrsQMBuAG1sDMr" }, "glyph2622": { "name": "glyph2622", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2608","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph2623": { "name": "glyph2623", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2620","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "oneeighth": { "name": "oneeighth", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2626","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,3,184,255,77,176,51,43,177,4,1,184,1,181,176,51,43] + "instructions": "sQEDuP9NsDMrsQQBuAG1sDMr" }, "glyph2625": { "name": "glyph2625", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph2626": { "name": "glyph2626", "advanceWidth": 500, "contours": [[{"x":125,"y":101,"on":true},{"x":125,"y":129,"on":false},{"x":139,"y":154,"on":true},{"x":154,"y":180,"on":false},{"x":194,"y":208,"on":true},{"x":162,"y":232,"on":false},{"x":149,"y":254,"on":true},{"x":134,"y":279,"on":false},{"x":135,"y":308,"on":true},{"x":135,"y":336,"on":false},{"x":148,"y":358,"on":true},{"x":160,"y":379,"on":false},{"x":183,"y":393,"on":true},{"x":211,"y":409,"on":false},{"x":290,"y":409,"on":false},{"x":317,"y":393,"on":true},{"x":340,"y":380,"on":false},{"x":352,"y":358,"on":true},{"x":365,"y":335,"on":false},{"x":365,"y":308,"on":true},{"x":365,"y":280,"on":false},{"x":351,"y":254,"on":true},{"x":338,"y":232,"on":false},{"x":306,"y":208,"on":true},{"x":346,"y":180,"on":false},{"x":361,"y":154,"on":true},{"x":376,"y":129,"on":false},{"x":375,"y":101,"on":true},{"x":375,"y":73,"on":false},{"x":362,"y":49,"on":true},{"x":349,"y":27,"on":false},{"x":325,"y":13,"on":true},{"x":295,"y":-5,"on":false},{"x":205,"y":-4,"on":false},{"x":175,"y":13,"on":true},{"x":151,"y":27,"on":false},{"x":138,"y":49,"on":true},{"x":125,"y":72,"on":false}],[{"x":194,"y":100,"on":true},{"x":194,"y":84,"on":false},{"x":205,"y":74,"on":true},{"x":220,"y":59,"on":false},{"x":280,"y":58,"on":false},{"x":295,"y":74,"on":true},{"x":306,"y":85,"on":false},{"x":306,"y":100,"on":true},{"x":306,"y":114,"on":false},{"x":298,"y":128,"on":true},{"x":286,"y":148,"on":false},{"x":250,"y":172,"on":true},{"x":214,"y":148,"on":false},{"x":202,"y":128,"on":true},{"x":194,"y":114,"on":false}],[{"x":204,"y":308,"on":true},{"x":204,"y":295,"on":false},{"x":212,"y":281,"on":true},{"x":222,"y":264,"on":false},{"x":250,"y":244,"on":true},{"x":278,"y":264,"on":false},{"x":288,"y":281,"on":true},{"x":296,"y":295,"on":false},{"x":296,"y":308,"on":true},{"x":296,"y":323,"on":false},{"x":285,"y":333,"on":true},{"x":273,"y":345,"on":false},{"x":227,"y":346,"on":false},{"x":215,"y":333,"on":true},{"x":205,"y":323,"on":false}]], "references": [], - "instructions": [183,65,57,49,42,32,13,3,48,43] + "instructions": "t0E5MSogDQMwKw==" }, "threeeighths": { "name": "threeeighths", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2626","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2589","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,3,184,255,77,176,51,43,177,4,1,184,1,181,176,51,43] + "instructions": "sQEDuP9NsDMrsQQBuAG1sDMr" }, "glyph2628": { "name": "glyph2628", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2589","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph2629": { "name": "glyph2629", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2626","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "fiveeighths": { "name": "fiveeighths", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2626","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2608","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,3,184,255,77,176,51,43,177,4,1,184,1,181,176,51,43] + "instructions": "sQEDuP9NsDMrsQQBuAG1sDMr" }, "glyph2631": { "name": "glyph2631", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2608","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph2632": { "name": "glyph2632", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2626","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "seveneighths": { "name": "seveneighths", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2626","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2593","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,3,184,255,77,176,51,43,177,4,1,184,1,181,176,51,43] + "instructions": "sQEDuP9NsDMrsQQBuAG1sDMr" }, "glyph2634": { "name": "glyph2634", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2593","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph2635": { "name": "glyph2635", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2626","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2189": { "name": "uni2189", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2637","x":0,"y":437,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2589","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,3,184,1,181,176,51,43,177,4,1,184,255,77,176,51,43] + "instructions": "sQEDuAG1sDMrsQQBuP9NsDMr" }, "glyph2637": { "name": "glyph2637", "advanceWidth": 500, "contours": [[{"x":125,"y":121,"on":true},{"x":125,"y":283,"on":true},{"x":125,"y":323,"on":false},{"x":141,"y":352,"on":true},{"x":156,"y":377,"on":false},{"x":181,"y":392,"on":true},{"x":210,"y":409,"on":false},{"x":290,"y":409,"on":false},{"x":319,"y":392,"on":true},{"x":344,"y":377,"on":false},{"x":359,"y":352,"on":true},{"x":376,"y":323,"on":false},{"x":375,"y":283,"on":true},{"x":375,"y":121,"on":true},{"x":375,"y":81,"on":false},{"x":359,"y":52,"on":true},{"x":344,"y":27,"on":false},{"x":319,"y":12,"on":true},{"x":290,"y":-4,"on":false},{"x":210,"y":-4,"on":false},{"x":181,"y":12,"on":true},{"x":156,"y":27,"on":false},{"x":141,"y":52,"on":true},{"x":124,"y":81,"on":false}],[{"x":194,"y":178,"on":true},{"x":302,"y":309,"on":true},{"x":298,"y":322,"on":false},{"x":288,"y":331,"on":true},{"x":273,"y":346,"on":false},{"x":226,"y":346,"on":false},{"x":212,"y":331,"on":true},{"x":195,"y":314,"on":false},{"x":194,"y":283,"on":true}],[{"x":198,"y":96,"on":true},{"x":202,"y":83,"on":false},{"x":212,"y":73,"on":true},{"x":227,"y":58,"on":false},{"x":274,"y":58,"on":false},{"x":288,"y":73,"on":true},{"x":305,"y":90,"on":false},{"x":306,"y":121,"on":true},{"x":306,"y":227,"on":true}]], "references": [], - "instructions": [183,41,36,28,24,18,6,3,48,43] + "instructions": "tykkHBgSBgMwKw==" }, "glyph2638": { "name": "glyph2638", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2589","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni2105": { "name": "uni2105", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2641","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2640","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,2,184,255,77,176,51,43,177,3,1,184,1,181,176,51,43] + "instructions": "sQECuP9NsDMrsQMBuAG1sDMr" }, "glyph2640": { "name": "glyph2640", "advanceWidth": 500, "contours": [[{"x":125,"y":107,"on":true},{"x":125,"y":297,"on":true},{"x":125,"y":330,"on":false},{"x":139,"y":354,"on":true},{"x":152,"y":377,"on":false},{"x":176,"y":391,"on":true},{"x":206,"y":408,"on":false},{"x":250,"y":409,"on":true},{"x":294,"y":409,"on":false},{"x":324,"y":391,"on":true},{"x":348,"y":377,"on":false},{"x":362,"y":354,"on":true},{"x":371,"y":338,"on":false},{"x":374,"y":319,"on":true},{"x":306,"y":303,"on":true},{"x":304,"y":319,"on":false},{"x":293,"y":331,"on":true},{"x":278,"y":346,"on":false},{"x":250,"y":346,"on":true},{"x":223,"y":346,"on":false},{"x":207,"y":331,"on":true},{"x":194,"y":318,"on":false},{"x":194,"y":297,"on":true},{"x":194,"y":107,"on":true},{"x":194,"y":86,"on":false},{"x":207,"y":74,"on":true},{"x":222,"y":59,"on":false},{"x":250,"y":58,"on":true},{"x":278,"y":58,"on":false},{"x":293,"y":74,"on":true},{"x":305,"y":86,"on":false},{"x":306,"y":101,"on":true},{"x":374,"y":85,"on":true},{"x":371,"y":67,"on":false},{"x":362,"y":51,"on":true},{"x":348,"y":27,"on":false},{"x":324,"y":13,"on":true},{"x":294,"y":-4,"on":false},{"x":206,"y":-4,"on":false},{"x":176,"y":13,"on":true},{"x":152,"y":27,"on":false},{"x":139,"y":50,"on":true},{"x":125,"y":74,"on":false}]], "references": [], - "instructions": [179,37,7,1,48,43] + "instructions": "syUHATAr" }, "glyph2641": { "name": "glyph2641", "advanceWidth": 500, "contours": [[{"x":125,"y":107,"on":true},{"x":125,"y":297,"on":true},{"x":125,"y":361,"on":false},{"x":176,"y":391,"on":true},{"x":206,"y":409,"on":false},{"x":294,"y":409,"on":false},{"x":324,"y":391,"on":true},{"x":376,"y":361,"on":false},{"x":375,"y":297,"on":true},{"x":375,"y":107,"on":true},{"x":375,"y":43,"on":false},{"x":324,"y":13,"on":true},{"x":294,"y":-4,"on":false},{"x":206,"y":-4,"on":false},{"x":176,"y":13,"on":true},{"x":124,"y":43,"on":false}],[{"x":194,"y":107,"on":true},{"x":194,"y":86,"on":false},{"x":207,"y":74,"on":true},{"x":222,"y":59,"on":false},{"x":277,"y":58,"on":false},{"x":293,"y":74,"on":true},{"x":306,"y":87,"on":false},{"x":306,"y":107,"on":true},{"x":306,"y":297,"on":true},{"x":306,"y":318,"on":false},{"x":293,"y":331,"on":true},{"x":277,"y":346,"on":false},{"x":223,"y":346,"on":false},{"x":207,"y":331,"on":true},{"x":194,"y":318,"on":false},{"x":194,"y":297,"on":true}]], "references": [], - "instructions": [181,27,20,12,4,2,48,43] + "instructions": "tRsUDAQCMCs=" }, "uni2106": { "name": "uni2106", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2644","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2640","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,77,176,51,43,177,2,1,184,1,181,176,51,43] + "instructions": "sQEBuP9NsDMrsQIBuAG1sDMr" }, "glyph2643": { "name": "glyph2643", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2640","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "glyph2644": { "name": "glyph2644", "advanceWidth": 500, "contours": [[{"x":129,"y":107,"on":true},{"x":129,"y":404,"on":true},{"x":199,"y":404,"on":true},{"x":199,"y":107,"on":true},{"x":199,"y":85,"on":false},{"x":212,"y":72,"on":true},{"x":226,"y":58,"on":false},{"x":274,"y":58,"on":false},{"x":288,"y":72,"on":true},{"x":301,"y":85,"on":false},{"x":301,"y":107,"on":true},{"x":301,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":107,"on":true},{"x":371,"y":42,"on":false},{"x":320,"y":12,"on":true},{"x":291,"y":-5,"on":false},{"x":209,"y":-4,"on":false},{"x":180,"y":12,"on":true},{"x":129,"y":42,"on":false}]], "references": [], - "instructions": [179,16,1,1,48,43] + "instructions": "sxABATAr" }, "uniE0A1": { "name": "uniE0A1", "advanceWidth": 500, "contours": [], "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2647","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2646","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,77,176,51,43,177,2,1,184,1,181,176,51,43] + "instructions": "sQEBuP9NsDMrsQIBuAG1sDMr" }, "glyph2646": { "name": "glyph2646", "advanceWidth": 500, "contours": [[{"x":137,"y":0,"on":true},{"x":137,"y":404,"on":true},{"x":207,"y":404,"on":true},{"x":207,"y":63,"on":true},{"x":375,"y":63,"on":true},{"x":375,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "glyph2647": { "name": "glyph2647", "advanceWidth": 500, "contours": [[{"x":129,"y":0,"on":true},{"x":129,"y":404,"on":true},{"x":206,"y":404,"on":true},{"x":312,"y":101,"on":true},{"x":311,"y":111,"on":false},{"x":309,"y":121,"on":true},{"x":301,"y":185,"on":false},{"x":301,"y":243,"on":true},{"x":301,"y":404,"on":true},{"x":371,"y":404,"on":true},{"x":371,"y":0,"on":true},{"x":294,"y":0,"on":true},{"x":188,"y":303,"on":true},{"x":189,"y":293,"on":false},{"x":191,"y":283,"on":true},{"x":199,"y":219,"on":false},{"x":199,"y":162,"on":true},{"x":199,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "glyph2648": { "name": "glyph2648", "advanceWidth": 500, "contours": [[{"x":60,"y":304,"on":true},{"x":60,"y":358,"on":true},{"x":440,"y":358,"on":true},{"x":440,"y":304,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,27,0,0,1,1,0,85,0,0,0,1,93,2,1,1,0,1,77,0,0,0,3,0,3,17,3,9,21,43,177,6,0,68] + "instructions": "sQZkREAbAAABAQBVAAAAAV0CAQEAAU0AAAADAAMRAwkVK7EGAEQ=" }, "glyph2649": { "name": "glyph2649", "advanceWidth": 500, "contours": [], "references": [], - "instructions": [] + "instructions": "" }, "glyph2650": { "name": "glyph2650", "advanceWidth": 500, "contours": [], "references": [], - "instructions": [] + "instructions": "" }, "uni0363": { "name": "uni0363", "advanceWidth": 0, "contours": [[{"x":-341,"y":647,"on":true},{"x":-341,"y":665,"on":false},{"x":-334,"y":678,"on":true},{"x":-325,"y":693,"on":false},{"x":-308,"y":702,"on":true},{"x":-282,"y":717,"on":false},{"x":-241,"y":717,"on":true},{"x":-208,"y":717,"on":true},{"x":-208,"y":732,"on":true},{"x":-208,"y":741,"on":false},{"x":-214,"y":747,"on":true},{"x":-225,"y":758,"on":false},{"x":-251,"y":758,"on":true},{"x":-274,"y":758,"on":false},{"x":-287,"y":746,"on":true},{"x":-294,"y":739,"on":false},{"x":-296,"y":731,"on":true},{"x":-339,"y":744,"on":true},{"x":-334,"y":761,"on":false},{"x":-320,"y":775,"on":true},{"x":-296,"y":799,"on":false},{"x":-251,"y":799,"on":true},{"x":-191,"y":799,"on":false},{"x":-169,"y":762,"on":true},{"x":-162,"y":749,"on":false},{"x":-162,"y":732,"on":true},{"x":-162,"y":584,"on":true},{"x":-208,"y":584,"on":true},{"x":-208,"y":610,"on":true},{"x":-217,"y":598,"on":false},{"x":-229,"y":591,"on":true},{"x":-246,"y":581,"on":false},{"x":-294,"y":581,"on":false},{"x":-311,"y":591,"on":true},{"x":-341,"y":609,"on":false}],[{"x":-295,"y":647,"on":true},{"x":-295,"y":639,"on":false},{"x":-290,"y":633,"on":true},{"x":-279,"y":622,"on":false},{"x":-231,"y":622,"on":false},{"x":-219,"y":635,"on":true},{"x":-208,"y":646,"on":false},{"x":-208,"y":663,"on":true},{"x":-208,"y":676,"on":true},{"x":-241,"y":676,"on":true},{"x":-275,"y":676,"on":false},{"x":-289,"y":662,"on":true},{"x":-295,"y":656,"on":false}]], "references": [], - "instructions": [177,6,100,68,64,58,17,16,2,0,1,35,1,5,6,28,1,3,5,3,74,0,2,0,1,0,2,1,103,0,0,0,6,5,0,6,103,0,5,3,3,5,87,0,5,5,3,95,4,1,3,5,3,79,36,22,20,20,39,36,37,7,9,27,43,177,6,0,68] + "instructions": "sQZkREA6ERACAAEjAQUGHAEDBQNKAAIAAQACAWcAAAAGBQAGZwAFAwMFVwAFBQNfBAEDBQNPJBYUFCckJQcJGyuxBgBE" }, "uni0364": { "name": "uni0364", "advanceWidth": 0, "contours": [[{"x":-341,"y":672,"on":true},{"x":-341,"y":708,"on":true},{"x":-341,"y":737,"on":false},{"x":-329,"y":758,"on":true},{"x":-318,"y":776,"on":false},{"x":-300,"y":787,"on":true},{"x":-279,"y":799,"on":false},{"x":-221,"y":799,"on":false},{"x":-200,"y":787,"on":true},{"x":-181,"y":776,"on":false},{"x":-171,"y":758,"on":true},{"x":-159,"y":737,"on":false},{"x":-159,"y":708,"on":true},{"x":-159,"y":670,"on":true},{"x":-295,"y":670,"on":true},{"x":-294,"y":648,"on":false},{"x":-282,"y":635,"on":true},{"x":-269,"y":622,"on":false},{"x":-247,"y":622,"on":true},{"x":-224,"y":622,"on":false},{"x":-211,"y":635,"on":true},{"x":-204,"y":642,"on":false},{"x":-201,"y":652,"on":true},{"x":-158,"y":636,"on":true},{"x":-164,"y":619,"on":false},{"x":-177,"y":606,"on":true},{"x":-202,"y":581,"on":false},{"x":-247,"y":581,"on":true},{"x":-278,"y":581,"on":false},{"x":-300,"y":594,"on":true},{"x":-319,"y":605,"on":false},{"x":-329,"y":623,"on":true},{"x":-341,"y":644,"on":false}],[{"x":-295,"y":711,"on":true},{"x":-205,"y":711,"on":true},{"x":-206,"y":733,"on":false},{"x":-218,"y":746,"on":true},{"x":-230,"y":758,"on":false},{"x":-270,"y":758,"on":false},{"x":-282,"y":746,"on":true},{"x":-294,"y":733,"on":false}]], "references": [], - "instructions": [177,6,100,68,64,48,23,22,2,2,1,1,74,0,0,0,5,4,0,5,103,0,4,0,1,2,4,1,101,0,2,3,3,2,87,0,2,2,3,95,0,3,2,3,79,19,21,39,35,22,22,6,9,26,43,177,6,0,68] + "instructions": "sQZkREAwFxYCAgEBSgAAAAUEAAVnAAQAAQIEAWUAAgMDAlcAAgIDXwADAgNPExUnIxYWBgkaK7EGAEQ=" }, "uni0365": { "name": "uni0365", "advanceWidth": 0, "contours": [[{"x":-320,"y":584,"on":true},{"x":-320,"y":625,"on":true},{"x":-270,"y":625,"on":true},{"x":-270,"y":755,"on":true},{"x":-314,"y":755,"on":true},{"x":-314,"y":796,"on":true},{"x":-224,"y":796,"on":true},{"x":-224,"y":625,"on":true},{"x":-180,"y":625,"on":true},{"x":-180,"y":584,"on":true}],[{"x":-275,"y":847,"on":false},{"x":-275,"y":870,"on":false},{"x":-261,"y":883,"on":false},{"x":-239,"y":883,"on":false},{"x":-225,"y":870,"on":false},{"x":-225,"y":847,"on":false},{"x":-239,"y":833,"on":false},{"x":-261,"y":833,"on":false}]], "references": [], - "instructions": [177,6,100,68,64,52,0,5,0,6,2,5,6,103,0,2,0,1,0,2,1,101,3,1,0,4,4,0,85,3,1,0,0,4,93,7,1,4,0,4,77,0,0,17,16,13,12,0,9,0,9,17,17,17,17,8,9,24,43,177,6,0,68] + "instructions": "sQZkREA0AAUABgIFBmcAAgABAAIBZQMBAAQEAFUDAQAABF0HAQQABE0AABEQDQwACQAJEREREQgJGCuxBgBE" }, "uni0366": { "name": "uni0366", "advanceWidth": 0, "contours": [[{"x":-341,"y":672,"on":true},{"x":-341,"y":708,"on":true},{"x":-341,"y":737,"on":false},{"x":-329,"y":758,"on":true},{"x":-318,"y":776,"on":false},{"x":-300,"y":787,"on":true},{"x":-279,"y":799,"on":false},{"x":-221,"y":799,"on":false},{"x":-200,"y":787,"on":true},{"x":-181,"y":776,"on":false},{"x":-171,"y":758,"on":true},{"x":-159,"y":737,"on":false},{"x":-159,"y":708,"on":true},{"x":-159,"y":672,"on":true},{"x":-159,"y":643,"on":false},{"x":-171,"y":622,"on":true},{"x":-182,"y":604,"on":false},{"x":-200,"y":593,"on":true},{"x":-221,"y":581,"on":false},{"x":-279,"y":581,"on":false},{"x":-300,"y":593,"on":true},{"x":-319,"y":604,"on":false},{"x":-329,"y":622,"on":true},{"x":-341,"y":643,"on":false}],[{"x":-295,"y":672,"on":true},{"x":-295,"y":648,"on":false},{"x":-282,"y":634,"on":true},{"x":-270,"y":622,"on":false},{"x":-230,"y":622,"on":false},{"x":-218,"y":634,"on":true},{"x":-204,"y":648,"on":false},{"x":-205,"y":672,"on":true},{"x":-205,"y":708,"on":true},{"x":-205,"y":732,"on":false},{"x":-218,"y":746,"on":true},{"x":-230,"y":758,"on":false},{"x":-270,"y":758,"on":false},{"x":-282,"y":746,"on":true},{"x":-296,"y":732,"on":false},{"x":-295,"y":708,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,31,0,0,0,3,2,0,3,103,0,2,1,1,2,87,0,2,2,1,95,0,1,2,1,79,23,24,27,22,4,9,24,43,177,6,0,68] + "instructions": "sQZkREAfAAAAAwIAA2cAAgEBAlcAAgIBXwABAgFPFxgbFgQJGCuxBgBE" }, "uni0367": { "name": "uni0367", "advanceWidth": 0, "contours": [[{"x":-338,"y":672,"on":true},{"x":-338,"y":796,"on":true},{"x":-292,"y":796,"on":true},{"x":-292,"y":672,"on":true},{"x":-292,"y":647,"on":false},{"x":-279,"y":633,"on":true},{"x":-268,"y":622,"on":false},{"x":-232,"y":622,"on":false},{"x":-221,"y":633,"on":true},{"x":-207,"y":647,"on":false},{"x":-208,"y":672,"on":true},{"x":-208,"y":796,"on":true},{"x":-162,"y":796,"on":true},{"x":-162,"y":584,"on":true},{"x":-208,"y":584,"on":true},{"x":-208,"y":612,"on":true},{"x":-217,"y":598,"on":false},{"x":-231,"y":590,"on":true},{"x":-246,"y":581,"on":false},{"x":-285,"y":581,"on":false},{"x":-315,"y":599,"on":false},{"x":-325,"y":615,"on":true},{"x":-338,"y":638,"on":false}]], "references": [], - "instructions": [177,6,100,68,64,38,15,1,3,1,1,74,2,1,0,1,3,0,85,0,1,3,3,1,87,0,1,1,3,95,4,1,3,1,3,79,20,17,20,20,17,5,9,25,43,177,6,0,68] + "instructions": "sQZkREAmDwEDAQFKAgEAAQMAVQABAwMBVwABAQNfBAEDAQNPFBEUFBEFCRkrsQYARA==" }, "uni0368": { "name": "uni0368", "advanceWidth": 0, "contours": [[{"x":-341,"y":672,"on":true},{"x":-341,"y":708,"on":true},{"x":-341,"y":737,"on":false},{"x":-329,"y":758,"on":true},{"x":-318,"y":776,"on":false},{"x":-300,"y":787,"on":true},{"x":-279,"y":799,"on":false},{"x":-249,"y":799,"on":true},{"x":-218,"y":799,"on":false},{"x":-197,"y":787,"on":true},{"x":-180,"y":777,"on":false},{"x":-169,"y":759,"on":true},{"x":-162,"y":747,"on":false},{"x":-160,"y":734,"on":true},{"x":-204,"y":723,"on":true},{"x":-205,"y":736,"on":false},{"x":-215,"y":746,"on":true},{"x":-227,"y":758,"on":false},{"x":-249,"y":758,"on":true},{"x":-269,"y":758,"on":false},{"x":-282,"y":746,"on":true},{"x":-296,"y":732,"on":false},{"x":-295,"y":708,"on":true},{"x":-295,"y":672,"on":true},{"x":-295,"y":648,"on":false},{"x":-282,"y":635,"on":true},{"x":-270,"y":623,"on":false},{"x":-249,"y":622,"on":true},{"x":-227,"y":622,"on":false},{"x":-215,"y":635,"on":true},{"x":-205,"y":645,"on":false},{"x":-204,"y":658,"on":true},{"x":-160,"y":646,"on":true},{"x":-162,"y":633,"on":false},{"x":-169,"y":621,"on":true},{"x":-179,"y":603,"on":false},{"x":-197,"y":594,"on":true},{"x":-219,"y":581,"on":false},{"x":-279,"y":581,"on":false},{"x":-300,"y":593,"on":true},{"x":-319,"y":604,"on":false},{"x":-329,"y":622,"on":true},{"x":-341,"y":643,"on":false}]], "references": [], - "instructions": [177,6,100,68,64,40,32,31,14,13,4,2,1,1,74,0,0,0,1,2,0,1,103,0,2,3,3,2,87,0,2,2,3,95,0,3,2,3,79,25,39,41,38,4,9,24,43,177,6,0,68] + "instructions": "sQZkREAoIB8ODQQCAQFKAAAAAQIAAWcAAgMDAlcAAgIDXwADAgNPGScpJgQJGCuxBgBE" }, "uni0369": { "name": "uni0369", "advanceWidth": 0, "contours": [[{"x":-341,"y":672,"on":true},{"x":-341,"y":708,"on":true},{"x":-341,"y":741,"on":false},{"x":-328,"y":764,"on":true},{"x":-318,"y":781,"on":false},{"x":-287,"y":799,"on":false},{"x":-266,"y":799,"on":true},{"x":-246,"y":799,"on":false},{"x":-231,"y":791,"on":true},{"x":-217,"y":783,"on":false},{"x":-208,"y":769,"on":true},{"x":-208,"y":878,"on":true},{"x":-162,"y":878,"on":true},{"x":-162,"y":584,"on":true},{"x":-208,"y":584,"on":true},{"x":-208,"y":612,"on":true},{"x":-217,"y":598,"on":false},{"x":-231,"y":590,"on":true},{"x":-246,"y":582,"on":false},{"x":-265,"y":581,"on":true},{"x":-266,"y":581,"on":true},{"x":-308,"y":581,"on":false},{"x":-328,"y":617,"on":true},{"x":-341,"y":639,"on":false}],[{"x":-295,"y":672,"on":true},{"x":-295,"y":648,"on":false},{"x":-282,"y":634,"on":true},{"x":-270,"y":622,"on":false},{"x":-250,"y":622,"on":true},{"x":-232,"y":622,"on":false},{"x":-221,"y":633,"on":true},{"x":-207,"y":647,"on":false},{"x":-208,"y":672,"on":true},{"x":-208,"y":708,"on":true},{"x":-208,"y":733,"on":false},{"x":-221,"y":747,"on":true},{"x":-232,"y":758,"on":false},{"x":-250,"y":758,"on":true},{"x":-269,"y":758,"on":false},{"x":-282,"y":746,"on":true},{"x":-296,"y":732,"on":false},{"x":-295,"y":708,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,50,10,1,5,0,15,1,2,4,2,74,0,1,0,2,1,85,0,0,0,5,4,0,5,103,0,4,2,2,4,87,0,4,4,2,95,3,1,2,4,2,79,39,38,52,17,20,37,6,9,26,43,177,6,0,68] + "instructions": "sQZkREAyCgEFAA8BAgQCSgABAAIBVQAAAAUEAAVnAAQCAgRXAAQEAl8DAQIEAk8nJjQRFCUGCRorsQYARA==" }, "uni036A": { "name": "uni036A", "advanceWidth": 0, "contours": [[{"x":-338,"y":584,"on":true},{"x":-338,"y":878,"on":true},{"x":-292,"y":878,"on":true},{"x":-292,"y":769,"on":true},{"x":-283,"y":783,"on":false},{"x":-269,"y":791,"on":true},{"x":-254,"y":800,"on":false},{"x":-215,"y":799,"on":false},{"x":-200,"y":791,"on":true},{"x":-185,"y":782,"on":false},{"x":-175,"y":765,"on":true},{"x":-162,"y":742,"on":false},{"x":-162,"y":708,"on":true},{"x":-162,"y":584,"on":true},{"x":-208,"y":584,"on":true},{"x":-208,"y":708,"on":true},{"x":-208,"y":733,"on":false},{"x":-221,"y":747,"on":true},{"x":-232,"y":758,"on":false},{"x":-268,"y":758,"on":false},{"x":-279,"y":747,"on":true},{"x":-293,"y":733,"on":false},{"x":-292,"y":708,"on":true},{"x":-292,"y":584,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,45,3,1,3,1,1,74,0,0,1,2,0,85,0,1,0,3,2,1,3,103,0,0,0,2,93,5,4,2,2,0,2,77,0,0,0,23,0,23,20,22,20,17,6,9,24,43,177,6,0,68] + "instructions": "sQZkREAtAwEDAQFKAAABAgBVAAEAAwIBA2cAAAACXQUEAgIAAk0AAAAXABcUFhQRBgkYK7EGAEQ=" }, "uni036B": { "name": "uni036B", "advanceWidth": 0, "contours": [[{"x":-341,"y":584,"on":true},{"x":-341,"y":796,"on":true},{"x":-296,"y":796,"on":true},{"x":-296,"y":785,"on":true},{"x":-294,"y":788,"on":false},{"x":-291,"y":790,"on":true},{"x":-282,"y":799,"on":false},{"x":-269,"y":799,"on":true},{"x":-255,"y":799,"on":false},{"x":-245,"y":790,"on":true},{"x":-238,"y":783,"on":false},{"x":-234,"y":772,"on":true},{"x":-230,"y":783,"on":false},{"x":-223,"y":790,"on":true},{"x":-214,"y":799,"on":false},{"x":-186,"y":799,"on":false},{"x":-177,"y":790,"on":true},{"x":-159,"y":772,"on":false},{"x":-159,"y":730,"on":true},{"x":-159,"y":584,"on":true},{"x":-204,"y":584,"on":true},{"x":-204,"y":730,"on":true},{"x":-204,"y":758,"on":false},{"x":-227,"y":759,"on":false},{"x":-227,"y":730,"on":true},{"x":-227,"y":584,"on":true},{"x":-273,"y":584,"on":true},{"x":-273,"y":730,"on":true},{"x":-273,"y":758,"on":false},{"x":-296,"y":759,"on":false},{"x":-296,"y":730,"on":true},{"x":-296,"y":584,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,49,11,3,2,4,0,1,74,2,1,2,0,6,1,4,3,0,4,103,2,1,2,0,0,3,93,8,7,5,3,3,0,3,77,0,0,0,31,0,31,18,18,18,20,22,36,17,9,9,27,43,177,6,0,68] + "instructions": "sQZkREAxCwMCBAABSgIBAgAGAQQDAARnAgECAAADXQgHBQMDAANNAAAAHwAfEhISFBYkEQkJGyuxBgBE" }, "uni036C": { "name": "uni036C", "advanceWidth": 0, "contours": [[{"x":-314,"y":584,"on":true},{"x":-314,"y":796,"on":true},{"x":-268,"y":796,"on":true},{"x":-268,"y":759,"on":true},{"x":-266,"y":763,"on":false},{"x":-264,"y":768,"on":true},{"x":-254,"y":785,"on":false},{"x":-240,"y":792,"on":true},{"x":-228,"y":799,"on":false},{"x":-212,"y":799,"on":true},{"x":-186,"y":799,"on":false},{"x":-170,"y":782,"on":true},{"x":-161,"y":773,"on":false},{"x":-156,"y":760,"on":true},{"x":-199,"y":740,"on":true},{"x":-206,"y":758,"on":false},{"x":-226,"y":758,"on":true},{"x":-241,"y":758,"on":false},{"x":-252,"y":748,"on":true},{"x":-269,"y":731,"on":false},{"x":-268,"y":697,"on":true},{"x":-268,"y":584,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,44,13,3,2,2,0,14,1,3,2,2,74,1,1,0,0,2,3,0,2,103,1,1,0,0,3,93,4,1,3,0,3,77,0,0,0,21,0,21,37,38,17,5,9,23,43,177,6,0,68] + "instructions": "sQZkREAsDQMCAgAOAQMCAkoBAQAAAgMAAmcBAQAAA10EAQMAA00AAAAVABUlJhEFCRcrsQYARA==" }, "uni036D": { "name": "uni036D", "advanceWidth": 0, "contours": [[{"x":-330,"y":755,"on":true},{"x":-330,"y":796,"on":true},{"x":-293,"y":796,"on":true},{"x":-293,"y":878,"on":true},{"x":-247,"y":878,"on":true},{"x":-247,"y":796,"on":true},{"x":-190,"y":796,"on":true},{"x":-190,"y":755,"on":true},{"x":-247,"y":755,"on":true},{"x":-247,"y":676,"on":true},{"x":-247,"y":644,"on":false},{"x":-233,"y":630,"on":true},{"x":-225,"y":622,"on":false},{"x":-203,"y":622,"on":false},{"x":-195,"y":630,"on":true},{"x":-185,"y":640,"on":false},{"x":-181,"y":661,"on":true},{"x":-139,"y":646,"on":true},{"x":-142,"y":630,"on":false},{"x":-149,"y":618,"on":true},{"x":-159,"y":600,"on":false},{"x":-192,"y":581,"on":false},{"x":-236,"y":581,"on":false},{"x":-269,"y":600,"on":false},{"x":-279,"y":618,"on":true},{"x":-293,"y":641,"on":false},{"x":-293,"y":676,"on":true},{"x":-293,"y":755,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,54,17,16,2,4,3,1,74,0,1,0,1,131,2,1,0,7,6,2,3,4,0,3,101,0,4,5,5,4,87,0,4,4,5,95,0,5,4,5,79,0,0,0,27,0,27,24,20,17,17,17,17,8,9,26,43,177,6,0,68] + "instructions": "sQZkREA2ERACBAMBSgABAAGDAgEABwYCAwQAA2UABAUFBFcABAQFXwAFBAVPAAAAGwAbGBQRERERCAkaK7EGAEQ=" }, "uni036E": { "name": "uni036E", "advanceWidth": 0, "contours": [[{"x":-338,"y":775,"on":true},{"x":-338,"y":796,"on":true},{"x":-292,"y":796,"on":true},{"x":-292,"y":775,"on":true},{"x":-292,"y":727,"on":false},{"x":-250,"y":623,"on":true},{"x":-208,"y":727,"on":false},{"x":-208,"y":775,"on":true},{"x":-208,"y":796,"on":true},{"x":-162,"y":796,"on":true},{"x":-162,"y":775,"on":true},{"x":-162,"y":717,"on":false},{"x":-227,"y":584,"on":true},{"x":-273,"y":584,"on":true},{"x":-338,"y":717,"on":false}]], "references": [], - "instructions": [177,6,100,68,64,22,5,1,2,0,1,74,1,1,0,2,0,131,0,2,2,116,19,22,17,3,9,23,43,177,6,0,68] + "instructions": "sQZkREAWBQECAAFKAQEAAgCDAAICdBMWEQMJFyuxBgBE" }, "uni036F": { "name": "uni036F", "advanceWidth": 0, "contours": [[{"x":-338,"y":584,"on":true},{"x":-338,"y":586,"on":true},{"x":-338,"y":607,"on":false},{"x":-308,"y":649,"on":true},{"x":-277,"y":690,"on":true},{"x":-308,"y":732,"on":true},{"x":-338,"y":774,"on":false},{"x":-338,"y":794,"on":true},{"x":-338,"y":796,"on":true},{"x":-292,"y":796,"on":true},{"x":-292,"y":794,"on":true},{"x":-292,"y":786,"on":false},{"x":-271,"y":756,"on":true},{"x":-250,"y":728,"on":true},{"x":-229,"y":756,"on":true},{"x":-207,"y":786,"on":false},{"x":-208,"y":794,"on":true},{"x":-208,"y":796,"on":true},{"x":-162,"y":796,"on":true},{"x":-162,"y":794,"on":true},{"x":-162,"y":773,"on":false},{"x":-192,"y":732,"on":true},{"x":-223,"y":690,"on":true},{"x":-192,"y":649,"on":true},{"x":-162,"y":607,"on":false},{"x":-162,"y":586,"on":true},{"x":-162,"y":584,"on":true},{"x":-208,"y":584,"on":true},{"x":-208,"y":586,"on":true},{"x":-208,"y":594,"on":false},{"x":-229,"y":625,"on":true},{"x":-250,"y":653,"on":true},{"x":-271,"y":625,"on":true},{"x":-293,"y":595,"on":false},{"x":-292,"y":586,"on":true},{"x":-292,"y":584,"on":true}]], "references": [], - "instructions": [177,6,100,68,64,41,31,22,13,4,4,2,0,1,74,1,1,0,2,2,0,85,1,1,0,0,2,93,4,3,2,2,0,2,77,0,0,0,35,0,34,39,39,39,5,9,23,43,177,6,0,68] + "instructions": "sQZkREApHxYNBAQCAAFKAQEAAgIAVQEBAAACXQQDAgIAAk0AAAAjACInJycFCRcrsQYARA==" }, "uni01C4": { "name": "uni01C4", "advanceWidth": 500, "contours": [[{"x":20,"y":0,"on":true},{"x":20,"y":735,"on":true},{"x":87,"y":735,"on":true},{"x":87,"y":734,"on":true},{"x":122,"y":731,"on":false},{"x":150,"y":712,"on":true},{"x":184,"y":688,"on":false},{"x":207,"y":641,"on":true},{"x":239,"y":574,"on":false},{"x":239,"y":472,"on":true},{"x":239,"y":263,"on":true},{"x":239,"y":161,"on":false},{"x":207,"y":94,"on":true},{"x":184,"y":47,"on":false},{"x":150,"y":23,"on":true},{"x":122,"y":3,"on":false},{"x":87,"y":1,"on":true},{"x":87,"y":0,"on":true}],[{"x":87,"y":73,"on":true},{"x":101,"y":76,"on":false},{"x":113,"y":84,"on":true},{"x":134,"y":98,"on":false},{"x":148,"y":128,"on":true},{"x":173,"y":179,"on":false},{"x":173,"y":263,"on":true},{"x":173,"y":472,"on":true},{"x":173,"y":556,"on":false},{"x":148,"y":607,"on":true},{"x":134,"y":637,"on":false},{"x":113,"y":651,"on":true},{"x":101,"y":659,"on":false},{"x":87,"y":662,"on":true}],[{"x":262,"y":933,"on":true},{"x":310,"y":965,"on":true},{"x":373,"y":834,"on":true},{"x":437,"y":965,"on":true},{"x":485,"y":933,"on":true},{"x":401,"y":778,"on":true},{"x":346,"y":778,"on":true}],[{"x":267,"y":0,"on":true},{"x":267,"y":72,"on":true},{"x":403,"y":663,"on":true},{"x":267,"y":663,"on":true},{"x":267,"y":735,"on":true},{"x":480,"y":735,"on":true},{"x":480,"y":663,"on":true},{"x":344,"y":72,"on":true},{"x":480,"y":72,"on":true},{"x":480,"y":0,"on":true}]], "references": [], - "instructions": [64,76,31,18,2,5,3,1,74,45,1,3,40,1,5,2,73,36,35,34,33,4,2,72,0,2,0,2,131,0,3,3,0,93,4,1,0,0,64,75,0,5,5,1,95,8,6,7,3,1,1,65,1,76,39,39,0,0,39,48,39,48,47,46,44,43,42,41,38,37,0,17,0,15,17,9,9,21,43] + "instructions": "QEwfEgIFAwFKLQEDKAEFAkkkIyIhBAJIAAIAAoMAAwMAXQQBAABASwAFBQFfCAYHAwEBQQFMJycAACcwJzAvLiwrKikmJQARAA8RCQkVKw==" }, "uni01C5": { "name": "uni01C5", "advanceWidth": 500, "contours": [[{"x":20,"y":0,"on":true},{"x":20,"y":735,"on":true},{"x":87,"y":735,"on":true},{"x":87,"y":734,"on":true},{"x":122,"y":731,"on":false},{"x":150,"y":712,"on":true},{"x":184,"y":688,"on":false},{"x":207,"y":641,"on":true},{"x":239,"y":574,"on":false},{"x":239,"y":472,"on":true},{"x":239,"y":263,"on":true},{"x":239,"y":161,"on":false},{"x":207,"y":94,"on":true},{"x":184,"y":47,"on":false},{"x":150,"y":23,"on":true},{"x":122,"y":3,"on":false},{"x":87,"y":1,"on":true},{"x":87,"y":0,"on":true}],[{"x":87,"y":73,"on":true},{"x":101,"y":76,"on":false},{"x":113,"y":84,"on":true},{"x":134,"y":98,"on":false},{"x":148,"y":128,"on":true},{"x":173,"y":179,"on":false},{"x":173,"y":263,"on":true},{"x":173,"y":472,"on":true},{"x":173,"y":556,"on":false},{"x":148,"y":607,"on":true},{"x":134,"y":637,"on":false},{"x":113,"y":651,"on":true},{"x":101,"y":659,"on":false},{"x":87,"y":662,"on":true}],[{"x":262,"y":728,"on":true},{"x":310,"y":760,"on":true},{"x":373,"y":629,"on":true},{"x":437,"y":760,"on":true},{"x":485,"y":728,"on":true},{"x":401,"y":573,"on":true},{"x":346,"y":573,"on":true}],[{"x":267,"y":0,"on":true},{"x":267,"y":72,"on":true},{"x":400,"y":458,"on":true},{"x":267,"y":458,"on":true},{"x":267,"y":530,"on":true},{"x":480,"y":530,"on":true},{"x":480,"y":458,"on":true},{"x":347,"y":72,"on":true},{"x":480,"y":72,"on":true},{"x":480,"y":0,"on":true}]], "references": [], - "instructions": [64,86,36,34,31,3,2,0,18,1,5,3,2,74,45,1,3,40,1,5,2,73,35,33,2,0,72,0,2,0,4,0,2,4,126,0,0,0,64,75,0,3,3,4,93,0,4,4,67,75,0,5,5,1,95,8,6,7,3,1,1,65,1,76,39,39,0,0,39,48,39,48,47,46,44,43,42,41,38,37,0,17,0,15,17,9,9,21,43] + "instructions": "QFYkIh8DAgASAQUDAkotAQMoAQUCSSMhAgBIAAIABAACBH4AAABASwADAwRdAAQEQ0sABQUBXwgGBwMBAUEBTCcnAAAnMCcwLy4sKyopJiUAEQAPEQkJFSs=" }, "uni01C6": { "name": "uni01C6", "advanceWidth": 500, "contours": [[{"x":14,"y":220,"on":true},{"x":14,"y":310,"on":true},{"x":14,"y":428,"on":false},{"x":44,"y":491,"on":true},{"x":57,"y":518,"on":false},{"x":73,"y":529,"on":true},{"x":86,"y":538,"on":false},{"x":101,"y":538,"on":true},{"x":115,"y":538,"on":false},{"x":127,"y":530,"on":true},{"x":142,"y":520,"on":false},{"x":153,"y":495,"on":true},{"x":160,"y":480,"on":false},{"x":166,"y":461,"on":true},{"x":166,"y":735,"on":true},{"x":233,"y":735,"on":true},{"x":233,"y":0,"on":true},{"x":166,"y":0,"on":true},{"x":166,"y":69,"on":true},{"x":161,"y":50,"on":false},{"x":153,"y":35,"on":true},{"x":141,"y":10,"on":false},{"x":127,"y":0,"on":true},{"x":116,"y":-8,"on":false},{"x":86,"y":-8,"on":false},{"x":73,"y":1,"on":true},{"x":56,"y":13,"on":false},{"x":44,"y":39,"on":true},{"x":14,"y":101,"on":false}],[{"x":80,"y":220,"on":true},{"x":80,"y":107,"on":false},{"x":108,"y":74,"on":true},{"x":116,"y":64,"on":false},{"x":126,"y":64,"on":true},{"x":135,"y":64,"on":false},{"x":141,"y":72,"on":true},{"x":166,"y":102,"on":false},{"x":166,"y":220,"on":true},{"x":166,"y":310,"on":true},{"x":166,"y":428,"on":false},{"x":141,"y":458,"on":true},{"x":135,"y":466,"on":false},{"x":126,"y":466,"on":true},{"x":116,"y":466,"on":false},{"x":108,"y":456,"on":true},{"x":80,"y":423,"on":false},{"x":80,"y":310,"on":true}],[{"x":262,"y":728,"on":true},{"x":310,"y":760,"on":true},{"x":373,"y":629,"on":true},{"x":437,"y":760,"on":true},{"x":485,"y":728,"on":true},{"x":401,"y":573,"on":true},{"x":346,"y":573,"on":true}],[{"x":267,"y":0,"on":true},{"x":267,"y":72,"on":true},{"x":400,"y":458,"on":true},{"x":267,"y":458,"on":true},{"x":267,"y":530,"on":true},{"x":480,"y":530,"on":true},{"x":480,"y":458,"on":true},{"x":347,"y":72,"on":true},{"x":480,"y":72,"on":true},{"x":480,"y":0,"on":true}]], "references": [], - "instructions": [75,176,29,80,88,64,19,51,49,2,6,1,60,55,18,13,4,4,5,2,74,50,48,2,1,72,27,64,28,51,49,2,6,1,13,1,7,5,18,1,4,9,3,74,60,1,7,55,1,9,2,73,50,48,2,1,72,89,75,176,29,80,88,64,40,0,6,1,0,1,6,0,126,0,1,1,64,75,7,1,5,5,0,95,8,1,0,0,75,75,9,1,4,4,2,93,11,10,3,3,2,2,65,2,76,27,64,62,0,6,1,0,1,6,0,126,0,5,8,7,8,5,7,126,0,4,9,2,9,4,2,126,0,1,1,64,75,0,0,0,75,75,0,7,7,8,93,0,8,8,67,75,0,9,9,2,93,11,10,2,2,2,65,75,0,3,3,73,3,76,89,64,20,54,54,54,63,54,63,62,61,17,19,25,39,40,22,17,22,38,12,9,29,43] + "instructions": "S7AdUFhAEzMxAgYBPDcSDQQEBQJKMjACAUgbQBwzMQIGAQ0BBwUSAQQJA0o8AQc3AQkCSTIwAgFIWUuwHVBYQCgABgEAAQYAfgABAUBLBwEFBQBfCAEAAEtLCQEEBAJdCwoDAwICQQJMG0A+AAYBAAEGAH4ABQgHCAUHfgAECQIJBAJ+AAEBQEsAAABLSwAHBwhdAAgIQ0sACQkCXQsKAgICQUsAAwNJA0xZQBQ2NjY/Nj8+PRETGScoFhEWJgwJHSs=" }, "uni01C7": { "name": "uni01C7", "advanceWidth": 500, "contours": [[{"x":45,"y":0,"on":true},{"x":45,"y":735,"on":true},{"x":112,"y":735,"on":true},{"x":112,"y":72,"on":true},{"x":239,"y":72,"on":true},{"x":239,"y":0,"on":true}],[{"x":251,"y":155,"on":true},{"x":314,"y":177,"on":true},{"x":317,"y":99,"on":false},{"x":339,"y":73,"on":true},{"x":346,"y":64,"on":false},{"x":364,"y":64,"on":false},{"x":370,"y":72,"on":true},{"x":393,"y":100,"on":false},{"x":394,"y":195,"on":true},{"x":394,"y":663,"on":true},{"x":318,"y":663,"on":true},{"x":318,"y":735,"on":true},{"x":460,"y":735,"on":true},{"x":460,"y":195,"on":true},{"x":460,"y":106,"on":false},{"x":434,"y":52,"on":true},{"x":419,"y":20,"on":false},{"x":397,"y":5,"on":true},{"x":379,"y":-8,"on":false},{"x":331,"y":-8,"on":false},{"x":312,"y":5,"on":true},{"x":290,"y":20,"on":false},{"x":275,"y":52,"on":true},{"x":254,"y":95,"on":false}]], "references": [], - "instructions": [182,7,6,2,1,4,1,74,75,176,29,80,88,64,25,0,4,4,0,93,5,1,0,0,64,75,3,1,1,1,2,96,6,7,2,2,2,65,2,76,27,64,33,0,4,4,0,93,5,1,0,0,64,75,0,1,1,2,94,7,1,2,2,65,75,0,3,3,6,95,0,6,6,73,6,76,89,64,19,0,0,25,24,18,17,16,15,11,10,0,5,0,5,17,17,8,9,22,43] + "instructions": "tgcGAgEEAUpLsB1QWEAZAAQEAF0FAQAAQEsDAQEBAmAGBwICAkECTBtAIQAEBABdBQEAAEBLAAEBAl4HAQICQUsAAwMGXwAGBkkGTFlAEwAAGRgSERAPCwoABQAFEREICRYr" }, "uni01C8": { "name": "uni01C8", "advanceWidth": 500, "contours": [[{"x":45,"y":0,"on":true},{"x":45,"y":735,"on":true},{"x":112,"y":735,"on":true},{"x":112,"y":72,"on":true},{"x":239,"y":72,"on":true},{"x":239,"y":0,"on":true}],[{"x":228,"y":-70,"on":true},{"x":289,"y":-42,"on":true},{"x":293,"y":-85,"on":false},{"x":306,"y":-112,"on":true},{"x":314,"y":-129,"on":false},{"x":324,"y":-136,"on":true},{"x":332,"y":-141,"on":false},{"x":342,"y":-141,"on":true},{"x":351,"y":-141,"on":false},{"x":358,"y":-136,"on":true},{"x":368,"y":-129,"on":false},{"x":375,"y":-114,"on":true},{"x":392,"y":-78,"on":false},{"x":393,"y":-10,"on":true},{"x":393,"y":458,"on":true},{"x":317,"y":458,"on":true},{"x":317,"y":530,"on":true},{"x":459,"y":530,"on":true},{"x":459,"y":-10,"on":true},{"x":459,"y":-93,"on":false},{"x":434,"y":-146,"on":true},{"x":417,"y":-180,"on":false},{"x":392,"y":-198,"on":true},{"x":370,"y":-213,"on":false},{"x":313,"y":-213,"on":false},{"x":291,"y":-198,"on":true},{"x":266,"y":-181,"on":false},{"x":250,"y":-146,"on":true},{"x":234,"y":-113,"on":false}],[{"x":363,"y":685,"on":true},{"x":363,"y":723,"on":false},{"x":386,"y":739,"on":true},{"x":398,"y":748,"on":false},{"x":415,"y":748,"on":true},{"x":447,"y":748,"on":false},{"x":460,"y":719,"on":true},{"x":467,"y":705,"on":false},{"x":467,"y":685,"on":true},{"x":467,"y":647,"on":false},{"x":443,"y":631,"on":true},{"x":432,"y":622,"on":false},{"x":415,"y":622,"on":true},{"x":383,"y":622,"on":false},{"x":370,"y":651,"on":true},{"x":363,"y":665,"on":false}]], "references": [], - "instructions": [181,7,1,3,2,1,74,75,176,9,80,88,64,43,0,8,8,0,95,7,1,0,0,64,75,0,4,4,5,93,0,5,5,67,75,0,1,1,2,94,9,1,2,2,65,75,0,3,3,6,95,0,6,6,77,6,76,27,75,176,10,80,88,64,47,0,0,0,64,75,0,8,8,7,95,0,7,7,74,75,0,4,4,5,93,0,5,5,67,75,0,1,1,2,94,9,1,2,2,65,75,0,3,3,6,95,0,6,6,77,6,76,27,75,176,18,80,88,64,43,0,8,8,0,95,7,1,0,0,64,75,0,4,4,5,93,0,5,5,67,75,0,1,1,2,94,9,1,2,2,65,75,0,3,3,6,95,0,6,6,77,6,76,27,64,47,0,0,0,64,75,0,8,8,7,95,0,7,7,74,75,0,4,4,5,93,0,5,5,67,75,0,1,1,2,94,9,1,2,2,65,75,0,3,3,6,95,0,6,6,77,6,76,89,89,89,64,23,0,0,48,46,40,38,30,29,23,22,21,20,14,12,0,5,0,5,17,17,10,9,22,43] + "instructions": "tQcBAwIBSkuwCVBYQCsACAgAXwcBAABASwAEBAVdAAUFQ0sAAQECXgkBAgJBSwADAwZfAAYGTQZMG0uwClBYQC8AAABASwAICAdfAAcHSksABAQFXQAFBUNLAAEBAl4JAQICQUsAAwMGXwAGBk0GTBtLsBJQWEArAAgIAF8HAQAAQEsABAQFXQAFBUNLAAEBAl4JAQICQUsAAwMGXwAGBk0GTBtALwAAAEBLAAgIB18ABwdKSwAEBAVdAAUFQ0sAAQECXgkBAgJBSwADAwZfAAYGTQZMWVlZQBcAADAuKCYeHRcWFRQODAAFAAUREQoJFis=" }, "uni01C9": { "name": "uni01C9", "advanceWidth": 500, "contours": [[{"x":17,"y":0,"on":true},{"x":17,"y":72,"on":true},{"x":98,"y":72,"on":true},{"x":98,"y":663,"on":true},{"x":26,"y":663,"on":true},{"x":26,"y":735,"on":true},{"x":164,"y":735,"on":true},{"x":164,"y":72,"on":true},{"x":236,"y":72,"on":true},{"x":236,"y":0,"on":true}],[{"x":228,"y":-70,"on":true},{"x":289,"y":-42,"on":true},{"x":293,"y":-85,"on":false},{"x":306,"y":-112,"on":true},{"x":314,"y":-129,"on":false},{"x":324,"y":-136,"on":true},{"x":332,"y":-141,"on":false},{"x":342,"y":-141,"on":true},{"x":351,"y":-141,"on":false},{"x":358,"y":-136,"on":true},{"x":368,"y":-129,"on":false},{"x":375,"y":-114,"on":true},{"x":392,"y":-78,"on":false},{"x":393,"y":-10,"on":true},{"x":393,"y":458,"on":true},{"x":317,"y":458,"on":true},{"x":317,"y":530,"on":true},{"x":459,"y":530,"on":true},{"x":459,"y":-10,"on":true},{"x":459,"y":-93,"on":false},{"x":434,"y":-146,"on":true},{"x":417,"y":-180,"on":false},{"x":392,"y":-198,"on":true},{"x":370,"y":-213,"on":false},{"x":313,"y":-213,"on":false},{"x":291,"y":-198,"on":true},{"x":266,"y":-181,"on":false},{"x":250,"y":-146,"on":true},{"x":234,"y":-113,"on":false}],[{"x":363,"y":685,"on":true},{"x":363,"y":723,"on":false},{"x":386,"y":739,"on":true},{"x":398,"y":748,"on":false},{"x":415,"y":748,"on":true},{"x":447,"y":748,"on":false},{"x":460,"y":719,"on":true},{"x":467,"y":705,"on":false},{"x":467,"y":685,"on":true},{"x":467,"y":647,"on":false},{"x":443,"y":631,"on":true},{"x":432,"y":622,"on":false},{"x":415,"y":622,"on":true},{"x":383,"y":622,"on":false},{"x":370,"y":651,"on":true},{"x":363,"y":665,"on":false}]], "references": [], - "instructions": [181,11,1,5,4,1,74,75,176,9,80,88,64,55,0,1,1,2,95,9,1,2,2,64,75,0,10,10,2,95,9,1,2,2,64,75,0,6,6,7,93,0,7,7,67,75,3,1,0,0,4,93,11,1,4,4,65,75,0,5,5,8,95,0,8,8,77,8,76,27,75,176,10,80,88,64,53,0,1,1,2,93,0,2,2,64,75,0,10,10,9,95,0,9,9,74,75,0,6,6,7,93,0,7,7,67,75,3,1,0,0,4,93,11,1,4,4,65,75,0,5,5,8,95,0,8,8,77,8,76,27,75,176,18,80,88,64,55,0,1,1,2,95,9,1,2,2,64,75,0,10,10,2,95,9,1,2,2,64,75,0,6,6,7,93,0,7,7,67,75,3,1,0,0,4,93,11,1,4,4,65,75,0,5,5,8,95,0,8,8,77,8,76,27,64,53,0,1,1,2,93,0,2,2,64,75,0,10,10,9,95,0,9,9,74,75,0,6,6,7,93,0,7,7,67,75,3,1,0,0,4,93,11,1,4,4,65,75,0,5,5,8,95,0,8,8,77,8,76,89,89,89,64,25,0,0,52,50,44,42,34,33,27,26,25,24,18,16,0,9,0,9,17,17,17,17,12,9,24,43] + "instructions": "tQsBBQQBSkuwCVBYQDcAAQECXwkBAgJASwAKCgJfCQECAkBLAAYGB10ABwdDSwMBAAAEXQsBBARBSwAFBQhfAAgITQhMG0uwClBYQDUAAQECXQACAkBLAAoKCV8ACQlKSwAGBgddAAcHQ0sDAQAABF0LAQQEQUsABQUIXwAICE0ITBtLsBJQWEA3AAEBAl8JAQICQEsACgoCXwkBAgJASwAGBgddAAcHQ0sDAQAABF0LAQQEQUsABQUIXwAICE0ITBtANQABAQJdAAICQEsACgoJXwAJCUpLAAYGB10ABwdDSwMBAAAEXQsBBARBSwAFBQhfAAgITQhMWVlZQBkAADQyLCoiIRsaGRgSEAAJAAkRERERDAkYKw==" }, "uni01CA": { "name": "uni01CA", "advanceWidth": 500, "contours": [[{"x":20,"y":0,"on":true},{"x":20,"y":735,"on":true},{"x":82,"y":735,"on":true},{"x":183,"y":174,"on":true},{"x":181,"y":197,"on":false},{"x":178,"y":221,"on":true},{"x":166,"y":338,"on":false},{"x":166,"y":441,"on":true},{"x":166,"y":735,"on":true},{"x":233,"y":735,"on":true},{"x":233,"y":0,"on":true},{"x":171,"y":0,"on":true},{"x":71,"y":561,"on":true},{"x":73,"y":538,"on":false},{"x":75,"y":514,"on":true},{"x":87,"y":397,"on":false},{"x":87,"y":294,"on":true},{"x":87,"y":0,"on":true}],[{"x":251,"y":155,"on":true},{"x":314,"y":177,"on":true},{"x":317,"y":99,"on":false},{"x":339,"y":73,"on":true},{"x":346,"y":64,"on":false},{"x":364,"y":64,"on":false},{"x":370,"y":72,"on":true},{"x":393,"y":100,"on":false},{"x":394,"y":195,"on":true},{"x":394,"y":663,"on":true},{"x":318,"y":663,"on":true},{"x":318,"y":735,"on":true},{"x":460,"y":735,"on":true},{"x":460,"y":195,"on":true},{"x":460,"y":106,"on":false},{"x":434,"y":52,"on":true},{"x":419,"y":20,"on":false},{"x":397,"y":5,"on":true},{"x":379,"y":-8,"on":false},{"x":331,"y":-8,"on":false},{"x":312,"y":5,"on":true},{"x":290,"y":20,"on":false},{"x":275,"y":52,"on":true},{"x":254,"y":95,"on":false}]], "references": [], - "instructions": [64,9,19,18,12,3,4,4,5,1,74,75,176,29,80,88,64,26,0,5,5,0,93,6,1,2,0,0,64,75,0,4,4,2,93,7,8,3,3,2,2,65,2,76,27,64,30,0,5,5,0,93,6,1,2,0,0,64,75,8,3,2,2,2,65,75,0,4,4,7,95,0,7,7,73,7,76,89,64,20,0,0,37,36,30,29,28,27,23,22,0,17,0,17,17,22,17,9,9,23,43] + "instructions": "QAkTEgwDBAQFAUpLsB1QWEAaAAUFAF0GAQIAAEBLAAQEAl0HCAMDAgJBAkwbQB4ABQUAXQYBAgAAQEsIAwICAkFLAAQEB18ABwdJB0xZQBQAACUkHh0cGxcWABEAEREWEQkJFys=" }, "uni01CB": { "name": "uni01CB", "advanceWidth": 500, "contours": [[{"x":20,"y":0,"on":true},{"x":20,"y":735,"on":true},{"x":82,"y":735,"on":true},{"x":183,"y":174,"on":true},{"x":181,"y":197,"on":false},{"x":178,"y":221,"on":true},{"x":166,"y":338,"on":false},{"x":166,"y":441,"on":true},{"x":166,"y":735,"on":true},{"x":233,"y":735,"on":true},{"x":233,"y":0,"on":true},{"x":171,"y":0,"on":true},{"x":71,"y":561,"on":true},{"x":73,"y":538,"on":false},{"x":75,"y":514,"on":true},{"x":87,"y":397,"on":false},{"x":87,"y":294,"on":true},{"x":87,"y":0,"on":true}],[{"x":228,"y":-70,"on":true},{"x":289,"y":-42,"on":true},{"x":293,"y":-85,"on":false},{"x":306,"y":-112,"on":true},{"x":314,"y":-129,"on":false},{"x":324,"y":-136,"on":true},{"x":332,"y":-141,"on":false},{"x":342,"y":-141,"on":true},{"x":351,"y":-141,"on":false},{"x":358,"y":-136,"on":true},{"x":368,"y":-129,"on":false},{"x":375,"y":-114,"on":true},{"x":392,"y":-78,"on":false},{"x":393,"y":-10,"on":true},{"x":393,"y":458,"on":true},{"x":317,"y":458,"on":true},{"x":317,"y":530,"on":true},{"x":459,"y":530,"on":true},{"x":459,"y":-10,"on":true},{"x":459,"y":-93,"on":false},{"x":434,"y":-146,"on":true},{"x":417,"y":-180,"on":false},{"x":392,"y":-198,"on":true},{"x":370,"y":-213,"on":false},{"x":313,"y":-213,"on":false},{"x":291,"y":-198,"on":true},{"x":266,"y":-181,"on":false},{"x":250,"y":-146,"on":true},{"x":234,"y":-113,"on":false}],[{"x":363,"y":685,"on":true},{"x":363,"y":723,"on":false},{"x":386,"y":739,"on":true},{"x":398,"y":748,"on":false},{"x":415,"y":748,"on":true},{"x":447,"y":748,"on":false},{"x":460,"y":719,"on":true},{"x":467,"y":705,"on":false},{"x":467,"y":685,"on":true},{"x":467,"y":647,"on":false},{"x":443,"y":631,"on":true},{"x":432,"y":622,"on":false},{"x":415,"y":622,"on":true},{"x":383,"y":622,"on":false},{"x":370,"y":651,"on":true},{"x":363,"y":665,"on":false}]], "references": [], - "instructions": [64,14,12,1,6,9,3,1,2,5,19,1,4,2,3,74,75,176,9,80,88,64,40,0,9,9,0,93,8,1,2,0,0,64,75,0,5,5,6,93,0,6,6,67,75,10,3,2,2,2,65,75,0,4,4,7,95,0,7,7,77,7,76,27,75,176,10,80,88,64,44,1,1,0,0,64,75,0,9,9,8,95,0,8,8,74,75,0,5,5,6,93,0,6,6,67,75,10,3,2,2,2,65,75,0,4,4,7,95,0,7,7,77,7,76,27,75,176,18,80,88,64,40,0,9,9,0,93,8,1,2,0,0,64,75,0,5,5,6,93,0,6,6,67,75,10,3,2,2,2,65,75,0,4,4,7,95,0,7,7,77,7,76,27,64,44,1,1,0,0,64,75,0,9,9,8,95,0,8,8,74,75,0,5,5,6,93,0,6,6,67,75,10,3,2,2,2,65,75,0,4,4,7,95,0,7,7,77,7,76,89,89,89,64,24,0,0,60,58,52,50,42,41,35,34,33,32,26,24,0,17,0,17,17,22,17,11,9,23,43] + "instructions": "QA4MAQYJAwECBRMBBAIDSkuwCVBYQCgACQkAXQgBAgAAQEsABQUGXQAGBkNLCgMCAgJBSwAEBAdfAAcHTQdMG0uwClBYQCwBAQAAQEsACQkIXwAICEpLAAUFBl0ABgZDSwoDAgICQUsABAQHXwAHB00HTBtLsBJQWEAoAAkJAF0IAQIAAEBLAAUFBl0ABgZDSwoDAgICQUsABAQHXwAHB00HTBtALAEBAABASwAJCQhfAAgISksABQUGXQAGBkNLCgMCAgJBSwAEBAdfAAcHTQdMWVlZQBgAADw6NDIqKSMiISAaGAARABERFhELCRcr" }, "uni01CC": { "name": "uni01CC", "advanceWidth": 500, "contours": [[{"x":20,"y":0,"on":true},{"x":20,"y":530,"on":true},{"x":87,"y":530,"on":true},{"x":87,"y":461,"on":true},{"x":92,"y":480,"on":false},{"x":100,"y":495,"on":true},{"x":112,"y":520,"on":false},{"x":126,"y":530,"on":true},{"x":137,"y":538,"on":false},{"x":165,"y":538,"on":false},{"x":176,"y":530,"on":true},{"x":191,"y":520,"on":false},{"x":203,"y":495,"on":true},{"x":233,"y":433,"on":false},{"x":233,"y":310,"on":true},{"x":233,"y":0,"on":true},{"x":166,"y":0,"on":true},{"x":166,"y":310,"on":true},{"x":166,"y":428,"on":false},{"x":141,"y":458,"on":true},{"x":135,"y":466,"on":false},{"x":119,"y":466,"on":false},{"x":112,"y":458,"on":true},{"x":87,"y":428,"on":false},{"x":87,"y":310,"on":true},{"x":87,"y":0,"on":true}],[{"x":228,"y":-70,"on":true},{"x":289,"y":-42,"on":true},{"x":293,"y":-85,"on":false},{"x":306,"y":-112,"on":true},{"x":314,"y":-129,"on":false},{"x":324,"y":-136,"on":true},{"x":332,"y":-141,"on":false},{"x":342,"y":-141,"on":true},{"x":351,"y":-141,"on":false},{"x":358,"y":-136,"on":true},{"x":368,"y":-129,"on":false},{"x":375,"y":-114,"on":true},{"x":392,"y":-78,"on":false},{"x":393,"y":-10,"on":true},{"x":393,"y":458,"on":true},{"x":317,"y":458,"on":true},{"x":317,"y":530,"on":true},{"x":459,"y":530,"on":true},{"x":459,"y":-10,"on":true},{"x":459,"y":-93,"on":false},{"x":434,"y":-146,"on":true},{"x":417,"y":-180,"on":false},{"x":392,"y":-198,"on":true},{"x":370,"y":-213,"on":false},{"x":313,"y":-213,"on":false},{"x":291,"y":-198,"on":true},{"x":266,"y":-181,"on":false},{"x":250,"y":-146,"on":true},{"x":234,"y":-113,"on":false}],[{"x":363,"y":685,"on":true},{"x":363,"y":723,"on":false},{"x":386,"y":739,"on":true},{"x":398,"y":748,"on":false},{"x":415,"y":748,"on":true},{"x":447,"y":748,"on":false},{"x":460,"y":719,"on":true},{"x":467,"y":705,"on":false},{"x":467,"y":685,"on":true},{"x":467,"y":647,"on":false},{"x":443,"y":631,"on":true},{"x":432,"y":622,"on":false},{"x":415,"y":622,"on":true},{"x":383,"y":622,"on":false},{"x":370,"y":651,"on":true},{"x":363,"y":665,"on":false}]], "references": [], - "instructions": [75,176,29,80,88,64,10,3,1,2,3,27,1,5,2,2,74,27,64,10,3,1,6,3,27,1,5,2,2,74,89,75,176,29,80,88,64,41,0,10,10,9,95,0,9,9,74,75,6,1,3,3,0,93,7,1,2,0,0,67,75,11,4,2,2,2,65,75,0,5,5,8,95,0,8,8,77,8,76,27,64,52,0,3,0,6,0,3,6,126,0,10,10,9,95,0,9,9,74,75,0,1,1,75,75,0,6,6,0,93,7,1,0,0,67,75,11,4,2,2,2,65,75,0,5,5,8,95,0,8,8,77,8,76,89,64,25,0,0,68,66,60,58,50,49,43,42,41,40,34,32,0,25,0,25,20,22,22,17,12,9,24,43] + "instructions": "S7AdUFhACgMBAgMbAQUCAkobQAoDAQYDGwEFAgJKWUuwHVBYQCkACgoJXwAJCUpLBgEDAwBdBwECAABDSwsEAgICQUsABQUIXwAICE0ITBtANAADAAYAAwZ+AAoKCV8ACQlKSwABAUtLAAYGAF0HAQAAQ0sLBAICAkFLAAUFCF8ACAhNCExZQBkAAERCPDoyMSsqKSgiIAAZABkUFhYRDAkYKw==" }, "uni02A3": { "name": "uni02A3", "advanceWidth": 500, "contours": [[{"x":14,"y":220,"on":true},{"x":14,"y":310,"on":true},{"x":14,"y":428,"on":false},{"x":44,"y":491,"on":true},{"x":57,"y":518,"on":false},{"x":73,"y":529,"on":true},{"x":86,"y":538,"on":false},{"x":101,"y":538,"on":true},{"x":115,"y":538,"on":false},{"x":127,"y":530,"on":true},{"x":142,"y":520,"on":false},{"x":153,"y":495,"on":true},{"x":160,"y":480,"on":false},{"x":166,"y":461,"on":true},{"x":166,"y":735,"on":true},{"x":233,"y":735,"on":true},{"x":233,"y":0,"on":true},{"x":166,"y":0,"on":true},{"x":166,"y":69,"on":true},{"x":161,"y":50,"on":false},{"x":153,"y":35,"on":true},{"x":141,"y":10,"on":false},{"x":127,"y":0,"on":true},{"x":116,"y":-8,"on":false},{"x":86,"y":-8,"on":false},{"x":73,"y":1,"on":true},{"x":56,"y":13,"on":false},{"x":44,"y":39,"on":true},{"x":14,"y":101,"on":false}],[{"x":80,"y":220,"on":true},{"x":80,"y":107,"on":false},{"x":108,"y":74,"on":true},{"x":116,"y":64,"on":false},{"x":126,"y":64,"on":true},{"x":135,"y":64,"on":false},{"x":141,"y":72,"on":true},{"x":166,"y":102,"on":false},{"x":166,"y":220,"on":true},{"x":166,"y":310,"on":true},{"x":166,"y":428,"on":false},{"x":141,"y":458,"on":true},{"x":135,"y":466,"on":false},{"x":126,"y":466,"on":true},{"x":116,"y":466,"on":false},{"x":108,"y":456,"on":true},{"x":80,"y":423,"on":false},{"x":80,"y":310,"on":true}],[{"x":267,"y":0,"on":true},{"x":267,"y":72,"on":true},{"x":400,"y":458,"on":true},{"x":267,"y":458,"on":true},{"x":267,"y":530,"on":true},{"x":480,"y":530,"on":true},{"x":480,"y":458,"on":true},{"x":347,"y":72,"on":true},{"x":480,"y":72,"on":true},{"x":480,"y":0,"on":true}]], "references": [], - "instructions": [75,176,29,80,88,64,9,53,48,18,13,4,4,5,1,74,27,64,18,13,1,6,5,18,1,4,8,2,74,53,1,6,48,1,8,2,73,89,75,176,29,80,88,64,32,0,1,1,64,75,6,1,5,5,0,95,7,1,0,0,75,75,8,1,4,4,2,93,10,9,3,3,2,2,65,2,76,27,64,54,0,5,7,6,7,5,6,126,0,4,8,2,8,4,2,126,0,1,1,64,75,0,0,0,75,75,0,6,6,7,93,0,7,7,67,75,0,8,8,2,93,10,9,2,2,2,65,75,0,3,3,73,3,76,89,64,18,47,47,47,56,47,56,18,17,22,39,40,22,17,22,38,11,9,29,43] + "instructions": "S7AdUFhACTUwEg0EBAUBShtAEg0BBgUSAQQIAko1AQYwAQgCSVlLsB1QWEAgAAEBQEsGAQUFAF8HAQAAS0sIAQQEAl0KCQMDAgJBAkwbQDYABQcGBwUGfgAECAIIBAJ+AAEBQEsAAABLSwAGBgddAAcHQ0sACAgCXQoJAgICQUsAAwNJA0xZQBIvLy84LzgSERYnKBYRFiYLCR0r" }, "uni01F1": { "name": "uni01F1", "advanceWidth": 500, "contours": [[{"x":20,"y":0,"on":true},{"x":20,"y":735,"on":true},{"x":87,"y":735,"on":true},{"x":87,"y":734,"on":true},{"x":122,"y":731,"on":false},{"x":150,"y":712,"on":true},{"x":184,"y":688,"on":false},{"x":207,"y":641,"on":true},{"x":239,"y":574,"on":false},{"x":239,"y":472,"on":true},{"x":239,"y":263,"on":true},{"x":239,"y":161,"on":false},{"x":207,"y":94,"on":true},{"x":184,"y":47,"on":false},{"x":150,"y":23,"on":true},{"x":122,"y":3,"on":false},{"x":87,"y":1,"on":true},{"x":87,"y":0,"on":true}],[{"x":87,"y":73,"on":true},{"x":101,"y":76,"on":false},{"x":113,"y":84,"on":true},{"x":134,"y":98,"on":false},{"x":148,"y":128,"on":true},{"x":173,"y":179,"on":false},{"x":173,"y":263,"on":true},{"x":173,"y":472,"on":true},{"x":173,"y":556,"on":false},{"x":148,"y":607,"on":true},{"x":134,"y":637,"on":false},{"x":113,"y":651,"on":true},{"x":101,"y":659,"on":false},{"x":87,"y":662,"on":true}],[{"x":267,"y":0,"on":true},{"x":267,"y":72,"on":true},{"x":403,"y":663,"on":true},{"x":267,"y":663,"on":true},{"x":267,"y":735,"on":true},{"x":480,"y":735,"on":true},{"x":480,"y":663,"on":true},{"x":344,"y":72,"on":true},{"x":480,"y":72,"on":true},{"x":480,"y":0,"on":true}]], "references": [], - "instructions": [64,62,31,18,2,4,2,1,74,38,1,2,33,1,4,2,73,0,2,2,0,93,3,1,0,0,64,75,0,4,4,1,95,7,5,6,3,1,1,65,1,76,32,32,0,0,32,41,32,41,40,39,37,36,35,34,0,17,0,15,17,8,9,21,43] + "instructions": "QD4fEgIEAgFKJgECIQEEAkkAAgIAXQMBAABASwAEBAFfBwUGAwEBQQFMICAAACApICkoJyUkIyIAEQAPEQgJFSs=" }, "uni01F2": { "name": "uni01F2", "advanceWidth": 500, "contours": [[{"x":20,"y":0,"on":true},{"x":20,"y":735,"on":true},{"x":87,"y":735,"on":true},{"x":87,"y":734,"on":true},{"x":122,"y":731,"on":false},{"x":150,"y":712,"on":true},{"x":184,"y":688,"on":false},{"x":207,"y":641,"on":true},{"x":239,"y":574,"on":false},{"x":239,"y":472,"on":true},{"x":239,"y":263,"on":true},{"x":239,"y":161,"on":false},{"x":207,"y":94,"on":true},{"x":184,"y":47,"on":false},{"x":150,"y":23,"on":true},{"x":122,"y":3,"on":false},{"x":87,"y":1,"on":true},{"x":87,"y":0,"on":true}],[{"x":87,"y":73,"on":true},{"x":101,"y":76,"on":false},{"x":113,"y":84,"on":true},{"x":134,"y":98,"on":false},{"x":148,"y":128,"on":true},{"x":173,"y":179,"on":false},{"x":173,"y":263,"on":true},{"x":173,"y":472,"on":true},{"x":173,"y":556,"on":false},{"x":148,"y":607,"on":true},{"x":134,"y":637,"on":false},{"x":113,"y":651,"on":true},{"x":101,"y":659,"on":false},{"x":87,"y":662,"on":true}],[{"x":267,"y":0,"on":true},{"x":267,"y":72,"on":true},{"x":400,"y":458,"on":true},{"x":267,"y":458,"on":true},{"x":267,"y":530,"on":true},{"x":480,"y":530,"on":true},{"x":480,"y":458,"on":true},{"x":347,"y":72,"on":true},{"x":480,"y":72,"on":true},{"x":480,"y":0,"on":true}]], "references": [], - "instructions": [64,69,31,1,3,0,18,1,4,2,2,74,38,1,2,33,1,4,2,73,0,0,0,64,75,0,2,2,3,93,0,3,3,67,75,0,4,4,1,95,7,5,6,3,1,1,65,1,76,32,32,0,0,32,41,32,41,40,39,37,36,35,34,0,17,0,15,17,8,9,21,43] + "instructions": "QEUfAQMAEgEEAgJKJgECIQEEAkkAAABASwACAgNdAAMDQ0sABAQBXwcFBgMBAUEBTCAgAAAgKSApKCclJCMiABEADxEICRUr" }, "uni01F3": { "name": "uni01F3", "advanceWidth": 500, "contours": [], "references": [{"glyph":"uni02A3","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uni02A4": { "name": "uni02A4", "advanceWidth": 500, "contours": [[{"x":14,"y":220,"on":true},{"x":14,"y":310,"on":true},{"x":14,"y":428,"on":false},{"x":44,"y":491,"on":true},{"x":57,"y":518,"on":false},{"x":73,"y":529,"on":true},{"x":86,"y":538,"on":false},{"x":101,"y":538,"on":true},{"x":115,"y":538,"on":false},{"x":127,"y":530,"on":true},{"x":142,"y":520,"on":false},{"x":153,"y":495,"on":true},{"x":160,"y":480,"on":false},{"x":166,"y":461,"on":true},{"x":166,"y":735,"on":true},{"x":233,"y":735,"on":true},{"x":233,"y":0,"on":true},{"x":166,"y":0,"on":true},{"x":166,"y":69,"on":true},{"x":161,"y":50,"on":false},{"x":153,"y":35,"on":true},{"x":141,"y":10,"on":false},{"x":127,"y":0,"on":true},{"x":116,"y":-8,"on":false},{"x":86,"y":-8,"on":false},{"x":73,"y":1,"on":true},{"x":56,"y":13,"on":false},{"x":44,"y":39,"on":true},{"x":14,"y":101,"on":false}],[{"x":80,"y":220,"on":true},{"x":80,"y":107,"on":false},{"x":108,"y":74,"on":true},{"x":116,"y":64,"on":false},{"x":126,"y":64,"on":true},{"x":135,"y":64,"on":false},{"x":141,"y":72,"on":true},{"x":166,"y":102,"on":false},{"x":166,"y":220,"on":true},{"x":166,"y":310,"on":true},{"x":166,"y":428,"on":false},{"x":141,"y":458,"on":true},{"x":135,"y":466,"on":false},{"x":126,"y":466,"on":true},{"x":116,"y":466,"on":false},{"x":108,"y":456,"on":true},{"x":80,"y":423,"on":false},{"x":80,"y":310,"on":true}],[{"x":263,"y":-50,"on":true},{"x":323,"y":-18,"on":true},{"x":328,"y":-96,"on":false},{"x":350,"y":-123,"on":true},{"x":358,"y":-133,"on":false},{"x":370,"y":-133,"on":true},{"x":380,"y":-133,"on":false},{"x":387,"y":-124,"on":true},{"x":413,"y":-92,"on":false},{"x":413,"y":126,"on":false},{"x":388,"y":156,"on":true},{"x":382,"y":164,"on":false},{"x":373,"y":164,"on":true},{"x":310,"y":164,"on":true},{"x":310,"y":236,"on":true},{"x":384,"y":458,"on":true},{"x":267,"y":458,"on":true},{"x":267,"y":530,"on":true},{"x":464,"y":530,"on":true},{"x":464,"y":458,"on":true},{"x":390,"y":236,"on":true},{"x":390,"y":234,"on":true},{"x":403,"y":231,"on":false},{"x":413,"y":224,"on":true},{"x":435,"y":209,"on":false},{"x":451,"y":177,"on":true},{"x":480,"y":117,"on":false},{"x":480,"y":-83,"on":false},{"x":451,"y":-143,"on":true},{"x":435,"y":-176,"on":false},{"x":412,"y":-192,"on":true},{"x":393,"y":-205,"on":false},{"x":346,"y":-205,"on":false},{"x":327,"y":-192,"on":true},{"x":304,"y":-176,"on":false},{"x":288,"y":-143,"on":true},{"x":269,"y":-104,"on":false}]], "references": [], - "instructions": [75,176,29,80,88,64,17,67,66,61,13,4,7,5,18,1,4,7,48,1,6,2,3,74,27,64,24,13,1,8,5,67,61,2,7,8,18,1,4,7,48,1,6,3,4,74,66,1,8,1,73,89,75,176,29,80,88,64,49,0,7,5,4,5,7,4,126,0,4,2,5,4,2,124,0,1,1,64,75,8,1,5,5,0,95,9,1,0,0,75,75,3,1,2,2,65,75,0,6,6,10,95,0,10,10,69,10,76,27,64,64,0,5,9,8,9,5,8,126,0,7,8,4,8,7,4,126,0,4,2,8,4,2,124,0,1,1,64,75,0,0,0,75,75,0,8,8,9,93,0,9,9,67,75,0,2,2,65,75,0,3,3,73,75,0,6,6,10,95,0,10,10,69,10,76,89,64,16,79,78,65,64,18,37,40,39,40,22,17,22,38,11,9,29,43] + "instructions": "S7AdUFhAEUNCPQ0EBwUSAQQHMAEGAgNKG0AYDQEIBUM9AgcIEgEEBzABBgMESkIBCAFJWUuwHVBYQDEABwUEBQcEfgAEAgUEAnwAAQFASwgBBQUAXwkBAABLSwMBAgJBSwAGBgpfAAoKRQpMG0BAAAUJCAkFCH4ABwgECAcEfgAEAggEAnwAAQFASwAAAEtLAAgICV0ACQlDSwACAkFLAAMDSUsABgYKXwAKCkUKTFlAEE9OQUASJSgnKBYRFiYLCR0r" }, "uni02A5": { "name": "uni02A5", "advanceWidth": 500, "contours": [[{"x":14,"y":220,"on":true},{"x":14,"y":310,"on":true},{"x":14,"y":428,"on":false},{"x":44,"y":491,"on":true},{"x":57,"y":518,"on":false},{"x":73,"y":529,"on":true},{"x":86,"y":538,"on":false},{"x":101,"y":538,"on":true},{"x":115,"y":538,"on":false},{"x":127,"y":530,"on":true},{"x":142,"y":520,"on":false},{"x":153,"y":495,"on":true},{"x":160,"y":480,"on":false},{"x":166,"y":461,"on":true},{"x":166,"y":735,"on":true},{"x":233,"y":735,"on":true},{"x":233,"y":0,"on":true},{"x":166,"y":0,"on":true},{"x":166,"y":69,"on":true},{"x":161,"y":50,"on":false},{"x":153,"y":35,"on":true},{"x":141,"y":10,"on":false},{"x":127,"y":0,"on":true},{"x":116,"y":-8,"on":false},{"x":86,"y":-8,"on":false},{"x":73,"y":1,"on":true},{"x":56,"y":13,"on":false},{"x":44,"y":39,"on":true},{"x":14,"y":101,"on":false}],[{"x":80,"y":220,"on":true},{"x":80,"y":107,"on":false},{"x":108,"y":74,"on":true},{"x":116,"y":64,"on":false},{"x":126,"y":64,"on":true},{"x":135,"y":64,"on":false},{"x":141,"y":72,"on":true},{"x":166,"y":102,"on":false},{"x":166,"y":220,"on":true},{"x":166,"y":310,"on":true},{"x":166,"y":428,"on":false},{"x":141,"y":458,"on":true},{"x":135,"y":466,"on":false},{"x":126,"y":466,"on":true},{"x":116,"y":466,"on":false},{"x":108,"y":456,"on":true},{"x":80,"y":423,"on":false},{"x":80,"y":310,"on":true}],[{"x":267,"y":0,"on":true},{"x":267,"y":72,"on":true},{"x":400,"y":458,"on":true},{"x":267,"y":458,"on":true},{"x":267,"y":530,"on":true},{"x":480,"y":530,"on":true},{"x":480,"y":458,"on":true},{"x":347,"y":72,"on":true},{"x":363,"y":72,"on":true},{"x":371,"y":99,"on":false},{"x":380,"y":119,"on":true},{"x":394,"y":149,"on":false},{"x":412,"y":161,"on":true},{"x":423,"y":169,"on":false},{"x":436,"y":168,"on":true},{"x":477,"y":168,"on":false},{"x":494,"y":132,"on":true},{"x":503,"y":113,"on":false},{"x":503,"y":87,"on":true},{"x":503,"y":60,"on":false},{"x":494,"y":41,"on":true},{"x":485,"y":23,"on":false},{"x":470,"y":12,"on":true},{"x":452,"y":0,"on":false},{"x":427,"y":0,"on":true},{"x":385,"y":0,"on":true},{"x":378,"y":-45,"on":false},{"x":373,"y":-106,"on":true},{"x":330,"y":-102,"on":true},{"x":336,"y":-45,"on":false},{"x":345,"y":0,"on":true}],[{"x":400,"y":72,"on":true},{"x":427,"y":72,"on":true},{"x":446,"y":72,"on":false},{"x":455,"y":83,"on":true},{"x":460,"y":89,"on":false},{"x":460,"y":97,"on":true},{"x":460,"y":107,"on":false},{"x":455,"y":114,"on":true},{"x":448,"y":122,"on":false},{"x":436,"y":122,"on":true},{"x":430,"y":122,"on":false},{"x":426,"y":119,"on":true},{"x":417,"y":113,"on":false},{"x":410,"y":98,"on":true},{"x":405,"y":87,"on":false}]], "references": [], - "instructions": [75,176,29,80,88,64,16,53,13,2,9,5,48,18,2,4,13,2,74,75,1,2,71,27,64,22,13,1,6,5,18,1,4,8,2,74,53,1,6,48,1,8,2,73,75,1,3,71,89,75,176,29,80,88,64,42,0,9,0,13,4,9,13,103,0,1,1,64,75,6,1,5,5,0,95,7,1,0,0,75,75,12,8,2,4,4,2,95,14,11,10,3,4,2,2,65,2,76,27,64,64,0,5,7,6,7,5,6,126,0,4,8,2,8,4,2,126,0,9,0,13,8,9,13,103,0,1,1,64,75,0,0,0,75,75,0,6,6,7,93,0,7,7,67,75,12,1,8,8,2,93,14,11,10,3,2,2,65,75,0,3,3,73,3,76,89,64,26,47,47,87,86,80,78,47,77,47,77,72,70,62,61,18,17,22,39,40,22,17,22,38,15,9,29,43] + "instructions": "S7AdUFhAEDUNAgkFMBICBA0CSksBAkcbQBYNAQYFEgEECAJKNQEGMAEIAklLAQNHWUuwHVBYQCoACQANBAkNZwABAUBLBgEFBQBfBwEAAEtLDAgCBAQCXw4LCgMEAgJBAkwbQEAABQcGBwUGfgAECAIIBAJ+AAkADQgJDWcAAQFASwAAAEtLAAYGB10ABwdDSwwBCAgCXQ4LCgMCAkFLAAMDSQNMWUAaLy9XVlBOL00vTUhGPj0SERYnKBYRFiYPCR0r" }, "uni02A6": { "name": "uni02A6", "advanceWidth": 500, "contours": [[{"x":-3,"y":458,"on":true},{"x":-3,"y":530,"on":true},{"x":52,"y":530,"on":true},{"x":52,"y":735,"on":true},{"x":118,"y":735,"on":true},{"x":118,"y":530,"on":true},{"x":216,"y":530,"on":true},{"x":216,"y":458,"on":true},{"x":118,"y":458,"on":true},{"x":118,"y":155,"on":true},{"x":118,"y":90,"on":false},{"x":135,"y":70,"on":true},{"x":140,"y":64,"on":false},{"x":154,"y":64,"on":false},{"x":159,"y":70,"on":true},{"x":176,"y":90,"on":false},{"x":176,"y":152,"on":true},{"x":176,"y":155,"on":true},{"x":242,"y":155,"on":true},{"x":242,"y":152,"on":false},{"x":242,"y":149,"on":true},{"x":242,"y":89,"on":false},{"x":222,"y":46,"on":true},{"x":209,"y":18,"on":false},{"x":189,"y":4,"on":true},{"x":171,"y":-8,"on":false},{"x":123,"y":-8,"on":false},{"x":105,"y":4,"on":true},{"x":85,"y":18,"on":false},{"x":72,"y":46,"on":true},{"x":52,"y":88,"on":false},{"x":52,"y":155,"on":true},{"x":52,"y":458,"on":true}],[{"x":265,"y":110,"on":true},{"x":330,"y":124,"on":true},{"x":332,"y":93,"on":false},{"x":346,"y":77,"on":true},{"x":356,"y":64,"on":false},{"x":387,"y":64,"on":false},{"x":398,"y":76,"on":true},{"x":414,"y":95,"on":false},{"x":414,"y":136,"on":true},{"x":414,"y":162,"on":false},{"x":404,"y":182,"on":true},{"x":393,"y":205,"on":false},{"x":353,"y":234,"on":true},{"x":303,"y":270,"on":false},{"x":285,"y":307,"on":true},{"x":267,"y":345,"on":false},{"x":266,"y":394,"on":true},{"x":266,"y":444,"on":false},{"x":283,"y":478,"on":true},{"x":297,"y":506,"on":false},{"x":319,"y":522,"on":true},{"x":343,"y":538,"on":false},{"x":407,"y":538,"on":false},{"x":431,"y":522,"on":true},{"x":453,"y":506,"on":false},{"x":467,"y":478,"on":true},{"x":480,"y":452,"on":false},{"x":482,"y":420,"on":true},{"x":417,"y":406,"on":true},{"x":415,"y":437,"on":false},{"x":401,"y":453,"on":true},{"x":391,"y":466,"on":false},{"x":360,"y":466,"on":false},{"x":349,"y":454,"on":true},{"x":333,"y":435,"on":false},{"x":333,"y":394,"on":true},{"x":333,"y":368,"on":false},{"x":343,"y":348,"on":true},{"x":354,"y":325,"on":false},{"x":394,"y":296,"on":true},{"x":444,"y":260,"on":false},{"x":462,"y":223,"on":true},{"x":480,"y":185,"on":false},{"x":480,"y":136,"on":true},{"x":480,"y":86,"on":false},{"x":464,"y":52,"on":true},{"x":450,"y":24,"on":false},{"x":428,"y":8,"on":true},{"x":404,"y":-8,"on":false},{"x":340,"y":-8,"on":false},{"x":316,"y":8,"on":true},{"x":294,"y":24,"on":false},{"x":280,"y":52,"on":true},{"x":267,"y":78,"on":false}]], "references": [], - "instructions": [64,12,61,60,2,5,3,34,33,2,4,5,2,74,75,176,29,80,88,64,41,0,5,3,4,3,5,4,126,0,1,1,64,75,10,12,7,3,3,3,0,93,9,2,2,0,0,67,75,8,1,4,4,6,95,11,1,6,6,73,6,76,27,64,49,0,5,3,4,3,5,4,126,0,1,1,64,75,0,10,10,9,95,0,9,9,75,75,12,7,2,3,3,0,93,2,1,0,0,67,75,8,1,4,4,6,95,11,1,6,6,73,6,76,89,64,24,0,0,82,81,65,64,55,54,38,37,0,32,0,32,23,35,20,17,17,17,17,13,9,27,43] + "instructions": "QAw9PAIFAyIhAgQFAkpLsB1QWEApAAUDBAMFBH4AAQFASwoMBwMDAwBdCQICAABDSwgBBAQGXwsBBgZJBkwbQDEABQMEAwUEfgABAUBLAAoKCV8ACQlLSwwHAgMDAF0CAQAAQ0sIAQQEBl8LAQYGSQZMWUAYAABSUUFANzYmJQAgACAXIxQRERERDQkbKw==" }, "uni02A7": { "name": "uni02A7", "advanceWidth": 500, "contours": [[{"x":-3,"y":458,"on":true},{"x":-3,"y":530,"on":true},{"x":52,"y":530,"on":true},{"x":52,"y":735,"on":true},{"x":118,"y":735,"on":true},{"x":118,"y":530,"on":true},{"x":216,"y":530,"on":true},{"x":216,"y":458,"on":true},{"x":118,"y":458,"on":true},{"x":118,"y":155,"on":true},{"x":118,"y":90,"on":false},{"x":135,"y":70,"on":true},{"x":140,"y":64,"on":false},{"x":154,"y":64,"on":false},{"x":159,"y":70,"on":true},{"x":176,"y":90,"on":false},{"x":176,"y":152,"on":true},{"x":176,"y":155,"on":true},{"x":242,"y":155,"on":true},{"x":242,"y":152,"on":false},{"x":242,"y":149,"on":true},{"x":242,"y":89,"on":false},{"x":222,"y":46,"on":true},{"x":209,"y":18,"on":false},{"x":189,"y":4,"on":true},{"x":171,"y":-8,"on":false},{"x":123,"y":-8,"on":false},{"x":105,"y":4,"on":true},{"x":85,"y":18,"on":false},{"x":72,"y":46,"on":true},{"x":52,"y":88,"on":false},{"x":52,"y":155,"on":true},{"x":52,"y":458,"on":true}],[{"x":232,"y":-123,"on":true},{"x":278,"y":-123,"on":false},{"x":301,"y":-107,"on":true},{"x":318,"y":-95,"on":false},{"x":328,"y":-75,"on":true},{"x":340,"y":-50,"on":false},{"x":340,"y":0,"on":true},{"x":340,"y":580,"on":true},{"x":340,"y":658,"on":false},{"x":359,"y":697,"on":true},{"x":375,"y":730,"on":false},{"x":403,"y":750,"on":true},{"x":440,"y":775,"on":false},{"x":515,"y":775,"on":true},{"x":515,"y":703,"on":true},{"x":469,"y":703,"on":false},{"x":446,"y":687,"on":true},{"x":429,"y":675,"on":false},{"x":419,"y":655,"on":true},{"x":407,"y":630,"on":false},{"x":407,"y":580,"on":true},{"x":407,"y":0,"on":true},{"x":407,"y":-78,"on":false},{"x":388,"y":-117,"on":true},{"x":372,"y":-150,"on":false},{"x":344,"y":-170,"on":true},{"x":307,"y":-195,"on":false},{"x":232,"y":-195,"on":true}]], "references": [], - "instructions": [75,176,50,80,88,64,55,0,5,3,4,3,5,4,126,0,9,0,10,0,9,10,103,0,1,1,64,75,12,7,2,3,3,0,93,2,1,0,0,67,75,0,4,4,6,95,0,6,6,73,75,0,8,8,11,96,0,11,11,69,11,76,27,64,52,0,5,3,4,3,5,4,126,0,9,0,10,0,9,10,103,0,8,0,11,8,11,100,0,1,1,64,75,12,7,2,3,3,0,93,2,1,0,0,67,75,0,4,4,6,95,0,6,6,73,6,76,89,64,24,0,0,60,59,48,47,46,45,34,33,0,32,0,32,23,35,20,17,17,17,17,13,9,27,43] + "instructions": "S7AyUFhANwAFAwQDBQR+AAkACgAJCmcAAQFASwwHAgMDAF0CAQAAQ0sABAQGXwAGBklLAAgIC2AACwtFC0wbQDQABQMEAwUEfgAJAAoACQpnAAgACwgLZAABAUBLDAcCAwMAXQIBAABDSwAEBAZfAAYGSQZMWUAYAAA8OzAvLi0iIQAgACAXIxQRERERDQkbKw==" }, "uni02A8": { "name": "uni02A8", "advanceWidth": 500, "contours": [[{"x":-3,"y":458,"on":true},{"x":-3,"y":530,"on":true},{"x":52,"y":530,"on":true},{"x":52,"y":735,"on":true},{"x":118,"y":735,"on":true},{"x":118,"y":530,"on":true},{"x":216,"y":530,"on":true},{"x":216,"y":458,"on":true},{"x":118,"y":458,"on":true},{"x":118,"y":155,"on":true},{"x":118,"y":90,"on":false},{"x":135,"y":70,"on":true},{"x":140,"y":64,"on":false},{"x":154,"y":64,"on":false},{"x":159,"y":70,"on":true},{"x":176,"y":90,"on":false},{"x":176,"y":152,"on":true},{"x":176,"y":155,"on":true},{"x":242,"y":155,"on":true},{"x":242,"y":152,"on":false},{"x":242,"y":149,"on":true},{"x":242,"y":89,"on":false},{"x":222,"y":46,"on":true},{"x":209,"y":18,"on":false},{"x":189,"y":4,"on":true},{"x":171,"y":-8,"on":false},{"x":123,"y":-8,"on":false},{"x":105,"y":4,"on":true},{"x":85,"y":18,"on":false},{"x":72,"y":46,"on":true},{"x":52,"y":88,"on":false},{"x":52,"y":155,"on":true},{"x":52,"y":458,"on":true}],[{"x":229,"y":-18,"on":true},{"x":238,"y":70,"on":false},{"x":265,"y":146,"on":true},{"x":260,"y":180,"on":false},{"x":261,"y":220,"on":true},{"x":261,"y":310,"on":true},{"x":261,"y":407,"on":false},{"x":289,"y":466,"on":true},{"x":305,"y":500,"on":false},{"x":329,"y":516,"on":true},{"x":349,"y":530,"on":false},{"x":399,"y":530,"on":false},{"x":419,"y":516,"on":true},{"x":443,"y":500,"on":false},{"x":459,"y":466,"on":true},{"x":477,"y":428,"on":false},{"x":484,"y":375,"on":true},{"x":424,"y":344,"on":true},{"x":419,"y":419,"on":false},{"x":395,"y":447,"on":true},{"x":386,"y":458,"on":false},{"x":374,"y":458,"on":true},{"x":363,"y":458,"on":false},{"x":355,"y":448,"on":true},{"x":328,"y":415,"on":false},{"x":327,"y":310,"on":true},{"x":327,"y":255,"on":true},{"x":331,"y":259,"on":false},{"x":336,"y":262,"on":true},{"x":359,"y":278,"on":false},{"x":409,"y":277,"on":false},{"x":431,"y":262,"on":true},{"x":454,"y":246,"on":false},{"x":468,"y":217,"on":true},{"x":485,"y":181,"on":false},{"x":485,"y":135,"on":true},{"x":485,"y":85,"on":false},{"x":468,"y":49,"on":true},{"x":456,"y":24,"on":false},{"x":435,"y":9,"on":true},{"x":411,"y":-8,"on":false},{"x":380,"y":-8,"on":true},{"x":353,"y":-8,"on":false},{"x":332,"y":7,"on":true},{"x":312,"y":21,"on":false},{"x":297,"y":47,"on":true},{"x":290,"y":12,"on":false},{"x":285,"y":-26,"on":true}],[{"x":330,"y":155,"on":true},{"x":335,"y":108,"on":false},{"x":349,"y":80,"on":true},{"x":357,"y":64,"on":false},{"x":365,"y":58,"on":true},{"x":372,"y":53,"on":false},{"x":380,"y":53,"on":true},{"x":397,"y":53,"on":false},{"x":412,"y":70,"on":true},{"x":429,"y":90,"on":false},{"x":428,"y":135,"on":true},{"x":428,"y":180,"on":false},{"x":409,"y":203,"on":true},{"x":398,"y":216,"on":false},{"x":384,"y":216,"on":true},{"x":375,"y":216,"on":false},{"x":366,"y":210,"on":true},{"x":351,"y":200,"on":false},{"x":339,"y":173,"on":true},{"x":334,"y":165,"on":false}]], "references": [], - "instructions": [75,176,22,80,88,64,23,50,49,2,10,3,59,1,13,10,81,1,5,13,78,1,6,4,4,74,80,1,6,71,27,64,23,50,49,2,10,3,59,1,13,10,81,1,5,13,78,1,6,12,4,74,80,1,6,71,89,75,176,22,80,88,64,49,0,5,13,4,13,5,4,126,0,10,0,13,5,10,13,103,0,1,1,64,75,9,14,7,3,3,3,0,93,8,2,2,0,0,67,75,12,1,4,4,6,95,11,1,6,6,73,6,76,27,64,59,0,5,13,4,13,5,4,126,0,10,0,13,5,10,13,103,0,1,1,64,75,9,14,7,3,3,3,0,93,8,2,2,0,0,67,75,0,4,4,6,95,11,1,6,6,73,75,0,12,12,6,95,11,1,6,6,73,6,76,89,64,28,0,0,96,94,88,86,75,73,63,62,55,53,44,43,0,32,0,32,23,35,20,17,17,17,17,15,9,27,43] + "instructions": "S7AWUFhAFzIxAgoDOwENClEBBQ1OAQYEBEpQAQZHG0AXMjECCgM7AQ0KUQEFDU4BBgwESlABBkdZS7AWUFhAMQAFDQQNBQR+AAoADQUKDWcAAQFASwkOBwMDAwBdCAICAABDSwwBBAQGXwsBBgZJBkwbQDsABQ0EDQUEfgAKAA0FCg1nAAEBQEsJDgcDAwMAXQgCAgAAQ0sABAQGXwsBBgZJSwAMDAZfCwEGBkkGTFlAHAAAYF5YVktJPz43NSwrACAAIBcjFBEREREPCRsr" }, "uni02A9": { "name": "uni02A9", "advanceWidth": 500, "contours": [[{"x":20,"y":428,"on":true},{"x":20,"y":500,"on":true},{"x":78,"y":500,"on":true},{"x":78,"y":595,"on":true},{"x":78,"y":666,"on":false},{"x":99,"y":710,"on":true},{"x":112,"y":736,"on":false},{"x":130,"y":748,"on":true},{"x":145,"y":759,"on":false},{"x":184,"y":759,"on":false},{"x":200,"y":748,"on":true},{"x":218,"y":735,"on":false},{"x":230,"y":710,"on":true},{"x":245,"y":678,"on":false},{"x":249,"y":635,"on":true},{"x":187,"y":609,"on":true},{"x":185,"y":668,"on":false},{"x":172,"y":683,"on":true},{"x":169,"y":687,"on":false},{"x":165,"y":687,"on":true},{"x":162,"y":687,"on":false},{"x":158,"y":684,"on":true},{"x":144,"y":668,"on":false},{"x":145,"y":595,"on":true},{"x":145,"y":500,"on":true},{"x":222,"y":500,"on":true},{"x":222,"y":428,"on":true},{"x":145,"y":428,"on":true},{"x":145,"y":0,"on":true},{"x":78,"y":0,"on":true},{"x":78,"y":428,"on":true}],[{"x":267,"y":0,"on":true},{"x":267,"y":530,"on":true},{"x":334,"y":530,"on":true},{"x":334,"y":461,"on":true},{"x":339,"y":480,"on":false},{"x":347,"y":495,"on":true},{"x":359,"y":520,"on":false},{"x":373,"y":530,"on":true},{"x":384,"y":538,"on":false},{"x":412,"y":538,"on":false},{"x":423,"y":530,"on":true},{"x":438,"y":520,"on":false},{"x":450,"y":495,"on":true},{"x":480,"y":433,"on":false},{"x":480,"y":310,"on":true},{"x":480,"y":0,"on":true},{"x":480,"y":-57,"on":false},{"x":459,"y":-99,"on":true},{"x":440,"y":-138,"on":false},{"x":406,"y":-162,"on":true},{"x":364,"y":-191,"on":false},{"x":305,"y":-191,"on":true},{"x":305,"y":-119,"on":true},{"x":342,"y":-119,"on":false},{"x":367,"y":-101,"on":true},{"x":388,"y":-86,"on":false},{"x":400,"y":-62,"on":true},{"x":413,"y":-36,"on":false},{"x":413,"y":0,"on":true},{"x":413,"y":310,"on":true},{"x":413,"y":428,"on":false},{"x":388,"y":458,"on":true},{"x":382,"y":466,"on":false},{"x":366,"y":466,"on":false},{"x":359,"y":458,"on":true},{"x":334,"y":428,"on":false},{"x":334,"y":310,"on":true},{"x":334,"y":0,"on":true}]], "references": [], - "instructions": [75,176,29,80,88,64,12,19,15,14,3,6,1,34,1,3,10,2,74,27,64,12,19,15,14,3,7,1,34,1,3,10,2,74,89,75,176,29,80,88,64,48,0,10,0,3,0,10,3,126,2,1,0,12,5,2,3,4,0,3,102,0,1,1,74,75,7,1,6,6,67,75,13,11,2,4,4,65,75,0,9,9,8,95,0,8,8,69,8,76,27,75,176,35,80,88,64,52,0,10,0,3,0,10,3,126,2,1,0,12,5,2,3,4,0,3,102,0,1,1,74,75,0,7,7,75,75,0,6,6,67,75,13,11,2,4,4,65,75,0,9,9,8,95,0,8,8,69,8,76,27,75,176,46,80,88,64,49,0,10,0,3,0,10,3,126,2,1,0,12,5,2,3,4,0,3,102,0,9,0,8,9,8,99,0,1,1,74,75,0,7,7,75,75,0,6,6,67,75,13,11,2,4,4,65,4,76,27,64,49,0,1,7,1,131,0,10,0,3,0,10,3,126,2,1,0,12,5,2,3,4,0,3,102,0,9,0,8,9,8,99,0,7,7,75,75,0,6,6,67,75,13,11,2,4,4,65,4,76,89,89,89,64,30,31,31,0,0,31,68,31,68,64,63,54,53,52,51,40,39,33,32,0,30,0,30,17,17,31,22,17,14,9,25,43] + "instructions": "S7AdUFhADBMPDgMGASIBAwoCShtADBMPDgMHASIBAwoCSllLsB1QWEAwAAoAAwAKA34CAQAMBQIDBAADZgABAUpLBwEGBkNLDQsCBARBSwAJCQhfAAgIRQhMG0uwI1BYQDQACgADAAoDfgIBAAwFAgMEAANmAAEBSksABwdLSwAGBkNLDQsCBARBSwAJCQhfAAgIRQhMG0uwLlBYQDEACgADAAoDfgIBAAwFAgMEAANmAAkACAkIYwABAUpLAAcHS0sABgZDSw0LAgQEQQRMG0AxAAEHAYMACgADAAoDfgIBAAwFAgMEAANmAAkACAkIYwAHB0tLAAYGQ0sNCwIEBEEETFlZWUAeHx8AAB9EH0RAPzY1NDMoJyEgAB4AHhERHxYRDgkZKw==" }, "uni02AA": { "name": "uni02AA", "advanceWidth": 500, "contours": [[{"x":17,"y":0,"on":true},{"x":17,"y":72,"on":true},{"x":98,"y":72,"on":true},{"x":98,"y":663,"on":true},{"x":26,"y":663,"on":true},{"x":26,"y":735,"on":true},{"x":164,"y":735,"on":true},{"x":164,"y":72,"on":true},{"x":236,"y":72,"on":true},{"x":236,"y":0,"on":true}],[{"x":265,"y":110,"on":true},{"x":330,"y":124,"on":true},{"x":332,"y":93,"on":false},{"x":346,"y":77,"on":true},{"x":356,"y":64,"on":false},{"x":387,"y":64,"on":false},{"x":398,"y":76,"on":true},{"x":414,"y":95,"on":false},{"x":414,"y":136,"on":true},{"x":414,"y":162,"on":false},{"x":404,"y":182,"on":true},{"x":393,"y":205,"on":false},{"x":353,"y":234,"on":true},{"x":303,"y":270,"on":false},{"x":285,"y":307,"on":true},{"x":267,"y":345,"on":false},{"x":266,"y":394,"on":true},{"x":266,"y":444,"on":false},{"x":283,"y":478,"on":true},{"x":297,"y":506,"on":false},{"x":319,"y":522,"on":true},{"x":343,"y":538,"on":false},{"x":407,"y":538,"on":false},{"x":431,"y":522,"on":true},{"x":453,"y":506,"on":false},{"x":467,"y":478,"on":true},{"x":480,"y":452,"on":false},{"x":482,"y":420,"on":true},{"x":417,"y":406,"on":true},{"x":415,"y":437,"on":false},{"x":401,"y":453,"on":true},{"x":391,"y":466,"on":false},{"x":360,"y":466,"on":false},{"x":349,"y":454,"on":true},{"x":333,"y":435,"on":false},{"x":333,"y":394,"on":true},{"x":333,"y":368,"on":false},{"x":343,"y":348,"on":true},{"x":354,"y":325,"on":false},{"x":394,"y":296,"on":true},{"x":444,"y":260,"on":false},{"x":462,"y":223,"on":true},{"x":480,"y":185,"on":false},{"x":480,"y":136,"on":true},{"x":480,"y":86,"on":false},{"x":464,"y":52,"on":true},{"x":450,"y":24,"on":false},{"x":428,"y":8,"on":true},{"x":404,"y":-8,"on":false},{"x":340,"y":-8,"on":false},{"x":316,"y":8,"on":true},{"x":294,"y":24,"on":false},{"x":280,"y":52,"on":true},{"x":267,"y":78,"on":false}]], "references": [], - "instructions": [64,9,38,37,11,10,4,0,7,1,74,75,176,29,80,88,64,35,0,1,1,2,93,0,2,2,64,75,0,7,7,6,95,0,6,6,75,75,5,3,2,0,0,4,95,8,9,2,4,4,65,4,76,27,64,43,0,1,1,2,93,0,2,2,64,75,0,7,7,6,95,0,6,6,75,75,3,1,0,0,4,93,9,1,4,4,65,75,0,5,5,8,95,0,8,8,73,8,76,89,64,21,0,0,59,58,42,41,32,31,15,14,0,9,0,9,17,17,17,17,10,9,24,43] + "instructions": "QAkmJQsKBAAHAUpLsB1QWEAjAAEBAl0AAgJASwAHBwZfAAYGS0sFAwIAAARfCAkCBARBBEwbQCsAAQECXQACAkBLAAcHBl8ABgZLSwMBAAAEXQkBBARBSwAFBQhfAAgISQhMWUAVAAA7OiopIB8PDgAJAAkRERERCgkYKw==" }, "uni02AB": { "name": "uni02AB", "advanceWidth": 500, "contours": [[{"x":17,"y":0,"on":true},{"x":17,"y":72,"on":true},{"x":98,"y":72,"on":true},{"x":98,"y":663,"on":true},{"x":26,"y":663,"on":true},{"x":26,"y":735,"on":true},{"x":164,"y":735,"on":true},{"x":164,"y":72,"on":true},{"x":236,"y":72,"on":true},{"x":236,"y":0,"on":true}],[{"x":267,"y":0,"on":true},{"x":267,"y":72,"on":true},{"x":400,"y":458,"on":true},{"x":267,"y":458,"on":true},{"x":267,"y":530,"on":true},{"x":480,"y":530,"on":true},{"x":480,"y":458,"on":true},{"x":347,"y":72,"on":true},{"x":480,"y":72,"on":true},{"x":480,"y":0,"on":true}]], "references": [], - "instructions": [64,69,16,1,5,11,1,0,2,73,0,1,1,2,93,0,2,2,64,75,0,5,5,6,93,0,6,6,67,75,7,3,2,0,0,4,93,10,8,9,3,4,4,65,4,76,10,10,0,0,10,19,10,19,18,17,15,14,13,12,0,9,0,9,17,17,17,17,11,9,24,43] + "instructions": "QEUQAQULAQACSQABAQJdAAICQEsABQUGXQAGBkNLBwMCAAAEXQoICQMEBEEETAoKAAAKEwoTEhEPDg0MAAkACRERERELCRgr" }, "uni0478": { "name": "uni0478", "advanceWidth": 500, "contours": [[{"x":14,"y":195,"on":true},{"x":14,"y":540,"on":true},{"x":14,"y":625,"on":false},{"x":39,"y":679,"on":true},{"x":55,"y":713,"on":false},{"x":79,"y":729,"on":true},{"x":100,"y":743,"on":false},{"x":153,"y":743,"on":false},{"x":174,"y":729,"on":true},{"x":198,"y":713,"on":false},{"x":214,"y":679,"on":true},{"x":240,"y":626,"on":false},{"x":239,"y":540,"on":true},{"x":239,"y":195,"on":true},{"x":239,"y":110,"on":false},{"x":214,"y":56,"on":true},{"x":198,"y":22,"on":false},{"x":174,"y":6,"on":true},{"x":153,"y":-8,"on":false},{"x":100,"y":-8,"on":false},{"x":79,"y":6,"on":true},{"x":55,"y":22,"on":false},{"x":39,"y":56,"on":true},{"x":13,"y":109,"on":false}],[{"x":80,"y":195,"on":true},{"x":80,"y":105,"on":false},{"x":106,"y":75,"on":true},{"x":115,"y":64,"on":false},{"x":138,"y":64,"on":false},{"x":147,"y":75,"on":true},{"x":173,"y":106,"on":false},{"x":173,"y":195,"on":true},{"x":173,"y":540,"on":true},{"x":173,"y":630,"on":false},{"x":147,"y":660,"on":true},{"x":138,"y":671,"on":false},{"x":115,"y":671,"on":false},{"x":106,"y":660,"on":true},{"x":80,"y":629,"on":false},{"x":80,"y":540,"on":true}],[{"x":267,"y":493,"on":true},{"x":267,"y":530,"on":true},{"x":334,"y":530,"on":true},{"x":334,"y":493,"on":true},{"x":334,"y":441,"on":false},{"x":350,"y":349,"on":true},{"x":373,"y":215,"on":true},{"x":397,"y":349,"on":true},{"x":413,"y":437,"on":false},{"x":413,"y":493,"on":true},{"x":413,"y":530,"on":true},{"x":480,"y":530,"on":true},{"x":480,"y":493,"on":true},{"x":480,"y":430,"on":false},{"x":462,"y":334,"on":true},{"x":380,"y":-122,"on":true},{"x":376,"y":-147,"on":false},{"x":375,"y":-198,"on":true},{"x":375,"y":-205,"on":true},{"x":309,"y":-205,"on":true},{"x":309,"y":-198,"on":true},{"x":309,"y":-141,"on":false},{"x":315,"y":-107,"on":true},{"x":341,"y":36,"on":true},{"x":285,"y":334,"on":true},{"x":268,"y":426,"on":false}]], "references": [], - "instructions": [64,51,46,1,2,4,63,1,1,2,2,74,59,57,2,1,71,0,3,3,0,95,0,0,0,33,75,5,1,4,4,28,75,0,2,2,1,95,0,1,1,34,1,76,24,21,23,24,27,22,6,7,26,43] + "instructions": "QDMuAQIEPwEBAgJKOzkCAUcAAwMAXwAAACFLBQEEBBxLAAICAV8AAQEiAUwYFRcYGxYGBxor" }, "uni0479": { "name": "uni0479", "advanceWidth": 500, "contours": [[{"x":14,"y":220,"on":true},{"x":14,"y":310,"on":true},{"x":14,"y":413,"on":false},{"x":43,"y":474,"on":true},{"x":60,"y":508,"on":false},{"x":83,"y":525,"on":true},{"x":102,"y":538,"on":false},{"x":151,"y":538,"on":false},{"x":170,"y":525,"on":true},{"x":193,"y":509,"on":false},{"x":210,"y":474,"on":true},{"x":239,"y":413,"on":false},{"x":239,"y":310,"on":true},{"x":239,"y":220,"on":true},{"x":239,"y":117,"on":false},{"x":210,"y":56,"on":true},{"x":193,"y":22,"on":false},{"x":170,"y":5,"on":true},{"x":151,"y":-8,"on":false},{"x":102,"y":-8,"on":false},{"x":83,"y":5,"on":true},{"x":60,"y":21,"on":false},{"x":43,"y":56,"on":true},{"x":14,"y":117,"on":false}],[{"x":80,"y":220,"on":true},{"x":80,"y":107,"on":false},{"x":108,"y":74,"on":true},{"x":116,"y":64,"on":false},{"x":137,"y":64,"on":false},{"x":145,"y":74,"on":true},{"x":173,"y":107,"on":false},{"x":173,"y":220,"on":true},{"x":173,"y":310,"on":true},{"x":173,"y":423,"on":false},{"x":145,"y":456,"on":true},{"x":137,"y":466,"on":false},{"x":116,"y":466,"on":false},{"x":108,"y":456,"on":true},{"x":80,"y":423,"on":false},{"x":80,"y":310,"on":true}],[{"x":267,"y":493,"on":true},{"x":267,"y":530,"on":true},{"x":334,"y":530,"on":true},{"x":334,"y":493,"on":true},{"x":334,"y":441,"on":false},{"x":350,"y":349,"on":true},{"x":373,"y":215,"on":true},{"x":397,"y":349,"on":true},{"x":413,"y":437,"on":false},{"x":413,"y":493,"on":true},{"x":413,"y":530,"on":true},{"x":480,"y":530,"on":true},{"x":480,"y":493,"on":true},{"x":480,"y":430,"on":false},{"x":462,"y":334,"on":true},{"x":380,"y":-122,"on":true},{"x":376,"y":-147,"on":false},{"x":375,"y":-198,"on":true},{"x":375,"y":-205,"on":true},{"x":309,"y":-205,"on":true},{"x":309,"y":-198,"on":true},{"x":309,"y":-141,"on":false},{"x":315,"y":-107,"on":true},{"x":341,"y":36,"on":true},{"x":285,"y":334,"on":true},{"x":268,"y":426,"on":false}]], "references": [], - "instructions": [64,15,46,1,2,3,63,1,1,2,2,74,59,57,2,1,71,75,176,29,80,88,64,23,0,3,3,0,93,5,4,2,0,0,28,75,0,2,2,1,95,0,1,1,34,1,76,27,64,27,5,1,4,4,28,75,0,3,3,0,95,0,0,0,35,75,0,2,2,1,95,0,1,1,34,1,76,89,64,9,24,21,23,24,27,22,6,7,26,43] + "instructions": "QA8uAQIDPwEBAgJKOzkCAUdLsB1QWEAXAAMDAF0FBAIAABxLAAICAV8AAQEiAUwbQBsFAQQEHEsAAwMAXwAAACNLAAICAV8AAQEiAUxZQAkYFRcYGxYGBxor" }, "peseta": { "name": "peseta", "advanceWidth": 500, "contours": [[{"x":33,"y":0,"on":true},{"x":33,"y":735,"on":true},{"x":100,"y":735,"on":true},{"x":100,"y":733,"on":true},{"x":135,"y":728,"on":false},{"x":162,"y":710,"on":true},{"x":195,"y":687,"on":false},{"x":216,"y":645,"on":true},{"x":240,"y":596,"on":false},{"x":239,"y":455,"on":false},{"x":216,"y":406,"on":true},{"x":196,"y":364,"on":false},{"x":162,"y":341,"on":true},{"x":134,"y":322,"on":false},{"x":100,"y":317,"on":true},{"x":100,"y":0,"on":true}],[{"x":100,"y":390,"on":true},{"x":113,"y":394,"on":false},{"x":124,"y":402,"on":true},{"x":144,"y":416,"on":false},{"x":157,"y":442,"on":true},{"x":173,"y":476,"on":false},{"x":173,"y":575,"on":false},{"x":157,"y":608,"on":true},{"x":144,"y":634,"on":false},{"x":124,"y":649,"on":true},{"x":113,"y":656,"on":false},{"x":100,"y":660,"on":true}],[{"x":265,"y":110,"on":true},{"x":330,"y":124,"on":true},{"x":332,"y":93,"on":false},{"x":346,"y":77,"on":true},{"x":356,"y":64,"on":false},{"x":387,"y":64,"on":false},{"x":398,"y":76,"on":true},{"x":414,"y":95,"on":false},{"x":414,"y":136,"on":true},{"x":414,"y":162,"on":false},{"x":404,"y":182,"on":true},{"x":393,"y":205,"on":false},{"x":353,"y":234,"on":true},{"x":303,"y":270,"on":false},{"x":285,"y":307,"on":true},{"x":267,"y":345,"on":false},{"x":266,"y":394,"on":true},{"x":266,"y":444,"on":false},{"x":283,"y":478,"on":true},{"x":297,"y":506,"on":false},{"x":319,"y":522,"on":true},{"x":343,"y":538,"on":false},{"x":407,"y":538,"on":false},{"x":431,"y":522,"on":true},{"x":453,"y":506,"on":false},{"x":467,"y":478,"on":true},{"x":480,"y":452,"on":false},{"x":482,"y":420,"on":true},{"x":417,"y":406,"on":true},{"x":415,"y":437,"on":false},{"x":401,"y":453,"on":true},{"x":391,"y":466,"on":false},{"x":360,"y":466,"on":false},{"x":349,"y":454,"on":true},{"x":333,"y":435,"on":false},{"x":333,"y":394,"on":true},{"x":333,"y":368,"on":false},{"x":343,"y":348,"on":true},{"x":354,"y":325,"on":false},{"x":394,"y":296,"on":true},{"x":444,"y":260,"on":false},{"x":462,"y":223,"on":true},{"x":480,"y":185,"on":false},{"x":480,"y":136,"on":true},{"x":480,"y":86,"on":false},{"x":464,"y":52,"on":true},{"x":450,"y":24,"on":false},{"x":428,"y":8,"on":true},{"x":404,"y":-8,"on":false},{"x":340,"y":-8,"on":false},{"x":316,"y":8,"on":true},{"x":294,"y":24,"on":false},{"x":280,"y":52,"on":true},{"x":267,"y":78,"on":false}]], "references": [], - "instructions": [64,15,27,1,3,0,56,55,29,28,16,14,6,2,4,2,74,75,176,29,80,88,64,28,0,0,0,64,75,0,4,4,3,95,0,3,3,75,75,0,2,2,1,95,5,6,2,1,1,65,1,76,27,64,32,0,0,0,64,75,0,4,4,3,95,0,3,3,75,75,6,1,1,1,65,75,0,2,2,5,95,0,5,5,73,5,76,89,64,18,0,0,77,76,60,59,50,49,33,32,0,15,0,15,17,7,9,21,43] + "instructions": "QA8bAQMAODcdHBAOBgIEAkpLsB1QWEAcAAAAQEsABAQDXwADA0tLAAICAV8FBgIBAUEBTBtAIAAAAEBLAAQEA18AAwNLSwYBAQFBSwACAgVfAAUFSQVMWUASAABNTDw7MjEhIAAPAA8RBwkVKw==" }, "uni20A8": { "name": "uni20A8", "advanceWidth": 500, "contours": [[{"x":20,"y":0,"on":true},{"x":20,"y":735,"on":true},{"x":87,"y":735,"on":true},{"x":130,"y":732,"on":false},{"x":162,"y":710,"on":true},{"x":195,"y":687,"on":false},{"x":216,"y":645,"on":true},{"x":240,"y":596,"on":false},{"x":239,"y":455,"on":false},{"x":216,"y":406,"on":true},{"x":197,"y":366,"on":false},{"x":166,"y":343,"on":true},{"x":240,"y":139,"on":false},{"x":239,"y":0,"on":true},{"x":173,"y":0,"on":true},{"x":173,"y":129,"on":false},{"x":103,"y":318,"on":true},{"x":95,"y":317,"on":false},{"x":87,"y":316,"on":true},{"x":87,"y":0,"on":true}],[{"x":87,"y":388,"on":true},{"x":108,"y":390,"on":false},{"x":124,"y":402,"on":true},{"x":144,"y":416,"on":false},{"x":157,"y":442,"on":true},{"x":173,"y":476,"on":false},{"x":173,"y":575,"on":false},{"x":157,"y":608,"on":true},{"x":144,"y":634,"on":false},{"x":124,"y":649,"on":true},{"x":108,"y":660,"on":false},{"x":87,"y":662,"on":true}],[{"x":265,"y":110,"on":true},{"x":330,"y":124,"on":true},{"x":332,"y":93,"on":false},{"x":346,"y":77,"on":true},{"x":356,"y":64,"on":false},{"x":387,"y":64,"on":false},{"x":398,"y":76,"on":true},{"x":414,"y":95,"on":false},{"x":414,"y":136,"on":true},{"x":414,"y":162,"on":false},{"x":404,"y":182,"on":true},{"x":393,"y":205,"on":false},{"x":353,"y":234,"on":true},{"x":303,"y":270,"on":false},{"x":285,"y":307,"on":true},{"x":267,"y":345,"on":false},{"x":266,"y":394,"on":true},{"x":266,"y":444,"on":false},{"x":283,"y":478,"on":true},{"x":297,"y":506,"on":false},{"x":319,"y":522,"on":true},{"x":343,"y":538,"on":false},{"x":407,"y":538,"on":false},{"x":431,"y":522,"on":true},{"x":453,"y":506,"on":false},{"x":467,"y":478,"on":true},{"x":480,"y":452,"on":false},{"x":482,"y":420,"on":true},{"x":417,"y":406,"on":true},{"x":415,"y":437,"on":false},{"x":401,"y":453,"on":true},{"x":391,"y":466,"on":false},{"x":360,"y":466,"on":false},{"x":349,"y":454,"on":true},{"x":333,"y":435,"on":false},{"x":333,"y":394,"on":true},{"x":333,"y":368,"on":false},{"x":343,"y":348,"on":true},{"x":354,"y":325,"on":false},{"x":394,"y":296,"on":true},{"x":444,"y":260,"on":false},{"x":462,"y":223,"on":true},{"x":480,"y":185,"on":false},{"x":480,"y":136,"on":true},{"x":480,"y":86,"on":false},{"x":464,"y":52,"on":true},{"x":450,"y":24,"on":false},{"x":428,"y":8,"on":true},{"x":404,"y":-8,"on":false},{"x":340,"y":-8,"on":false},{"x":316,"y":8,"on":true},{"x":294,"y":24,"on":false},{"x":280,"y":52,"on":true},{"x":267,"y":78,"on":false}]], "references": [], - "instructions": [64,16,31,1,4,0,60,59,33,32,20,18,11,7,3,5,2,74,75,176,29,80,88,64,29,0,0,0,64,75,0,5,5,4,95,0,4,4,75,75,0,3,3,1,93,6,7,2,3,1,1,65,1,76,27,64,33,0,0,0,64,75,0,5,5,4,95,0,4,4,75,75,7,2,2,1,1,65,75,0,3,3,6,95,0,6,6,73,6,76,89,64,19,0,0,81,80,64,63,54,53,37,36,0,19,0,19,26,33,8,9,22,43] + "instructions": "QBAfAQQAPDshIBQSCwcDBQJKS7AdUFhAHQAAAEBLAAUFBF8ABARLSwADAwFdBgcCAwEBQQFMG0AhAAAAQEsABQUEXwAEBEtLBwICAQFBSwADAwZfAAYGSQZMWUATAABRUEA/NjUlJAATABMaIQgJFis=" }, "trademark": { "name": "trademark", "advanceWidth": 500, "contours": [[{"x":7,"y":739,"on":true},{"x":7,"y":797,"on":true},{"x":308,"y":797,"on":true},{"x":370,"y":583,"on":true},{"x":432,"y":797,"on":true},{"x":493,"y":797,"on":true},{"x":493,"y":385,"on":true},{"x":429,"y":385,"on":true},{"x":429,"y":468,"on":true},{"x":429,"y":545,"on":false},{"x":440,"y":632,"on":true},{"x":444,"y":668,"on":false},{"x":447,"y":703,"on":true},{"x":391,"y":509,"on":true},{"x":349,"y":509,"on":true},{"x":293,"y":703,"on":true},{"x":296,"y":669,"on":false},{"x":300,"y":632,"on":true},{"x":311,"y":545,"on":false},{"x":311,"y":468,"on":true},{"x":311,"y":385,"on":true},{"x":247,"y":385,"on":true},{"x":247,"y":739,"on":true},{"x":162,"y":739,"on":true},{"x":162,"y":385,"on":true},{"x":98,"y":385,"on":true},{"x":98,"y":739,"on":true}]], "references": [], - "instructions": [179,6,1,1,48,43] + "instructions": "swYBATAr" }, "uni2120": { "name": "uni2120", "advanceWidth": 500, "contours": [[{"x":4,"y":472,"on":true},{"x":66,"y":486,"on":true},{"x":67,"y":468,"on":false},{"x":81,"y":455,"on":true},{"x":97,"y":439,"on":false},{"x":128,"y":439,"on":true},{"x":150,"y":439,"on":false},{"x":165,"y":447,"on":true},{"x":177,"y":454,"on":false},{"x":189,"y":475,"on":false},{"x":189,"y":488,"on":true},{"x":189,"y":502,"on":false},{"x":182,"y":516,"on":true},{"x":172,"y":534,"on":false},{"x":147,"y":548,"on":true},{"x":138,"y":553,"on":false},{"x":120,"y":561,"on":true},{"x":91,"y":574,"on":false},{"x":77,"y":582,"on":true},{"x":41,"y":603,"on":false},{"x":23,"y":634,"on":true},{"x":7,"y":662,"on":false},{"x":7,"y":693,"on":true},{"x":7,"y":722,"on":false},{"x":21,"y":747,"on":true},{"x":34,"y":770,"on":false},{"x":59,"y":784,"on":true},{"x":89,"y":801,"on":false},{"x":132,"y":801,"on":true},{"x":217,"y":801,"on":false},{"x":247,"y":740,"on":true},{"x":247,"y":797,"on":true},{"x":308,"y":797,"on":true},{"x":370,"y":583,"on":true},{"x":432,"y":797,"on":true},{"x":493,"y":797,"on":true},{"x":493,"y":385,"on":true},{"x":429,"y":385,"on":true},{"x":429,"y":468,"on":true},{"x":429,"y":545,"on":false},{"x":440,"y":632,"on":true},{"x":444,"y":668,"on":false},{"x":447,"y":703,"on":true},{"x":391,"y":509,"on":true},{"x":349,"y":509,"on":true},{"x":293,"y":703,"on":true},{"x":296,"y":669,"on":false},{"x":300,"y":632,"on":true},{"x":311,"y":545,"on":false},{"x":311,"y":468,"on":true},{"x":311,"y":385,"on":true},{"x":247,"y":385,"on":true},{"x":247,"y":452,"on":true},{"x":244,"y":444,"on":false},{"x":239,"y":436,"on":true},{"x":226,"y":413,"on":false},{"x":201,"y":398,"on":true},{"x":171,"y":381,"on":false},{"x":128,"y":381,"on":true},{"x":84,"y":381,"on":false},{"x":54,"y":398,"on":true},{"x":30,"y":412,"on":false},{"x":16,"y":436,"on":true},{"x":6,"y":453,"on":false}],[{"x":71,"y":694,"on":true},{"x":71,"y":680,"on":false},{"x":78,"y":667,"on":true},{"x":88,"y":649,"on":false},{"x":113,"y":635,"on":true},{"x":122,"y":630,"on":false},{"x":140,"y":621,"on":true},{"x":169,"y":608,"on":false},{"x":183,"y":600,"on":true},{"x":219,"y":579,"on":false},{"x":237,"y":549,"on":true},{"x":243,"y":539,"on":false},{"x":247,"y":527,"on":true},{"x":247,"y":708,"on":true},{"x":194,"y":696,"on":true},{"x":193,"y":714,"on":false},{"x":179,"y":727,"on":true},{"x":163,"y":743,"on":false},{"x":132,"y":744,"on":true},{"x":110,"y":744,"on":false},{"x":95,"y":735,"on":true},{"x":83,"y":728,"on":false},{"x":71,"y":707,"on":false}]], "references": [], - "instructions": [181,82,76,57,27,2,48,43] + "instructions": "tVJMORsCMCs=" }, "uniFF02": { "name": "uniFF02", "advanceWidth": 1000, "contours": [], "references": [{"glyph":"quotesingle","x":375,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"quotesingle","x":125,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uniFF03": { "name": "uniFF03", "advanceWidth": 1000, "contours": [[{"x":270,"y":124,"on":true},{"x":270,"y":196,"on":true},{"x":368,"y":196,"on":true},{"x":368,"y":466,"on":true},{"x":270,"y":466,"on":true},{"x":270,"y":538,"on":true},{"x":368,"y":538,"on":true},{"x":368,"y":772,"on":true},{"x":448,"y":772,"on":true},{"x":448,"y":538,"on":true},{"x":552,"y":538,"on":true},{"x":552,"y":772,"on":true},{"x":632,"y":772,"on":true},{"x":632,"y":538,"on":true},{"x":730,"y":538,"on":true},{"x":730,"y":466,"on":true},{"x":632,"y":466,"on":true},{"x":632,"y":196,"on":true},{"x":730,"y":196,"on":true},{"x":730,"y":124,"on":true},{"x":632,"y":124,"on":true},{"x":632,"y":-109,"on":true},{"x":552,"y":-109,"on":true},{"x":552,"y":124,"on":true},{"x":448,"y":124,"on":true},{"x":448,"y":-109,"on":true},{"x":368,"y":-109,"on":true},{"x":368,"y":124,"on":true}],[{"x":448,"y":196,"on":true},{"x":552,"y":196,"on":true},{"x":552,"y":466,"on":true},{"x":448,"y":466,"on":true}]], "references": [], - "instructions": [181,30,28,21,7,2,48,43] + "instructions": "tR4cFQcCMCs=" }, "uniFF04": { "name": "uniFF04", "advanceWidth": 1000, "contours": [[{"x":265,"y":155,"on":true},{"x":342,"y":173,"on":true},{"x":345,"y":151,"on":false},{"x":357,"y":132,"on":true},{"x":374,"y":102,"on":false},{"x":404,"y":85,"on":true},{"x":441,"y":64,"on":false},{"x":497,"y":64,"on":true},{"x":556,"y":64,"on":false},{"x":594,"y":86,"on":true},{"x":622,"y":102,"on":false},{"x":637,"y":128,"on":true},{"x":651,"y":152,"on":false},{"x":650,"y":179,"on":true},{"x":650,"y":209,"on":false},{"x":634,"y":236,"on":true},{"x":614,"y":270,"on":false},{"x":573,"y":294,"on":true},{"x":547,"y":309,"on":false},{"x":492,"y":328,"on":true},{"x":420,"y":353,"on":false},{"x":385,"y":373,"on":true},{"x":327,"y":406,"on":false},{"x":297,"y":459,"on":true},{"x":270,"y":505,"on":false},{"x":270,"y":555,"on":true},{"x":270,"y":603,"on":false},{"x":293,"y":644,"on":true},{"x":317,"y":685,"on":false},{"x":361,"y":710,"on":true},{"x":403,"y":734,"on":false},{"x":460,"y":741,"on":true},{"x":460,"y":838,"on":true},{"x":540,"y":838,"on":true},{"x":540,"y":741,"on":true},{"x":661,"y":729,"on":false},{"x":713,"y":640,"on":true},{"x":730,"y":611,"on":false},{"x":735,"y":580,"on":true},{"x":658,"y":562,"on":true},{"x":655,"y":584,"on":false},{"x":643,"y":603,"on":true},{"x":626,"y":633,"on":false},{"x":596,"y":650,"on":true},{"x":559,"y":671,"on":false},{"x":503,"y":671,"on":true},{"x":444,"y":671,"on":false},{"x":406,"y":649,"on":true},{"x":378,"y":633,"on":false},{"x":363,"y":607,"on":true},{"x":349,"y":583,"on":false},{"x":350,"y":556,"on":true},{"x":350,"y":526,"on":false},{"x":366,"y":499,"on":true},{"x":386,"y":465,"on":false},{"x":427,"y":441,"on":true},{"x":453,"y":426,"on":false},{"x":508,"y":407,"on":true},{"x":580,"y":382,"on":false},{"x":615,"y":362,"on":true},{"x":673,"y":329,"on":false},{"x":703,"y":276,"on":true},{"x":730,"y":230,"on":false},{"x":730,"y":180,"on":true},{"x":730,"y":132,"on":false},{"x":707,"y":91,"on":true},{"x":683,"y":50,"on":false},{"x":639,"y":25,"on":true},{"x":597,"y":1,"on":false},{"x":540,"y":-6,"on":true},{"x":540,"y":-102,"on":true},{"x":460,"y":-102,"on":true},{"x":460,"y":-6,"on":true},{"x":339,"y":6,"on":false},{"x":287,"y":95,"on":true},{"x":270,"y":124,"on":false}]], "references": [], - "instructions": [179,70,32,1,48,43] + "instructions": "s0YgATAr" }, "uniFF05": { "name": "uniFF05", "advanceWidth": 1000, "contours": [[{"x":270,"y":0,"on":true},{"x":364,"y":0,"on":true},{"x":730,"y":735,"on":true},{"x":636,"y":735,"on":true}],[{"x":270,"y":514,"on":true},{"x":270,"y":735,"on":true},{"x":390,"y":735,"on":true},{"x":390,"y":514,"on":true}],[{"x":610,"y":0,"on":true},{"x":610,"y":220,"on":true},{"x":730,"y":220,"on":true},{"x":730,"y":0,"on":true}]], "references": [], - "instructions": [183,9,8,5,4,2,0,3,48,43] + "instructions": "twkIBQQCAAMwKw==" }, "uniFF06": { "name": "uniFF06", "advanceWidth": 1000, "contours": [[{"x":262,"y":189,"on":true},{"x":262,"y":239,"on":false},{"x":289,"y":285,"on":true},{"x":317,"y":334,"on":false},{"x":380,"y":375,"on":true},{"x":351,"y":408,"on":false},{"x":333,"y":439,"on":true},{"x":293,"y":508,"on":false},{"x":293,"y":575,"on":true},{"x":293,"y":623,"on":false},{"x":315,"y":660,"on":true},{"x":335,"y":695,"on":false},{"x":372,"y":717,"on":true},{"x":417,"y":743,"on":false},{"x":548,"y":743,"on":false},{"x":593,"y":717,"on":true},{"x":630,"y":696,"on":false},{"x":651,"y":660,"on":true},{"x":673,"y":622,"on":false},{"x":673,"y":576,"on":true},{"x":673,"y":527,"on":false},{"x":646,"y":481,"on":true},{"x":613,"y":424,"on":false},{"x":537,"y":380,"on":true},{"x":524,"y":372,"on":false},{"x":505,"y":362,"on":true},{"x":543,"y":326,"on":false},{"x":591,"y":285,"on":true},{"x":629,"y":253,"on":false},{"x":658,"y":225,"on":true},{"x":658,"y":368,"on":true},{"x":738,"y":368,"on":true},{"x":738,"y":195,"on":true},{"x":738,"y":166,"on":false},{"x":732,"y":141,"on":true},{"x":737,"y":134,"on":false},{"x":740,"y":127,"on":true},{"x":776,"y":65,"on":false},{"x":776,"y":0,"on":true},{"x":696,"y":0,"on":true},{"x":696,"y":30,"on":false},{"x":687,"y":59,"on":true},{"x":668,"y":40,"on":false},{"x":643,"y":26,"on":true},{"x":585,"y":-8,"on":false},{"x":415,"y":-8,"on":false},{"x":357,"y":26,"on":true},{"x":312,"y":52,"on":false},{"x":287,"y":94,"on":true},{"x":262,"y":138,"on":false}],[{"x":342,"y":188,"on":true},{"x":342,"y":157,"on":false},{"x":373,"y":104,"on":false},{"x":402,"y":87,"on":true},{"x":441,"y":64,"on":false},{"x":500,"y":64,"on":true},{"x":558,"y":64,"on":false},{"x":597,"y":87,"on":true},{"x":627,"y":104,"on":false},{"x":642,"y":131,"on":true},{"x":644,"y":134,"on":false},{"x":645,"y":137,"on":true},{"x":606,"y":186,"on":false},{"x":523,"y":248,"on":true},{"x":471,"y":287,"on":false},{"x":432,"y":323,"on":true},{"x":382,"y":291,"on":false},{"x":360,"y":253,"on":true},{"x":342,"y":222,"on":false}],[{"x":373,"y":575,"on":true},{"x":373,"y":534,"on":false},{"x":400,"y":487,"on":true},{"x":418,"y":455,"on":false},{"x":453,"y":416,"on":true},{"x":473,"y":427,"on":false},{"x":484,"y":433,"on":true},{"x":550,"y":471,"on":false},{"x":575,"y":515,"on":true},{"x":592,"y":545,"on":false},{"x":593,"y":576,"on":true},{"x":593,"y":602,"on":false},{"x":580,"y":623,"on":true},{"x":568,"y":643,"on":false},{"x":548,"y":656,"on":true},{"x":522,"y":671,"on":false},{"x":483,"y":671,"on":true},{"x":445,"y":671,"on":false},{"x":418,"y":656,"on":true},{"x":373,"y":630,"on":false}]], "references": [], - "instructions": [183,84,73,65,54,44,13,3,48,43] + "instructions": "t1RJQTYsDQMwKw==" }, "uniFF07": { "name": "uniFF07", "advanceWidth": 1000, "contours": [], "references": [{"glyph":"quotesingle","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uniFF0A": { "name": "uniFF0A", "advanceWidth": 1000, "contours": [[{"x":238,"y":563,"on":true},{"x":263,"y":631,"on":true},{"x":467,"y":558,"on":true},{"x":460,"y":778,"on":true},{"x":540,"y":778,"on":true},{"x":533,"y":558,"on":true},{"x":737,"y":631,"on":true},{"x":762,"y":563,"on":true},{"x":551,"y":500,"on":true},{"x":687,"y":324,"on":true},{"x":622,"y":282,"on":true},{"x":500,"y":461,"on":true},{"x":378,"y":282,"on":true},{"x":313,"y":324,"on":true},{"x":449,"y":500,"on":true}]], "references": [], - "instructions": [179,10,3,1,48,43] + "instructions": "swoDATAr" }, "uniFF0B": { "name": "uniFF0B", "advanceWidth": 1000, "contours": [[{"x":270,"y":295,"on":true},{"x":270,"y":367,"on":true},{"x":460,"y":367,"on":true},{"x":460,"y":584,"on":true},{"x":540,"y":584,"on":true},{"x":540,"y":367,"on":true},{"x":730,"y":367,"on":true},{"x":730,"y":295,"on":true},{"x":540,"y":295,"on":true},{"x":540,"y":78,"on":true},{"x":460,"y":78,"on":true},{"x":460,"y":295,"on":true}]], "references": [], - "instructions": [179,9,3,1,48,43] + "instructions": "swkDATAr" }, "uniFF0D": { "name": "uniFF0D", "advanceWidth": 1000, "contours": [[{"x":270,"y":295,"on":true},{"x":270,"y":367,"on":true},{"x":730,"y":367,"on":true},{"x":730,"y":295,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uniFF0F": { "name": "uniFF0F", "advanceWidth": 1000, "contours": [[{"x":270,"y":-181,"on":true},{"x":644,"y":844,"on":true},{"x":730,"y":844,"on":true},{"x":356,"y":-181,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uniFF10": { "name": "uniFF10", "advanceWidth": 1000, "contours": [[{"x":262,"y":220,"on":true},{"x":262,"y":515,"on":true},{"x":262,"y":586,"on":false},{"x":292,"y":637,"on":true},{"x":319,"y":683,"on":false},{"x":366,"y":711,"on":true},{"x":421,"y":743,"on":false},{"x":579,"y":743,"on":false},{"x":634,"y":711,"on":true},{"x":682,"y":683,"on":false},{"x":708,"y":637,"on":true},{"x":738,"y":585,"on":false},{"x":738,"y":515,"on":true},{"x":738,"y":220,"on":true},{"x":738,"y":149,"on":false},{"x":708,"y":98,"on":true},{"x":681,"y":52,"on":false},{"x":634,"y":24,"on":true},{"x":579,"y":-8,"on":false},{"x":421,"y":-8,"on":false},{"x":366,"y":24,"on":true},{"x":318,"y":52,"on":false},{"x":292,"y":98,"on":true},{"x":262,"y":150,"on":false}],[{"x":342,"y":260,"on":true},{"x":649,"y":574,"on":true},{"x":644,"y":588,"on":false},{"x":637,"y":600,"on":true},{"x":619,"y":631,"on":false},{"x":587,"y":650,"on":true},{"x":551,"y":671,"on":false},{"x":449,"y":671,"on":false},{"x":413,"y":650,"on":true},{"x":381,"y":632,"on":false},{"x":363,"y":600,"on":true},{"x":342,"y":564,"on":false},{"x":342,"y":515,"on":true}],[{"x":351,"y":161,"on":true},{"x":356,"y":147,"on":false},{"x":363,"y":135,"on":true},{"x":381,"y":104,"on":false},{"x":413,"y":85,"on":true},{"x":449,"y":64,"on":false},{"x":551,"y":64,"on":false},{"x":587,"y":85,"on":true},{"x":619,"y":103,"on":false},{"x":637,"y":135,"on":true},{"x":658,"y":171,"on":false},{"x":658,"y":220,"on":true},{"x":658,"y":475,"on":true}]], "references": [], - "instructions": [183,49,42,30,24,18,6,3,48,43] + "instructions": "tzEqHhgSBgMwKw==" }, "uniFF11": { "name": "uniFF11", "advanceWidth": 1000, "contours": [[{"x":264,"y":619,"on":true},{"x":490,"y":735,"on":true},{"x":570,"y":735,"on":true},{"x":570,"y":0,"on":true},{"x":490,"y":0,"on":true},{"x":490,"y":652,"on":true},{"x":301,"y":555,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "uniFF12": { "name": "uniFF12", "advanceWidth": 1000, "contours": [[{"x":265,"y":580,"on":true},{"x":271,"y":611,"on":false},{"x":287,"y":639,"on":true},{"x":313,"y":685,"on":false},{"x":358,"y":711,"on":true},{"x":414,"y":743,"on":false},{"x":582,"y":743,"on":false},{"x":640,"y":710,"on":true},{"x":685,"y":684,"on":false},{"x":709,"y":641,"on":true},{"x":734,"y":598,"on":false},{"x":734,"y":548,"on":true},{"x":734,"y":495,"on":false},{"x":706,"y":447,"on":true},{"x":668,"y":381,"on":false},{"x":544,"y":309,"on":true},{"x":423,"y":238,"on":false},{"x":385,"y":171,"on":true},{"x":362,"y":132,"on":false},{"x":354,"y":72,"on":true},{"x":730,"y":72,"on":true},{"x":730,"y":0,"on":true},{"x":270,"y":0,"on":true},{"x":270,"y":1,"on":true},{"x":270,"y":137,"on":false},{"x":354,"y":283,"on":false},{"x":456,"y":341,"on":true},{"x":468,"y":348,"on":false},{"x":491,"y":361,"on":true},{"x":513,"y":373,"on":false},{"x":523,"y":379,"on":true},{"x":604,"y":426,"on":false},{"x":634,"y":477,"on":true},{"x":654,"y":512,"on":false},{"x":654,"y":548,"on":true},{"x":654,"y":579,"on":false},{"x":639,"y":605,"on":true},{"x":624,"y":632,"on":false},{"x":595,"y":649,"on":true},{"x":556,"y":671,"on":false},{"x":498,"y":671,"on":true},{"x":442,"y":671,"on":false},{"x":404,"y":649,"on":true},{"x":374,"y":632,"on":false},{"x":357,"y":602,"on":true},{"x":346,"y":582,"on":false},{"x":342,"y":561,"on":true}]], "references": [], - "instructions": [179,21,5,1,48,43] + "instructions": "sxUFATAr" }, "uniFF13": { "name": "uniFF13", "advanceWidth": 1000, "contours": [[{"x":257,"y":155,"on":true},{"x":333,"y":177,"on":true},{"x":337,"y":157,"on":false},{"x":348,"y":138,"on":true},{"x":367,"y":105,"on":false},{"x":399,"y":87,"on":true},{"x":439,"y":64,"on":false},{"x":499,"y":64,"on":true},{"x":560,"y":64,"on":false},{"x":601,"y":88,"on":true},{"x":633,"y":106,"on":false},{"x":666,"y":165,"on":false},{"x":666,"y":200,"on":true},{"x":666,"y":239,"on":false},{"x":626,"y":309,"on":false},{"x":591,"y":329,"on":true},{"x":549,"y":353,"on":false},{"x":469,"y":354,"on":true},{"x":469,"y":426,"on":true},{"x":545,"y":426,"on":false},{"x":584,"y":448,"on":true},{"x":616,"y":466,"on":false},{"x":634,"y":497,"on":true},{"x":651,"y":526,"on":false},{"x":650,"y":557,"on":true},{"x":650,"y":585,"on":false},{"x":637,"y":609,"on":true},{"x":623,"y":634,"on":false},{"x":595,"y":649,"on":true},{"x":557,"y":671,"on":false},{"x":501,"y":671,"on":true},{"x":447,"y":671,"on":false},{"x":410,"y":650,"on":true},{"x":382,"y":634,"on":false},{"x":365,"y":605,"on":true},{"x":353,"y":585,"on":false},{"x":351,"y":563,"on":true},{"x":273,"y":580,"on":true},{"x":278,"y":613,"on":false},{"x":295,"y":642,"on":true},{"x":320,"y":686,"on":false},{"x":364,"y":711,"on":true},{"x":419,"y":743,"on":false},{"x":501,"y":743,"on":true},{"x":584,"y":743,"on":false},{"x":641,"y":710,"on":true},{"x":684,"y":685,"on":false},{"x":730,"y":605,"on":false},{"x":730,"y":512,"on":false},{"x":707,"y":471,"on":true},{"x":683,"y":429,"on":false},{"x":639,"y":404,"on":true},{"x":625,"y":396,"on":false},{"x":607,"y":390,"on":true},{"x":628,"y":383,"on":false},{"x":645,"y":373,"on":true},{"x":692,"y":346,"on":false},{"x":746,"y":253,"on":false},{"x":746,"y":145,"on":false},{"x":720,"y":99,"on":true},{"x":694,"y":54,"on":false},{"x":646,"y":27,"on":true},{"x":586,"y":-8,"on":false},{"x":412,"y":-8,"on":false},{"x":354,"y":26,"on":true},{"x":306,"y":54,"on":false},{"x":278,"y":101,"on":true},{"x":263,"y":127,"on":false}]], "references": [], - "instructions": [179,62,42,1,48,43] + "instructions": "sz4qATAr" }, "uniFF14": { "name": "uniFF14", "advanceWidth": 1000, "contours": [[{"x":262,"y":222,"on":true},{"x":262,"y":294,"on":true},{"x":552,"y":735,"on":true},{"x":650,"y":735,"on":true},{"x":650,"y":294,"on":true},{"x":730,"y":294,"on":true},{"x":730,"y":222,"on":true},{"x":650,"y":222,"on":true},{"x":650,"y":0,"on":true},{"x":570,"y":0,"on":true},{"x":570,"y":222,"on":true}],[{"x":346,"y":294,"on":true},{"x":570,"y":294,"on":true},{"x":570,"y":632,"on":true}]], "references": [], - "instructions": [181,13,11,8,2,2,48,43] + "instructions": "tQ0LCAICMCs=" }, "uniFF15": { "name": "uniFF15", "advanceWidth": 1000, "contours": [[{"x":265,"y":155,"on":true},{"x":341,"y":178,"on":true},{"x":347,"y":157,"on":false},{"x":357,"y":138,"on":true},{"x":377,"y":104,"on":false},{"x":410,"y":85,"on":true},{"x":446,"y":64,"on":false},{"x":497,"y":64,"on":true},{"x":547,"y":64,"on":false},{"x":582,"y":85,"on":true},{"x":615,"y":104,"on":false},{"x":635,"y":138,"on":true},{"x":658,"y":178,"on":false},{"x":658,"y":235,"on":true},{"x":658,"y":293,"on":false},{"x":635,"y":334,"on":true},{"x":616,"y":368,"on":false},{"x":583,"y":387,"on":true},{"x":549,"y":407,"on":false},{"x":501,"y":406,"on":true},{"x":452,"y":406,"on":false},{"x":417,"y":386,"on":true},{"x":385,"y":367,"on":false},{"x":365,"y":334,"on":true},{"x":359,"y":323,"on":false},{"x":355,"y":311,"on":true},{"x":282,"y":340,"on":true},{"x":282,"y":735,"on":true},{"x":707,"y":735,"on":true},{"x":707,"y":663,"on":true},{"x":362,"y":663,"on":true},{"x":362,"y":441,"on":true},{"x":367,"y":445,"on":false},{"x":373,"y":447,"on":true},{"x":427,"y":478,"on":false},{"x":576,"y":478,"on":false},{"x":629,"y":447,"on":true},{"x":677,"y":419,"on":false},{"x":706,"y":371,"on":true},{"x":738,"y":315,"on":false},{"x":738,"y":235,"on":true},{"x":738,"y":156,"on":false},{"x":706,"y":101,"on":true},{"x":678,"y":52,"on":false},{"x":629,"y":24,"on":true},{"x":574,"y":-8,"on":false},{"x":420,"y":-8,"on":false},{"x":365,"y":24,"on":true},{"x":316,"y":52,"on":false},{"x":287,"y":101,"on":true},{"x":272,"y":126,"on":false}]], "references": [], - "instructions": [179,45,27,1,48,43] + "instructions": "sy0bATAr" }, "uniFF16": { "name": "uniFF16", "advanceWidth": 1000, "contours": [[{"x":262,"y":220,"on":true},{"x":262,"y":222,"on":true},{"x":262,"y":402,"on":false},{"x":331,"y":520,"on":true},{"x":392,"y":625,"on":false},{"x":496,"y":686,"on":true},{"x":555,"y":720,"on":false},{"x":621,"y":735,"on":true},{"x":639,"y":665,"on":true},{"x":587,"y":652,"on":false},{"x":541,"y":626,"on":true},{"x":454,"y":576,"on":false},{"x":403,"y":486,"on":true},{"x":385,"y":456,"on":false},{"x":373,"y":421,"on":true},{"x":426,"y":449,"on":false},{"x":500,"y":449,"on":true},{"x":579,"y":449,"on":false},{"x":634,"y":417,"on":true},{"x":682,"y":389,"on":false},{"x":708,"y":343,"on":true},{"x":738,"y":291,"on":false},{"x":738,"y":221,"on":true},{"x":738,"y":220,"on":true},{"x":738,"y":149,"on":false},{"x":708,"y":98,"on":true},{"x":681,"y":52,"on":false},{"x":634,"y":24,"on":true},{"x":579,"y":-8,"on":false},{"x":421,"y":-8,"on":false},{"x":366,"y":24,"on":true},{"x":318,"y":52,"on":false},{"x":292,"y":98,"on":true},{"x":262,"y":149,"on":false}],[{"x":342,"y":220,"on":true},{"x":342,"y":170,"on":false},{"x":363,"y":135,"on":true},{"x":381,"y":104,"on":false},{"x":413,"y":85,"on":true},{"x":449,"y":64,"on":false},{"x":551,"y":64,"on":false},{"x":587,"y":85,"on":true},{"x":619,"y":103,"on":false},{"x":637,"y":135,"on":true},{"x":658,"y":171,"on":false},{"x":658,"y":220,"on":true},{"x":658,"y":221,"on":true},{"x":658,"y":271,"on":false},{"x":637,"y":306,"on":true},{"x":619,"y":337,"on":false},{"x":587,"y":356,"on":true},{"x":551,"y":377,"on":false},{"x":449,"y":377,"on":false},{"x":413,"y":356,"on":true},{"x":381,"y":338,"on":false},{"x":363,"y":306,"on":true},{"x":343,"y":271,"on":false},{"x":342,"y":222,"on":true}]], "references": [], - "instructions": [181,51,39,28,7,2,48,43] + "instructions": "tTMnHAcCMCs=" }, "uniFF17": { "name": "uniFF17", "advanceWidth": 1000, "contours": [[{"x":270,"y":663,"on":true},{"x":270,"y":735,"on":true},{"x":730,"y":735,"on":true},{"x":730,"y":663,"on":true},{"x":443,"y":0,"on":true},{"x":355,"y":0,"on":true},{"x":642,"y":663,"on":true}]], "references": [], - "instructions": [179,4,1,1,48,43] + "instructions": "swQBATAr" }, "uniFF18": { "name": "uniFF18", "advanceWidth": 1000, "contours": [[{"x":262,"y":174,"on":true},{"x":262,"y":222,"on":false},{"x":287,"y":266,"on":true},{"x":319,"y":321,"on":false},{"x":388,"y":361,"on":true},{"x":400,"y":368,"on":false},{"x":415,"y":376,"on":true},{"x":410,"y":379,"on":false},{"x":406,"y":381,"on":true},{"x":338,"y":420,"on":false},{"x":307,"y":475,"on":true},{"x":281,"y":519,"on":false},{"x":281,"y":568,"on":true},{"x":281,"y":613,"on":false},{"x":324,"y":688,"on":false},{"x":365,"y":712,"on":true},{"x":419,"y":743,"on":false},{"x":581,"y":743,"on":false},{"x":635,"y":712,"on":true},{"x":676,"y":688,"on":false},{"x":719,"y":613,"on":false},{"x":719,"y":568,"on":true},{"x":719,"y":520,"on":false},{"x":693,"y":475,"on":true},{"x":661,"y":420,"on":false},{"x":594,"y":381,"on":true},{"x":590,"y":378,"on":false},{"x":585,"y":376,"on":true},{"x":600,"y":368,"on":false},{"x":612,"y":361,"on":true},{"x":680,"y":322,"on":false},{"x":713,"y":266,"on":true},{"x":739,"y":222,"on":false},{"x":738,"y":174,"on":true},{"x":738,"y":129,"on":false},{"x":716,"y":91,"on":true},{"x":693,"y":52,"on":false},{"x":650,"y":27,"on":true},{"x":590,"y":-8,"on":false},{"x":410,"y":-8,"on":false},{"x":350,"y":27,"on":true},{"x":307,"y":52,"on":false},{"x":284,"y":91,"on":true},{"x":262,"y":129,"on":false}],[{"x":342,"y":174,"on":true},{"x":342,"y":148,"on":false},{"x":354,"y":127,"on":true},{"x":368,"y":103,"on":false},{"x":395,"y":88,"on":true},{"x":436,"y":64,"on":false},{"x":564,"y":64,"on":false},{"x":605,"y":88,"on":true},{"x":632,"y":104,"on":false},{"x":646,"y":127,"on":true},{"x":658,"y":148,"on":false},{"x":658,"y":174,"on":true},{"x":658,"y":204,"on":false},{"x":641,"y":233,"on":true},{"x":617,"y":274,"on":false},{"x":563,"y":305,"on":true},{"x":542,"y":317,"on":false},{"x":500,"y":336,"on":true},{"x":458,"y":317,"on":false},{"x":437,"y":305,"on":true},{"x":383,"y":274,"on":false},{"x":359,"y":233,"on":true},{"x":342,"y":204,"on":false}],[{"x":361,"y":568,"on":true},{"x":361,"y":538,"on":false},{"x":378,"y":509,"on":true},{"x":402,"y":468,"on":false},{"x":456,"y":437,"on":true},{"x":472,"y":428,"on":false},{"x":500,"y":415,"on":true},{"x":528,"y":428,"on":false},{"x":544,"y":437,"on":true},{"x":599,"y":469,"on":false},{"x":622,"y":509,"on":true},{"x":639,"y":538,"on":false},{"x":639,"y":568,"on":true},{"x":639,"y":593,"on":false},{"x":627,"y":614,"on":true},{"x":614,"y":636,"on":false},{"x":589,"y":651,"on":true},{"x":554,"y":671,"on":false},{"x":446,"y":671,"on":false},{"x":411,"y":651,"on":true},{"x":386,"y":637,"on":false},{"x":373,"y":614,"on":true},{"x":361,"y":593,"on":false}]], "references": [], - "instructions": [183,84,73,61,49,38,16,3,48,43] + "instructions": "t1RJPTEmEAMwKw==" }, "uniFF19": { "name": "uniFF19", "advanceWidth": 1000, "contours": [[{"x":262,"y":496,"on":true},{"x":262,"y":515,"on":true},{"x":262,"y":586,"on":false},{"x":292,"y":637,"on":true},{"x":319,"y":683,"on":false},{"x":366,"y":711,"on":true},{"x":421,"y":743,"on":false},{"x":500,"y":743,"on":true},{"x":577,"y":743,"on":false},{"x":631,"y":712,"on":true},{"x":679,"y":684,"on":false},{"x":707,"y":636,"on":true},{"x":738,"y":582,"on":false},{"x":738,"y":506,"on":true},{"x":738,"y":257,"on":true},{"x":738,"y":167,"on":false},{"x":701,"y":103,"on":true},{"x":671,"y":51,"on":false},{"x":621,"y":23,"on":true},{"x":568,"y":-8,"on":false},{"x":421,"y":-8,"on":false},{"x":368,"y":23,"on":true},{"x":318,"y":52,"on":false},{"x":287,"y":104,"on":true},{"x":273,"y":128,"on":false},{"x":265,"y":155,"on":true},{"x":339,"y":183,"on":true},{"x":345,"y":161,"on":false},{"x":357,"y":141,"on":true},{"x":378,"y":104,"on":false},{"x":412,"y":84,"on":true},{"x":447,"y":64,"on":false},{"x":494,"y":64,"on":true},{"x":540,"y":64,"on":false},{"x":609,"y":104,"on":false},{"x":631,"y":140,"on":true},{"x":658,"y":188,"on":false},{"x":658,"y":257,"on":true},{"x":658,"y":347,"on":true},{"x":635,"y":312,"on":false},{"x":599,"y":293,"on":true},{"x":557,"y":269,"on":false},{"x":497,"y":268,"on":true},{"x":421,"y":268,"on":false},{"x":366,"y":300,"on":true},{"x":318,"y":327,"on":false},{"x":292,"y":374,"on":true},{"x":262,"y":426,"on":false}],[{"x":342,"y":496,"on":true},{"x":342,"y":446,"on":false},{"x":363,"y":411,"on":true},{"x":381,"y":380,"on":false},{"x":413,"y":361,"on":true},{"x":449,"y":340,"on":false},{"x":499,"y":340,"on":true},{"x":550,"y":340,"on":false},{"x":587,"y":361,"on":true},{"x":619,"y":380,"on":false},{"x":637,"y":411,"on":true},{"x":658,"y":447,"on":false},{"x":658,"y":496,"on":true},{"x":658,"y":506,"on":true},{"x":658,"y":561,"on":false},{"x":636,"y":599,"on":true},{"x":617,"y":632,"on":false},{"x":584,"y":651,"on":true},{"x":549,"y":671,"on":false},{"x":500,"y":671,"on":true},{"x":449,"y":671,"on":false},{"x":413,"y":650,"on":true},{"x":381,"y":632,"on":false},{"x":363,"y":600,"on":true},{"x":342,"y":564,"on":false},{"x":342,"y":515,"on":true}]], "references": [], - "instructions": [181,66,53,19,6,2,48,43] + "instructions": "tUI1EwYCMCs=" }, "uniFF1C": { "name": "uniFF1C", "advanceWidth": 1000, "contours": [[{"x":270,"y":290,"on":true},{"x":270,"y":372,"on":true},{"x":711,"y":619,"on":true},{"x":749,"y":556,"on":true},{"x":344,"y":331,"on":true},{"x":749,"y":106,"on":true},{"x":711,"y":44,"on":true}]], "references": [], - "instructions": [179,6,2,1,48,43] + "instructions": "swYCATAr" }, "uniFF1D": { "name": "uniFF1D", "advanceWidth": 1000, "contours": [], "references": [{"glyph":"uniFF0D","x":0,"y":-113,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniFF0D","x":0,"y":113,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,255,143,176,51,43,177,1,1,176,113,176,51,43] + "instructions": "sQABuP+PsDMrsQEBsHGwMys=" }, "uniFF1E": { "name": "uniFF1E", "advanceWidth": 1000, "contours": [[{"x":251,"y":106,"on":true},{"x":656,"y":331,"on":true},{"x":251,"y":556,"on":true},{"x":289,"y":619,"on":true},{"x":730,"y":372,"on":true},{"x":730,"y":290,"on":true},{"x":289,"y":44,"on":true}]], "references": [], - "instructions": [179,6,3,1,48,43] + "instructions": "swYDATAr" }, "uniFF20": { "name": "uniFF20", "advanceWidth": 1000, "contours": [[{"x":270,"y":14,"on":true},{"x":270,"y":649,"on":true},{"x":270,"y":766,"on":false},{"x":364,"y":820,"on":true},{"x":419,"y":852,"on":false},{"x":580,"y":852,"on":false},{"x":636,"y":820,"on":true},{"x":730,"y":766,"on":false},{"x":730,"y":649,"on":true},{"x":730,"y":152,"on":true},{"x":730,"y":107,"on":false},{"x":712,"y":76,"on":true},{"x":696,"y":49,"on":false},{"x":669,"y":33,"on":true},{"x":639,"y":16,"on":false},{"x":597,"y":16,"on":true},{"x":550,"y":16,"on":false},{"x":517,"y":35,"on":true},{"x":488,"y":52,"on":false},{"x":472,"y":79,"on":true},{"x":454,"y":110,"on":false},{"x":455,"y":152,"on":true},{"x":455,"y":459,"on":true},{"x":455,"y":501,"on":false},{"x":472,"y":532,"on":true},{"x":488,"y":560,"on":false},{"x":517,"y":576,"on":true},{"x":551,"y":596,"on":false},{"x":598,"y":596,"on":true},{"x":650,"y":596,"on":true},{"x":650,"y":649,"on":true},{"x":650,"y":724,"on":false},{"x":589,"y":759,"on":true},{"x":553,"y":780,"on":false},{"x":447,"y":780,"on":false},{"x":411,"y":759,"on":true},{"x":350,"y":724,"on":false},{"x":350,"y":649,"on":true},{"x":350,"y":14,"on":true},{"x":350,"y":-61,"on":false},{"x":411,"y":-96,"on":true},{"x":447,"y":-117,"on":false},{"x":500,"y":-117,"on":true},{"x":694,"y":-117,"on":true},{"x":694,"y":-189,"on":true},{"x":500,"y":-189,"on":true},{"x":419,"y":-189,"on":false},{"x":364,"y":-157,"on":true},{"x":270,"y":-103,"on":false}],[{"x":535,"y":152,"on":true},{"x":535,"y":131,"on":false},{"x":543,"y":116,"on":true},{"x":550,"y":103,"on":false},{"x":563,"y":96,"on":true},{"x":577,"y":88,"on":false},{"x":597,"y":88,"on":true},{"x":619,"y":88,"on":false},{"x":632,"y":101,"on":true},{"x":650,"y":119,"on":false},{"x":650,"y":152,"on":true},{"x":650,"y":524,"on":true},{"x":598,"y":524,"on":true},{"x":578,"y":524,"on":false},{"x":563,"y":515,"on":true},{"x":550,"y":508,"on":false},{"x":543,"y":495,"on":true},{"x":534,"y":480,"on":false},{"x":535,"y":459,"on":true}]], "references": [], - "instructions": [181,60,54,44,4,2,48,43] + "instructions": "tTw2LAQCMCs=" }, "uniFF21": { "name": "uniFF21", "advanceWidth": 1000, "contours": [[{"x":270,"y":0,"on":true},{"x":270,"y":74,"on":true},{"x":270,"y":274,"on":false},{"x":460,"y":735,"on":true},{"x":540,"y":735,"on":true},{"x":730,"y":274,"on":false},{"x":730,"y":74,"on":true},{"x":730,"y":0,"on":true},{"x":650,"y":0,"on":true},{"x":650,"y":74,"on":true},{"x":650,"y":125,"on":false},{"x":638,"y":193,"on":true},{"x":362,"y":193,"on":true},{"x":350,"y":124,"on":false},{"x":350,"y":74,"on":true},{"x":350,"y":0,"on":true}],[{"x":376,"y":265,"on":true},{"x":624,"y":265,"on":true},{"x":587,"y":425,"on":false},{"x":500,"y":662,"on":true},{"x":413,"y":425,"on":false}]], "references": [], - "instructions": [181,19,16,3,0,2,48,43] + "instructions": "tRMQAwACMCs=" }, "uniFF22": { "name": "uniFF22", "advanceWidth": 1000, "contours": [[{"x":270,"y":0,"on":true},{"x":270,"y":735,"on":true},{"x":514,"y":735,"on":true},{"x":570,"y":735,"on":false},{"x":611,"y":711,"on":true},{"x":648,"y":690,"on":false},{"x":670,"y":651,"on":true},{"x":696,"y":605,"on":false},{"x":697,"y":542,"on":true},{"x":697,"y":486,"on":false},{"x":674,"y":446,"on":true},{"x":651,"y":407,"on":false},{"x":611,"y":386,"on":true},{"x":631,"y":379,"on":false},{"x":649,"y":369,"on":true},{"x":692,"y":344,"on":false},{"x":738,"y":264,"on":false},{"x":738,"y":208,"on":true},{"x":738,"y":146,"on":false},{"x":711,"y":99,"on":true},{"x":686,"y":56,"on":false},{"x":642,"y":31,"on":true},{"x":589,"y":0,"on":false},{"x":514,"y":0,"on":true}],[{"x":350,"y":72,"on":true},{"x":514,"y":72,"on":true},{"x":562,"y":72,"on":false},{"x":596,"y":92,"on":true},{"x":625,"y":108,"on":false},{"x":640,"y":136,"on":true},{"x":658,"y":166,"on":false},{"x":658,"y":252,"on":false},{"x":640,"y":282,"on":true},{"x":624,"y":310,"on":false},{"x":595,"y":327,"on":true},{"x":561,"y":347,"on":false},{"x":514,"y":346,"on":true},{"x":350,"y":346,"on":true}],[{"x":350,"y":418,"on":true},{"x":514,"y":418,"on":true},{"x":572,"y":418,"on":false},{"x":599,"y":466,"on":true},{"x":616,"y":496,"on":false},{"x":617,"y":541,"on":true},{"x":617,"y":585,"on":false},{"x":599,"y":615,"on":true},{"x":571,"y":663,"on":false},{"x":514,"y":663,"on":true},{"x":350,"y":663,"on":true}]], "references": [], - "instructions": [183,46,38,35,24,1,0,3,48,43] + "instructions": "ty4mIxgBAAMwKw==" }, "uniFF23": { "name": "uniFF23", "advanceWidth": 1000, "contours": [[{"x":262,"y":195,"on":true},{"x":262,"y":540,"on":true},{"x":262,"y":598,"on":false},{"x":287,"y":640,"on":true},{"x":312,"y":683,"on":false},{"x":357,"y":709,"on":true},{"x":415,"y":743,"on":false},{"x":500,"y":743,"on":true},{"x":584,"y":743,"on":false},{"x":641,"y":710,"on":true},{"x":687,"y":684,"on":false},{"x":713,"y":638,"on":true},{"x":729,"y":610,"on":false},{"x":735,"y":580,"on":true},{"x":658,"y":560,"on":true},{"x":654,"y":581,"on":false},{"x":643,"y":601,"on":true},{"x":625,"y":632,"on":false},{"x":595,"y":649,"on":true},{"x":557,"y":671,"on":false},{"x":500,"y":671,"on":true},{"x":442,"y":671,"on":false},{"x":403,"y":648,"on":true},{"x":373,"y":631,"on":false},{"x":358,"y":603,"on":true},{"x":342,"y":576,"on":false},{"x":342,"y":540,"on":true},{"x":342,"y":195,"on":true},{"x":342,"y":158,"on":false},{"x":358,"y":132,"on":true},{"x":374,"y":104,"on":false},{"x":403,"y":87,"on":true},{"x":442,"y":64,"on":false},{"x":500,"y":64,"on":true},{"x":557,"y":64,"on":false},{"x":595,"y":86,"on":true},{"x":626,"y":104,"on":false},{"x":643,"y":134,"on":true},{"x":654,"y":153,"on":false},{"x":658,"y":175,"on":true},{"x":735,"y":155,"on":true},{"x":729,"y":125,"on":false},{"x":713,"y":97,"on":true},{"x":686,"y":51,"on":false},{"x":641,"y":25,"on":true},{"x":584,"y":-8,"on":false},{"x":500,"y":-8,"on":true},{"x":415,"y":-8,"on":false},{"x":357,"y":26,"on":true},{"x":312,"y":52,"on":false},{"x":262,"y":138,"on":false}]], "references": [], - "instructions": [179,45,6,1,48,43] + "instructions": "sy0GATAr" }, "uniFF24": { "name": "uniFF24", "advanceWidth": 1000, "contours": [[{"x":270,"y":0,"on":true},{"x":270,"y":735,"on":true},{"x":516,"y":735,"on":true},{"x":579,"y":735,"on":false},{"x":626,"y":708,"on":true},{"x":672,"y":682,"on":false},{"x":701,"y":631,"on":true},{"x":738,"y":566,"on":false},{"x":738,"y":472,"on":true},{"x":738,"y":263,"on":true},{"x":738,"y":168,"on":false},{"x":701,"y":104,"on":true},{"x":672,"y":54,"on":false},{"x":626,"y":27,"on":true},{"x":578,"y":0,"on":false},{"x":516,"y":0,"on":true}],[{"x":350,"y":72,"on":true},{"x":516,"y":72,"on":true},{"x":553,"y":72,"on":false},{"x":581,"y":88,"on":true},{"x":611,"y":105,"on":false},{"x":630,"y":139,"on":true},{"x":658,"y":188,"on":false},{"x":658,"y":263,"on":true},{"x":658,"y":472,"on":true},{"x":658,"y":547,"on":false},{"x":630,"y":596,"on":true},{"x":610,"y":630,"on":false},{"x":581,"y":647,"on":true},{"x":552,"y":663,"on":false},{"x":516,"y":663,"on":true},{"x":350,"y":663,"on":true}]], "references": [], - "instructions": [181,29,16,1,0,2,48,43] + "instructions": "tR0QAQACMCs=" }, "uniFF25": { "name": "uniFF25", "advanceWidth": 1000, "contours": [[{"x":311,"y":0,"on":true},{"x":311,"y":735,"on":true},{"x":730,"y":735,"on":true},{"x":730,"y":663,"on":true},{"x":391,"y":663,"on":true},{"x":391,"y":433,"on":true},{"x":661,"y":433,"on":true},{"x":661,"y":361,"on":true},{"x":391,"y":361,"on":true},{"x":391,"y":72,"on":true},{"x":730,"y":72,"on":true},{"x":730,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uniFF26": { "name": "uniFF26", "advanceWidth": 1000, "contours": [[{"x":311,"y":0,"on":true},{"x":311,"y":735,"on":true},{"x":730,"y":735,"on":true},{"x":730,"y":663,"on":true},{"x":391,"y":663,"on":true},{"x":391,"y":433,"on":true},{"x":661,"y":433,"on":true},{"x":661,"y":361,"on":true},{"x":391,"y":361,"on":true},{"x":391,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uniFF27": { "name": "uniFF27", "advanceWidth": 1000, "contours": [[{"x":262,"y":195,"on":true},{"x":262,"y":540,"on":true},{"x":262,"y":598,"on":false},{"x":287,"y":640,"on":true},{"x":312,"y":683,"on":false},{"x":357,"y":709,"on":true},{"x":415,"y":743,"on":false},{"x":500,"y":743,"on":true},{"x":584,"y":743,"on":false},{"x":641,"y":710,"on":true},{"x":687,"y":684,"on":false},{"x":713,"y":638,"on":true},{"x":729,"y":610,"on":false},{"x":735,"y":580,"on":true},{"x":658,"y":560,"on":true},{"x":654,"y":581,"on":false},{"x":643,"y":601,"on":true},{"x":625,"y":632,"on":false},{"x":595,"y":649,"on":true},{"x":557,"y":671,"on":false},{"x":500,"y":671,"on":true},{"x":442,"y":671,"on":false},{"x":403,"y":648,"on":true},{"x":373,"y":631,"on":false},{"x":358,"y":603,"on":true},{"x":342,"y":576,"on":false},{"x":342,"y":540,"on":true},{"x":342,"y":195,"on":true},{"x":342,"y":158,"on":false},{"x":374,"y":104,"on":false},{"x":403,"y":87,"on":true},{"x":442,"y":64,"on":false},{"x":499,"y":64,"on":true},{"x":552,"y":64,"on":false},{"x":589,"y":85,"on":true},{"x":650,"y":120,"on":false},{"x":650,"y":195,"on":true},{"x":650,"y":328,"on":true},{"x":500,"y":328,"on":true},{"x":500,"y":400,"on":true},{"x":730,"y":400,"on":true},{"x":730,"y":195,"on":true},{"x":730,"y":78,"on":false},{"x":636,"y":24,"on":true},{"x":581,"y":-8,"on":false},{"x":499,"y":-8,"on":true},{"x":414,"y":-8,"on":false},{"x":357,"y":26,"on":true},{"x":312,"y":52,"on":false},{"x":287,"y":93,"on":true},{"x":262,"y":137,"on":false}]], "references": [], - "instructions": [179,44,6,1,48,43] + "instructions": "sywGATAr" }, "uniFF28": { "name": "uniFF28", "advanceWidth": 1000, "contours": [[{"x":270,"y":0,"on":true},{"x":270,"y":735,"on":true},{"x":350,"y":735,"on":true},{"x":350,"y":422,"on":true},{"x":650,"y":422,"on":true},{"x":650,"y":735,"on":true},{"x":730,"y":735,"on":true},{"x":730,"y":0,"on":true},{"x":650,"y":0,"on":true},{"x":650,"y":350,"on":true},{"x":350,"y":350,"on":true},{"x":350,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uniFF29": { "name": "uniFF29", "advanceWidth": 1000, "contours": [[{"x":325,"y":0,"on":true},{"x":325,"y":72,"on":true},{"x":460,"y":72,"on":true},{"x":460,"y":663,"on":true},{"x":325,"y":663,"on":true},{"x":325,"y":735,"on":true},{"x":675,"y":735,"on":true},{"x":675,"y":663,"on":true},{"x":540,"y":663,"on":true},{"x":540,"y":72,"on":true},{"x":675,"y":72,"on":true},{"x":675,"y":0,"on":true}]], "references": [], - "instructions": [179,5,0,1,48,43] + "instructions": "swUAATAr" }, "uniFF2A": { "name": "uniFF2A", "advanceWidth": 1000, "contours": [[{"x":244,"y":155,"on":true},{"x":322,"y":173,"on":true},{"x":325,"y":151,"on":false},{"x":337,"y":131,"on":true},{"x":354,"y":102,"on":false},{"x":382,"y":85,"on":true},{"x":418,"y":64,"on":false},{"x":526,"y":64,"on":false},{"x":562,"y":85,"on":true},{"x":591,"y":102,"on":false},{"x":607,"y":129,"on":true},{"x":623,"y":157,"on":false},{"x":623,"y":195,"on":true},{"x":623,"y":663,"on":true},{"x":444,"y":663,"on":true},{"x":444,"y":735,"on":true},{"x":703,"y":735,"on":true},{"x":703,"y":195,"on":true},{"x":703,"y":136,"on":false},{"x":678,"y":92,"on":true},{"x":653,"y":50,"on":false},{"x":609,"y":24,"on":true},{"x":553,"y":-8,"on":false},{"x":391,"y":-8,"on":false},{"x":336,"y":24,"on":true},{"x":292,"y":49,"on":false},{"x":267,"y":94,"on":true},{"x":250,"y":123,"on":false}]], "references": [], - "instructions": [179,22,15,1,48,43] + "instructions": "sxYPATAr" }, "uniFF2B": { "name": "uniFF2B", "advanceWidth": 1000, "contours": [[{"x":270,"y":0,"on":true},{"x":270,"y":735,"on":true},{"x":350,"y":735,"on":true},{"x":350,"y":382,"on":true},{"x":530,"y":543,"on":false},{"x":599,"y":662,"on":true},{"x":625,"y":707,"on":false},{"x":625,"y":735,"on":true},{"x":730,"y":735,"on":true},{"x":730,"y":705,"on":false},{"x":702,"y":656,"on":true},{"x":650,"y":567,"on":false},{"x":541,"y":456,"on":true},{"x":543,"y":453,"on":false},{"x":545,"y":449,"on":true},{"x":738,"y":114,"on":false},{"x":738,"y":0,"on":true},{"x":658,"y":0,"on":true},{"x":658,"y":98,"on":false},{"x":498,"y":375,"on":true},{"x":491,"y":388,"on":false},{"x":483,"y":400,"on":true},{"x":423,"y":344,"on":false},{"x":350,"y":282,"on":true},{"x":350,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uniFF2C": { "name": "uniFF2C", "advanceWidth": 1000, "contours": [[{"x":311,"y":0,"on":true},{"x":311,"y":735,"on":true},{"x":391,"y":735,"on":true},{"x":391,"y":72,"on":true},{"x":738,"y":72,"on":true},{"x":738,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uniFF2D": { "name": "uniFF2D", "advanceWidth": 1000, "contours": [[{"x":270,"y":0,"on":true},{"x":270,"y":735,"on":true},{"x":377,"y":735,"on":true},{"x":500,"y":339,"on":true},{"x":623,"y":735,"on":true},{"x":676,"y":735,"on":false},{"x":730,"y":735,"on":true},{"x":730,"y":0,"on":true},{"x":650,"y":0,"on":true},{"x":650,"y":147,"on":true},{"x":650,"y":237,"on":false},{"x":655,"y":580,"on":false},{"x":655,"y":602,"on":true},{"x":537,"y":220,"on":true},{"x":463,"y":220,"on":true},{"x":345,"y":602,"on":true},{"x":345,"y":580,"on":false},{"x":350,"y":237,"on":false},{"x":350,"y":147,"on":true},{"x":350,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uniFF2E": { "name": "uniFF2E", "advanceWidth": 1000, "contours": [[{"x":270,"y":0,"on":true},{"x":270,"y":735,"on":true},{"x":386,"y":735,"on":true},{"x":650,"y":105,"on":true},{"x":650,"y":735,"on":true},{"x":730,"y":735,"on":true},{"x":730,"y":0,"on":true},{"x":614,"y":0,"on":true},{"x":350,"y":630,"on":true},{"x":350,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uniFF2F": { "name": "uniFF2F", "advanceWidth": 1000, "contours": [[{"x":262,"y":195,"on":true},{"x":262,"y":540,"on":true},{"x":262,"y":598,"on":false},{"x":287,"y":642,"on":true},{"x":311,"y":684,"on":false},{"x":357,"y":709,"on":true},{"x":415,"y":743,"on":false},{"x":585,"y":743,"on":false},{"x":643,"y":709,"on":true},{"x":688,"y":683,"on":false},{"x":713,"y":642,"on":true},{"x":738,"y":598,"on":false},{"x":738,"y":540,"on":true},{"x":738,"y":195,"on":true},{"x":738,"y":137,"on":false},{"x":713,"y":93,"on":true},{"x":689,"y":51,"on":false},{"x":643,"y":26,"on":true},{"x":585,"y":-8,"on":false},{"x":415,"y":-8,"on":false},{"x":357,"y":26,"on":true},{"x":312,"y":52,"on":false},{"x":287,"y":93,"on":true},{"x":262,"y":137,"on":false}],[{"x":342,"y":195,"on":true},{"x":342,"y":158,"on":false},{"x":374,"y":104,"on":false},{"x":403,"y":87,"on":true},{"x":442,"y":64,"on":false},{"x":558,"y":64,"on":false},{"x":597,"y":87,"on":true},{"x":627,"y":104,"on":false},{"x":642,"y":131,"on":true},{"x":658,"y":159,"on":false},{"x":658,"y":195,"on":true},{"x":658,"y":540,"on":true},{"x":658,"y":577,"on":false},{"x":626,"y":631,"on":false},{"x":597,"y":648,"on":true},{"x":558,"y":671,"on":false},{"x":442,"y":671,"on":false},{"x":403,"y":648,"on":true},{"x":373,"y":631,"on":false},{"x":358,"y":604,"on":true},{"x":342,"y":576,"on":false},{"x":342,"y":540,"on":true}]], "references": [], - "instructions": [181,39,28,18,6,2,48,43] + "instructions": "tSccEgYCMCs=" }, "uniFF30": { "name": "uniFF30", "advanceWidth": 1000, "contours": [[{"x":291,"y":0,"on":true},{"x":291,"y":735,"on":true},{"x":541,"y":735,"on":true},{"x":601,"y":735,"on":false},{"x":646,"y":710,"on":true},{"x":686,"y":687,"on":false},{"x":710,"y":645,"on":true},{"x":738,"y":596,"on":false},{"x":738,"y":455,"on":false},{"x":710,"y":406,"on":true},{"x":686,"y":364,"on":false},{"x":646,"y":341,"on":true},{"x":602,"y":316,"on":false},{"x":541,"y":315,"on":true},{"x":371,"y":315,"on":true},{"x":371,"y":0,"on":true}],[{"x":371,"y":387,"on":true},{"x":541,"y":387,"on":true},{"x":607,"y":387,"on":false},{"x":639,"y":442,"on":true},{"x":658,"y":476,"on":false},{"x":658,"y":575,"on":false},{"x":639,"y":608,"on":true},{"x":608,"y":663,"on":false},{"x":541,"y":663,"on":true},{"x":371,"y":663,"on":true}]], "references": [], - "instructions": [181,23,16,1,0,2,48,43] + "instructions": "tRcQAQACMCs=" }, "uniFF31": { "name": "uniFF31", "advanceWidth": 1000, "contours": [[{"x":262,"y":195,"on":true},{"x":262,"y":540,"on":true},{"x":262,"y":598,"on":false},{"x":287,"y":642,"on":true},{"x":311,"y":684,"on":false},{"x":357,"y":709,"on":true},{"x":415,"y":743,"on":false},{"x":585,"y":743,"on":false},{"x":643,"y":709,"on":true},{"x":688,"y":683,"on":false},{"x":713,"y":642,"on":true},{"x":738,"y":598,"on":false},{"x":738,"y":540,"on":true},{"x":738,"y":195,"on":true},{"x":738,"y":137,"on":false},{"x":713,"y":93,"on":true},{"x":689,"y":51,"on":false},{"x":643,"y":26,"on":true},{"x":612,"y":8,"on":false},{"x":573,"y":-1,"on":true},{"x":617,"y":-147,"on":true},{"x":537,"y":-147,"on":true},{"x":493,"y":-8,"on":true},{"x":413,"y":-7,"on":false},{"x":357,"y":26,"on":true},{"x":312,"y":52,"on":false},{"x":287,"y":93,"on":true},{"x":262,"y":137,"on":false}],[{"x":342,"y":195,"on":true},{"x":342,"y":158,"on":false},{"x":374,"y":104,"on":false},{"x":403,"y":87,"on":true},{"x":442,"y":64,"on":false},{"x":558,"y":64,"on":false},{"x":597,"y":87,"on":true},{"x":627,"y":104,"on":false},{"x":642,"y":131,"on":true},{"x":658,"y":159,"on":false},{"x":658,"y":195,"on":true},{"x":658,"y":540,"on":true},{"x":658,"y":577,"on":false},{"x":626,"y":631,"on":false},{"x":597,"y":648,"on":true},{"x":558,"y":671,"on":false},{"x":442,"y":671,"on":false},{"x":403,"y":648,"on":true},{"x":373,"y":631,"on":false},{"x":358,"y":604,"on":true},{"x":342,"y":576,"on":false},{"x":342,"y":540,"on":true}]], "references": [], - "instructions": [181,43,32,20,6,2,48,43] + "instructions": "tSsgFAYCMCs=" }, "uniFF32": { "name": "uniFF32", "advanceWidth": 1000, "contours": [[{"x":270,"y":0,"on":true},{"x":270,"y":735,"on":true},{"x":541,"y":735,"on":true},{"x":601,"y":735,"on":false},{"x":646,"y":710,"on":true},{"x":686,"y":687,"on":false},{"x":710,"y":645,"on":true},{"x":738,"y":596,"on":false},{"x":738,"y":455,"on":false},{"x":710,"y":406,"on":true},{"x":686,"y":364,"on":false},{"x":646,"y":341,"on":true},{"x":617,"y":324,"on":false},{"x":580,"y":318,"on":true},{"x":642,"y":244,"on":false},{"x":680,"y":179,"on":true},{"x":738,"y":79,"on":false},{"x":738,"y":0,"on":true},{"x":658,"y":0,"on":true},{"x":658,"y":66,"on":false},{"x":610,"y":149,"on":true},{"x":565,"y":226,"on":false},{"x":482,"y":315,"on":true},{"x":350,"y":315,"on":true},{"x":350,"y":0,"on":true}],[{"x":350,"y":387,"on":true},{"x":541,"y":387,"on":true},{"x":607,"y":387,"on":false},{"x":639,"y":442,"on":true},{"x":658,"y":476,"on":false},{"x":658,"y":575,"on":false},{"x":639,"y":608,"on":true},{"x":608,"y":663,"on":false},{"x":541,"y":663,"on":true},{"x":350,"y":663,"on":true}]], "references": [], - "instructions": [181,32,25,1,0,2,48,43] + "instructions": "tSAZAQACMCs=" }, "uniFF33": { "name": "uniFF33", "advanceWidth": 1000, "contours": [[{"x":265,"y":155,"on":true},{"x":342,"y":173,"on":true},{"x":345,"y":151,"on":false},{"x":357,"y":132,"on":true},{"x":374,"y":102,"on":false},{"x":404,"y":85,"on":true},{"x":441,"y":64,"on":false},{"x":497,"y":64,"on":true},{"x":556,"y":64,"on":false},{"x":594,"y":86,"on":true},{"x":622,"y":102,"on":false},{"x":637,"y":128,"on":true},{"x":651,"y":152,"on":false},{"x":650,"y":179,"on":true},{"x":650,"y":209,"on":false},{"x":634,"y":236,"on":true},{"x":614,"y":270,"on":false},{"x":573,"y":294,"on":true},{"x":547,"y":309,"on":false},{"x":492,"y":328,"on":true},{"x":420,"y":353,"on":false},{"x":385,"y":373,"on":true},{"x":327,"y":406,"on":false},{"x":297,"y":459,"on":true},{"x":270,"y":505,"on":false},{"x":270,"y":555,"on":true},{"x":270,"y":603,"on":false},{"x":293,"y":644,"on":true},{"x":317,"y":685,"on":false},{"x":361,"y":710,"on":true},{"x":419,"y":743,"on":false},{"x":503,"y":743,"on":true},{"x":586,"y":743,"on":false},{"x":642,"y":711,"on":true},{"x":687,"y":685,"on":false},{"x":713,"y":640,"on":true},{"x":730,"y":611,"on":false},{"x":735,"y":580,"on":true},{"x":658,"y":562,"on":true},{"x":655,"y":584,"on":false},{"x":643,"y":603,"on":true},{"x":626,"y":633,"on":false},{"x":596,"y":650,"on":true},{"x":559,"y":671,"on":false},{"x":503,"y":671,"on":true},{"x":444,"y":671,"on":false},{"x":406,"y":649,"on":true},{"x":378,"y":633,"on":false},{"x":363,"y":607,"on":true},{"x":349,"y":583,"on":false},{"x":350,"y":556,"on":true},{"x":350,"y":526,"on":false},{"x":366,"y":499,"on":true},{"x":386,"y":465,"on":false},{"x":427,"y":441,"on":true},{"x":453,"y":426,"on":false},{"x":508,"y":407,"on":true},{"x":580,"y":382,"on":false},{"x":615,"y":362,"on":true},{"x":673,"y":329,"on":false},{"x":703,"y":276,"on":true},{"x":730,"y":230,"on":false},{"x":730,"y":180,"on":true},{"x":730,"y":132,"on":false},{"x":707,"y":91,"on":true},{"x":683,"y":50,"on":false},{"x":639,"y":25,"on":true},{"x":581,"y":-8,"on":false},{"x":497,"y":-8,"on":true},{"x":414,"y":-8,"on":false},{"x":358,"y":24,"on":true},{"x":313,"y":50,"on":false},{"x":287,"y":95,"on":true},{"x":270,"y":124,"on":false}]], "references": [], - "instructions": [179,67,30,1,48,43] + "instructions": "s0MeATAr" }, "uniFF34": { "name": "uniFF34", "advanceWidth": 1000, "contours": [[{"x":270,"y":663,"on":true},{"x":270,"y":735,"on":true},{"x":730,"y":735,"on":true},{"x":730,"y":663,"on":true},{"x":540,"y":663,"on":true},{"x":540,"y":0,"on":true},{"x":460,"y":0,"on":true},{"x":460,"y":663,"on":true}]], "references": [], - "instructions": [179,5,1,1,48,43] + "instructions": "swUBATAr" }, "uniFF35": { "name": "uniFF35", "advanceWidth": 1000, "contours": [[{"x":270,"y":195,"on":true},{"x":270,"y":735,"on":true},{"x":350,"y":735,"on":true},{"x":350,"y":195,"on":true},{"x":350,"y":120,"on":false},{"x":411,"y":85,"on":true},{"x":447,"y":64,"on":false},{"x":553,"y":64,"on":false},{"x":589,"y":85,"on":true},{"x":650,"y":120,"on":false},{"x":650,"y":195,"on":true},{"x":650,"y":735,"on":true},{"x":730,"y":735,"on":true},{"x":730,"y":195,"on":true},{"x":730,"y":78,"on":false},{"x":636,"y":24,"on":true},{"x":581,"y":-8,"on":false},{"x":420,"y":-8,"on":false},{"x":364,"y":24,"on":true},{"x":270,"y":78,"on":false}]], "references": [], - "instructions": [179,16,1,1,48,43] + "instructions": "sxABATAr" }, "uniFF36": { "name": "uniFF36", "advanceWidth": 1000, "contours": [[{"x":270,"y":662,"on":true},{"x":270,"y":735,"on":true},{"x":350,"y":735,"on":true},{"x":350,"y":662,"on":true},{"x":350,"y":480,"on":false},{"x":500,"y":73,"on":true},{"x":650,"y":480,"on":false},{"x":650,"y":662,"on":true},{"x":650,"y":735,"on":true},{"x":730,"y":735,"on":true},{"x":730,"y":662,"on":true},{"x":730,"y":462,"on":false},{"x":540,"y":0,"on":true},{"x":460,"y":0,"on":true},{"x":270,"y":462,"on":false}]], "references": [], - "instructions": [179,12,1,1,48,43] + "instructions": "swwBATAr" }, "uniFF37": { "name": "uniFF37", "advanceWidth": 1000, "contours": [[{"x":270,"y":551,"on":true},{"x":270,"y":735,"on":true},{"x":350,"y":735,"on":true},{"x":350,"y":551,"on":true},{"x":350,"y":414,"on":false},{"x":390,"y":128,"on":true},{"x":469,"y":441,"on":true},{"x":531,"y":441,"on":true},{"x":610,"y":128,"on":true},{"x":650,"y":414,"on":false},{"x":650,"y":551,"on":true},{"x":650,"y":735,"on":true},{"x":730,"y":735,"on":true},{"x":730,"y":551,"on":true},{"x":730,"y":384,"on":false},{"x":640,"y":0,"on":true},{"x":579,"y":0,"on":true},{"x":500,"y":317,"on":true},{"x":421,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":270,"y":384,"on":false}]], "references": [], - "instructions": [179,15,1,1,48,43] + "instructions": "sw8BATAr" }, "uniFF38": { "name": "uniFF38", "advanceWidth": 1000, "contours": [[{"x":270,"y":0,"on":true},{"x":270,"y":37,"on":true},{"x":270,"y":112,"on":false},{"x":314,"y":188,"on":true},{"x":331,"y":218,"on":false},{"x":355,"y":247,"on":true},{"x":451,"y":368,"on":true},{"x":355,"y":488,"on":true},{"x":332,"y":517,"on":false},{"x":314,"y":547,"on":true},{"x":270,"y":623,"on":false},{"x":270,"y":698,"on":true},{"x":270,"y":735,"on":true},{"x":350,"y":735,"on":true},{"x":350,"y":698,"on":true},{"x":350,"y":640,"on":false},{"x":384,"y":581,"on":true},{"x":397,"y":558,"on":false},{"x":417,"y":533,"on":true},{"x":500,"y":429,"on":true},{"x":583,"y":533,"on":true},{"x":602,"y":557,"on":false},{"x":616,"y":581,"on":true},{"x":650,"y":640,"on":false},{"x":650,"y":698,"on":true},{"x":650,"y":735,"on":true},{"x":730,"y":735,"on":true},{"x":730,"y":698,"on":true},{"x":730,"y":623,"on":false},{"x":686,"y":547,"on":true},{"x":669,"y":517,"on":false},{"x":645,"y":488,"on":true},{"x":549,"y":368,"on":true},{"x":645,"y":247,"on":true},{"x":668,"y":218,"on":false},{"x":686,"y":188,"on":true},{"x":730,"y":112,"on":false},{"x":730,"y":37,"on":true},{"x":730,"y":0,"on":true},{"x":650,"y":0,"on":true},{"x":650,"y":37,"on":true},{"x":650,"y":95,"on":false},{"x":616,"y":154,"on":true},{"x":603,"y":177,"on":false},{"x":583,"y":202,"on":true},{"x":500,"y":306,"on":true},{"x":417,"y":202,"on":true},{"x":398,"y":178,"on":false},{"x":384,"y":154,"on":true},{"x":350,"y":95,"on":false},{"x":350,"y":37,"on":true},{"x":350,"y":0,"on":true}]], "references": [], - "instructions": [179,12,0,1,48,43] + "instructions": "swwAATAr" }, "uniFF39": { "name": "uniFF39", "advanceWidth": 1000, "contours": [[{"x":270,"y":691,"on":true},{"x":270,"y":735,"on":true},{"x":350,"y":735,"on":true},{"x":350,"y":691,"on":true},{"x":350,"y":603,"on":false},{"x":402,"y":514,"on":true},{"x":410,"y":500,"on":false},{"x":419,"y":485,"on":true},{"x":500,"y":364,"on":true},{"x":581,"y":485,"on":true},{"x":590,"y":499,"on":false},{"x":598,"y":514,"on":true},{"x":650,"y":604,"on":false},{"x":650,"y":691,"on":true},{"x":650,"y":735,"on":true},{"x":730,"y":735,"on":true},{"x":730,"y":691,"on":true},{"x":730,"y":586,"on":false},{"x":668,"y":479,"on":true},{"x":658,"y":462,"on":false},{"x":647,"y":446,"on":true},{"x":540,"y":284,"on":true},{"x":540,"y":0,"on":true},{"x":460,"y":0,"on":true},{"x":460,"y":284,"on":true},{"x":353,"y":446,"on":true},{"x":342,"y":463,"on":false},{"x":332,"y":479,"on":true},{"x":270,"y":586,"on":false}]], "references": [], - "instructions": [179,22,1,1,48,43] + "instructions": "sxYBATAr" }, "uniFF3A": { "name": "uniFF3A", "advanceWidth": 1000, "contours": [[{"x":270,"y":0,"on":true},{"x":270,"y":72,"on":true},{"x":638,"y":663,"on":true},{"x":270,"y":663,"on":true},{"x":270,"y":735,"on":true},{"x":730,"y":735,"on":true},{"x":730,"y":663,"on":true},{"x":362,"y":72,"on":true},{"x":730,"y":72,"on":true},{"x":730,"y":0,"on":true}]], "references": [], - "instructions": [179,4,0,1,48,43] + "instructions": "swQAATAr" }, "uniFF3B": { "name": "uniFF3B", "advanceWidth": 1000, "contours": [[{"x":339,"y":-181,"on":true},{"x":339,"y":844,"on":true},{"x":684,"y":844,"on":true},{"x":684,"y":772,"on":true},{"x":419,"y":772,"on":true},{"x":419,"y":-109,"on":true},{"x":684,"y":-109,"on":true},{"x":684,"y":-181,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uniFF3C": { "name": "uniFF3C", "advanceWidth": 1000, "contours": [[{"x":270,"y":844,"on":true},{"x":644,"y":-181,"on":true},{"x":730,"y":-181,"on":true},{"x":356,"y":844,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uniFF3D": { "name": "uniFF3D", "advanceWidth": 1000, "contours": [[{"x":316,"y":-109,"on":true},{"x":581,"y":-109,"on":true},{"x":581,"y":772,"on":true},{"x":316,"y":772,"on":true},{"x":316,"y":844,"on":true},{"x":661,"y":844,"on":true},{"x":661,"y":-181,"on":true},{"x":316,"y":-181,"on":true}]], "references": [], - "instructions": [179,6,4,1,48,43] + "instructions": "swYEATAr" }, "uniFF3E": { "name": "uniFF3E", "advanceWidth": 1000, "contours": [[{"x":279,"y":590,"on":true},{"x":458,"y":775,"on":true},{"x":542,"y":775,"on":true},{"x":721,"y":590,"on":true},{"x":658,"y":540,"on":true},{"x":500,"y":726,"on":true},{"x":342,"y":540,"on":true}]], "references": [], - "instructions": [179,4,1,1,48,43] + "instructions": "swQBATAr" }, "uniFF3F": { "name": "uniFF3F", "advanceWidth": 1000, "contours": [], "references": [{"glyph":"uniFF0D","x":0,"y":-295,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,0,1,184,254,217,176,51,43] + "instructions": "sQABuP7ZsDMr" }, "uniFF40": { "name": "uniFF40", "advanceWidth": 1000, "contours": [[{"x":316,"y":729,"on":true},{"x":377,"y":786,"on":true},{"x":574,"y":585,"on":true},{"x":524,"y":538,"on":true}]], "references": [], - "instructions": [179,3,1,1,48,43] + "instructions": "swMBATAr" }, "uniFF41": { "name": "uniFF41", "advanceWidth": 1000, "contours": [[{"x":262,"y":149,"on":true},{"x":262,"y":189,"on":false},{"x":279,"y":218,"on":true},{"x":299,"y":253,"on":false},{"x":341,"y":277,"on":true},{"x":410,"y":317,"on":false},{"x":523,"y":317,"on":true},{"x":650,"y":317,"on":true},{"x":650,"y":363,"on":true},{"x":650,"y":388,"on":false},{"x":640,"y":405,"on":true},{"x":627,"y":428,"on":false},{"x":601,"y":443,"on":true},{"x":561,"y":466,"on":false},{"x":497,"y":466,"on":true},{"x":439,"y":466,"on":false},{"x":401,"y":444,"on":true},{"x":370,"y":426,"on":false},{"x":352,"y":395,"on":true},{"x":346,"y":385,"on":false},{"x":342,"y":375,"on":true},{"x":268,"y":400,"on":true},{"x":274,"y":417,"on":false},{"x":282,"y":432,"on":true},{"x":309,"y":478,"on":false},{"x":356,"y":506,"on":true},{"x":412,"y":538,"on":false},{"x":497,"y":538,"on":true},{"x":588,"y":538,"on":false},{"x":647,"y":504,"on":true},{"x":688,"y":480,"on":false},{"x":711,"y":441,"on":true},{"x":730,"y":408,"on":false},{"x":730,"y":363,"on":true},{"x":730,"y":0,"on":true},{"x":650,"y":0,"on":true},{"x":650,"y":75,"on":true},{"x":627,"y":44,"on":false},{"x":592,"y":23,"on":true},{"x":537,"y":-9,"on":false},{"x":460,"y":-8,"on":true},{"x":385,"y":-8,"on":false},{"x":336,"y":20,"on":true},{"x":300,"y":41,"on":false},{"x":281,"y":75,"on":true},{"x":262,"y":107,"on":false}],[{"x":342,"y":169,"on":false},{"x":342,"y":131,"on":false},{"x":351,"y":116,"on":true},{"x":361,"y":98,"on":false},{"x":383,"y":85,"on":true},{"x":420,"y":64,"on":false},{"x":481,"y":64,"on":true},{"x":544,"y":64,"on":false},{"x":587,"y":89,"on":true},{"x":618,"y":107,"on":false},{"x":634,"y":135,"on":true},{"x":650,"y":162,"on":false},{"x":650,"y":198,"on":true},{"x":650,"y":245,"on":true},{"x":523,"y":245,"on":true},{"x":435,"y":245,"on":false},{"x":386,"y":217,"on":true},{"x":362,"y":203,"on":false},{"x":351,"y":184,"on":true}]], "references": [], - "instructions": [181,59,51,39,26,2,48,43] + "instructions": "tTszJxoCMCs=" }, "uniFF42": { "name": "uniFF42", "advanceWidth": 1000, "contours": [[{"x":270,"y":0,"on":true},{"x":270,"y":735,"on":true},{"x":350,"y":735,"on":true},{"x":350,"y":451,"on":true},{"x":375,"y":489,"on":false},{"x":413,"y":512,"on":true},{"x":458,"y":538,"on":false},{"x":522,"y":538,"on":true},{"x":588,"y":538,"on":false},{"x":637,"y":510,"on":true},{"x":682,"y":484,"on":false},{"x":707,"y":439,"on":true},{"x":738,"y":385,"on":false},{"x":738,"y":310,"on":true},{"x":738,"y":220,"on":true},{"x":738,"y":144,"on":false},{"x":707,"y":91,"on":true},{"x":681,"y":46,"on":false},{"x":637,"y":20,"on":true},{"x":589,"y":-8,"on":false},{"x":522,"y":-8,"on":true},{"x":459,"y":-8,"on":false},{"x":413,"y":18,"on":true},{"x":374,"y":40,"on":false},{"x":350,"y":79,"on":true},{"x":350,"y":0,"on":true}],[{"x":350,"y":220,"on":true},{"x":350,"y":169,"on":false},{"x":371,"y":132,"on":true},{"x":389,"y":101,"on":false},{"x":420,"y":83,"on":true},{"x":454,"y":64,"on":false},{"x":501,"y":64,"on":true},{"x":552,"y":64,"on":false},{"x":587,"y":85,"on":true},{"x":619,"y":103,"on":false},{"x":637,"y":135,"on":true},{"x":658,"y":171,"on":false},{"x":658,"y":220,"on":true},{"x":658,"y":310,"on":true},{"x":658,"y":360,"on":false},{"x":637,"y":395,"on":true},{"x":619,"y":426,"on":false},{"x":587,"y":445,"on":true},{"x":551,"y":466,"on":false},{"x":501,"y":466,"on":true},{"x":454,"y":466,"on":false},{"x":420,"y":447,"on":true},{"x":389,"y":429,"on":false},{"x":371,"y":398,"on":true},{"x":350,"y":362,"on":false},{"x":350,"y":310,"on":true}]], "references": [], - "instructions": [181,44,31,19,1,2,48,43] + "instructions": "tSwfEwECMCs=" }, "uniFF43": { "name": "uniFF43", "advanceWidth": 1000, "contours": [[{"x":262,"y":220,"on":true},{"x":262,"y":310,"on":true},{"x":262,"y":380,"on":false},{"x":292,"y":432,"on":true},{"x":319,"y":479,"on":false},{"x":366,"y":506,"on":true},{"x":422,"y":538,"on":false},{"x":502,"y":538,"on":true},{"x":584,"y":538,"on":false},{"x":641,"y":505,"on":true},{"x":687,"y":479,"on":false},{"x":713,"y":433,"on":true},{"x":729,"y":406,"on":false},{"x":735,"y":375,"on":true},{"x":659,"y":354,"on":true},{"x":655,"y":376,"on":false},{"x":643,"y":395,"on":true},{"x":625,"y":426,"on":false},{"x":595,"y":444,"on":true},{"x":557,"y":466,"on":false},{"x":502,"y":466,"on":true},{"x":450,"y":466,"on":false},{"x":413,"y":445,"on":true},{"x":381,"y":427,"on":false},{"x":363,"y":395,"on":true},{"x":342,"y":359,"on":false},{"x":342,"y":310,"on":true},{"x":342,"y":220,"on":true},{"x":342,"y":171,"on":false},{"x":363,"y":135,"on":true},{"x":381,"y":103,"on":false},{"x":413,"y":85,"on":true},{"x":450,"y":64,"on":false},{"x":502,"y":64,"on":true},{"x":557,"y":64,"on":false},{"x":595,"y":86,"on":true},{"x":626,"y":104,"on":false},{"x":643,"y":135,"on":true},{"x":654,"y":155,"on":false},{"x":659,"y":176,"on":true},{"x":735,"y":155,"on":true},{"x":729,"y":125,"on":false},{"x":713,"y":97,"on":true},{"x":686,"y":51,"on":false},{"x":641,"y":25,"on":true},{"x":584,"y":-8,"on":false},{"x":502,"y":-8,"on":true},{"x":422,"y":-8,"on":false},{"x":366,"y":24,"on":true},{"x":318,"y":52,"on":false},{"x":292,"y":98,"on":true},{"x":262,"y":149,"on":false}]], "references": [], - "instructions": [179,45,6,1,48,43] + "instructions": "sy0GATAr" }, "uniFF44": { "name": "uniFF44", "advanceWidth": 1000, "contours": [[{"x":262,"y":220,"on":true},{"x":262,"y":310,"on":true},{"x":262,"y":386,"on":false},{"x":293,"y":439,"on":true},{"x":319,"y":484,"on":false},{"x":363,"y":510,"on":true},{"x":411,"y":538,"on":false},{"x":478,"y":538,"on":true},{"x":541,"y":538,"on":false},{"x":587,"y":512,"on":true},{"x":626,"y":490,"on":false},{"x":650,"y":451,"on":true},{"x":650,"y":735,"on":true},{"x":730,"y":735,"on":true},{"x":730,"y":0,"on":true},{"x":650,"y":0,"on":true},{"x":650,"y":79,"on":true},{"x":625,"y":41,"on":false},{"x":587,"y":18,"on":true},{"x":564,"y":5,"on":false},{"x":510,"y":-8,"on":false},{"x":478,"y":-8,"on":true},{"x":412,"y":-8,"on":false},{"x":363,"y":20,"on":true},{"x":318,"y":46,"on":false},{"x":293,"y":91,"on":true},{"x":262,"y":145,"on":false}],[{"x":342,"y":220,"on":true},{"x":342,"y":170,"on":false},{"x":363,"y":135,"on":true},{"x":381,"y":104,"on":false},{"x":413,"y":85,"on":true},{"x":449,"y":64,"on":false},{"x":499,"y":64,"on":true},{"x":546,"y":64,"on":false},{"x":580,"y":83,"on":true},{"x":611,"y":101,"on":false},{"x":629,"y":132,"on":true},{"x":650,"y":168,"on":false},{"x":650,"y":220,"on":true},{"x":650,"y":310,"on":true},{"x":650,"y":361,"on":false},{"x":629,"y":398,"on":true},{"x":611,"y":429,"on":false},{"x":580,"y":447,"on":true},{"x":546,"y":466,"on":false},{"x":499,"y":466,"on":true},{"x":448,"y":466,"on":false},{"x":413,"y":445,"on":true},{"x":381,"y":427,"on":false},{"x":363,"y":395,"on":true},{"x":342,"y":359,"on":false},{"x":342,"y":310,"on":true}]], "references": [], - "instructions": [181,45,32,20,12,2,48,43] + "instructions": "tS0gFAwCMCs=" }, "uniFF45": { "name": "uniFF45", "advanceWidth": 1000, "contours": [[{"x":262,"y":220,"on":true},{"x":262,"y":310,"on":true},{"x":262,"y":381,"on":false},{"x":292,"y":432,"on":true},{"x":319,"y":478,"on":false},{"x":366,"y":506,"on":true},{"x":421,"y":538,"on":false},{"x":579,"y":538,"on":false},{"x":634,"y":506,"on":true},{"x":682,"y":478,"on":false},{"x":708,"y":432,"on":true},{"x":738,"y":380,"on":false},{"x":738,"y":310,"on":true},{"x":738,"y":229,"on":true},{"x":342,"y":229,"on":true},{"x":342,"y":220,"on":true},{"x":342,"y":172,"on":false},{"x":362,"y":137,"on":true},{"x":380,"y":105,"on":false},{"x":413,"y":87,"on":true},{"x":452,"y":64,"on":false},{"x":508,"y":64,"on":true},{"x":565,"y":64,"on":false},{"x":604,"y":86,"on":true},{"x":637,"y":105,"on":false},{"x":656,"y":139,"on":true},{"x":662,"y":149,"on":false},{"x":666,"y":159,"on":true},{"x":739,"y":130,"on":true},{"x":733,"y":115,"on":false},{"x":725,"y":101,"on":true},{"x":697,"y":53,"on":false},{"x":649,"y":25,"on":true},{"x":592,"y":-8,"on":false},{"x":508,"y":-8,"on":true},{"x":425,"y":-8,"on":false},{"x":367,"y":26,"on":true},{"x":319,"y":54,"on":false},{"x":291,"y":100,"on":true},{"x":262,"y":150,"on":false}],[{"x":342,"y":301,"on":true},{"x":658,"y":301,"on":true},{"x":658,"y":310,"on":true},{"x":658,"y":360,"on":false},{"x":637,"y":395,"on":true},{"x":619,"y":426,"on":false},{"x":587,"y":445,"on":true},{"x":551,"y":466,"on":false},{"x":449,"y":466,"on":false},{"x":413,"y":445,"on":true},{"x":381,"y":427,"on":false},{"x":363,"y":395,"on":true},{"x":342,"y":359,"on":false},{"x":342,"y":310,"on":true}]], "references": [], - "instructions": [181,47,40,33,6,2,48,43] + "instructions": "tS8oIQYCMCs=" }, "uniFF46": { "name": "uniFF46", "advanceWidth": 1000, "contours": [[{"x":270,"y":428,"on":true},{"x":270,"y":500,"on":true},{"x":411,"y":500,"on":true},{"x":411,"y":595,"on":true},{"x":411,"y":646,"on":false},{"x":432,"y":683,"on":true},{"x":451,"y":716,"on":false},{"x":486,"y":736,"on":true},{"x":526,"y":759,"on":false},{"x":639,"y":759,"on":false},{"x":679,"y":736,"on":true},{"x":713,"y":716,"on":false},{"x":732,"y":683,"on":true},{"x":745,"y":661,"on":false},{"x":750,"y":635,"on":true},{"x":673,"y":616,"on":true},{"x":670,"y":632,"on":false},{"x":662,"y":645,"on":true},{"x":651,"y":664,"on":false},{"x":633,"y":675,"on":true},{"x":612,"y":687,"on":false},{"x":582,"y":687,"on":true},{"x":553,"y":687,"on":false},{"x":532,"y":675,"on":true},{"x":514,"y":664,"on":false},{"x":503,"y":646,"on":true},{"x":491,"y":625,"on":false},{"x":491,"y":595,"on":true},{"x":491,"y":500,"on":true},{"x":707,"y":500,"on":true},{"x":707,"y":428,"on":true},{"x":491,"y":428,"on":true},{"x":491,"y":0,"on":true},{"x":411,"y":0,"on":true},{"x":411,"y":428,"on":true}]], "references": [], - "instructions": [179,32,8,1,48,43] + "instructions": "syAIATAr" }, "uniFF47": { "name": "uniFF47", "advanceWidth": 1000, "contours": [[{"x":250,"y":-45,"on":true},{"x":250,"y":-8,"on":false},{"x":265,"y":19,"on":true},{"x":283,"y":50,"on":false},{"x":319,"y":71,"on":true},{"x":307,"y":82,"on":false},{"x":300,"y":96,"on":true},{"x":287,"y":118,"on":false},{"x":287,"y":144,"on":true},{"x":287,"y":169,"on":false},{"x":300,"y":192,"on":true},{"x":312,"y":213,"on":false},{"x":333,"y":227,"on":true},{"x":301,"y":249,"on":false},{"x":282,"y":280,"on":true},{"x":262,"y":315,"on":false},{"x":262,"y":409,"on":false},{"x":282,"y":444,"on":true},{"x":303,"y":481,"on":false},{"x":345,"y":505,"on":true},{"x":402,"y":538,"on":false},{"x":488,"y":538,"on":true},{"x":530,"y":538,"on":false},{"x":565,"y":530,"on":true},{"x":759,"y":530,"on":true},{"x":759,"y":458,"on":true},{"x":682,"y":460,"on":true},{"x":688,"y":452,"on":false},{"x":693,"y":444,"on":true},{"x":713,"y":409,"on":false},{"x":713,"y":315,"on":false},{"x":693,"y":280,"on":true},{"x":672,"y":243,"on":false},{"x":631,"y":220,"on":true},{"x":574,"y":187,"on":false},{"x":488,"y":187,"on":true},{"x":436,"y":187,"on":false},{"x":395,"y":199,"on":true},{"x":380,"y":194,"on":false},{"x":371,"y":185,"on":true},{"x":358,"y":172,"on":false},{"x":358,"y":137,"on":false},{"x":371,"y":124,"on":true},{"x":391,"y":104,"on":false},{"x":440,"y":105,"on":true},{"x":485,"y":105,"on":false},{"x":530,"y":105,"on":true},{"x":623,"y":105,"on":false},{"x":682,"y":71,"on":true},{"x":718,"y":50,"on":false},{"x":736,"y":20,"on":true},{"x":753,"y":-9,"on":false},{"x":752,"y":-84,"on":false},{"x":735,"y":-115,"on":true},{"x":715,"y":-150,"on":false},{"x":673,"y":-175,"on":true},{"x":607,"y":-213,"on":false},{"x":500,"y":-213,"on":true},{"x":395,"y":-213,"on":false},{"x":329,"y":-175,"on":true},{"x":287,"y":-151,"on":false},{"x":267,"y":-116,"on":true},{"x":249,"y":-85,"on":false}],[{"x":330,"y":-45,"on":true},{"x":330,"y":-64,"on":false},{"x":339,"y":-81,"on":true},{"x":350,"y":-101,"on":false},{"x":375,"y":-114,"on":true},{"x":421,"y":-141,"on":false},{"x":500,"y":-141,"on":true},{"x":581,"y":-141,"on":false},{"x":628,"y":-114,"on":true},{"x":652,"y":-100,"on":false},{"x":664,"y":-80,"on":true},{"x":673,"y":-65,"on":false},{"x":672,"y":-47,"on":true},{"x":672,"y":-30,"on":false},{"x":664,"y":-16,"on":true},{"x":655,"y":-1,"on":false},{"x":637,"y":10,"on":true},{"x":597,"y":33,"on":false},{"x":530,"y":33,"on":true},{"x":496,"y":33,"on":false},{"x":463,"y":33,"on":true},{"x":403,"y":33,"on":false},{"x":366,"y":11,"on":true},{"x":346,"y":0,"on":false},{"x":337,"y":-16,"on":true},{"x":330,"y":-29,"on":false}],[{"x":342,"y":388,"on":false},{"x":342,"y":336,"on":false},{"x":353,"y":317,"on":true},{"x":366,"y":295,"on":false},{"x":391,"y":280,"on":true},{"x":429,"y":258,"on":false},{"x":546,"y":259,"on":false},{"x":584,"y":280,"on":true},{"x":609,"y":294,"on":false},{"x":622,"y":317,"on":true},{"x":633,"y":337,"on":false},{"x":633,"y":388,"on":false},{"x":622,"y":408,"on":true},{"x":609,"y":430,"on":false},{"x":584,"y":444,"on":true},{"x":552,"y":462,"on":false},{"x":505,"y":465,"on":true},{"x":488,"y":466,"on":true},{"x":429,"y":466,"on":false},{"x":391,"y":444,"on":true},{"x":366,"y":430,"on":false},{"x":353,"y":408,"on":true}]], "references": [], - "instructions": [183,106,94,80,68,56,20,3,48,43] + "instructions": "t2peUEQ4FAMwKw==" }, "uniFF48": { "name": "uniFF48", "advanceWidth": 1000, "contours": [[{"x":270,"y":0,"on":true},{"x":270,"y":735,"on":true},{"x":350,"y":735,"on":true},{"x":350,"y":451,"on":true},{"x":375,"y":489,"on":false},{"x":413,"y":512,"on":true},{"x":458,"y":538,"on":false},{"x":584,"y":538,"on":false},{"x":630,"y":512,"on":true},{"x":673,"y":487,"on":false},{"x":699,"y":442,"on":true},{"x":730,"y":388,"on":false},{"x":730,"y":310,"on":true},{"x":730,"y":0,"on":true},{"x":650,"y":0,"on":true},{"x":650,"y":310,"on":true},{"x":650,"y":361,"on":false},{"x":629,"y":398,"on":true},{"x":611,"y":429,"on":false},{"x":580,"y":447,"on":true},{"x":546,"y":466,"on":false},{"x":453,"y":466,"on":false},{"x":420,"y":447,"on":true},{"x":389,"y":429,"on":false},{"x":371,"y":398,"on":true},{"x":350,"y":362,"on":false},{"x":350,"y":310,"on":true},{"x":350,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uniFF49": { "name": "uniFF49", "advanceWidth": 1000, "contours": [[{"x":281,"y":0,"on":true},{"x":281,"y":72,"on":true},{"x":469,"y":72,"on":true},{"x":469,"y":458,"on":true},{"x":299,"y":458,"on":true},{"x":299,"y":530,"on":true},{"x":549,"y":530,"on":true},{"x":549,"y":72,"on":true},{"x":719,"y":72,"on":true},{"x":719,"y":0,"on":true}],[{"x":438,"y":665,"on":false},{"x":438,"y":705,"on":false},{"x":446,"y":719,"on":true},{"x":453,"y":732,"on":false},{"x":466,"y":739,"on":true},{"x":480,"y":747,"on":false},{"x":520,"y":748,"on":false},{"x":534,"y":739,"on":true},{"x":547,"y":732,"on":false},{"x":554,"y":719,"on":true},{"x":562,"y":705,"on":false},{"x":562,"y":665,"on":false},{"x":554,"y":651,"on":true},{"x":547,"y":638,"on":false},{"x":534,"y":631,"on":true},{"x":520,"y":622,"on":false},{"x":480,"y":622,"on":false},{"x":466,"y":631,"on":true},{"x":453,"y":638,"on":false},{"x":446,"y":651,"on":true}]], "references": [], - "instructions": [181,25,16,5,0,2,48,43] + "instructions": "tRkQBQACMCs=" }, "uniFF4A": { "name": "uniFF4A", "advanceWidth": 1000, "contours": [[{"x":200,"y":-70,"on":true},{"x":277,"y":-49,"on":true},{"x":280,"y":-68,"on":false},{"x":290,"y":-86,"on":true},{"x":304,"y":-110,"on":false},{"x":327,"y":-124,"on":true},{"x":357,"y":-141,"on":false},{"x":399,"y":-141,"on":true},{"x":437,"y":-141,"on":false},{"x":465,"y":-125,"on":true},{"x":490,"y":-110,"on":false},{"x":505,"y":-84,"on":true},{"x":523,"y":-53,"on":false},{"x":523,"y":-10,"on":true},{"x":523,"y":458,"on":true},{"x":344,"y":458,"on":true},{"x":344,"y":530,"on":true},{"x":603,"y":530,"on":true},{"x":603,"y":-10,"on":true},{"x":603,"y":-75,"on":false},{"x":576,"y":-121,"on":true},{"x":552,"y":-162,"on":false},{"x":511,"y":-186,"on":true},{"x":464,"y":-213,"on":false},{"x":399,"y":-213,"on":true},{"x":330,"y":-213,"on":false},{"x":282,"y":-185,"on":true},{"x":243,"y":-163,"on":false},{"x":220,"y":-124,"on":true},{"x":204,"y":-99,"on":false}],[{"x":487,"y":665,"on":false},{"x":487,"y":705,"on":false},{"x":495,"y":719,"on":true},{"x":502,"y":732,"on":false},{"x":515,"y":739,"on":true},{"x":529,"y":747,"on":false},{"x":570,"y":748,"on":false},{"x":584,"y":739,"on":true},{"x":597,"y":732,"on":false},{"x":604,"y":719,"on":true},{"x":612,"y":705,"on":false},{"x":612,"y":665,"on":false},{"x":604,"y":651,"on":true},{"x":597,"y":638,"on":false},{"x":584,"y":631,"on":true},{"x":570,"y":622,"on":false},{"x":530,"y":622,"on":false},{"x":515,"y":631,"on":true},{"x":502,"y":638,"on":false},{"x":495,"y":651,"on":true}]], "references": [], - "instructions": [181,45,36,23,16,2,48,43] + "instructions": "tS0kFxACMCs=" }, "uniFF4B": { "name": "uniFF4B", "advanceWidth": 1000, "contours": [[{"x":270,"y":0,"on":true},{"x":270,"y":735,"on":true},{"x":350,"y":735,"on":true},{"x":350,"y":290,"on":true},{"x":569,"y":423,"on":false},{"x":617,"y":506,"on":true},{"x":625,"y":519,"on":false},{"x":625,"y":530,"on":true},{"x":730,"y":530,"on":true},{"x":730,"y":517,"on":false},{"x":720,"y":499,"on":true},{"x":679,"y":429,"on":false},{"x":544,"y":330,"on":true},{"x":644,"y":204,"on":false},{"x":693,"y":118,"on":true},{"x":738,"y":40,"on":false},{"x":738,"y":0,"on":true},{"x":658,"y":0,"on":true},{"x":658,"y":32,"on":false},{"x":624,"y":91,"on":true},{"x":580,"y":168,"on":false},{"x":481,"y":286,"on":true},{"x":422,"y":247,"on":false},{"x":350,"y":204,"on":true},{"x":350,"y":0,"on":true}]], "references": [], - "instructions": [179,1,0,1,48,43] + "instructions": "swEAATAr" }, "uniFF4C": { "name": "uniFF4C", "advanceWidth": 1000, "contours": [[{"x":281,"y":0,"on":true},{"x":281,"y":72,"on":true},{"x":469,"y":72,"on":true},{"x":469,"y":663,"on":true},{"x":299,"y":663,"on":true},{"x":299,"y":735,"on":true},{"x":549,"y":735,"on":true},{"x":549,"y":72,"on":true},{"x":719,"y":72,"on":true},{"x":719,"y":0,"on":true}]], "references": [], - "instructions": [179,5,0,1,48,43] + "instructions": "swUAATAr" }, "uniFF4D": { "name": "uniFF4D", "advanceWidth": 1000, "contours": [[{"x":262,"y":0,"on":true},{"x":262,"y":530,"on":true},{"x":342,"y":530,"on":true},{"x":342,"y":495,"on":true},{"x":356,"y":515,"on":false},{"x":375,"y":526,"on":true},{"x":396,"y":538,"on":false},{"x":423,"y":538,"on":true},{"x":451,"y":538,"on":false},{"x":472,"y":525,"on":true},{"x":497,"y":511,"on":false},{"x":514,"y":482,"on":true},{"x":519,"y":473,"on":false},{"x":523,"y":463,"on":true},{"x":527,"y":474,"on":false},{"x":533,"y":484,"on":true},{"x":549,"y":512,"on":false},{"x":573,"y":526,"on":true},{"x":594,"y":538,"on":false},{"x":621,"y":538,"on":true},{"x":649,"y":538,"on":false},{"x":670,"y":525,"on":true},{"x":695,"y":511,"on":false},{"x":712,"y":482,"on":true},{"x":738,"y":437,"on":false},{"x":738,"y":365,"on":true},{"x":738,"y":0,"on":true},{"x":658,"y":0,"on":true},{"x":658,"y":365,"on":true},{"x":658,"y":426,"on":false},{"x":632,"y":452,"on":true},{"x":618,"y":466,"on":false},{"x":580,"y":466,"on":false},{"x":566,"y":452,"on":true},{"x":540,"y":426,"on":false},{"x":540,"y":365,"on":true},{"x":540,"y":0,"on":true},{"x":460,"y":0,"on":true},{"x":460,"y":365,"on":true},{"x":460,"y":426,"on":false},{"x":434,"y":452,"on":true},{"x":420,"y":466,"on":false},{"x":382,"y":466,"on":false},{"x":368,"y":452,"on":true},{"x":342,"y":426,"on":false},{"x":342,"y":365,"on":true},{"x":342,"y":0,"on":true}]], "references": [], - "instructions": [179,6,0,1,48,43] + "instructions": "swYAATAr" }, "uniFF4E": { "name": "uniFF4E", "advanceWidth": 1000, "contours": [[{"x":270,"y":0,"on":true},{"x":270,"y":530,"on":true},{"x":350,"y":530,"on":true},{"x":350,"y":451,"on":true},{"x":375,"y":489,"on":false},{"x":413,"y":512,"on":true},{"x":458,"y":538,"on":false},{"x":584,"y":538,"on":false},{"x":630,"y":512,"on":true},{"x":673,"y":487,"on":false},{"x":699,"y":442,"on":true},{"x":730,"y":388,"on":false},{"x":730,"y":310,"on":true},{"x":730,"y":0,"on":true},{"x":650,"y":0,"on":true},{"x":650,"y":310,"on":true},{"x":650,"y":361,"on":false},{"x":629,"y":398,"on":true},{"x":611,"y":429,"on":false},{"x":580,"y":447,"on":true},{"x":546,"y":466,"on":false},{"x":453,"y":466,"on":false},{"x":420,"y":447,"on":true},{"x":389,"y":429,"on":false},{"x":371,"y":398,"on":true},{"x":350,"y":362,"on":false},{"x":350,"y":310,"on":true},{"x":350,"y":0,"on":true}]], "references": [], - "instructions": [179,6,0,1,48,43] + "instructions": "swYAATAr" }, "uniFF4F": { "name": "uniFF4F", "advanceWidth": 1000, "contours": [[{"x":262,"y":220,"on":true},{"x":262,"y":310,"on":true},{"x":262,"y":381,"on":false},{"x":292,"y":432,"on":true},{"x":319,"y":478,"on":false},{"x":366,"y":506,"on":true},{"x":421,"y":538,"on":false},{"x":579,"y":538,"on":false},{"x":634,"y":506,"on":true},{"x":682,"y":478,"on":false},{"x":708,"y":432,"on":true},{"x":738,"y":380,"on":false},{"x":738,"y":310,"on":true},{"x":738,"y":220,"on":true},{"x":738,"y":149,"on":false},{"x":708,"y":98,"on":true},{"x":681,"y":52,"on":false},{"x":634,"y":24,"on":true},{"x":579,"y":-8,"on":false},{"x":421,"y":-8,"on":false},{"x":366,"y":24,"on":true},{"x":318,"y":52,"on":false},{"x":292,"y":98,"on":true},{"x":262,"y":150,"on":false}],[{"x":342,"y":220,"on":true},{"x":342,"y":170,"on":false},{"x":363,"y":135,"on":true},{"x":381,"y":104,"on":false},{"x":413,"y":85,"on":true},{"x":449,"y":64,"on":false},{"x":551,"y":64,"on":false},{"x":587,"y":85,"on":true},{"x":619,"y":103,"on":false},{"x":637,"y":135,"on":true},{"x":658,"y":171,"on":false},{"x":658,"y":220,"on":true},{"x":658,"y":310,"on":true},{"x":658,"y":360,"on":false},{"x":637,"y":395,"on":true},{"x":619,"y":426,"on":false},{"x":587,"y":445,"on":true},{"x":551,"y":466,"on":false},{"x":449,"y":466,"on":false},{"x":413,"y":445,"on":true},{"x":381,"y":427,"on":false},{"x":363,"y":395,"on":true},{"x":342,"y":359,"on":false},{"x":342,"y":310,"on":true}]], "references": [], - "instructions": [181,41,29,18,6,2,48,43] + "instructions": "tSkdEgYCMCs=" }, "uniFF50": { "name": "uniFF50", "advanceWidth": 1000, "contours": [[{"x":270,"y":-205,"on":true},{"x":270,"y":530,"on":true},{"x":350,"y":530,"on":true},{"x":350,"y":451,"on":true},{"x":375,"y":489,"on":false},{"x":413,"y":512,"on":true},{"x":458,"y":538,"on":false},{"x":522,"y":538,"on":true},{"x":588,"y":538,"on":false},{"x":637,"y":510,"on":true},{"x":682,"y":484,"on":false},{"x":707,"y":439,"on":true},{"x":738,"y":385,"on":false},{"x":738,"y":310,"on":true},{"x":738,"y":220,"on":true},{"x":738,"y":144,"on":false},{"x":707,"y":91,"on":true},{"x":681,"y":46,"on":false},{"x":637,"y":20,"on":true},{"x":589,"y":-8,"on":false},{"x":522,"y":-8,"on":true},{"x":459,"y":-8,"on":false},{"x":413,"y":18,"on":true},{"x":374,"y":40,"on":false},{"x":350,"y":79,"on":true},{"x":350,"y":-205,"on":true}],[{"x":350,"y":220,"on":true},{"x":350,"y":169,"on":false},{"x":371,"y":132,"on":true},{"x":389,"y":101,"on":false},{"x":420,"y":83,"on":true},{"x":454,"y":64,"on":false},{"x":501,"y":64,"on":true},{"x":552,"y":64,"on":false},{"x":587,"y":85,"on":true},{"x":619,"y":103,"on":false},{"x":637,"y":135,"on":true},{"x":658,"y":171,"on":false},{"x":658,"y":220,"on":true},{"x":658,"y":310,"on":true},{"x":658,"y":360,"on":false},{"x":637,"y":395,"on":true},{"x":619,"y":426,"on":false},{"x":587,"y":445,"on":true},{"x":551,"y":466,"on":false},{"x":501,"y":466,"on":true},{"x":454,"y":466,"on":false},{"x":420,"y":447,"on":true},{"x":389,"y":429,"on":false},{"x":371,"y":398,"on":true},{"x":350,"y":362,"on":false},{"x":350,"y":310,"on":true}]], "references": [], - "instructions": [181,44,31,6,0,2,48,43] + "instructions": "tSwfBgACMCs=" }, "uniFF51": { "name": "uniFF51", "advanceWidth": 1000, "contours": [[{"x":262,"y":220,"on":true},{"x":262,"y":310,"on":true},{"x":262,"y":386,"on":false},{"x":293,"y":439,"on":true},{"x":319,"y":484,"on":false},{"x":363,"y":510,"on":true},{"x":411,"y":538,"on":false},{"x":478,"y":538,"on":true},{"x":541,"y":538,"on":false},{"x":587,"y":512,"on":true},{"x":626,"y":490,"on":false},{"x":650,"y":451,"on":true},{"x":650,"y":530,"on":true},{"x":730,"y":530,"on":true},{"x":730,"y":-205,"on":true},{"x":650,"y":-205,"on":true},{"x":650,"y":79,"on":true},{"x":625,"y":41,"on":false},{"x":587,"y":18,"on":true},{"x":564,"y":5,"on":false},{"x":510,"y":-8,"on":false},{"x":478,"y":-8,"on":true},{"x":412,"y":-8,"on":false},{"x":363,"y":20,"on":true},{"x":318,"y":46,"on":false},{"x":293,"y":91,"on":true},{"x":262,"y":145,"on":false}],[{"x":342,"y":220,"on":true},{"x":342,"y":170,"on":false},{"x":363,"y":135,"on":true},{"x":381,"y":104,"on":false},{"x":413,"y":85,"on":true},{"x":449,"y":64,"on":false},{"x":499,"y":64,"on":true},{"x":546,"y":64,"on":false},{"x":580,"y":83,"on":true},{"x":611,"y":101,"on":false},{"x":629,"y":132,"on":true},{"x":650,"y":168,"on":false},{"x":650,"y":220,"on":true},{"x":650,"y":310,"on":true},{"x":650,"y":361,"on":false},{"x":629,"y":398,"on":true},{"x":611,"y":429,"on":false},{"x":580,"y":447,"on":true},{"x":546,"y":466,"on":false},{"x":499,"y":466,"on":true},{"x":448,"y":466,"on":false},{"x":413,"y":445,"on":true},{"x":381,"y":427,"on":false},{"x":363,"y":395,"on":true},{"x":342,"y":359,"on":false},{"x":342,"y":310,"on":true}]], "references": [], - "instructions": [181,45,32,14,6,2,48,43] + "instructions": "tS0gDgYCMCs=" }, "uniFF52": { "name": "uniFF52", "advanceWidth": 1000, "contours": [[{"x":330,"y":0,"on":true},{"x":330,"y":530,"on":true},{"x":410,"y":530,"on":true},{"x":410,"y":426,"on":true},{"x":415,"y":436,"on":false},{"x":420,"y":445,"on":true},{"x":447,"y":491,"on":false},{"x":488,"y":515,"on":true},{"x":527,"y":538,"on":false},{"x":579,"y":538,"on":true},{"x":636,"y":538,"on":false},{"x":680,"y":513,"on":true},{"x":717,"y":492,"on":false},{"x":737,"y":456,"on":true},{"x":742,"y":448,"on":false},{"x":745,"y":440,"on":true},{"x":670,"y":406,"on":true},{"x":658,"y":436,"on":false},{"x":629,"y":452,"on":true},{"x":605,"y":466,"on":false},{"x":573,"y":466,"on":true},{"x":525,"y":466,"on":false},{"x":457,"y":426,"on":false},{"x":436,"y":391,"on":true},{"x":410,"y":346,"on":false},{"x":410,"y":281,"on":true},{"x":410,"y":0,"on":true}]], "references": [], - "instructions": [179,8,0,1,48,43] + "instructions": "swgAATAr" }, "uniFF53": { "name": "uniFF53", "advanceWidth": 1000, "contours": [[{"x":267,"y":110,"on":true},{"x":339,"y":141,"on":true},{"x":358,"y":107,"on":false},{"x":393,"y":87,"on":true},{"x":433,"y":64,"on":false},{"x":497,"y":64,"on":true},{"x":572,"y":64,"on":false},{"x":615,"y":88,"on":true},{"x":635,"y":100,"on":false},{"x":644,"y":115,"on":true},{"x":651,"y":128,"on":false},{"x":651,"y":143,"on":true},{"x":651,"y":160,"on":false},{"x":642,"y":176,"on":true},{"x":631,"y":194,"on":false},{"x":610,"y":206,"on":true},{"x":577,"y":225,"on":false},{"x":506,"y":225,"on":true},{"x":500,"y":225,"on":false},{"x":493,"y":225,"on":true},{"x":399,"y":225,"on":false},{"x":349,"y":254,"on":true},{"x":310,"y":276,"on":false},{"x":289,"y":313,"on":true},{"x":269,"y":348,"on":false},{"x":269,"y":387,"on":true},{"x":269,"y":422,"on":false},{"x":285,"y":450,"on":true},{"x":303,"y":481,"on":false},{"x":340,"y":502,"on":true},{"x":402,"y":538,"on":false},{"x":503,"y":538,"on":true},{"x":593,"y":538,"on":false},{"x":651,"y":505,"on":true},{"x":705,"y":474,"on":false},{"x":733,"y":420,"on":true},{"x":661,"y":389,"on":true},{"x":642,"y":423,"on":false},{"x":607,"y":443,"on":true},{"x":567,"y":466,"on":false},{"x":503,"y":466,"on":true},{"x":428,"y":466,"on":false},{"x":385,"y":442,"on":true},{"x":365,"y":430,"on":false},{"x":356,"y":415,"on":true},{"x":349,"y":402,"on":false},{"x":349,"y":387,"on":true},{"x":349,"y":370,"on":false},{"x":358,"y":354,"on":true},{"x":369,"y":336,"on":false},{"x":390,"y":324,"on":true},{"x":423,"y":305,"on":false},{"x":494,"y":305,"on":true},{"x":500,"y":305,"on":false},{"x":507,"y":305,"on":true},{"x":601,"y":305,"on":false},{"x":651,"y":276,"on":true},{"x":690,"y":254,"on":false},{"x":711,"y":217,"on":true},{"x":731,"y":182,"on":false},{"x":731,"y":143,"on":true},{"x":731,"y":108,"on":false},{"x":715,"y":80,"on":true},{"x":697,"y":49,"on":false},{"x":660,"y":28,"on":true},{"x":598,"y":-8,"on":false},{"x":497,"y":-8,"on":true},{"x":407,"y":-8,"on":false},{"x":349,"y":25,"on":true},{"x":295,"y":56,"on":false}]], "references": [], - "instructions": [179,65,30,1,48,43] + "instructions": "s0EeATAr" }, "uniFF54": { "name": "uniFF54", "advanceWidth": 1000, "contours": [[{"x":257,"y":458,"on":true},{"x":257,"y":530,"on":true},{"x":410,"y":530,"on":true},{"x":410,"y":735,"on":true},{"x":490,"y":735,"on":true},{"x":490,"y":530,"on":true},{"x":695,"y":530,"on":true},{"x":695,"y":458,"on":true},{"x":490,"y":458,"on":true},{"x":490,"y":233,"on":true},{"x":490,"y":165,"on":false},{"x":515,"y":121,"on":true},{"x":532,"y":92,"on":false},{"x":557,"y":77,"on":true},{"x":580,"y":64,"on":false},{"x":610,"y":64,"on":true},{"x":641,"y":64,"on":false},{"x":664,"y":77,"on":true},{"x":690,"y":92,"on":false},{"x":707,"y":122,"on":true},{"x":722,"y":148,"on":false},{"x":728,"y":181,"on":true},{"x":803,"y":155,"on":true},{"x":795,"y":117,"on":false},{"x":776,"y":86,"on":true},{"x":750,"y":41,"on":false},{"x":708,"y":16,"on":true},{"x":666,"y":-8,"on":false},{"x":554,"y":-8,"on":false},{"x":470,"y":40,"on":false},{"x":444,"y":85,"on":true},{"x":410,"y":145,"on":false},{"x":410,"y":233,"on":true},{"x":410,"y":458,"on":true}]], "references": [], - "instructions": [179,27,3,1,48,43] + "instructions": "sxsDATAr" }, "uniFF55": { "name": "uniFF55", "advanceWidth": 1000, "contours": [[{"x":270,"y":220,"on":true},{"x":270,"y":530,"on":true},{"x":350,"y":530,"on":true},{"x":350,"y":220,"on":true},{"x":350,"y":169,"on":false},{"x":371,"y":132,"on":true},{"x":389,"y":101,"on":false},{"x":420,"y":83,"on":true},{"x":454,"y":64,"on":false},{"x":547,"y":64,"on":false},{"x":580,"y":83,"on":true},{"x":611,"y":101,"on":false},{"x":629,"y":132,"on":true},{"x":650,"y":168,"on":false},{"x":650,"y":220,"on":true},{"x":650,"y":530,"on":true},{"x":730,"y":530,"on":true},{"x":730,"y":0,"on":true},{"x":650,"y":0,"on":true},{"x":650,"y":79,"on":true},{"x":625,"y":41,"on":false},{"x":587,"y":18,"on":true},{"x":542,"y":-8,"on":false},{"x":416,"y":-8,"on":false},{"x":370,"y":18,"on":true},{"x":327,"y":43,"on":false},{"x":301,"y":88,"on":true},{"x":270,"y":142,"on":false}]], "references": [], - "instructions": [179,22,1,1,48,43] + "instructions": "sxYBATAr" }, "uniFF56": { "name": "uniFF56", "advanceWidth": 1000, "contours": [[{"x":270,"y":477,"on":true},{"x":270,"y":530,"on":true},{"x":350,"y":530,"on":true},{"x":350,"y":477,"on":true},{"x":350,"y":348,"on":false},{"x":500,"y":58,"on":true},{"x":650,"y":348,"on":false},{"x":650,"y":477,"on":true},{"x":650,"y":530,"on":true},{"x":730,"y":530,"on":true},{"x":730,"y":477,"on":true},{"x":730,"y":333,"on":false},{"x":540,"y":0,"on":true},{"x":460,"y":0,"on":true},{"x":270,"y":333,"on":false}]], "references": [], - "instructions": [179,12,1,1,48,43] + "instructions": "swwBATAr" }, "uniFF57": { "name": "uniFF57", "advanceWidth": 1000, "contours": [[{"x":270,"y":398,"on":true},{"x":270,"y":530,"on":true},{"x":350,"y":530,"on":true},{"x":350,"y":398,"on":true},{"x":350,"y":300,"on":false},{"x":390,"y":94,"on":true},{"x":469,"y":318,"on":true},{"x":531,"y":318,"on":true},{"x":610,"y":94,"on":true},{"x":650,"y":300,"on":false},{"x":650,"y":398,"on":true},{"x":650,"y":530,"on":true},{"x":730,"y":530,"on":true},{"x":730,"y":398,"on":true},{"x":730,"y":277,"on":false},{"x":640,"y":0,"on":true},{"x":579,"y":0,"on":true},{"x":500,"y":229,"on":true},{"x":421,"y":0,"on":true},{"x":360,"y":0,"on":true},{"x":270,"y":278,"on":false}]], "references": [], - "instructions": [179,15,1,1,48,43] + "instructions": "sw8BATAr" }, "uniFF58": { "name": "uniFF58", "advanceWidth": 1000, "contours": [[{"x":270,"y":0,"on":true},{"x":270,"y":5,"on":true},{"x":270,"y":27,"on":false},{"x":292,"y":65,"on":true},{"x":318,"y":110,"on":false},{"x":356,"y":154,"on":true},{"x":450,"y":265,"on":true},{"x":356,"y":376,"on":true},{"x":318,"y":420,"on":false},{"x":292,"y":465,"on":true},{"x":270,"y":503,"on":false},{"x":270,"y":525,"on":true},{"x":270,"y":530,"on":true},{"x":350,"y":530,"on":true},{"x":350,"y":525,"on":true},{"x":350,"y":513,"on":false},{"x":361,"y":493,"on":true},{"x":371,"y":475,"on":false},{"x":416,"y":422,"on":true},{"x":500,"y":324,"on":true},{"x":584,"y":422,"on":true},{"x":629,"y":475,"on":false},{"x":639,"y":493,"on":true},{"x":650,"y":512,"on":false},{"x":650,"y":525,"on":true},{"x":650,"y":530,"on":true},{"x":730,"y":530,"on":true},{"x":730,"y":525,"on":true},{"x":730,"y":503,"on":false},{"x":708,"y":465,"on":true},{"x":682,"y":420,"on":false},{"x":644,"y":376,"on":true},{"x":550,"y":265,"on":true},{"x":644,"y":154,"on":true},{"x":682,"y":110,"on":false},{"x":708,"y":65,"on":true},{"x":730,"y":27,"on":false},{"x":730,"y":5,"on":true},{"x":730,"y":0,"on":true},{"x":650,"y":0,"on":true},{"x":650,"y":5,"on":true},{"x":650,"y":17,"on":false},{"x":639,"y":37,"on":true},{"x":629,"y":55,"on":false},{"x":584,"y":108,"on":true},{"x":500,"y":206,"on":true},{"x":416,"y":108,"on":true},{"x":371,"y":55,"on":false},{"x":361,"y":37,"on":true},{"x":350,"y":18,"on":false},{"x":350,"y":5,"on":true},{"x":350,"y":0,"on":true}]], "references": [], - "instructions": [179,12,0,1,48,43] + "instructions": "swwAATAr" }, "uniFF59": { "name": "uniFF59", "advanceWidth": 1000, "contours": [[{"x":270,"y":493,"on":true},{"x":270,"y":530,"on":true},{"x":350,"y":530,"on":true},{"x":350,"y":493,"on":true},{"x":350,"y":442,"on":false},{"x":387,"y":356,"on":true},{"x":499,"y":95,"on":true},{"x":613,"y":356,"on":true},{"x":650,"y":441,"on":false},{"x":650,"y":493,"on":true},{"x":650,"y":530,"on":true},{"x":730,"y":530,"on":true},{"x":730,"y":493,"on":true},{"x":730,"y":427,"on":false},{"x":686,"y":327,"on":true},{"x":487,"y":-129,"on":true},{"x":478,"y":-150,"on":false},{"x":478,"y":-198,"on":true},{"x":478,"y":-205,"on":true},{"x":398,"y":-205,"on":true},{"x":398,"y":-198,"on":true},{"x":398,"y":-137,"on":false},{"x":413,"y":-100,"on":true},{"x":459,"y":3,"on":true},{"x":314,"y":327,"on":true},{"x":270,"y":425,"on":false}]], "references": [], - "instructions": [179,18,1,1,48,43] + "instructions": "sxIBATAr" }, "uniFF5A": { "name": "uniFF5A", "advanceWidth": 1000, "contours": [[{"x":270,"y":0,"on":true},{"x":270,"y":72,"on":true},{"x":634,"y":458,"on":true},{"x":270,"y":458,"on":true},{"x":270,"y":530,"on":true},{"x":730,"y":530,"on":true},{"x":730,"y":458,"on":true},{"x":366,"y":72,"on":true},{"x":730,"y":72,"on":true},{"x":730,"y":0,"on":true}]], "references": [], - "instructions": [179,4,0,1,48,43] + "instructions": "swQAATAr" }, "uniFF5B": { "name": "uniFF5B", "advanceWidth": 1000, "contours": [[{"x":316,"y":295,"on":true},{"x":316,"y":367,"on":true},{"x":361,"y":367,"on":false},{"x":394,"y":386,"on":true},{"x":423,"y":403,"on":false},{"x":440,"y":432,"on":true},{"x":460,"y":466,"on":false},{"x":460,"y":515,"on":true},{"x":460,"y":660,"on":true},{"x":460,"y":711,"on":false},{"x":482,"y":750,"on":true},{"x":504,"y":788,"on":false},{"x":546,"y":812,"on":true},{"x":601,"y":844,"on":false},{"x":684,"y":844,"on":true},{"x":684,"y":772,"on":true},{"x":629,"y":772,"on":false},{"x":593,"y":751,"on":true},{"x":567,"y":736,"on":false},{"x":553,"y":713,"on":true},{"x":540,"y":690,"on":false},{"x":540,"y":660,"on":true},{"x":540,"y":515,"on":true},{"x":540,"y":445,"on":false},{"x":511,"y":395,"on":true},{"x":488,"y":356,"on":false},{"x":450,"y":331,"on":true},{"x":488,"y":306,"on":false},{"x":511,"y":267,"on":true},{"x":540,"y":217,"on":false},{"x":540,"y":147,"on":true},{"x":540,"y":3,"on":true},{"x":540,"y":-27,"on":false},{"x":566,"y":-73,"on":false},{"x":593,"y":-88,"on":true},{"x":629,"y":-109,"on":false},{"x":684,"y":-109,"on":true},{"x":684,"y":-181,"on":true},{"x":602,"y":-181,"on":false},{"x":546,"y":-149,"on":true},{"x":504,"y":-125,"on":false},{"x":482,"y":-87,"on":true},{"x":460,"y":-48,"on":false},{"x":460,"y":3,"on":true},{"x":460,"y":147,"on":true},{"x":460,"y":195,"on":false},{"x":440,"y":230,"on":true},{"x":423,"y":260,"on":false},{"x":394,"y":276,"on":true},{"x":361,"y":295,"on":false}]], "references": [], - "instructions": [179,37,13,1,48,43] + "instructions": "syUNATAr" }, "uniFF5C": { "name": "uniFF5C", "advanceWidth": 1000, "contours": [], "references": [{"glyph":"bar","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [] + "instructions": "" }, "uniFF5D": { "name": "uniFF5D", "advanceWidth": 1000, "contours": [[{"x":316,"y":-109,"on":true},{"x":371,"y":-109,"on":false},{"x":407,"y":-88,"on":true},{"x":433,"y":-73,"on":false},{"x":447,"y":-50,"on":true},{"x":460,"y":-27,"on":false},{"x":460,"y":3,"on":true},{"x":460,"y":147,"on":true},{"x":460,"y":217,"on":false},{"x":489,"y":267,"on":true},{"x":512,"y":306,"on":false},{"x":550,"y":331,"on":true},{"x":512,"y":356,"on":false},{"x":489,"y":395,"on":true},{"x":460,"y":445,"on":false},{"x":460,"y":515,"on":true},{"x":460,"y":660,"on":true},{"x":460,"y":690,"on":false},{"x":434,"y":736,"on":false},{"x":407,"y":751,"on":true},{"x":371,"y":772,"on":false},{"x":316,"y":772,"on":true},{"x":316,"y":844,"on":true},{"x":398,"y":844,"on":false},{"x":454,"y":812,"on":true},{"x":496,"y":788,"on":false},{"x":518,"y":750,"on":true},{"x":540,"y":711,"on":false},{"x":540,"y":660,"on":true},{"x":540,"y":515,"on":true},{"x":540,"y":467,"on":false},{"x":560,"y":432,"on":true},{"x":577,"y":402,"on":false},{"x":606,"y":386,"on":true},{"x":639,"y":367,"on":false},{"x":684,"y":367,"on":true},{"x":684,"y":295,"on":true},{"x":639,"y":295,"on":false},{"x":606,"y":276,"on":true},{"x":577,"y":259,"on":false},{"x":560,"y":230,"on":true},{"x":540,"y":196,"on":false},{"x":540,"y":147,"on":true},{"x":540,"y":3,"on":true},{"x":540,"y":-48,"on":false},{"x":518,"y":-87,"on":true},{"x":496,"y":-125,"on":false},{"x":454,"y":-149,"on":true},{"x":399,"y":-181,"on":false},{"x":316,"y":-181,"on":true}]], "references": [], - "instructions": [179,48,22,1,48,43] + "instructions": "szAWATAr" }, "uniFF5E": { "name": "uniFF5E", "advanceWidth": 1000, "contours": [[{"x":238,"y":242,"on":true},{"x":252,"y":270,"on":false},{"x":265,"y":293,"on":true},{"x":314,"y":379,"on":false},{"x":361,"y":405,"on":true},{"x":385,"y":419,"on":false},{"x":435,"y":419,"on":false},{"x":459,"y":406,"on":true},{"x":487,"y":390,"on":false},{"x":530,"y":334,"on":true},{"x":553,"y":304,"on":false},{"x":563,"y":293,"on":true},{"x":580,"y":276,"on":false},{"x":590,"y":277,"on":true},{"x":595,"y":277,"on":false},{"x":601,"y":280,"on":true},{"x":631,"y":297,"on":false},{"x":671,"y":368,"on":true},{"x":684,"y":391,"on":false},{"x":698,"y":418,"on":true},{"x":762,"y":389,"on":true},{"x":748,"y":361,"on":false},{"x":735,"y":338,"on":true},{"x":686,"y":252,"on":false},{"x":639,"y":226,"on":true},{"x":615,"y":212,"on":false},{"x":565,"y":212,"on":false},{"x":541,"y":225,"on":true},{"x":513,"y":241,"on":false},{"x":470,"y":297,"on":true},{"x":447,"y":327,"on":false},{"x":437,"y":338,"on":true},{"x":420,"y":355,"on":false},{"x":410,"y":355,"on":true},{"x":399,"y":355,"on":false},{"x":381,"y":336,"on":true},{"x":357,"y":312,"on":false},{"x":329,"y":263,"on":true},{"x":316,"y":240,"on":false},{"x":302,"y":213,"on":true}]], "references": [], - "instructions": [179,25,5,1,48,43] + "instructions": "sxkFATAr" }, "uniFFE0": { "name": "uniFFE0", "advanceWidth": 1000, "contours": [[{"x":262,"y":220,"on":true},{"x":262,"y":310,"on":true},{"x":262,"y":380,"on":false},{"x":292,"y":432,"on":true},{"x":319,"y":479,"on":false},{"x":366,"y":506,"on":true},{"x":407,"y":530,"on":false},{"x":460,"y":536,"on":true},{"x":460,"y":632,"on":true},{"x":540,"y":632,"on":true},{"x":540,"y":536,"on":true},{"x":661,"y":524,"on":false},{"x":713,"y":433,"on":true},{"x":729,"y":406,"on":false},{"x":735,"y":375,"on":true},{"x":659,"y":354,"on":true},{"x":655,"y":376,"on":false},{"x":643,"y":395,"on":true},{"x":625,"y":426,"on":false},{"x":595,"y":444,"on":true},{"x":557,"y":466,"on":false},{"x":502,"y":466,"on":true},{"x":450,"y":466,"on":false},{"x":413,"y":445,"on":true},{"x":381,"y":427,"on":false},{"x":363,"y":395,"on":true},{"x":342,"y":359,"on":false},{"x":342,"y":310,"on":true},{"x":342,"y":220,"on":true},{"x":342,"y":171,"on":false},{"x":363,"y":135,"on":true},{"x":381,"y":103,"on":false},{"x":413,"y":85,"on":true},{"x":450,"y":64,"on":false},{"x":502,"y":64,"on":true},{"x":557,"y":64,"on":false},{"x":595,"y":86,"on":true},{"x":626,"y":104,"on":false},{"x":643,"y":135,"on":true},{"x":654,"y":155,"on":false},{"x":659,"y":176,"on":true},{"x":735,"y":155,"on":true},{"x":729,"y":125,"on":false},{"x":713,"y":97,"on":true},{"x":660,"y":6,"on":false},{"x":540,"y":-6,"on":true},{"x":540,"y":-102,"on":true},{"x":460,"y":-102,"on":true},{"x":460,"y":-6,"on":true},{"x":407,"y":0,"on":false},{"x":366,"y":24,"on":true},{"x":318,"y":51,"on":false},{"x":292,"y":98,"on":true},{"x":262,"y":149,"on":false}]], "references": [], - "instructions": [179,46,8,1,48,43] + "instructions": "sy4IATAr" }, "uniFFE1": { "name": "uniFFE1", "advanceWidth": 1000, "contours": [[{"x":270,"y":0,"on":true},{"x":270,"y":72,"on":true},{"x":311,"y":94,"on":false},{"x":336,"y":136,"on":true},{"x":362,"y":182,"on":false},{"x":362,"y":271,"on":true},{"x":362,"y":354,"on":true},{"x":293,"y":354,"on":true},{"x":293,"y":426,"on":true},{"x":362,"y":426,"on":true},{"x":362,"y":540,"on":true},{"x":362,"y":611,"on":false},{"x":391,"y":661,"on":true},{"x":413,"y":700,"on":false},{"x":450,"y":721,"on":true},{"x":488,"y":743,"on":false},{"x":592,"y":743,"on":false},{"x":630,"y":721,"on":true},{"x":667,"y":700,"on":false},{"x":690,"y":660,"on":true},{"x":705,"y":634,"on":false},{"x":712,"y":603,"on":true},{"x":637,"y":579,"on":true},{"x":632,"y":604,"on":false},{"x":620,"y":624,"on":true},{"x":606,"y":648,"on":false},{"x":586,"y":660,"on":true},{"x":566,"y":671,"on":false},{"x":540,"y":671,"on":true},{"x":515,"y":671,"on":false},{"x":495,"y":660,"on":true},{"x":474,"y":648,"on":false},{"x":461,"y":625,"on":true},{"x":442,"y":592,"on":false},{"x":442,"y":540,"on":true},{"x":442,"y":426,"on":true},{"x":592,"y":426,"on":true},{"x":592,"y":354,"on":true},{"x":442,"y":354,"on":true},{"x":442,"y":271,"on":true},{"x":442,"y":155,"on":false},{"x":408,"y":97,"on":true},{"x":400,"y":84,"on":false},{"x":392,"y":72,"on":true},{"x":730,"y":72,"on":true},{"x":730,"y":0,"on":true}]], "references": [], - "instructions": [179,15,0,1,48,43] + "instructions": "sw8AATAr" }, "uniFFE5": { "name": "uniFFE5", "advanceWidth": 1000, "contours": [], "references": [{"glyph":"uniFF39","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniFF0D","x":0,"y":-148,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniFF0D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], - "instructions": [177,1,1,184,255,108,176,51,43] + "instructions": "sQEBuP9ssDMr" } }, "glyph_order": ["glyph0","glyph1","glyph2","space","uni0307","uni0308","uni030A","uni1AB2","gravecomb","grave","acutecomb","acute","uni0302","asciicircum","uni030C","tildecomb","glyph16","uni034A","uni034B","uni034C","uni0304","uni0305","uni033F","uni0306","uni0311","hookabovecomb","uni030F","uni030B","uni0313","uni0312","uni0314","uni030D","uni030E","uni0346","uni033E","uni0310","uni0352","uni0340","uni0341","uni0342","uni0343","uni033D","uni1DFE","uni0350","uni0327","uni0328","glyph46","uni0345","glyph48","uni031D","uni031E","uni0318","uni0319","uni0349","uni031F","uni0320","uni032A","uni033B","uni0347","uni032B","uni033C","uni031C","uni0339","uni0351","uni0357","uni0316","uni0317","dotbelowcomb","uni0324","uni0330","uni0325","uni0331","uni033A","uni0332","uni0333","uni032D","uni032C","uni032E","uni032F","uni0326","uni0329","uni0348","uni0353","uni0354","uni0355","uni035A","uni034D","uni034E","uni031B","uni031A","uni0358","uni0315","uni0322","uni0321","uni0334","uni0335","uni0336","uniE090","uni0337","uni0338","uni0361","uni035D","uni035C","uni035E","uni035F","uni0362","uni0360","glyph107","uni1FCD","glyph109","uni1FCE","glyph111","uni1FDD","glyph113","uni1FDE","glyph115","uni1FCF","glyph117","uni1FDF","glyph119","glyph120","I","Iota","uni0406","uni04C0","uni026A","glyph126","glyph127","glyph128","glyph129","glyph130","dotlessi","glyph132","i","glyph134","glyph135","glyph136","glyph137","uni0456","uni1D09","iota","uni0269","uni0196","glyph143","glyph144","glyph145","J","uni0408","uni037F","glyph149","glyph150","uni0237","j","uni03F3","uni0458","uni029D","L","uniA780","Lcaron","Lslash","Ldot","uni023D","uni029F","glyph163","glyph164","glyph165","glyph166","glyph167","l","uni04CF","uniA781","ldot","uni026D","uni0234","uni026B","uni026C","uniA78E","uni01AA","V","v","uni2C71","uni0475","uni0474","uni028C","nu","A","Alpha","uni0410","uni2C6F","glyph189","glyph190","a","uni0430","uni2C6D","uni2C70","uni0251","uni0250","uni0252","W","uni051C","w","uni051D","uni028D","uni2C72","uni2C73","uni02AC","X","Chi","uni0425","x","uni0445","chi","uniAB53","uni04B2","uni04B3","Y","Upsilon","uni04AE","uni01B3","uni04AF","uni028F","glyph221","glyph222","y","uni0443","uni028E","uni01B4","uni0423","lambda","uni019B","K","Kappa","uni041A","uni049A","k","kappa","uni043A","kgreenlandic","uni049B","uni0198","uni0199","uniA7B0","uni029E","B","Beta","uni0412","uni0181","glyph247","uni025E","glyph249","uni0299","uni0432","uni0243","beta","b","uni0253","uni0180","uni1E03","uni0183","uni0185","D","Eth","Dcroat","uni0189","uni018A","d","dcroat","dcaron","uni0221","uni0257","uni1E0B","uni018C","P","Rho","uni0420","uni01A4","p","uni0440","uni01A5","rho","R","uni0280","uni01A6","uni042F","uni044F","uni0281","r","uni0279","uni027C","uni027A","uni027D","uni027B","uni027E","uni2C79","C","uni0421","uni03F9","c","uni0441","uni03F2","uni0186","uni0254","uni0297","uni0187","uni0188","uniA792","uniA793","uni0255","uni042D","uni044D","uni0404","uni0454","sigma","sigma1","G","uni0262","uni0193","uni029B","uni01E4","glyph319","glyph320","uni0261","glyph322","g","uni1D77","uni0260","uni01E5","O","Omicron","uni041E","o","omicron","uni043E","Oslash","oslash","uni019F","uni04E8","uni03F4","uni0275","uni04E9","uni0298","uni1D16","uni1D17","Q","uni051A","q","uni051B","uni024A","uni024B","uni02A0","N","Nu","uni0274","uni019D","n","glyph355","napostrophe","eng","Eng","uni0272","uni0235","eta","uni0220","uni019E","U","uni1D1C","u","upsilon","uni01B2","uni028B","M","Mu","uni041C","uni043C","m","glyph375","glyph376","uni0271","uni026F","uni019C","uni0270","H","Eta","uni041D","uni04A2","uni043D","uni029C","uni04A3","Hbar","h","uni04BB","uni0266","uni0267","uniA727","uni0265","uni02AE","uni02AF","hbar","uni045B","F","uni0191","glyph401","glyph402","glyph403","uni0283","uni0284","longs","uni0286","uni027F","uni0285","glyph410","uniAB35","glyph412","florin","f","uni025F","uniFB01","glyph417","glyph418","uniFB02","E","Epsilon","uni0415","uni018E","uni2C7B","e","uni0435","uni01DD","uni0259","uni04D9","uni018F","uni04D8","uni0258","T","Tau","uni0422","uni04AC","uniA7B1","Tbar","uni01AC","glyph440","glyph441","uni04AD","tau","t","uni0287","uni01AB","uni01AD","uni0288","uni0236","tbar","S","uni0405","s","uni0455","uni01A7","uni01A8","glyph457","uni0282","uni2C7E","uni023F","Z","Zeta","z","uni0224","uni0225","uni2C7F","uni0240","uni2C6B","uni2C6C","uni0291","alpha","uniAB64","Gamma","uni0413","glyph475","glyph476","uni0433","uni0490","uni0491","uni0492","glyph481","glyph482","uni1D24","uni0493","gamma","Lambda","uni0245","uni0394","delta","glyph490","uni1E9F","uni018D","uni0431","epsilon","uni025B","uni0190","uni0417","uni0437","uni025C","uni029A","Theta","theta","zeta","xi","uni03BC","Xi","Pi","uni041F","glyph509","glyph510","uni043F","pi","Sigma","uni01A9","Phi","uni0424","uni2C77","phi","phi1","uni0444","uni0278","Psi","uni1D2A","psi","uni03A9","uni01B1","uniAB65","uni028A","omega","omega1","uni0277","uni042C","uni044C","uni0411","uni0182","uni0184","uni018B","uni042A","uni044A","uni042B","uni044B","uni0418","glyph543","glyph544","uni0438","uni0426","glyph547","glyph548","uni0446","uni040F","glyph551","glyph552","uni045F","uni0414","glyph555","glyph556","uni0434","uni041B","uni043B","uni0416","uni0496","uni0436","uni0497","uni046A","uni046B","uni0466","uni0467","uni0428","glyph569","glyph570","uni0448","uni0429","glyph573","glyph574","uni0449","glyph576","uni0442","uni0427","uni04B6","uni0447","uni04B7","uni04BA","uni04B8","uni04B9","uni042E","uni044E","uni0409","uni0459","uni040A","uni045A","uni040B","uni0402","uni0452","germandbls","uni1E9E","AE","uni04D4","OE","uni0276","ae","uni04D5","uni1D02","oe","uni1D14","uni0238","uni0239","uni0222","uni0223","IJ","ij","uni01B7","uni04E0","uni0292","uni04E1","uni01B8","uni01B9","uni026E","uni01BA","uni0293","uni0294","uni0241","uni0295","uni0242","uni01BE","glyph625","glyph626","uni0296","uni02A1","uni02A2","eth","Thorn","uni03F7","thorn","uni03F8","uni01F6","uni0195","uni01A2","uni01A3","uni01F7","uni01BF","uni021C","uni021D","uni0263","uni0194","uni0264","uni02DE","uni025A","uni025D","uni02AD","glyph650","glyph651","glyph652","zero","one","two","three","four","five","uni01BC","uni01BD","six","seven","eight","glyph664","nine","glyph666","uni2000","uni2002","uni2004","uni2005","uni2006","uni2007","uni200B","uni00A0","uni2001","uni2003","parenleft","parenright","bracketleft","bracketright","braceleft","braceright","angleleft","uni27E8","angleright","uni27E9","uni27EA","uni27EB","uni2308","uni230A","uni230B","uni2309","period","glyph694","comma","glyph696","colon","semicolon","uni037E","question","uniFF1F","questiondown","exclam","exclamdown","exclamdbl","bar","brokenbar","uni01C0","uni01C1","uni01C3","uni01C2","ampersand","at","glyph714","glyph715","paragraph","section","glyph718","glyph719","asterisk","numbersign","slash","backslash","fraction","glyph725","glyph726","underscore","uni203E","hyphen","uni00AD","uni2010","uni2011","figuredash","endash","emdash","glyph736","uni2015","periodcentered","bullet","uni2027","anoteleia","quotesingle","quotedbl","glyph744","glyph745","glyph746","glyph747","glyph748","glyph749","glyph750","glyph751","quotesinglbase","quoteleft","quoteright","quotereversed","quotedblbase","quotedblleft","quotedblright","uni201F","minute","second","uni2034","uni2035","uni2036","uni2037","guilsinglleft","guillemotleft","guilsinglright","guillemotright","dagger","daggerdbl","onedotenleader","twodotenleader","ellipsis","percent","perthousand","uni2031","glyph778","asciitilde","degree","uni02B9","uni02BA","uni02BB","uni02BC","uni02BD","uni02C8","uni02CC","uniFF01","uniFF1A","uniFF1B","uniFF0C","uniFF0E","uniFF08","uniFF09","mu","universal","existential","emptyset","Delta","gradient","infinity","proportional","partialdiff","plus","minus","plusminus","uni2213","equal","less","greater","multiply","divide","logicalnot","logicalor","logicaland","union","intersection","lessequal","uni2A7D","greaterequal","uni2A7E","propersubset","element","propersuperset","suchthat","similar","equivalence","approxequal","notequal","uni2262","uni226E","uni226F","uni2249","uni2241","notsubset","uni2285","notelement","uni220C","uni2270","uni2271","uni2204","summation","product","uni2210","integral","uni222C","uni222E","uni22C1","uni22C0","uni22C3","uni22C2","uni2219","radical","currency","dollar","Euro","cent","yen","glyph859","sterling","lira","uni20A9","franc","uni2116","Omega","uni2127","uni2113","estimated","uni2129","arrowleft","arrowright","arrowup","arrowdown","arrowboth","arrowupdn","uni2196","uni2197","uni2198","uni2199","filledbox","filledrect","uni25AE","triagup","triagdn","uni25C0","uni25B6","uni25C6","H18533","uni25CC","H22073","uni25AD","uni25AF","circle","openbullet","uni25C7","uni25B4","uni25B8","uni25BE","uni25C2","uni25B3","uni25BD","uni25C1","uni25B7","uni25B5","uni25BF","uni25C3","uni25B9","uniE09E","block","ltshade","shade","dkshade","uni2581","uni258F","uni2582","uni258E","uni2583","uni258D","dnblock","lfblock","uni2585","uni258B","uni2586","uni258A","uni2587","uni2589","upblock","rtblock","SF100000","uni2501","SF110000","uni2503","uni2574","uni2575","uni2576","uni2577","uni2578","uni2579","uni257A","uni257B","uni257C","uni257D","uni257E","uni257F","SF430000","SF240000","SF010000","uni250D","uni250E","uni250F","SF030000","uni2511","uni2512","uni2513","SF020000","uni2515","uni2516","uni2517","SF040000","uni2519","uni251A","uni251B","SF080000","uni251D","uni251E","uni251F","uni2520","uni2521","uni2522","uni2523","SF090000","uni2525","uni2526","uni2527","uni2528","uni2529","uni252A","uni252B","SF060000","uni252D","uni252E","uni252F","uni2530","uni2531","uni2532","uni2533","SF070000","uni2535","uni2536","uni2537","uni2538","uni2539","uni253A","uni253B","SF050000","uni253D","uni253E","uni253F","uni2540","uni2541","uni2542","uni2543","uni2544","uni2545","uni2546","uni2547","uni2548","uni2549","uni254A","uni254B","SF510000","SF520000","SF390000","SF220000","SF210000","SF250000","SF500000","SF490000","SF380000","SF280000","SF270000","SF260000","SF360000","SF370000","SF420000","SF190000","SF200000","SF230000","SF470000","SF480000","SF410000","SF450000","SF460000","SF400000","SF540000","SF530000","SF440000","uni2504","uni2505","uni2508","uni2509","uni254C","uni254D","uni2506","uni2507","uni250A","uni250B","uni254E","uni254F","uni256D","uni256E","uni256F","uni2570","uni2571","uni2572","uni2573","uniE0A0","uniE0B0","uniE0B1","uniE0B2","uniE0B3","uniE0A2","uni02D0","uni02D1","uni02E5","uni02E6","uni02E7","uni02E8","uni02E9","heart","spade","club","diamond","female","uni2641","male","musicalnote","uniE09F","uni203B","glyph1080","glyph1081","glyph1082","glyph1083","glyph1084","glyph1085","glyph1086","glyph1087","glyph1088","glyph1089","glyph1090","glyph1091","glyph1092","glyph1093","glyph1094","glyph1095","glyph1096","glyph1097","glyph1098","glyph1099","glyph1100","glyph1101","glyph1102","glyph1103","glyph1104","glyph1105","glyph1106","glyph1107","glyph1108","glyph1109","glyph1110","glyph1111","glyph1112","glyph1113","glyph1114","glyph1115","glyph1116","glyph1117","glyph1118","glyph1119","glyph1120","glyph1121","glyph1122","glyph1123","glyph1124","glyph1125","glyph1126","glyph1127","glyph1128","glyph1129","glyph1130","glyph1131","glyph1132","dieresis","macron","cedilla","Agrave","Aacute","Acircumflex","Atilde","Adieresis","Aring","Ccedilla","Egrave","Eacute","Ecircumflex","Edieresis","Igrave","Iacute","Icircumflex","Idieresis","Ntilde","Ograve","Oacute","Ocircumflex","Otilde","Odieresis","Ugrave","Uacute","Ucircumflex","Udieresis","Yacute","agrave","glyph1163","glyph1164","aacute","glyph1166","glyph1167","acircumflex","glyph1169","glyph1170","atilde","glyph1172","glyph1173","adieresis","glyph1175","glyph1176","aring","glyph1178","glyph1179","ccedilla","egrave","eacute","ecircumflex","edieresis","igrave","glyph1186","glyph1187","glyph1188","glyph1189","iacute","glyph1191","glyph1192","glyph1193","glyph1194","icircumflex","glyph1196","glyph1197","glyph1198","glyph1199","idieresis","glyph1201","glyph1202","glyph1203","glyph1204","ntilde","ograve","oacute","ocircumflex","otilde","odieresis","ugrave","uacute","ucircumflex","udieresis","yacute","ydieresis","Amacron","amacron","glyph1219","glyph1220","Abreve","abreve","glyph1223","glyph1224","Aogonek","aogonek","glyph1227","glyph1228","Cacute","cacute","Ccircumflex","ccircumflex","Cdotaccent","cdotaccent","Ccaron","ccaron","Dcaron","Emacron","emacron","Ebreve","ebreve","Edotaccent","edotaccent","Eogonek","eogonek","Ecaron","ecaron","Gcircumflex","gcircumflex","glyph1250","glyph1251","Gbreve","gbreve","glyph1254","glyph1255","Gdotaccent","gdotaccent","glyph1258","glyph1259","uni0122","uni0123","glyph1262","glyph1263","Hcircumflex","hcircumflex","Itilde","itilde","glyph1268","glyph1269","glyph1270","glyph1271","Imacron","imacron","glyph1274","glyph1275","glyph1276","glyph1277","Ibreve","ibreve","glyph1280","glyph1281","glyph1282","glyph1283","Iogonek","iogonek","glyph1286","glyph1287","glyph1288","glyph1289","Idotaccent","Jcircumflex","jcircumflex","uni0136","uni0137","Lacute","lacute","glyph1297","glyph1298","glyph1299","glyph1300","uni013B","uni013C","glyph1303","glyph1304","glyph1305","glyph1306","lcaron","glyph1308","glyph1309","glyph1310","glyph1311","lslash","glyph1313","glyph1314","glyph1315","glyph1316","Nacute","nacute","uni0145","uni0146","Ncaron","ncaron","Omacron","omacron","Obreve","obreve","Ohungarumlaut","ohungarumlaut","Racute","racute","uni0156","uni0157","Rcaron","rcaron","Sacute","sacute","Scircumflex","scircumflex","Scedilla","scedilla","Scaron","scaron","uni0162","uni0163","Tcaron","tcaron","Utilde","utilde","Umacron","umacron","Ubreve","ubreve","Uring","uring","Uhungarumlaut","uhungarumlaut","Uogonek","uogonek","Wcircumflex","wcircumflex","Ycircumflex","ycircumflex","Ydieresis","Zacute","zacute","Zdotaccent","zdotaccent","Zcaron","zcaron","uni0197","uni019A","glyph1372","glyph1373","glyph1374","glyph1375","Ohorn","ohorn","uni01AE","Uhorn","uhorn","uni01B5","uni01B6","uni01BB","uni01CD","uni01CE","glyph1386","glyph1387","uni01CF","uni01D0","glyph1390","glyph1391","glyph1392","glyph1393","uni01D1","uni01D2","uni01D3","uni01D4","uni01D5","uni01D6","uni01D7","uni01D8","uni01D9","uni01DA","uni01DB","uni01DC","uni01DE","uni01DF","glyph1408","glyph1409","uni01E0","uni01E1","glyph1412","glyph1413","uni01E2","uni01E3","Gcaron","gcaron","glyph1418","glyph1419","uni01E8","uni01E9","uni01EA","uni01EB","uni01EC","uni01ED","uni01EE","uni01EF","uni01F0","uni01F4","uni01F5","glyph1431","glyph1432","uni01F8","uni01F9","Aringacute","aringacute","glyph1437","glyph1438","AEacute","aeacute","Oslashacute","oslashacute","uni0200","uni0201","glyph1445","glyph1446","uni0202","uni0203","glyph1449","glyph1450","uni0204","uni0205","uni0206","uni0207","uni0208","uni0209","glyph1457","glyph1458","glyph1459","glyph1460","uni020A","uni020B","glyph1463","glyph1464","glyph1465","glyph1466","uni020C","uni020D","uni020E","uni020F","uni0210","uni0211","uni0212","uni0213","uni0214","uni0215","uni0216","uni0217","uni0218","uni0219","uni021A","uni021B","uni021E","uni021F","uni0226","uni0227","glyph1487","glyph1488","uni0228","uni0229","uni022A","uni022B","uni022C","uni022D","uni022E","uni022F","uni0230","uni0231","uni0232","uni0233","uni023A","uni023B","uni023C","uni023E","uni0244","uni0246","uni0247","uni0248","uni0249","uni024C","uni024D","uni024E","uni024F","uni0256","uni0268","glyph1516","glyph1517","glyph1518","glyph1519","uni0273","uni0289","uni0290","circumflex","caron","uni02C9","uni02CA","uni02CB","uni02CD","uni02CE","uni02CF","uni02D2","uni02D3","uni02D4","uni02D5","uni02D6","uni02D7","breve","dotaccent","ring","ogonek","tilde","hungarumlaut","uni02DF","uni02EC","uni02ED","uni02F3","uni02F7","uni0344","uni037A","tonos","dieresistonos","Alphatonos","Epsilontonos","Etatonos","Iotatonos","Omicrontonos","Upsilontonos","Omegatonos","iotadieresistonos","Iotadieresis","Upsilondieresis","alphatonos","epsilontonos","etatonos","iotatonos","upsilondieresistonos","iotadieresis","upsilondieresis","omicrontonos","upsilontonos","omegatonos","uni0400","uni0401","uni0403","uni0407","uni040C","uni040D","uni040E","uni0419","uni0439","uni0450","uni0451","uni0453","uni0457","glyph1585","glyph1586","glyph1587","glyph1588","uni045C","uni045D","uni045E","uni0476","uni0477","uni0498","uni0499","uni04AA","uni04AB","uni04B0","uni04B1","uni04C1","uni04C2","uni04D0","uni04D1","glyph1604","glyph1605","uni04D2","uni04D3","glyph1608","glyph1609","uni04D6","uni04D7","uni04DA","uni04DB","uni04DC","uni04DD","uni04DE","uni04DF","uni04E2","uni04E3","uni04E4","uni04E5","uni04E6","uni04E7","uni04EA","uni04EB","uni04EC","uni04ED","uni04EE","uni04EF","uni04F0","uni04F1","uni04F2","uni04F3","uni04F4","uni04F5","uni04F8","uni04F9","uni1D7B","uni1D7C","uni1D7D","uni1D7F","uni1D8F","glyph1643","glyph1644","uni1D90","uni1D91","uni1D99","uni1E00","uni1E01","glyph1650","glyph1651","uni1E02","uni1E04","uni1E05","uni1E06","uni1E07","uni1E08","uni1E09","uni1E0A","uni1E0C","uni1E0D","uni1E0E","uni1E0F","uni1E10","uni1E11","uni1E12","uni1E13","uni1E14","uni1E15","uni1E16","uni1E17","uni1E18","uni1E19","uni1E1A","uni1E1B","uni1E1C","uni1E1D","uni1E1E","uni1E1F","uni1E20","uni1E21","glyph1682","glyph1683","uni1E22","uni1E23","uni1E24","uni1E25","uni1E26","uni1E27","uni1E28","uni1E29","uni1E2A","uni1E2B","uni1E2C","uni1E2D","glyph1696","glyph1697","glyph1698","glyph1699","uni1E2E","uni1E2F","glyph1702","glyph1703","glyph1704","glyph1705","uni1E30","uni1E31","uni1E32","uni1E33","uni1E34","uni1E35","uni1E36","uni1E37","glyph1714","glyph1715","glyph1716","glyph1717","uni1E38","uni1E39","glyph1720","glyph1721","glyph1722","glyph1723","uni1E3A","uni1E3B","glyph1726","glyph1727","glyph1728","glyph1729","uni1E3C","uni1E3D","glyph1732","glyph1733","glyph1734","glyph1735","uni1E3E","uni1E3F","uni1E40","uni1E41","uni1E42","uni1E43","uni1E44","uni1E45","uni1E46","uni1E47","uni1E48","uni1E49","uni1E4A","uni1E4B","uni1E4C","uni1E4D","uni1E4E","uni1E4F","uni1E50","uni1E51","uni1E52","uni1E53","uni1E54","uni1E55","uni1E56","uni1E57","uni1E58","uni1E59","uni1E5A","uni1E5B","uni1E5C","uni1E5D","uni1E5E","uni1E5F","uni1E60","uni1E61","uni1E62","uni1E63","uni1E64","uni1E65","uni1E66","uni1E67","uni1E68","uni1E69","uni1E6A","uni1E6B","uni1E6C","uni1E6D","uni1E6E","uni1E6F","uni1E70","uni1E71","uni1E72","uni1E73","uni1E74","uni1E75","uni1E76","uni1E77","uni1E78","uni1E79","uni1E7A","uni1E7B","uni1E7C","uni1E7D","uni1E7E","uni1E7F","Wgrave","wgrave","Wacute","wacute","Wdieresis","wdieresis","uni1E86","uni1E87","uni1E88","uni1E89","uni1E8A","uni1E8B","uni1E8C","uni1E8D","uni1E8E","uni1E8F","uni1E90","uni1E91","uni1E92","uni1E93","uni1E94","uni1E95","uni1E96","uni1E97","uni1E98","uni1E99","uni1E9A","glyph1829","glyph1830","uni1E9B","uni1E9C","uni1E9D","uni1EA0","uni1EA1","glyph1836","glyph1837","uni1EA2","uni1EA3","glyph1840","glyph1841","uni1EA4","uni1EA5","glyph1844","glyph1845","uni1EA6","uni1EA7","glyph1848","glyph1849","uni1EA8","uni1EA9","glyph1852","glyph1853","uni1EAA","uni1EAB","glyph1856","glyph1857","uni1EAC","uni1EAD","glyph1860","glyph1861","uni1EAE","uni1EAF","glyph1864","glyph1865","uni1EB0","uni1EB1","glyph1868","glyph1869","uni1EB2","uni1EB3","glyph1872","glyph1873","uni1EB4","uni1EB5","glyph1876","glyph1877","uni1EB6","uni1EB7","glyph1880","glyph1881","uni1EB8","uni1EB9","uni1EBA","uni1EBB","uni1EBC","uni1EBD","uni1EBE","uni1EBF","uni1EC0","uni1EC1","uni1EC2","uni1EC3","uni1EC4","uni1EC5","uni1EC6","uni1EC7","uni1EC8","uni1EC9","glyph1900","glyph1901","glyph1902","glyph1903","uni1ECA","uni1ECB","glyph1906","glyph1907","glyph1908","glyph1909","uni1ECC","uni1ECD","uni1ECE","uni1ECF","uni1ED0","uni1ED1","uni1ED2","uni1ED3","uni1ED4","uni1ED5","uni1ED6","uni1ED7","uni1ED8","uni1ED9","uni1EDA","uni1EDB","uni1EDC","uni1EDD","uni1EDE","uni1EDF","uni1EE0","uni1EE1","uni1EE2","uni1EE3","uni1EE4","uni1EE5","uni1EE6","uni1EE7","uni1EE8","uni1EE9","uni1EEA","uni1EEB","uni1EEC","uni1EED","uni1EEE","uni1EEF","uni1EF0","uni1EF1","Ygrave","ygrave","uni1EF4","uni1EF5","uni1EF6","uni1EF7","uni1EF8","uni1EF9","uni1F00","uni1F01","uni1F02","uni1F03","uni1F04","uni1F05","uni1F06","uni1F07","uni1F08","uni1F09","uni1F0A","uni1F0B","uni1F0C","uni1F0D","uni1F0E","uni1F0F","uni1F10","uni1F11","uni1F12","uni1F13","uni1F14","uni1F15","uni1F18","uni1F19","uni1F1A","uni1F1B","uni1F1C","uni1F1D","uni1F20","uni1F21","uni1F22","uni1F23","uni1F24","uni1F25","uni1F26","uni1F27","uni1F28","uni1F29","uni1F2A","uni1F2B","uni1F2C","uni1F2D","uni1F2E","uni1F2F","uni1F30","uni1F31","uni1F32","uni1F33","uni1F34","uni1F35","uni1F36","uni1F37","uni1F38","uni1F39","uni1F3A","uni1F3B","uni1F3C","uni1F3D","uni1F3E","uni1F3F","uni1F40","uni1F41","uni1F42","uni1F43","uni1F44","uni1F45","uni1F48","uni1F49","uni1F4A","uni1F4B","uni1F4C","uni1F4D","uni1F50","uni1F51","uni1F52","uni1F53","uni1F54","uni1F55","uni1F56","uni1F57","uni1F59","uni1F5B","uni1F5D","uni1F5F","uni1F60","uni1F61","uni1F62","uni1F63","uni1F64","uni1F65","uni1F66","uni1F67","uni1F68","uni1F69","uni1F6A","uni1F6B","uni1F6C","uni1F6D","uni1F6E","uni1F6F","uni1F70","uni1F71","uni1F72","uni1F73","uni1F74","uni1F75","uni1F76","uni1F77","uni1F78","uni1F79","uni1F7A","uni1F7B","uni1F7C","uni1F7D","uni1F80","uni1F81","uni1F82","uni1F83","uni1F84","uni1F85","uni1F86","uni1F87","uni1F88","uni1F89","uni1F8A","uni1F8B","uni1F8C","uni1F8D","uni1F8E","uni1F8F","uni1F90","uni1F91","uni1F92","uni1F93","uni1F94","uni1F95","uni1F96","uni1F97","uni1F98","uni1F99","uni1F9A","uni1F9B","uni1F9C","uni1F9D","uni1F9E","uni1F9F","uni1FA0","uni1FA1","uni1FA2","uni1FA3","uni1FA4","uni1FA5","uni1FA6","uni1FA7","uni1FA8","uni1FA9","uni1FAA","uni1FAB","uni1FAC","uni1FAD","uni1FAE","uni1FAF","uni1FB0","uni1FB1","uni1FB2","uni1FB3","uni1FB4","uni1FB6","uni1FB7","uni1FB8","uni1FB9","uni1FBA","uni1FBB","uni1FBC","uni1FBD","uni1FBE","uni1FBF","uni1FC0","uni1FC1","uni1FC2","uni1FC3","uni1FC4","uni1FC6","uni1FC7","uni1FC8","uni1FC9","uni1FCA","uni1FCB","uni1FCC","uni1FD0","uni1FD1","uni1FD2","uni1FD3","uni1FD6","uni1FD7","uni1FD8","uni1FD9","uni1FDA","uni1FDB","uni1FE0","uni1FE1","uni1FE2","uni1FE3","uni1FE4","uni1FE5","uni1FE6","uni1FE7","uni1FE8","uni1FE9","uni1FEA","uni1FEB","uni1FEC","uni1FED","uni1FEE","uni1FEF","uni1FF2","uni1FF3","uni1FF4","uni1FF6","uni1FF7","uni1FF8","uni1FF9","uni1FFA","uni1FFB","uni1FFC","uni1FFD","uni1FFE","uni212B","uniAB30","copyright","glyph2186","registered","glyph2188","uni2117","glyph2190","uni24EA","glyph2192","glyph2193","glyph2194","uni2460","glyph2196","uni2461","glyph2198","uni2462","glyph2200","uni2463","glyph2202","uni2464","glyph2204","uni2465","glyph2206","uni2466","glyph2208","uni2467","glyph2210","uni2468","glyph2212","uni24B6","glyph2214","uni24B7","glyph2216","uni24B8","glyph2218","uni24B9","glyph2220","uni24BA","glyph2222","uni24BB","glyph2224","uni24BC","glyph2226","uni24BD","glyph2228","uni24BE","glyph2230","uni24BF","glyph2232","uni24C0","glyph2234","uni24C1","glyph2236","uni24C2","glyph2238","uni24C3","glyph2240","uni24C4","glyph2242","uni24C5","glyph2244","uni24C6","glyph2246","uni24C7","glyph2248","uni24C8","glyph2250","uni24C9","glyph2252","uni24CA","glyph2254","uni24CB","glyph2256","uni24CC","glyph2258","uni24CD","glyph2260","uni24CE","glyph2262","uni24CF","glyph2264","uni24D0","glyph2266","uni24D1","glyph2268","uni24D2","glyph2270","uni24D3","glyph2272","uni24D4","glyph2274","uni24D5","glyph2276","uni24D6","glyph2278","uni24D7","glyph2280","uni24D8","glyph2282","uni24D9","glyph2284","uni24DA","glyph2286","uni24DB","glyph2288","uni24DC","glyph2290","uni24DD","glyph2292","uni24DE","glyph2294","uni24DF","glyph2296","uni24E0","glyph2298","uni24E1","glyph2300","uni24E2","glyph2302","uni24E3","glyph2304","uni24E4","glyph2306","uni24E5","glyph2308","uni24E6","glyph2310","uni24E7","glyph2312","uni24E8","glyph2314","uni24E9","glyph2316","glyph2317","glyph2318","glyph2319","uni2474","glyph2321","uni2475","glyph2323","uni2476","glyph2325","uni2477","glyph2327","uni2478","glyph2329","uni2479","glyph2331","uni247A","glyph2333","uni247B","glyph2335","uni247C","glyph2337","uni249C","glyph2339","uni249D","glyph2341","uni249E","glyph2343","uni249F","glyph2345","uni24A0","glyph2347","uni24A1","glyph2349","uni24A2","glyph2351","uni24A3","glyph2353","uni24A4","glyph2355","uni24A5","glyph2357","uni24A6","glyph2359","uni24A7","glyph2361","uni24A8","glyph2363","uni24A9","glyph2365","uni24AA","glyph2367","uni24AB","glyph2369","uni24AC","glyph2371","uni24AD","glyph2373","uni24AE","glyph2375","uni24AF","glyph2377","uni24B0","glyph2379","uni24B1","glyph2381","uni24B2","glyph2383","uni24B3","glyph2385","uni24B4","glyph2387","uni24B5","uni1D00","uni1D01","uni1D03","uni1D04","uni1D05","uni1D06","uni1D07","uni1D08","uni1D0A","uni1D0B","uni1D0C","uni1D0D","uni1D0E","uni1D0F","uni1D10","uni1D15","uni1D18","uni1D19","uni1D1A","uni1D1B","uni1D20","uni1D21","uni1D22","uni1D23","uni1D26","uni1D27","uni1D28","uni1D29","uni1D2B","uni2070","uni00B9","uni00B2","uni00B3","uni2074","uni2075","uni2076","uni2077","uni2078","uni2079","uni02B0","uni02B1","uni02B2","uni02B3","uni02B4","uni02B5","uni02B6","uni02B7","uni02B8","uni02C0","uni02C1","uni02E0","uni02E1","uni02E2","uni02E3","uni02E4","uni2071","uni207F","uni1D43","uni1D44","uni1D45","uni1D46","uni1D47","uni1D48","uni1D49","uni1D4A","uni1D4B","uni1D4C","uni1D4D","uni1D4E","uni1D4F","uni1D50","uni1D51","uni1D52","uni1D53","uni1D54","uni1D55","uni1D56","uni1D57","uni1D58","uni1D5A","uni1D5B","uni1D5D","uni1D5E","uni1D5F","uni1D60","uni1D61","uni1D78","uni1D9B","uni1D9C","uni1D9D","uni1D9E","uni1D9F","uni1DA0","uni1DA1","uni1DA2","uni1DA3","uni1DA4","uni1DA5","uni1DA6","uni1DA7","uni1DA8","uni1DAB","uni1DA9","uni1DAC","uni1DAD","uni1DAE","uni1DAF","uni1DB0","uni1DB1","uni1DB2","uni1DB3","uni1DB4","uni1DB5","uni1DB6","uni1DB7","uni1DB8","uni1DB9","uni1DBA","uni1DBC","uni1DBD","uni1DBE","uni1DBF","uni1DBB","uni1D2C","uni1D2D","uni1D2E","uni1D2F","uni1D30","uni1D31","uni1D32","uni1D33","uni1D34","uni1D35","uni1D36","uni1D37","uni1D38","uni1D39","uni1D3A","uni1D3B","uni1D3C","uni1D3D","uni1D3E","uni1D3F","glyph2532","uni1D40","uni1D41","uni1D42","uni2C7D","uni207A","uni207B","uni207C","uni207D","uni207E","ordfeminine","ordmasculine","uni2080","uni2081","uni2082","uni2083","uni2084","uni2085","uni2086","uni2087","uni2088","uni2089","uni2090","uni2091","uni2092","uni2093","uni2094","uni2095","uni2096","uni2097","uni2098","uni2099","uni209A","uni209B","uni209C","uni1D62","uni1D63","uni1D64","uni1D65","uni1D66","uni1D67","uni1D68","uni1D69","uni1D6A","uni2C7C","uni208A","uni208B","uni208C","uni208D","uni208E","onequarter","glyph2583","glyph2584","onehalf","glyph2586","glyph2587","threequarters","glyph2589","glyph2590","uni2150","glyph2592","glyph2593","uni2151","glyph2595","glyph2596","uni2152","glyph2598","glyph2599","onethird","glyph2601","glyph2602","twothirds","glyph2604","glyph2605","uni2155","glyph2607","glyph2608","uni2156","glyph2610","glyph2611","uni2157","glyph2613","glyph2614","uni2158","glyph2616","glyph2617","uni2159","glyph2619","glyph2620","uni215A","glyph2622","glyph2623","oneeighth","glyph2625","glyph2626","threeeighths","glyph2628","glyph2629","fiveeighths","glyph2631","glyph2632","seveneighths","glyph2634","glyph2635","uni2189","glyph2637","glyph2638","uni2105","glyph2640","glyph2641","uni2106","glyph2643","glyph2644","uniE0A1","glyph2646","glyph2647","glyph2648","glyph2649","glyph2650","uni0363","uni0364","uni0365","uni0366","uni0367","uni0368","uni0369","uni036A","uni036B","uni036C","uni036D","uni036E","uni036F","uni01C4","uni01C5","uni01C6","uni01C7","uni01C8","uni01C9","uni01CA","uni01CB","uni01CC","uni02A3","uni01F1","uni01F2","uni01F3","uni02A4","uni02A5","uni02A6","uni02A7","uni02A8","uni02A9","uni02AA","uni02AB","uni0478","uni0479","peseta","uni20A8","trademark","uni2120","uniFF02","uniFF03","uniFF04","uniFF05","uniFF06","uniFF07","uniFF0A","uniFF0B","uniFF0D","uniFF0F","uniFF10","uniFF11","uniFF12","uniFF13","uniFF14","uniFF15","uniFF16","uniFF17","uniFF18","uniFF19","uniFF1C","uniFF1D","uniFF1E","uniFF20","uniFF21","uniFF22","uniFF23","uniFF24","uniFF25","uniFF26","uniFF27","uniFF28","uniFF29","uniFF2A","uniFF2B","uniFF2C","uniFF2D","uniFF2E","uniFF2F","uniFF30","uniFF31","uniFF32","uniFF33","uniFF34","uniFF35","uniFF36","uniFF37","uniFF38","uniFF39","uniFF3A","uniFF3B","uniFF3C","uniFF3D","uniFF3E","uniFF3F","uniFF40","uniFF41","uniFF42","uniFF43","uniFF44","uniFF45","uniFF46","uniFF47","uniFF48","uniFF49","uniFF4A","uniFF4B","uniFF4C","uniFF4D","uniFF4E","uniFF4F","uniFF50","uniFF51","uniFF52","uniFF53","uniFF54","uniFF55","uniFF56","uniFF57","uniFF58","uniFF59","uniFF5A","uniFF5B","uniFF5C","uniFF5D","uniFF5E","uniFFE0","uniFFE1","uniFFE5"], - "fpgm": [176,0,44,32,176,0,85,88,69,89,32,32,176,40,96,102,32,138,85,88,176,2,37,97,185,8,0,8,0,99,99,35,98,27,33,33,176,0,89,176,0,67,35,68,178,0,1,0,67,96,66,45,176,1,44,176,32,96,102,45,176,2,44,32,100,32,176,192,80,176,4,38,90,178,40,1,10,67,69,99,69,176,6,69,88,33,176,3,37,89,82,91,88,33,35,33,27,138,88,32,176,80,80,88,33,176,64,89,27,32,176,56,80,88,33,176,56,89,89,32,177,1,10,67,69,99,69,97,100,176,40,80,88,33,177,1,10,67,69,99,69,32,176,48,80,88,33,176,48,89,27,32,176,192,80,88,32,102,32,138,138,97,32,176,10,80,88,96,27,32,176,32,80,88,33,176,10,96,27,32,176,54,80,88,33,176,54,96,27,96,89,89,89,27,176,1,43,89,89,35,176,0,80,88,101,89,89,45,176,3,44,32,69,32,176,4,37,97,100,32,176,5,67,80,88,176,5,35,66,176,6,35,66,27,33,33,89,176,1,96,45,176,4,44,35,33,35,33,32,100,177,5,98,66,32,176,6,35,66,176,6,69,88,27,177,1,10,67,69,99,177,1,10,67,176,5,96,69,99,176,3,42,33,32,176,6,67,32,138,32,138,176,1,43,177,48,5,37,176,4,38,81,88,96,80,27,97,82,89,88,35,89,33,89,32,176,64,83,88,176,1,43,27,33,176,64,89,35,176,0,80,88,101,89,45,176,5,44,176,7,67,43,178,0,2,0,67,96,66,45,176,6,44,176,7,35,66,35,32,176,0,35,66,97,176,2,98,102,176,1,99,176,1,96,176,5,42,45,176,7,44,32,32,69,32,176,11,67,99,184,4,0,98,32,176,0,80,88,176,64,96,89,102,176,1,99,96,68,176,1,96,45,176,8,44,178,7,11,0,67,69,66,42,33,178,0,1,0,67,96,66,45,176,9,44,176,0,67,35,68,178,0,1,0,67,96,66,45,176,10,44,32,32,69,32,176,1,43,35,176,0,67,176,4,37,96,32,69,138,35,97,32,100,32,176,32,80,88,33,176,0,27,176,48,80,88,176,32,27,176,64,89,89,35,176,0,80,88,101,89,176,3,37,35,97,68,68,176,1,96,45,176,11,44,32,32,69,32,176,1,43,35,176,0,67,176,4,37,96,32,69,138,35,97,32,100,176,36,80,88,176,0,27,176,64,89,35,176,0,80,88,101,89,176,3,37,35,97,68,68,176,1,96,45,176,12,44,32,176,0,35,66,178,11,10,3,69,88,33,27,35,33,89,42,33,45,176,13,44,177,2,2,69,176,100,97,68,45,176,14,44,176,1,96,32,32,176,12,67,74,176,0,80,88,32,176,12,35,66,89,176,13,67,74,176,0,82,88,32,176,13,35,66,89,45,176,15,44,32,176,16,98,102,176,1,99,32,184,4,0,99,138,35,97,176,14,67,96,32,138,96,32,176,14,35,66,35,45,176,16,44,75,84,88,177,4,100,68,89,36,176,13,101,35,120,45,176,17,44,75,81,88,75,83,88,177,4,100,68,89,27,33,89,36,176,19,101,35,120,45,176,18,44,177,0,15,67,85,88,177,15,15,67,176,1,97,66,176,15,43,89,176,0,67,176,2,37,66,177,12,2,37,66,177,13,2,37,66,176,1,22,35,32,176,3,37,80,88,177,1,0,67,96,176,4,37,66,138,138,32,138,35,97,176,14,42,33,35,176,1,97,32,138,35,97,176,14,42,33,27,177,1,0,67,96,176,2,37,66,176,2,37,97,176,14,42,33,89,176,12,67,71,176,13,67,71,96,176,2,98,32,176,0,80,88,176,64,96,89,102,176,1,99,32,176,11,67,99,184,4,0,98,32,176,0,80,88,176,64,96,89,102,176,1,99,96,177,0,0,19,35,68,176,1,67,176,0,62,178,1,1,1,67,96,66,45,176,19,44,0,177,0,2,69,84,88,176,15,35,66,32,69,176,11,35,66,176,10,35,176,5,96,66,32,96,176,1,97,181,17,17,1,0,14,0,66,66,138,96,177,18,6,43,176,137,43,27,34,89,45,176,20,44,177,0,19,43,45,176,21,44,177,1,19,43,45,176,22,44,177,2,19,43,45,176,23,44,177,3,19,43,45,176,24,44,177,4,19,43,45,176,25,44,177,5,19,43,45,176,26,44,177,6,19,43,45,176,27,44,177,7,19,43,45,176,28,44,177,8,19,43,45,176,29,44,177,9,19,43,45,176,41,44,35,32,176,16,98,102,176,1,99,176,6,96,75,84,88,35,32,46,176,1,93,27,33,33,89,45,176,42,44,35,32,176,16,98,102,176,1,99,176,22,96,75,84,88,35,32,46,176,1,113,27,33,33,89,45,176,43,44,35,32,176,16,98,102,176,1,99,176,38,96,75,84,88,35,32,46,176,1,114,27,33,33,89,45,176,30,44,0,176,13,43,177,0,2,69,84,88,176,15,35,66,32,69,176,11,35,66,176,10,35,176,5,96,66,32,96,176,1,97,181,17,17,1,0,14,0,66,66,138,96,177,18,6,43,176,137,43,27,34,89,45,176,31,44,177,0,30,43,45,176,32,44,177,1,30,43,45,176,33,44,177,2,30,43,45,176,34,44,177,3,30,43,45,176,35,44,177,4,30,43,45,176,36,44,177,5,30,43,45,176,37,44,177,6,30,43,45,176,38,44,177,7,30,43,45,176,39,44,177,8,30,43,45,176,40,44,177,9,30,43,45,176,44,44,32,60,176,1,96,45,176,45,44,32,96,176,17,96,32,67,35,176,1,96,67,176,2,37,97,176,1,96,176,44,42,33,45,176,46,44,176,45,43,176,45,42,45,176,47,44,32,32,71,32,32,176,11,67,99,184,4,0,98,32,176,0,80,88,176,64,96,89,102,176,1,99,96,35,97,56,35,32,138,85,88,32,71,32,32,176,11,67,99,184,4,0,98,32,176,0,80,88,176,64,96,89,102,176,1,99,96,35,97,56,27,33,89,45,176,48,44,0,177,0,2,69,84,88,176,1,22,176,47,42,177,5,1,21,69,88,48,89,27,34,89,45,176,49,44,0,176,13,43,177,0,2,69,84,88,176,1,22,176,47,42,177,5,1,21,69,88,48,89,27,34,89,45,176,50,44,32,53,176,1,96,45,176,51,44,0,176,1,69,99,184,4,0,98,32,176,0,80,88,176,64,96,89,102,176,1,99,176,1,43,176,11,67,99,184,4,0,98,32,176,0,80,88,176,64,96,89,102,176,1,99,176,1,43,176,0,22,180,0,0,0,0,0,68,62,35,56,177,50,1,21,42,33,45,176,52,44,32,60,32,71,32,176,11,67,99,184,4,0,98,32,176,0,80,88,176,64,96,89,102,176,1,99,96,176,0,67,97,56,45,176,53,44,46,23,60,45,176,54,44,32,60,32,71,32,176,11,67,99,184,4,0,98,32,176,0,80,88,176,64,96,89,102,176,1,99,96,176,0,67,97,176,1,67,99,56,45,176,55,44,177,2,0,22,37,32,46,32,71,176,0,35,66,176,2,37,73,138,138,71,35,71,35,97,32,88,98,27,33,89,176,1,35,66,178,54,1,1,21,20,42,45,176,56,44,176,0,22,176,16,35,66,176,4,37,176,4,37,71,35,71,35,97,176,9,67,43,101,138,46,35,32,32,60,138,56,45,176,57,44,176,0,22,176,16,35,66,176,4,37,176,4,37,32,46,71,35,71,35,97,32,176,4,35,66,176,9,67,43,32,176,96,80,88,32,176,64,81,88,179,2,32,3,32,27,179,2,38,3,26,89,66,66,35,32,176,8,67,32,138,35,71,35,71,35,97,35,70,96,176,4,67,176,2,98,32,176,0,80,88,176,64,96,89,102,176,1,99,96,32,176,1,43,32,138,138,97,32,176,2,67,96,100,35,176,3,67,97,100,80,88,176,2,67,97,27,176,3,67,96,89,176,3,37,176,2,98,32,176,0,80,88,176,64,96,89,102,176,1,99,97,35,32,32,176,4,38,35,70,97,56,27,35,176,8,67,70,176,2,37,176,8,67,71,35,71,35,97,96,32,176,4,67,176,2,98,32,176,0,80,88,176,64,96,89,102,176,1,99,96,35,32,176,1,43,35,176,4,67,96,176,1,43,176,5,37,97,176,5,37,176,2,98,32,176,0,80,88,176,64,96,89,102,176,1,99,176,4,38,97,32,176,4,37,96,100,35,176,3,37,96,100,80,88,33,27,35,33,89,35,32,32,176,4,38,35,70,97,56,89,45,176,58,44,176,0,22,176,16,35,66,32,32,32,176,5,38,32,46,71,35,71,35,97,35,60,56,45,176,59,44,176,0,22,176,16,35,66,32,176,8,35,66,32,32,32,70,35,71,176,1,43,35,97,56,45,176,60,44,176,0,22,176,16,35,66,176,3,37,176,2,37,71,35,71,35,97,176,0,84,88,46,32,60,35,33,27,176,2,37,176,2,37,71,35,71,35,97,32,176,5,37,176,4,37,71,35,71,35,97,176,6,37,176,5,37,73,176,2,37,97,185,8,0,8,0,99,99,35,32,88,98,27,33,89,99,184,4,0,98,32,176,0,80,88,176,64,96,89,102,176,1,99,96,35,46,35,32,32,60,138,56,35,33,89,45,176,61,44,176,0,22,176,16,35,66,32,176,8,67,32,46,71,35,71,35,97,32,96,176,32,96,102,176,2,98,32,176,0,80,88,176,64,96,89,102,176,1,99,35,32,32,60,138,56,45,176,62,44,35,32,46,70,176,2,37,70,176,16,67,88,80,27,82,89,88,32,60,89,46,177,46,1,20,43,45,176,63,44,35,32,46,70,176,2,37,70,176,16,67,88,82,27,80,89,88,32,60,89,46,177,46,1,20,43,45,176,64,44,35,32,46,70,176,2,37,70,176,16,67,88,80,27,82,89,88,32,60,89,35,32,46,70,176,2,37,70,176,16,67,88,82,27,80,89,88,32,60,89,46,177,46,1,20,43,45,176,65,44,176,56,43,35,32,46,70,176,2,37,70,176,16,67,88,80,27,82,89,88,32,60,89,46,177,46,1,20,43,45,176,66,44,176,57,43,138,32,32,60,176,4,35,66,138,56,35,32,46,70,176,2,37,70,176,16,67,88,80,27,82,89,88,32,60,89,46,177,46,1,20,43,176,4,67,46,176,46,43,45,176,67,44,176,0,22,176,4,37,176,4,38,32,46,71,35,71,35,97,176,9,67,43,35,32,60,32,46,35,56,177,46,1,20,43,45,176,68,44,177,8,4,37,66,176,0,22,176,4,37,176,4,37,32,46,71,35,71,35,97,32,176,4,35,66,176,9,67,43,32,176,96,80,88,32,176,64,81,88,179,2,32,3,32,27,179,2,38,3,26,89,66,66,35,32,71,176,4,67,176,2,98,32,176,0,80,88,176,64,96,89,102,176,1,99,96,32,176,1,43,32,138,138,97,32,176,2,67,96,100,35,176,3,67,97,100,80,88,176,2,67,97,27,176,3,67,96,89,176,3,37,176,2,98,32,176,0,80,88,176,64,96,89,102,176,1,99,97,176,2,37,70,97,56,35,32,60,35,56,27,33,32,32,70,35,71,176,1,43,35,97,56,33,89,177,46,1,20,43,45,176,69,44,177,0,56,43,46,177,46,1,20,43,45,176,70,44,177,0,57,43,33,35,32,32,60,176,4,35,66,35,56,177,46,1,20,43,176,4,67,46,176,46,43,45,176,71,44,176,0,21,32,71,176,0,35,66,178,0,1,1,21,20,19,46,176,52,42,45,176,72,44,176,0,21,32,71,176,0,35,66,178,0,1,1,21,20,19,46,176,52,42,45,176,73,44,177,0,1,20,19,176,53,42,45,176,74,44,176,55,42,45,176,75,44,176,0,22,69,35,32,46,32,70,138,35,97,56,177,46,1,20,43,45,176,76,44,176,8,35,66,176,75,43,45,176,77,44,178,0,0,68,43,45,176,78,44,178,0,1,68,43,45,176,79,44,178,1,0,68,43,45,176,80,44,178,1,1,68,43,45,176,81,44,178,0,0,69,43,45,176,82,44,178,0,1,69,43,45,176,83,44,178,1,0,69,43,45,176,84,44,178,1,1,69,43,45,176,85,44,179,0,0,0,65,43,45,176,86,44,179,0,1,0,65,43,45,176,87,44,179,1,0,0,65,43,45,176,88,44,179,1,1,0,65,43,45,176,89,44,179,0,0,1,65,43,45,176,90,44,179,0,1,1,65,43,45,176,91,44,179,1,0,1,65,43,45,176,92,44,179,1,1,1,65,43,45,176,93,44,178,0,0,67,43,45,176,94,44,178,0,1,67,43,45,176,95,44,178,1,0,67,43,45,176,96,44,178,1,1,67,43,45,176,97,44,178,0,0,70,43,45,176,98,44,178,0,1,70,43,45,176,99,44,178,1,0,70,43,45,176,100,44,178,1,1,70,43,45,176,101,44,179,0,0,0,66,43,45,176,102,44,179,0,1,0,66,43,45,176,103,44,179,1,0,0,66,43,45,176,104,44,179,1,1,0,66,43,45,176,105,44,179,0,0,1,66,43,45,176,106,44,179,0,1,1,66,43,45,176,107,44,179,1,0,1,66,43,45,176,108,44,179,1,1,1,66,43,45,176,109,44,177,0,58,43,46,177,46,1,20,43,45,176,110,44,177,0,58,43,176,62,43,45,176,111,44,177,0,58,43,176,63,43,45,176,112,44,176,0,22,177,0,58,43,176,64,43,45,176,113,44,177,1,58,43,176,62,43,45,176,114,44,177,1,58,43,176,63,43,45,176,115,44,176,0,22,177,1,58,43,176,64,43,45,176,116,44,177,0,59,43,46,177,46,1,20,43,45,176,117,44,177,0,59,43,176,62,43,45,176,118,44,177,0,59,43,176,63,43,45,176,119,44,177,0,59,43,176,64,43,45,176,120,44,177,1,59,43,176,62,43,45,176,121,44,177,1,59,43,176,63,43,45,176,122,44,177,1,59,43,176,64,43,45,176,123,44,177,0,60,43,46,177,46,1,20,43,45,176,124,44,177,0,60,43,176,62,43,45,176,125,44,177,0,60,43,176,63,43,45,176,126,44,177,0,60,43,176,64,43,45,176,127,44,177,1,60,43,176,62,43,45,176,128,44,177,1,60,43,176,63,43,45,176,129,44,177,1,60,43,176,64,43,45,176,130,44,177,0,61,43,46,177,46,1,20,43,45,176,131,44,177,0,61,43,176,62,43,45,176,132,44,177,0,61,43,176,63,43,45,176,133,44,177,0,61,43,176,64,43,45,176,134,44,177,1,61,43,176,62,43,45,176,135,44,177,1,61,43,176,63,43,45,176,136,44,177,1,61,43,176,64,43,45,176,137,44,179,9,4,2,3,69,88,33,27,35,33,89,66,43,176,8,101,176,3,36,80,120,177,5,1,21,69,88,48,89,45], - "prep": [0,75,184,0,200,82,88,177,1,1,142,89,176,1,185,8,0,8,0,99,112,177,0,7,66,182,115,95,75,55,35,5,0,42,177,0,7,66,64,12,102,8,82,8,62,8,42,8,24,7,5,8,42,177,0,7,66,64,12,112,6,92,6,72,6,52,6,33,5,5,8,42,177,0,12,66,190,25,192,20,192,15,192,10,192,6,64,0,5,0,9,42,177,0,17,66,190,0,64,0,64,0,64,0,64,0,64,0,5,0,9,42,177,3,0,68,177,36,1,136,81,88,176,64,136,88,177,3,100,68,177,38,1,136,81,88,186,8,128,0,1,4,64,136,99,84,88,177,3,0,68,89,89,89,89,64,12,104,8,84,8,64,8,44,8,26,7,5,12,42,184,1,255,133,176,4,141,177,2,0,68,179,5,100,6,0,68,68], - "cvt_": [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,80,0,72,0,72,2,223,0,0,2,18,0,0,255,51,3,209,254,240,2,231,255,248,2,26,255,248,255,51,3,209,254,240,0,80,0,80,0,72,0,72,2,223,0,0,2,223,2,18,0,0,255,51,3,209,254,240,2,231,255,248,2,231,2,26,255,248,255,51,3,209,254,240,0,80,0,80,0,72,0,72,2,223,0,0,2,223,2,18,0,0,255,51,3,209,254,240,2,231,255,248,2,236,2,26,255,248,255,43,3,209,254,240,0,79,0,79,0,72,0,72,1,156,255,154,1,156,1,13,255,154,255,10,3,209,254,240,1,162,255,148,1,165,1,19,255,148,255,10,3,209,254,240,0,79,0,79,0,72,0,72,3,44,1,42,3,44,2,157,1,42,0,154,3,209,254,240,3,50,1,36,3,53,2,163,1,36,0,149,3,209,254,240], + "fpgm": "sAAsILAAVVhFWSAgsChgZiCKVViwAiVhuQgACABjYyNiGyEhsABZsABDI0SyAAEAQ2BCLbABLLAgYGYtsAIsIGQgsMBQsAQmWrIoAQpDRWNFsAZFWCGwAyVZUltYISMhG4pYILBQUFghsEBZGyCwOFBYIbA4WVkgsQEKQ0VjRWFksChQWCGxAQpDRWNFILAwUFghsDBZGyCwwFBYIGYgiophILAKUFhgGyCwIFBYIbAKYBsgsDZQWCGwNmAbYFlZWRuwAStZWSOwAFBYZVlZLbADLCBFILAEJWFkILAFQ1BYsAUjQrAGI0IbISFZsAFgLbAELCMhIyEgZLEFYkIgsAYjQrAGRVgbsQEKQ0VjsQEKQ7AFYEVjsAMqISCwBkMgiiCKsAErsTAFJbAEJlFYYFAbYVJZWCNZIVkgsEBTWLABKxshsEBZI7AAUFhlWS2wBSywB0MrsgACAENgQi2wBiywByNCIyCwACNCYbACYmawAWOwAWCwBSotsAcsICBFILALQ2O4BABiILAAUFiwQGBZZrABY2BEsAFgLbAILLIHCwBDRUIqIbIAAQBDYEItsAkssABDI0SyAAEAQ2BCLbAKLCAgRSCwASsjsABDsAQlYCBFiiNhIGQgsCBQWCGwABuwMFBYsCAbsEBZWSOwAFBYZVmwAyUjYUREsAFgLbALLCAgRSCwASsjsABDsAQlYCBFiiNhIGSwJFBYsAAbsEBZI7AAUFhlWbADJSNhRESwAWAtsAwsILAAI0KyCwoDRVghGyMhWSohLbANLLECAkWwZGFELbAOLLABYCAgsAxDSrAAUFggsAwjQlmwDUNKsABSWCCwDSNCWS2wDywgsBBiZrABYyC4BABjiiNhsA5DYCCKYCCwDiNCIy2wECxLVFixBGREWSSwDWUjeC2wESxLUVhLU1ixBGREWRshWSSwE2UjeC2wEiyxAA9DVVixDw9DsAFhQrAPK1mwAEOwAiVCsQwCJUKxDQIlQrABFiMgsAMlUFixAQBDYLAEJUKKiiCKI2GwDiohI7ABYSCKI2GwDiohG7EBAENgsAIlQrACJWGwDiohWbAMQ0ewDUNHYLACYiCwAFBYsEBgWWawAWMgsAtDY7gEAGIgsABQWLBAYFlmsAFjYLEAABMjRLABQ7AAPrIBAQFDYEItsBMsALEAAkVUWLAPI0IgRbALI0KwCiOwBWBCIGCwAWG1EREBAA4AQkKKYLESBiuwiSsbIlktsBQssQATKy2wFSyxARMrLbAWLLECEystsBcssQMTKy2wGCyxBBMrLbAZLLEFEystsBossQYTKy2wGyyxBxMrLbAcLLEIEystsB0ssQkTKy2wKSwjILAQYmawAWOwBmBLVFgjIC6wAV0bISFZLbAqLCMgsBBiZrABY7AWYEtUWCMgLrABcRshIVktsCssIyCwEGJmsAFjsCZgS1RYIyAusAFyGyEhWS2wHiwAsA0rsQACRVRYsA8jQiBFsAsjQrAKI7AFYEIgYLABYbUREQEADgBCQopgsRIGK7CJKxsiWS2wHyyxAB4rLbAgLLEBHistsCEssQIeKy2wIiyxAx4rLbAjLLEEHistsCQssQUeKy2wJSyxBh4rLbAmLLEHHistsCcssQgeKy2wKCyxCR4rLbAsLCA8sAFgLbAtLCBgsBFgIEMjsAFgQ7ACJWGwAWCwLCohLbAuLLAtK7AtKi2wLywgIEcgILALQ2O4BABiILAAUFiwQGBZZrABY2AjYTgjIIpVWCBHICCwC0NjuAQAYiCwAFBYsEBgWWawAWNgI2E4GyFZLbAwLACxAAJFVFiwARawLyqxBQEVRVgwWRsiWS2wMSwAsA0rsQACRVRYsAEWsC8qsQUBFUVYMFkbIlktsDIsIDWwAWAtsDMsALABRWO4BABiILAAUFiwQGBZZrABY7ABK7ALQ2O4BABiILAAUFiwQGBZZrABY7ABK7AAFrQAAAAAAEQ+IzixMgEVKiEtsDQsIDwgRyCwC0NjuAQAYiCwAFBYsEBgWWawAWNgsABDYTgtsDUsLhc8LbA2LCA8IEcgsAtDY7gEAGIgsABQWLBAYFlmsAFjYLAAQ2GwAUNjOC2wNyyxAgAWJSAuIEewACNCsAIlSYqKRyNHI2EgWGIbIVmwASNCsjYBARUUKi2wOCywABawECNCsAQlsAQlRyNHI2GwCUMrZYouIyAgPIo4LbA5LLAAFrAQI0KwBCWwBCUgLkcjRyNhILAEI0KwCUMrILBgUFggsEBRWLMCIAMgG7MCJgMaWUJCIyCwCEMgiiNHI0cjYSNGYLAEQ7ACYiCwAFBYsEBgWWawAWNgILABKyCKimEgsAJDYGQjsANDYWRQWLACQ2EbsANDYFmwAyWwAmIgsABQWLBAYFlmsAFjYSMgILAEJiNGYTgbI7AIQ0awAiWwCENHI0cjYWAgsARDsAJiILAAUFiwQGBZZrABY2AjILABKyOwBENgsAErsAUlYbAFJbACYiCwAFBYsEBgWWawAWOwBCZhILAEJWBkI7ADJWBkUFghGyMhWSMgILAEJiNGYThZLbA6LLAAFrAQI0IgICCwBSYgLkcjRyNhIzw4LbA7LLAAFrAQI0IgsAgjQiAgIEYjR7ABKyNhOC2wPCywABawECNCsAMlsAIlRyNHI2GwAFRYLiA8IyEbsAIlsAIlRyNHI2EgsAUlsAQlRyNHI2GwBiWwBSVJsAIlYbkIAAgAY2MjIFhiGyFZY7gEAGIgsABQWLBAYFlmsAFjYCMuIyAgPIo4IyFZLbA9LLAAFrAQI0IgsAhDIC5HI0cjYSBgsCBgZrACYiCwAFBYsEBgWWawAWMjICA8ijgtsD4sIyAuRrACJUawEENYUBtSWVggPFkusS4BFCstsD8sIyAuRrACJUawEENYUhtQWVggPFkusS4BFCstsEAsIyAuRrACJUawEENYUBtSWVggPFkjIC5GsAIlRrAQQ1hSG1BZWCA8WS6xLgEUKy2wQSywOCsjIC5GsAIlRrAQQ1hQG1JZWCA8WS6xLgEUKy2wQiywOSuKICA8sAQjQoo4IyAuRrACJUawEENYUBtSWVggPFkusS4BFCuwBEMusC4rLbBDLLAAFrAEJbAEJiAuRyNHI2GwCUMrIyA8IC4jOLEuARQrLbBELLEIBCVCsAAWsAQlsAQlIC5HI0cjYSCwBCNCsAlDKyCwYFBYILBAUVizAiADIBuzAiYDGllCQiMgR7AEQ7ACYiCwAFBYsEBgWWawAWNgILABKyCKimEgsAJDYGQjsANDYWRQWLACQ2EbsANDYFmwAyWwAmIgsABQWLBAYFlmsAFjYbACJUZhOCMgPCM4GyEgIEYjR7ABKyNhOCFZsS4BFCstsEUssQA4Ky6xLgEUKy2wRiyxADkrISMgIDywBCNCIzixLgEUK7AEQy6wListsEcssAAVIEewACNCsgABARUUEy6wNCotsEgssAAVIEewACNCsgABARUUEy6wNCotsEkssQABFBOwNSotsEossDcqLbBLLLAAFkUjIC4gRoojYTixLgEUKy2wTCywCCNCsEsrLbBNLLIAAEQrLbBOLLIAAUQrLbBPLLIBAEQrLbBQLLIBAUQrLbBRLLIAAEUrLbBSLLIAAUUrLbBTLLIBAEUrLbBULLIBAUUrLbBVLLMAAABBKy2wViyzAAEAQSstsFcsswEAAEErLbBYLLMBAQBBKy2wWSyzAAABQSstsFosswABAUErLbBbLLMBAAFBKy2wXCyzAQEBQSstsF0ssgAAQystsF4ssgABQystsF8ssgEAQystsGAssgEBQystsGEssgAARistsGIssgABRistsGMssgEARistsGQssgEBRistsGUsswAAAEIrLbBmLLMAAQBCKy2wZyyzAQAAQistsGgsswEBAEIrLbBpLLMAAAFCKy2waiyzAAEBQistsGssswEAAUIrLbBsLLMBAQFCKy2wbSyxADorLrEuARQrLbBuLLEAOiuwPistsG8ssQA6K7A/Ky2wcCywABaxADorsEArLbBxLLEBOiuwPistsHIssQE6K7A/Ky2wcyywABaxATorsEArLbB0LLEAOysusS4BFCstsHUssQA7K7A+Ky2wdiyxADsrsD8rLbB3LLEAOyuwQCstsHgssQE7K7A+Ky2weSyxATsrsD8rLbB6LLEBOyuwQCstsHsssQA8Ky6xLgEUKy2wfCyxADwrsD4rLbB9LLEAPCuwPystsH4ssQA8K7BAKy2wfyyxATwrsD4rLbCALLEBPCuwPystsIEssQE8K7BAKy2wgiyxAD0rLrEuARQrLbCDLLEAPSuwPistsIQssQA9K7A/Ky2whSyxAD0rsEArLbCGLLEBPSuwPistsIcssQE9K7A/Ky2wiCyxAT0rsEArLbCJLLMJBAIDRVghGyMhWUIrsAhlsAMkUHixBQEVRVgwWS0=", + "prep": "AEu4AMhSWLEBAY5ZsAG5CAAIAGNwsQAHQrZzX0s3IwUAKrEAB0JADGYIUgg+CCoIGAcFCCqxAAdCQAxwBlwGSAY0BiEFBQgqsQAMQr4ZwBTAD8AKwAZAAAUACSqxABFCvgBAAEAAQABAAEAABQAJKrEDAESxJAGIUViwQIhYsQNkRLEmAYhRWLoIgAABBECIY1RYsQMARFlZWVlADGgIVAhACCwIGgcFDCq4Af+FsASNsQIARLMFZAYAREQ=", + "cvt_": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAEgASALfAAACEgAA/zMD0f7wAuf/+AIa//j/MwPR/vAAUABQAEgASALfAAAC3wISAAD/MwPR/vAC5//4AucCGv/4/zMD0f7wAFAAUABIAEgC3wAAAt8CEgAA/zMD0f7wAuf/+ALsAhr/+P8rA9H+8ABPAE8ASABIAZz/mgGcAQ3/mv8KA9H+8AGi/5QBpQET/5T/CgPR/vAATwBPAEgASAMsASoDLAKdASoAmgPR/vADMgEkAzUCowEkAJUD0f7w", "gasp": [ { "rangeMaxPPEM": 65535, From 3c3f40f5becfcfcc39f69ec8dc20672ffe144342 Mon Sep 17 00:00:00 2001 From: be5invis Date: Mon, 11 Apr 2016 14:37:55 +0800 Subject: [PATCH 11/32] fix typo --- src/tables/otl/otl.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/tables/otl/otl.c b/src/tables/otl/otl.c index f1857746..530361d3 100644 --- a/src/tables/otl/otl.c +++ b/src/tables/otl/otl.c @@ -493,18 +493,16 @@ static INLINE script_hash *figureOutLanguagesFromJson(json_value *languages, fea s->script->features = af; HASH_ADD_STR(sh, name, s); } else { - fprintf(stderr, "[OTFCC-fea] There is no valid featue " + fprintf(stderr, "[OTFCC-fea] There is no valid feature " "assignments for [%s/%s]. This language " - "term will " - "be ignored.\n", + "term will be ignored.\n", tag, languageName); if (af) { FREE(af); } } } else { - fprintf(stderr, "[OTFCC-fea] There is no valid featue " + fprintf(stderr, "[OTFCC-fea] There is no valid feature " "assignments for [%s/%s]. This language term " - "will " - "be ignored.\n", + "will be ignored.\n", tag, languageName); if (af) { FREE(af); } From 888dac15a965eed88842c8cff848c429a8f28d48 Mon Sep 17 00:00:00 2001 From: Miguel Sousa Date: Thu, 14 Apr 2016 01:31:00 -0700 Subject: [PATCH 12/32] Typos --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 901745ed..65ce0ac9 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ The `otfcc` is a C library and utility used for parsing and writing OpenType fon ## Key features -* Read a OpenType font; (TrueType is supported as well) -* Write a OpenType font; +* Read an OpenType font; (TrueType is supported as well) +* Write an OpenType font; ## `otfcc` command line tool @@ -21,10 +21,10 @@ otfccdump [OPTIONS] input.[otf|ttf|ttc] --ugly : Force uglify the output JSON. --time : Time each substep. --ignore-glyph-order : Do not export glyph order information. - --ignore-hints : Do not export hingint information. + --ignore-hints : Do not export hinting information. ``` -### `otfccbuild` : Build an OpenType font file form JSON +### `otfccbuild` : Build an OpenType font file from JSON ``` otfccbuild [OPTIONS] input.json -o output.[ttf|otf] From 705946e011b9d9148f1f84cefabad1c27e7f1e84 Mon Sep 17 00:00:00 2001 From: be5invis Date: Thu, 14 Apr 2016 20:19:40 +0800 Subject: [PATCH 13/32] move to premake --- .gitignore | 1 + _vcbuild32.bat | 2 + _vcbuild64.bat | 2 + extern/json.c | 9 ++- makefile | 176 ++++++++--------------------------------- premake5.lua | 61 ++++++++++++++ src/otfccdump.c | 1 - src/support/base64.c | 7 +- src/support/platform.h | 5 ++ src/tables/OS_2.c | 15 ++-- src/tables/hdmx.h | 4 +- src/version.h | 2 +- 12 files changed, 121 insertions(+), 164 deletions(-) create mode 100644 _vcbuild32.bat create mode 100644 _vcbuild64.bat create mode 100644 premake5.lua diff --git a/.gitignore b/.gitignore index 7c07ff7d..11d93122 100644 --- a/.gitignore +++ b/.gitignore @@ -28,5 +28,6 @@ *.app build/ +bin/ .vscode/ _test diff --git a/_vcbuild32.bat b/_vcbuild32.bat new file mode 100644 index 00000000..bb87651a --- /dev/null +++ b/_vcbuild32.bat @@ -0,0 +1,2 @@ +CALL "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" x86 +msbuild build/otfcc.sln /m %* diff --git a/_vcbuild64.bat b/_vcbuild64.bat new file mode 100644 index 00000000..32ff33fc --- /dev/null +++ b/_vcbuild64.bat @@ -0,0 +1,2 @@ +CALL "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" amd64 +msbuild build/otfcc.sln /m %* diff --git a/extern/json.c b/extern/json.c index 90a12cf3..2eaa6062 100644 --- a/extern/json.c +++ b/extern/json.c @@ -226,7 +226,8 @@ json_value * json_parse_ex (json_settings * settings, json_char error [json_error_max]; const json_char * end; json_value * top, * root, * alloc = 0; - json_state state = { 0 }; + json_state state; + state.used_memory = 0; long flags; long num_digits = 0, num_e = 0; json_int_t num_fraction = 0; @@ -948,7 +949,8 @@ json_value * json_parse_ex (json_settings * settings, json_value * json_parse (const json_char * json, size_t length) { - json_settings settings = { 0 }; + json_settings settings; + settings.max_memory = 0; return json_parse_ex (&settings, json, length, 0); } @@ -1006,7 +1008,8 @@ void json_value_free_ex (json_settings * settings, json_value * value) void json_value_free (json_value * value) { - json_settings settings = { 0 }; + json_settings settings; + settings.max_memory = 0; settings.mem_free = default_free; json_value_free_ex (&settings, value); } diff --git a/makefile b/makefile index ba39a2b2..7187623a 100644 --- a/makefile +++ b/makefile @@ -1,145 +1,31 @@ -CC = clang -LINK = clang -CFLAGS = -O3 -Wall -Wno-multichar -D_CARYLL_USE_PRE_SERIALIZED -CFLAGS_EXTERN = -O3 -D_CARYLL_USE_PRE_SERIALIZED - -TARGETDIR = $(if $(TARGET),build/$(TARGET),build) -DIRS = $(if $(TARGET),build $(TARGETDIR),$(TARGETDIR)) - -ifeq ($(TARGET), debug) -CFLAGS = -g -Ddebug -CFLAGS_EXTERN = -g -Ddebug -LINKFLAGS = -g -Ddebug -endif - -ifeq ($(TARGET), mingw-w32) -CC = gcc -LINK = gcc -CFLAGS = -m32 -O3 -flto -Wall -Wno-multichar -D_CARYLL_USE_PRE_SERIALIZED -CFLAGS_EXTERN = -m32 -O3 -flto -D_CARYLL_USE_PRE_SERIALIZED -LINKFLAGS = -m32 -endif - -ifeq ($(TARGET), mingw-w64) -CC = gcc -LINK = gcc -CFLAGS = -m64 -O3 -flto -Wall -Wno-multichar -D_CARYLL_USE_PRE_SERIALIZED -CFLAGS_EXTERN = -m64 -O3 -flto -D_CARYLL_USE_PRE_SERIALIZED -LINKFLAGS = -m64 -endif - -ifeq ($(TARGET), mingw-clang-w64) -CFLAGS = -m64 -O3 -Wall -Wno-multichar -D_CARYLL_USE_PRE_SERIALIZED -CFLAGS_EXTERN = -m64 -O3 -D_CARYLL_USE_PRE_SERIALIZED -LINKFLAGS = -m64 -endif - -all : objects - -ifdef SystemRoot # win32 -SUFFIX = .exe -endif - -MAIN_OBJECTS_1 = $(TARGETDIR)/caryll-font.o $(TARGETDIR)/caryll-sfnt.o $(TARGETDIR)/caryll-sfnt-builder.o -MAIN_OBJECTS = $(MAIN_OBJECTS_1) $(TARGETDIR)/otfccdump.o $(TARGETDIR)/otfccbuild.o -TABLE_OBJECTS = $(TARGETDIR)/table-head.o $(TARGETDIR)/table-hhea.o $(TARGETDIR)/table-maxp.o \ - $(TARGETDIR)/table-hmtx.o $(TARGETDIR)/table-post.o $(TARGETDIR)/table-hdmx.o \ - $(TARGETDIR)/table-PCLT.o $(TARGETDIR)/table-LTSH.o $(TARGETDIR)/table-vhea.o \ - $(TARGETDIR)/table-OS_2.o $(TARGETDIR)/table-glyf.o $(TARGETDIR)/table-cmap.o \ - $(TARGETDIR)/table-name.o $(TARGETDIR)/table-fpgm-prep.o $(TARGETDIR)/table-gasp.o \ - $(TARGETDIR)/table-vmtx.o - -OTL_OBJECTS = $(TARGETDIR)/otl-otl.o $(TARGETDIR)/otl-coverage.o \ - $(TARGETDIR)/otl-classdef.o $(TARGETDIR)/otl-extend.o \ - $(TARGETDIR)/otl-gsub-single.o $(TARGETDIR)/otl-gsub-multi.o \ - $(TARGETDIR)/otl-gsub-ligature.o $(TARGETDIR)/otl-chaining.o \ - $(TARGETDIR)/otl-gpos-common.o $(TARGETDIR)/otl-gpos-single.o \ - $(TARGETDIR)/otl-gpos-pair.o $(TARGETDIR)/otl-gpos-cursive.o \ - $(TARGETDIR)/otl-gpos-mark-to-single.o $(TARGETDIR)/otl-gpos-mark-to-ligature.o \ - $(TARGETDIR)/otl-gsub-reverse.o $(TARGETDIR)/otl-GDEF.o - -FONTOP_OBJECTS = $(TARGETDIR)/fontop-unconsolidate.o $(TARGETDIR)/fontop-consolidate.o \ - $(TARGETDIR)/fontop-stat.o - -FONTOP_OTL_OBJECTS = $(TARGETDIR)/fopotl-common.o \ - $(TARGETDIR)/fopotl-gsub-single.o $(TARGETDIR)/fopotl-gsub-multi.o \ - $(TARGETDIR)/fopotl-gsub-ligature.o $(TARGETDIR)/fopotl-chaining.o \ - $(TARGETDIR)/fopotl-gpos-single.o $(TARGETDIR)/fopotl-gpos-pair.o \ - $(TARGETDIR)/fopotl-gpos-cursive.o $(TARGETDIR)/fopotl-mark.o \ - $(TARGETDIR)/fopotl-gsub-reverse.o $(TARGETDIR)/fopotl-GDEF.o - -EXTERN_OBJECTS = $(TARGETDIR)/extern-sds.o $(TARGETDIR)/extern-json.o $(TARGETDIR)/extern-json-builder.o -SUPPORT_OBJECTS = $(TARGETDIR)/support-glyphorder.o $(TARGETDIR)/support-aglfn.o \ - $(TARGETDIR)/support-stopwatch.o $(TARGETDIR)/support-unicodeconv.o \ - $(TARGETDIR)/support-buffer.o $(TARGETDIR)/support-base64.o -EXECUTABLES = $(TARGETDIR)/otfccdump$(SUFFIX) $(TARGETDIR)/otfccbuild$(SUFFIX) - -OBJECTS = $(EXTERN_OBJECTS) $(SUPPORT_OBJECTS) $(TABLE_OBJECTS) $(OTL_OBJECTS) \ - $(FONTOP_OBJECTS) $(FONTOP_OTL_OBJECTS) $(MAIN_OBJECTS_1) - -$(EXTERN_OBJECTS) : $(TARGETDIR)/extern-%.o : extern/%.c | $(DIRS) - @echo CC "->" $@ - @$(CC) $(CFLAGS_EXTERN) -c $< -o $@ - -SUPPORT_H = $(subst .o,.h,$(subst $(TARGETDIR)/support-,src/support/,$(SUPPORT_OBJECTS))) src/support/util.h -$(SUPPORT_OBJECTS) : $(TARGETDIR)/support-%.o : src/support/%.c | $(DIRS) - @echo CC "->" $@ - @$(CC) $(CFLAGS) -c $< -o $@ - -TABLES_H = $(subst .o,.h,$(subst $(TARGETDIR)/table-,src/tables/,$(TABLE_OBJECTS))) -$(TABLE_OBJECTS) : $(TARGETDIR)/table-%.o : src/tables/%.c src/tables/%.h $(SUPPORT_H) $(TABLES_H) | $(DIRS) - @echo CC "->" $@ - @$(CC) $(CFLAGS) -c $< -o $@ - -OTL_H = $(subst .o,.h,$(subst $(TARGETDIR)/otl-,src/tables/otl/,$(OTL_OBJECTS))) -$(OTL_OBJECTS) : $(TARGETDIR)/otl-%.o : src/tables/otl/%.c src/tables/otl/%.h $(SUPPORT_H) $(OTL_H) | $(DIRS) - @echo CC "->" $@ - @$(CC) $(CFLAGS) -c $< -o $@ - -FOPOTL_H = $(subst .o,.h,$(subst $(TARGETDIR)/fopotl-,src/fontops/otl/,$(FONTOP_OTL_OBJECTS))) -$(FONTOP_OTL_OBJECTS) : $(TARGETDIR)/fopotl-%.o : src/fontops/otl/%.c src/fontops/otl/%.h $(SUPPORT_H) $(TABLES_H) $(OTL_H) $(FOPOTL_H) | $(DIRS) - @echo CC "->" $@ - @$(CC) $(CFLAGS) -c $< -o $@ - -FONTOPS_H = $(subst .o,.h,$(subst $(TARGETDIR)/fontop-,src/fontops/,$(FONTOP_OBJECTS))) -$(FONTOP_OBJECTS) : $(TARGETDIR)/fontop-%.o : src/fontops/%.c src/fontops/%.h $(SUPPORT_H) $(TABLES_H) $(OTL_H) $(FONTOPS_H) $(FOPOTL_H) | $(DIRS) - @echo CC "->" $@ - @$(CC) $(CFLAGS) -c $< -o $@ - -MAIN_H = $(subst .o,.h,$(subst $(TARGETDIR)/,src/,$(MAIN_OBJECTS_1))) src/support/platform.h -$(MAIN_OBJECTS) : $(TARGETDIR)/%.o : src/%.c $(MAIN_H) $(SUPPORT_H) $(TABLES_H) $(OTL_H) $(FONTOPS_H) $(FOPOTL_H) | $(DIRS) - @echo CC "->" $@ - @$(CC) $(CFLAGS) -c $< -o $@ - -$(EXECUTABLES): $(TARGETDIR)/%$(SUFFIX) : $(TARGETDIR)/%.o $(OBJECTS) - @echo LD "->" $@ - @$(LINK) $(LINKFLAGS) $^ -o $@ - -objects: $(EXECUTABLES) - -TESTFILES = $(TARGETDIR)/test-payload-1$(SUFFIX) $(TARGETDIR)/test-buffer$(SUFFIX) -$(TARGETDIR)/%.o : tests/%.c | $(DIRS) - @echo CC "->" $@ - @$(CC) $(CFLAGS) -c $^ -o $@ -$(TARGETDIR)/%$(SUFFIX) : $(TARGETDIR)/%.o $(OBJECTS) - @echo LD "->" $@ - @$(LINK) $(LINKFLAGS) $^ -o $@ - -test: $(TESTFILES) - @echo "====== Start Test ======" - @$(TARGETDIR)/test-buffer$(SUFFIX) - @$(TARGETDIR)/test-payload-1$(SUFFIX) tests/payload/test-out.ttf - -debug : - make TARGET=debug -release : - make TARGET=release - -# directories -build : - @- mkdir $@ - -ifdef TARGET -$(TARGETDIR) : | build - @- mkdir $@ -endif +clang-cl-debug-x64 : + premake5 vs2015 + cmd /c _vcbuild64.bat /property:Configuration=Debug + +clang-cl-debug-x86 : + premake5 vs2015 + cmd /c _vcbuild32.bat /property:Configuration=Debug /property:Platform=win32 + +clang-cl-release-x64 : + premake5 vs2015 + cmd /c _vcbuild64.bat /property:Configuration=Release + +clang-cl-release-x86 : + premake5 vs2015 + cmd /c _vcbuild32.bat /property:Configuration=Release /property:Platform=win32 + +mingw-debug-x64 : + premake5 gmake + cd build && make config=debug_x64 + +mingw-debug-x86 : + premake5 gmake + cd build && make config=debug_x64 + +mingw-release-x64 : + premake5 gmake + cd build && make config=release_x64 + +mingw-release-x86 : + premake5 gmake + cd build && make config=release_x64 diff --git a/premake5.lua b/premake5.lua new file mode 100644 index 00000000..27e15fb5 --- /dev/null +++ b/premake5.lua @@ -0,0 +1,61 @@ +-- Premake 5 configurations +workspace "otfcc" + configurations {"Debug", "Release"} + platforms {"x32", "x64"} + location "build" + + defines {'_CARYLL_USE_PRE_SERIALIZED'} + + filter "action:vs2015" + toolset "msc-LLVM-vs2014" + defines {'_CRT_SECURE_NO_WARNINGS'} + buildoptions { '/Wall', '-Wno-unused-parameter', '-Qunused-arguments' } + flags { "StaticRuntime" } + filter {} + + filter "action:gmake" + buildoptions { '-Wall', '-Wno-multichar' } + filter {} + + filter "configurations:Debug" + defines { "DEBUG" } + flags { "Symbols" } + + filter "configurations:Release" + defines { "NDEBUG" } + optimize "Full" + +project "libotfcc" + kind "StaticLib" + language "C" + files { + "src/**.h", + "src/**.c", + "extern/**.h", + "extern/**.c" + } + + removefiles { + "src/otfccdump.c", + "src/otfccbuild.c" + } + +project "otfccdump" + kind "ConsoleApp" + language "C" + targetdir "bin/%{cfg.buildcfg}-%{cfg.platform}" + links {"libotfcc"} + files { + "src/otfccdump.c" + } + + +project "otfccbuild" + kind "ConsoleApp" + language "C" + targetdir "bin/%{cfg.buildcfg}-%{cfg.platform}" + links {"libotfcc"} + files { + "src/otfccbuild.c" + } + diff --git a/src/otfccdump.c b/src/otfccdump.c index 250b5bdc..a82e0911 100644 --- a/src/otfccdump.c +++ b/src/otfccdump.c @@ -1,6 +1,5 @@ #include "caryll-sfnt.h" #include "caryll-font.h" -#include #include #include "support/stopwatch.h" diff --git a/src/support/base64.c b/src/support/base64.c index fc74dabb..8bdbb4a4 100644 --- a/src/support/base64.c +++ b/src/support/base64.c @@ -9,7 +9,7 @@ uint8_t *base64_encode(const uint8_t *src, size_t len, size_t *out_len) { olen = len * 4 / 3 + 4; /* 3-byte blocks to 4-byte */ olen++; /* nul termination */ - out = malloc(olen); + out = malloc(sizeof(uint8_t) * olen); if (out == NULL) return NULL; end = src + len; @@ -42,7 +42,7 @@ uint8_t *base64_encode(const uint8_t *src, size_t len, size_t *out_len) { uint8_t *base64_decode(const uint8_t *src, size_t len, size_t *out_len) { uint8_t dtable[256], *out, *pos, in[4], block[4], tmp; - size_t i, count, olen; + size_t i, count; memset(dtable, 0x80, 256); for (i = 0; i < sizeof(base64_table); i++) dtable[base64_table[i]] = i; @@ -55,8 +55,7 @@ uint8_t *base64_decode(const uint8_t *src, size_t len, size_t *out_len) { if (count % 4) return NULL; - olen = count / 4 * 3; - pos = out = malloc(count); + pos = out = malloc(sizeof(uint8_t) * count); if (out == NULL) return NULL; count = 0; diff --git a/src/support/platform.h b/src/support/platform.h index 67595a87..23d15c09 100644 --- a/src/support/platform.h +++ b/src/support/platform.h @@ -42,6 +42,11 @@ FILE *__u8fopen(char *path, char *mode) { return f; } #define u8fopen __u8fopen +#ifdef _MSC_VER +#include +#define isatty _isatty +#define fileno _fileno +#endif #else #define u8fopen fopen #endif diff --git a/src/tables/OS_2.c b/src/tables/OS_2.c index 8fc27f74..65c672a4 100644 --- a/src/tables/OS_2.c +++ b/src/tables/OS_2.c @@ -170,15 +170,14 @@ table_OS_2 *caryll_OS_2_from_json(json_value *root, caryll_dump_options *dumpopt // panose json_value *panose = NULL; if ((panose = json_obj_get_type(table, "panose", json_array))) { - for (int j = 0; j < panose->u.array.length; j++) - if (j >= 0 && j < 10) { - json_value *term = panose->u.array.values[j]; - if (term->type == json_integer) { - os_2->panose[j] = term->u.integer; - } else if (term->type == json_double) { - os_2->panose[j] = term->u.dbl; - } + for (uint32_t j = 0; j < panose->u.array.length && j < 10; j++) { + json_value *term = panose->u.array.values[j]; + if (term->type == json_integer) { + os_2->panose[j] = term->u.integer; + } else if (term->type == json_double) { + os_2->panose[j] = term->u.dbl; } + } } // achVendID json_value *vendorid = NULL; diff --git a/src/tables/hdmx.h b/src/tables/hdmx.h index d0219f40..7bf12e9e 100644 --- a/src/tables/hdmx.h +++ b/src/tables/hdmx.h @@ -15,8 +15,8 @@ typedef struct { typedef struct { // Horizontal device metrics uint16_t version; - int16_t numRecords; - int32_t sizeDeviceRecord; + uint16_t numRecords; + uint32_t sizeDeviceRecord; device_record *records; } table_hdmx; diff --git a/src/version.h b/src/version.h index 4810d8c7..78249494 100644 --- a/src/version.h +++ b/src/version.h @@ -1,4 +1,4 @@ #ifndef CARYLL_VERSION_H #define CARYLL_VERSION_H -#define VERSION "0.1.0" +#define VERSION "0.1.1" #endif From 7e54989e07128cc7374e0c83a42c60cdc8a42868 Mon Sep 17 00:00:00 2001 From: be5invis Date: Thu, 14 Apr 2016 22:03:31 +0800 Subject: [PATCH 14/32] update README --- README.md | 45 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 65ce0ac9..756cc492 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,10 @@ otfccdump [OPTIONS] input.[otf|ttf|ttc] --ugly : Force uglify the output JSON. --time : Time each substep. --ignore-glyph-order : Do not export glyph order information. - --ignore-hints : Do not export hinting information. + --ignore-hints : Do not export hingint information. + --add-bom : Add BOM mark in the output. (This is default + on Windows when redirecting to another program. + Use --no-bom to turn it off.) ``` ### `otfccbuild` : Build an OpenType font file from JSON @@ -43,3 +46,43 @@ otfccbuild [OPTIONS] input.json -o output.[ttf|otf] some Microsoft applications, a DSIG is required to enable OpenType features. ``` + +## Building from source + +`otfcc` can be built on a number of platforms. It uses the [premake](http://premake.github.io/) build system. + +It was developed and optimized for Clang/LLVM, therefore it is *strongly* recommended to compile with Clang/LLVM, but if that's not possible GCC is also supported, GCC version 5.1 or later being the preferred choice for performance. + +### Windows + +On Windows building `otfcc` is tested under the toolchains listed below. The default `premake5 vs2015` will produce a Visual Studio solution using Clang-CL as its compiler. + +* GCC 5.1 included in `TDM-GCC`. Run the following from the command line: + + ```bash + premake5 gmake + cd build + make + ``` + +* [Visual C++ Building Tools (Mar 2016)](https://blogs.msdn.microsoft.com/vcblog/2016/03/31/announcing-the-official-release-of-the-visual-c-build-tools-2015/) with [Clang/LLVM 3.8](http://clang.llvm.org/), plus a working `getopt.h` added into INCLUDE. Run the following from the Visual C++ Command Prompt: + + ```bat + premake5 vs2015 + msbuild build\otfcc.sln + ``` + +### Linux + +On Linux, Either Clang/LLVM or GCC can be used to build `otfcc`. + +1. Install the latest Clang/LLVM or GCC if you do not have it already. +2. Download and install [premake5](http://premake.github.io/) for Linux and make it available in your path. +3. Run the following from the command line: + +```bash +premake5 gmake +cd build +make +``` + From 90c9be838073019e1d2e516bcd188cff731b90eb Mon Sep 17 00:00:00 2001 From: be5invis Date: Thu, 14 Apr 2016 22:58:39 +0800 Subject: [PATCH 15/32] add platform-specific dep getopt.h (from mingw-w64) --- README.md | 6 +- platformdep-win-msvc/getopt.h | 553 ++++++++++++++++++++++++++++++++++ premake5.lua | 13 +- src/support/platform.h | 4 + 4 files changed, 567 insertions(+), 9 deletions(-) create mode 100644 platformdep-win-msvc/getopt.h diff --git a/README.md b/README.md index 756cc492..15361ec9 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ otfccbuild [OPTIONS] input.json -o output.[ttf|otf] ## Building from source -`otfcc` can be built on a number of platforms. It uses the [premake](http://premake.github.io/) build system. +`otfcc` can be built on a number of platforms. It uses the�[premake](http://premake.github.io/)�build system. It was developed and optimized for Clang/LLVM, therefore it is *strongly* recommended to compile with Clang/LLVM, but if that's not possible GCC is also supported, GCC version 5.1 or later being the preferred choice for performance. @@ -65,7 +65,7 @@ On Windows building `otfcc` is tested under the toolchains listed below. The def make ``` -* [Visual C++ Building Tools (Mar 2016)](https://blogs.msdn.microsoft.com/vcblog/2016/03/31/announcing-the-official-release-of-the-visual-c-build-tools-2015/) with [Clang/LLVM 3.8](http://clang.llvm.org/), plus a working `getopt.h` added into INCLUDE. Run the following from the Visual C++ Command Prompt: +* [Visual C++ Building Tools (Mar 2016)](https://blogs.msdn.microsoft.com/vcblog/2016/03/31/announcing-the-official-release-of-the-visual-c-build-tools-2015/) with [Clang/LLVM 3.8](http://clang.llvm.org/). Run the following from the Visual C++ Command Prompt: ```bat premake5 vs2015 @@ -77,7 +77,7 @@ On Windows building `otfcc` is tested under the toolchains listed below. The def On Linux, Either Clang/LLVM or GCC can be used to build `otfcc`. 1. Install the latest Clang/LLVM or GCC if you do not have it already. -2. Download and install [premake5](http://premake.github.io/) for Linux and make it available in your path. +2. Download and install�[premake5](http://premake.github.io/)�for Linux and make it available in your path. 3. Run the following from the command line: ```bash diff --git a/platformdep-win-msvc/getopt.h b/platformdep-win-msvc/getopt.h new file mode 100644 index 00000000..27ddadd3 --- /dev/null +++ b/platformdep-win-msvc/getopt.h @@ -0,0 +1,553 @@ +#ifndef __GETOPT_H__ +/** + * DISCLAIMER + * This file has no copyright assigned and is placed in the Public Domain. + * This file is part of the mingw-w64 runtime package. + * + * The mingw-w64 runtime package and its code is distributed in the hope that it + * will be useful but WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESSED OR + * IMPLIED ARE HEREBY DISCLAIMED. This includes but is not limited to + * warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + */ + +#pragma warning(disable : 4996) + +#define __GETOPT_H__ + +/* All the headers include this file. */ +#include +#include +#include +#include +#include +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +#define REPLACE_GETOPT /* use this getopt as the system getopt(3) */ + +#ifdef REPLACE_GETOPT +int opterr = 1; /* if error message should be printed */ +int optind = 1; /* index into parent argv vector */ +int optopt = '?'; /* character checked for validity */ +#undef optreset /* see getopt.h */ +#define optreset __mingw_optreset +int optreset; /* reset getopt */ +char *optarg; /* argument associated with option */ +#endif + +// extern int optind; /* index of first non-option in argv */ +// extern int optopt; /* single option character, as parsed */ +// extern int opterr; /* flag to enable built-in diagnostics... */ +// /* (user may set to zero, to suppress) */ +// +// extern char *optarg; /* pointer to argument of current option */ + +#define PRINT_ERROR ((opterr) && (*options != ':')) + +#define FLAG_PERMUTE 0x01 /* permute non-options to the end of argv */ +#define FLAG_ALLARGS 0x02 /* treat non-options as args to option "-1" */ +#define FLAG_LONGONLY 0x04 /* operate as getopt_long_only */ + +/* return values */ +#define BADCH (int)'?' +#define BADARG ((*options == ':') ? (int)':' : (int)'?') +#define INORDER (int)1 + +#ifndef __CYGWIN__ +#define __progname __argv[0] +#else +extern char __declspec(dllimport) * __progname; +#endif + +#ifdef __CYGWIN__ +static char EMSG[] = ""; +#else +#define EMSG "" +#endif + +static int gcd(int, int); +static void permute_args(int, int, int, char *const *); + +#ifdef REPLACE_GETOPT +int getopt(int nargc, char *const *nargv, const char *options); +#endif + +static char *place = EMSG; /* option letter processing */ + +/* XXX: set optreset to 1 rather than these two */ +static int nonopt_start = -1; /* first non option argument (for permute) */ +static int nonopt_end = -1; /* first option after non options (for permute) */ + +/* Error messages */ +static const char recargchar[] = "option requires an argument -- %c"; +static const char recargstring[] = "option requires an argument -- %s"; +static const char ambig[] = "ambiguous option -- %.*s"; +static const char noarg[] = "option doesn't take an argument -- %.*s"; +static const char illoptchar[] = "unknown option -- %c"; +static const char illoptstring[] = "unknown option -- %s"; + +static void _vwarnx(const char *fmt, va_list ap) { + (void)fprintf(stderr, "%s: ", __progname); + if (fmt != NULL) (void)vfprintf(stderr, fmt, ap); + (void)fprintf(stderr, "\n"); +} + +static void warnx(const char *fmt, ...) { + va_list ap; + va_start(ap, fmt); + _vwarnx(fmt, ap); + va_end(ap); +} + +/* + * Compute the greatest common divisor of a and b. + */ +static int gcd(int a, int b) { + int c; + + c = a % b; + while (c != 0) { + a = b; + b = c; + c = a % b; + } + + return (b); +} + +/* + * Exchange the block from nonopt_start to nonopt_end with the block + * from nonopt_end to opt_end (keeping the same order of arguments + * in each block). + */ +static void permute_args(int panonopt_start, int panonopt_end, int opt_end, char *const *nargv) { + int cstart, cyclelen, i, j, ncycle, nnonopts, nopts, pos; + char *swap; + + /* + * compute lengths of blocks and number and size of cycles + */ + nnonopts = panonopt_end - panonopt_start; + nopts = opt_end - panonopt_end; + ncycle = gcd(nnonopts, nopts); + cyclelen = (opt_end - panonopt_start) / ncycle; + + for (i = 0; i < ncycle; i++) { + cstart = panonopt_end + i; + pos = cstart; + for (j = 0; j < cyclelen; j++) { + if (pos >= panonopt_end) + pos -= nnonopts; + else + pos += nopts; + swap = nargv[pos]; + /* LINTED const cast */ + ((char **)nargv)[pos] = nargv[cstart]; + /* LINTED const cast */ + ((char **)nargv)[cstart] = swap; + } + } +} + +// extern int getopt(int nargc, char * const *nargv, const char *options); + +#ifdef _BSD_SOURCE +/* + * BSD adds the non-standard `optreset' feature, for reinitialisation + * of `getopt' parsing. We support this feature, for applications which + * proclaim their BSD heritage, before including this header; however, + * to maintain portability, developers are advised to avoid it. + */ +#define optreset __mingw_optreset +extern int optreset; +#endif +#ifdef __cplusplus +} +#endif +/* + * POSIX requires the `getopt' API to be specified in `unistd.h'; + * thus, `unistd.h' includes this header. However, we do not want + * to expose the `getopt_long' or `getopt_long_only' APIs, when + * included in this manner. Thus, close the standard __GETOPT_H__ + * declarations block, and open an additional __GETOPT_LONG_H__ + * specific block, only when *not* __UNISTD_H_SOURCED__, in which + * to declare the extended API. + */ + +#if !defined(__UNISTD_H_SOURCED__) && !defined(__GETOPT_LONG_H__) +#define __GETOPT_LONG_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +struct option { /* specification for a long form option... */ + const char *name; /* option name, without leading hyphens */ + int has_arg; /* does it take an argument? */ + int *flag; /* where to save its status, or NULL */ + int val; /* its associated status value */ +}; + +enum { /* permitted values for its `has_arg' field... */ + no_argument = 0, /* option never takes an argument */ + required_argument, /* option always requires an argument */ + optional_argument /* option may take an argument */ +}; + +static int getopt_internal(int nargc, char *const *nargv, const char *options, + const struct option *long_options, int *idx, int flags); + +#ifdef REPLACE_GETOPT +/* + * getopt -- + * Parse argc/argv argument vector. + * + * [eventually this will replace the BSD getopt] + */ +int getopt(int nargc, char *const *nargv, const char *options) { + + /* + * We don't pass FLAG_PERMUTE to getopt_internal() since + * the BSD getopt(3) (unlike GNU) has never done this. + * + * Furthermore, since many privileged programs call getopt() + * before dropping privileges it makes sense to keep things + * as simple (and bug-free) as possible. + */ + return (getopt_internal(nargc, nargv, options, NULL, NULL, 0)); +} +#endif /* REPLACE_GETOPT */ + +/* + * parse_long_options -- + * Parse long options in argc/argv argument vector. + * Returns -1 if short_too is set and the option does not match long_options. + */ +static int parse_long_options(char *const *nargv, const char *options, + const struct option *long_options, int *idx, int short_too) { + char *current_argv, *has_equal; + size_t current_argv_len; + int i, ambiguous, match; + +#define IDENTICAL_INTERPRETATION(_x, _y) \ + (long_options[(_x)].has_arg == long_options[(_y)].has_arg && \ + long_options[(_x)].flag == long_options[(_y)].flag && \ + long_options[(_x)].val == long_options[(_y)].val) + + current_argv = place; + match = -1; + ambiguous = 0; + + optind++; + + if ((has_equal = strchr(current_argv, '=')) != NULL) { + /* argument found (--option=arg) */ + current_argv_len = has_equal - current_argv; + has_equal++; + } else + current_argv_len = strlen(current_argv); + + for (i = 0; long_options[i].name; i++) { + /* find matching long option */ + if (strncmp(current_argv, long_options[i].name, current_argv_len)) continue; + + if (strlen(long_options[i].name) == current_argv_len) { + /* exact match */ + match = i; + ambiguous = 0; + break; + } + /* + * If this is a known short option, don't allow + * a partial match of a single character. + */ + if (short_too && current_argv_len == 1) continue; + + if (match == -1) /* partial match */ + match = i; + else if (!IDENTICAL_INTERPRETATION(i, match)) + ambiguous = 1; + } + if (ambiguous) { + /* ambiguous abbreviation */ + if (PRINT_ERROR) warnx(ambig, (int)current_argv_len, current_argv); + optopt = 0; + return (BADCH); + } + if (match != -1) { /* option found */ + if (long_options[match].has_arg == no_argument && has_equal) { + if (PRINT_ERROR) warnx(noarg, (int)current_argv_len, current_argv); + /* + * XXX: GNU sets optopt to val regardless of flag + */ + if (long_options[match].flag == NULL) + optopt = long_options[match].val; + else + optopt = 0; + return (BADARG); + } + if (long_options[match].has_arg == required_argument || + long_options[match].has_arg == optional_argument) { + if (has_equal) + optarg = has_equal; + else if (long_options[match].has_arg == required_argument) { + /* + * optional argument doesn't use next nargv + */ + optarg = nargv[optind++]; + } + } + if ((long_options[match].has_arg == required_argument) && (optarg == NULL)) { + /* + * Missing argument; leading ':' indicates no error + * should be generated. + */ + if (PRINT_ERROR) warnx(recargstring, current_argv); + /* + * XXX: GNU sets optopt to val regardless of flag + */ + if (long_options[match].flag == NULL) + optopt = long_options[match].val; + else + optopt = 0; + --optind; + return (BADARG); + } + } else { /* unknown option */ + if (short_too) { + --optind; + return (-1); + } + if (PRINT_ERROR) warnx(illoptstring, current_argv); + optopt = 0; + return (BADCH); + } + if (idx) *idx = match; + if (long_options[match].flag) { + *long_options[match].flag = long_options[match].val; + return (0); + } else + return (long_options[match].val); +#undef IDENTICAL_INTERPRETATION +} + +/* + * getopt_internal -- + * Parse argc/argv argument vector. Called by user level routines. + */ +static int getopt_internal(int nargc, char *const *nargv, const char *options, + const struct option *long_options, int *idx, int flags) { + char *oli; /* option letter list index */ + int optchar, short_too; + static int posixly_correct = -1; + + if (options == NULL) return (-1); + + /* + * XXX Some GNU programs (like cvs) set optind to 0 instead of + * XXX using optreset. Work around this braindamage. + */ + if (optind == 0) optind = optreset = 1; + + /* + * Disable GNU extensions if POSIXLY_CORRECT is set or options + * string begins with a '+'. + * + * CV, 2009-12-14: Check POSIXLY_CORRECT anew if optind == 0 or + * optreset != 0 for GNU compatibility. + */ + if (posixly_correct == -1 || optreset != 0) + posixly_correct = (getenv("POSIXLY_CORRECT") != NULL); + if (*options == '-') + flags |= FLAG_ALLARGS; + else if (posixly_correct || *options == '+') + flags &= ~FLAG_PERMUTE; + if (*options == '+' || *options == '-') options++; + + optarg = NULL; + if (optreset) nonopt_start = nonopt_end = -1; +start: + if (optreset || !*place) { /* update scanning pointer */ + optreset = 0; + if (optind >= nargc) { /* end of argument vector */ + place = EMSG; + if (nonopt_end != -1) { + /* do permutation, if we have to */ + permute_args(nonopt_start, nonopt_end, optind, nargv); + optind -= nonopt_end - nonopt_start; + } else if (nonopt_start != -1) { + /* + * If we skipped non-options, set optind + * to the first of them. + */ + optind = nonopt_start; + } + nonopt_start = nonopt_end = -1; + return (-1); + } + if (*(place = nargv[optind]) != '-' || (place[1] == '\0' && strchr(options, '-') == NULL)) { + place = EMSG; /* found non-option */ + if (flags & FLAG_ALLARGS) { + /* + * GNU extension: + * return non-option as argument to option 1 + */ + optarg = nargv[optind++]; + return (INORDER); + } + if (!(flags & FLAG_PERMUTE)) { + /* + * If no permutation wanted, stop parsing + * at first non-option. + */ + return (-1); + } + /* do permutation */ + if (nonopt_start == -1) + nonopt_start = optind; + else if (nonopt_end != -1) { + permute_args(nonopt_start, nonopt_end, optind, nargv); + nonopt_start = optind - (nonopt_end - nonopt_start); + nonopt_end = -1; + } + optind++; + /* process next argument */ + goto start; + } + if (nonopt_start != -1 && nonopt_end == -1) nonopt_end = optind; + + /* + * If we have "-" do nothing, if "--" we are done. + */ + if (place[1] != '\0' && *++place == '-' && place[1] == '\0') { + optind++; + place = EMSG; + /* + * We found an option (--), so if we skipped + * non-options, we have to permute. + */ + if (nonopt_end != -1) { + permute_args(nonopt_start, nonopt_end, optind, nargv); + optind -= nonopt_end - nonopt_start; + } + nonopt_start = nonopt_end = -1; + return (-1); + } + } + + /* + * Check long options if: + * 1) we were passed some + * 2) the arg is not just "-" + * 3) either the arg starts with -- we are getopt_long_only() + */ + if (long_options != NULL && place != nargv[optind] && + (*place == '-' || (flags & FLAG_LONGONLY))) { + short_too = 0; + if (*place == '-') + place++; /* --foo long option */ + else if (*place != ':' && strchr(options, *place) != NULL) + short_too = 1; /* could be short option too */ + + optchar = parse_long_options(nargv, options, long_options, idx, short_too); + if (optchar != -1) { + place = EMSG; + return (optchar); + } + } + + if ((optchar = (int)*place++) == (int)':' || (optchar == (int)'-' && *place != '\0') || + (oli = (char *)strchr(options, optchar)) == NULL) { + /* + * If the user specified "-" and '-' isn't listed in + * options, return -1 (non-option) as per POSIX. + * Otherwise, it is an unknown option character (or ':'). + */ + if (optchar == (int)'-' && *place == '\0') return (-1); + if (!*place) ++optind; + if (PRINT_ERROR) warnx(illoptchar, optchar); + optopt = optchar; + return (BADCH); + } + if (long_options != NULL && optchar == 'W' && oli[1] == ';') { + /* -W long-option */ + if (*place) /* no space */ + /* NOTHING */; + else if (++optind >= nargc) { /* no arg */ + place = EMSG; + if (PRINT_ERROR) warnx(recargchar, optchar); + optopt = optchar; + return (BADARG); + } else /* white space */ + place = nargv[optind]; + optchar = parse_long_options(nargv, options, long_options, idx, 0); + place = EMSG; + return (optchar); + } + if (*++oli != ':') { /* doesn't take argument */ + if (!*place) ++optind; + } else { /* takes (optional) argument */ + optarg = NULL; + if (*place) /* no white space */ + optarg = place; + else if (oli[1] != ':') { /* arg not optional */ + if (++optind >= nargc) { /* no arg */ + place = EMSG; + if (PRINT_ERROR) warnx(recargchar, optchar); + optopt = optchar; + return (BADARG); + } else + optarg = nargv[optind]; + } + place = EMSG; + ++optind; + } + /* dump back option letter */ + return (optchar); +} + +/* + * getopt_long -- + * Parse argc/argv argument vector. + */ +int getopt_long(int nargc, char *const *nargv, const char *options, + const struct option *long_options, int *idx) { + + return (getopt_internal(nargc, nargv, options, long_options, idx, FLAG_PERMUTE)); +} + +/* + * getopt_long_only -- + * Parse argc/argv argument vector. + */ +int getopt_long_only(int nargc, char *const *nargv, const char *options, + const struct option *long_options, int *idx) { + + return ( + getopt_internal(nargc, nargv, options, long_options, idx, FLAG_PERMUTE | FLAG_LONGONLY)); +} + +// extern int getopt_long(int nargc, char * const *nargv, const char *options, +// const struct option *long_options, int *idx); +// extern int getopt_long_only(int nargc, char * const *nargv, const char *options, +// const struct option *long_options, int *idx); +/* + * Previous MinGW implementation had... + */ +#ifndef HAVE_DECL_GETOPT +/* + * ...for the long form API only; keep this for compatibility. + */ +#define HAVE_DECL_GETOPT 1 +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* !defined(__UNISTD_H_SOURCED__) && !defined(__GETOPT_LONG_H__) */ +#endif /* !defined(__GETOPT_H__) */ diff --git a/premake5.lua b/premake5.lua index 27e15fb5..6a1a904b 100644 --- a/premake5.lua +++ b/premake5.lua @@ -1,16 +1,17 @@ -- Premake 5 configurations workspace "otfcc" - configurations {"Debug", "Release"} - platforms {"x32", "x64"} + configurations { "Debug", "Release" } + platforms { "x32", "x64" } location "build" - defines {'_CARYLL_USE_PRE_SERIALIZED'} + defines { '_CARYLL_USE_PRE_SERIALIZED' } filter "action:vs2015" toolset "msc-LLVM-vs2014" - defines {'_CRT_SECURE_NO_WARNINGS'} + defines { '_CRT_SECURE_NO_WARNINGS' } buildoptions { '/Wall', '-Wno-unused-parameter', '-Qunused-arguments' } flags { "StaticRuntime" } + includedirs { "platformdep-win-msvc" } filter {} filter "action:gmake" @@ -44,7 +45,7 @@ project "otfccdump" kind "ConsoleApp" language "C" targetdir "bin/%{cfg.buildcfg}-%{cfg.platform}" - links {"libotfcc"} + links { "libotfcc" } files { "src/otfccdump.c" } @@ -54,7 +55,7 @@ project "otfccbuild" kind "ConsoleApp" language "C" targetdir "bin/%{cfg.buildcfg}-%{cfg.platform}" - links {"libotfcc"} + links { "libotfcc" } files { "src/otfccbuild.c" } diff --git a/src/support/platform.h b/src/support/platform.h index 23d15c09..5ec7378d 100644 --- a/src/support/platform.h +++ b/src/support/platform.h @@ -42,11 +42,15 @@ FILE *__u8fopen(char *path, char *mode) { return f; } #define u8fopen __u8fopen + #ifdef _MSC_VER #include #define isatty _isatty #define fileno _fileno +#elif __MINGW32__ +#include #endif + #else #define u8fopen fopen #endif From 5252749fa6556bce5611c78b9039672615b86b54 Mon Sep 17 00:00:00 2001 From: be5invis Date: Thu, 14 Apr 2016 23:07:14 +0800 Subject: [PATCH 16/32] reorganize shortcuts --- makefile | 36 +++++++++++++----------------------- 1 file changed, 13 insertions(+), 23 deletions(-) diff --git a/makefile b/makefile index 7187623a..79d84398 100644 --- a/makefile +++ b/makefile @@ -1,31 +1,21 @@ -clang-cl-debug-x64 : - premake5 vs2015 +default: clang-cl-debug-x64 +clang-cl-debug-x64 : mf-vs2015 cmd /c _vcbuild64.bat /property:Configuration=Debug - -clang-cl-debug-x86 : - premake5 vs2015 +clang-cl-debug-x86 : mf-vs2015 cmd /c _vcbuild32.bat /property:Configuration=Debug /property:Platform=win32 - -clang-cl-release-x64 : - premake5 vs2015 +clang-cl-release-x64 : mf-vs2015 cmd /c _vcbuild64.bat /property:Configuration=Release - -clang-cl-release-x86 : - premake5 vs2015 +clang-cl-release-x86 : mf-vs2015 cmd /c _vcbuild32.bat /property:Configuration=Release /property:Platform=win32 - -mingw-debug-x64 : - premake5 gmake +mingw-debug-x64 : mf-gmake cd build && make config=debug_x64 - -mingw-debug-x86 : - premake5 gmake +mingw-debug-x86 : mf-gmake cd build && make config=debug_x64 - -mingw-release-x64 : - premake5 gmake +mingw-release-x64 : mf-gmake + cd build && make config=release_x64 +mingw-release-x86 : mf-gmake cd build && make config=release_x64 - -mingw-release-x86 : +mf-vs2015 : + premake5 vs2015 +mf-gmake : premake5 gmake - cd build && make config=release_x64 From fc2ac77d9a424e6ce4641af79737da333b1fad56 Mon Sep 17 00:00:00 2001 From: be5invis Date: Thu, 14 Apr 2016 23:17:04 +0800 Subject: [PATCH 17/32] move version info into build script --- premake5.lua | 1 + src/caryll-sfnt-builder.c | 5 ++++- src/otfccbuild.c | 5 ++++- src/otfccdump.c | 5 ++++- src/version.h | 4 ---- 5 files changed, 13 insertions(+), 7 deletions(-) delete mode 100644 src/version.h diff --git a/premake5.lua b/premake5.lua index 6a1a904b..368976ac 100644 --- a/premake5.lua +++ b/premake5.lua @@ -5,6 +5,7 @@ workspace "otfcc" location "build" defines { '_CARYLL_USE_PRE_SERIALIZED' } + defines { 'VERSION="0.1.1"' } filter "action:vs2015" toolset "msc-LLVM-vs2014" diff --git a/src/caryll-sfnt-builder.c b/src/caryll-sfnt-builder.c index bc6eaaf3..248bec80 100644 --- a/src/caryll-sfnt-builder.c +++ b/src/caryll-sfnt-builder.c @@ -1,5 +1,8 @@ #include "caryll-sfnt-builder.h" -#include "version.h" + +#ifndef VERSION +#define VERSION "INDEV" +#endif static INLINE uint32_t buf_checksum(caryll_buffer *buffer) { uint32_t actualLength = buflen(buffer); diff --git a/src/otfccbuild.c b/src/otfccbuild.c index 1e4be790..e5c77be8 100644 --- a/src/otfccbuild.c +++ b/src/otfccbuild.c @@ -5,7 +5,10 @@ #include #include "support/stopwatch.h" #include "support/platform.h" -#include "version.h" + +#ifndef VERSION +#define VERSION "INDEV" +#endif void printInfo() { fprintf(stdout, "This is otfccbuild, version %s.\n", VERSION); } void printHelp() { diff --git a/src/otfccdump.c b/src/otfccdump.c index a82e0911..25238b91 100644 --- a/src/otfccdump.c +++ b/src/otfccdump.c @@ -4,7 +4,10 @@ #include "support/stopwatch.h" #include "support/platform.h" -#include "version.h" + +#ifndef VERSION +#define VERSION "INDEV" +#endif void printInfo() { fprintf(stdout, "This is otfccdump, version %s.\n", VERSION); } void printHelp() { diff --git a/src/version.h b/src/version.h deleted file mode 100644 index 78249494..00000000 --- a/src/version.h +++ /dev/null @@ -1,4 +0,0 @@ -#ifndef CARYLL_VERSION_H -#define CARYLL_VERSION_H -#define VERSION "0.1.1" -#endif From e514b33a5e2278955dc71c89cb9390dfdaaf857a Mon Sep 17 00:00:00 2001 From: be5invis Date: Thu, 14 Apr 2016 23:17:53 +0800 Subject: [PATCH 18/32] update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 15361ec9..870ce227 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ otfccbuild [OPTIONS] input.json -o output.[ttf|otf] ## Building from source -`otfcc` can be built on a number of platforms. It uses the�[premake](http://premake.github.io/)�build system. +`otfcc` can be built on a number of platforms. It uses the [premake](http://premake.github.io/) build system. It was developed and optimized for Clang/LLVM, therefore it is *strongly* recommended to compile with Clang/LLVM, but if that's not possible GCC is also supported, GCC version 5.1 or later being the preferred choice for performance. From 4bed3abe713eefa23269065ee36330e2557ba31d Mon Sep 17 00:00:00 2001 From: be5invis Date: Thu, 14 Apr 2016 23:18:20 +0800 Subject: [PATCH 19/32] remove other wrong characters --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 870ce227..867534d0 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ On Windows building `otfcc` is tested under the toolchains listed below. The def On Linux, Either Clang/LLVM or GCC can be used to build `otfcc`. 1. Install the latest Clang/LLVM or GCC if you do not have it already. -2. Download and install�[premake5](http://premake.github.io/)�for Linux and make it available in your path. +2. Download and install [premake5](http://premake.github.io/) for Linux and make it available in your path. 3. Run the following from the command line: ```bash From 3b8cf632e2ca02804165e51f938a4793e26e56e7 Mon Sep 17 00:00:00 2001 From: be5invis Date: Fri, 15 Apr 2016 00:04:07 +0800 Subject: [PATCH 20/32] reduce msbuild verbosity --- _vcbuild32.bat | 2 +- _vcbuild64.bat | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_vcbuild32.bat b/_vcbuild32.bat index bb87651a..13f2cc30 100644 --- a/_vcbuild32.bat +++ b/_vcbuild32.bat @@ -1,2 +1,2 @@ CALL "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" x86 -msbuild build/otfcc.sln /m %* +msbuild build/otfcc.sln /m /nologo /verbosity:minimal %* diff --git a/_vcbuild64.bat b/_vcbuild64.bat index 32ff33fc..220890e7 100644 --- a/_vcbuild64.bat +++ b/_vcbuild64.bat @@ -1,2 +1,2 @@ CALL "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" amd64 -msbuild build/otfcc.sln /m %* +msbuild build/otfcc.sln /m /nologo /verbosity:minimal %* From 481128c526ce558ad159dd9ae22377b08690bca2 Mon Sep 17 00:00:00 2001 From: be5invis Date: Fri, 15 Apr 2016 00:22:13 +0800 Subject: [PATCH 21/32] add /MP --- premake5.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/premake5.lua b/premake5.lua index 368976ac..0d213cfc 100644 --- a/premake5.lua +++ b/premake5.lua @@ -10,9 +10,10 @@ workspace "otfcc" filter "action:vs2015" toolset "msc-LLVM-vs2014" defines { '_CRT_SECURE_NO_WARNINGS' } - buildoptions { '/Wall', '-Wno-unused-parameter', '-Qunused-arguments' } + buildoptions { '/MP', '/Wall', '-Wno-unused-parameter', '-Qunused-arguments' } flags { "StaticRuntime" } includedirs { "platformdep-win-msvc" } + filter {} filter "action:gmake" From fcce3db7288205a491b4ffd098ed242672f1c345 Mon Sep 17 00:00:00 2001 From: be5invis Date: Fri, 15 Apr 2016 10:07:36 +0800 Subject: [PATCH 22/32] improve version defs --- _vcbuild32.bat | 4 ++-- _vcbuild64.bat | 4 ++-- makefile | 20 ++++++++++---------- premake5.lua | 8 ++++++-- src/caryll-sfnt-builder.c | 18 +++++++++++++++--- src/otfccbuild.c | 20 ++++++++++++++------ src/otfccdump.c | 18 +++++++++++++----- 7 files changed, 62 insertions(+), 30 deletions(-) diff --git a/_vcbuild32.bat b/_vcbuild32.bat index 13f2cc30..71fcceb8 100644 --- a/_vcbuild32.bat +++ b/_vcbuild32.bat @@ -1,2 +1,2 @@ -CALL "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" x86 -msbuild build/otfcc.sln /m /nologo /verbosity:minimal %* +@CALL "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" x86 +@msbuild build/otfcc.sln /m /nologo /verbosity:minimal %* diff --git a/_vcbuild64.bat b/_vcbuild64.bat index 220890e7..15beadcb 100644 --- a/_vcbuild64.bat +++ b/_vcbuild64.bat @@ -1,2 +1,2 @@ -CALL "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" amd64 -msbuild build/otfcc.sln /m /nologo /verbosity:minimal %* +@CALL "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" amd64 +@msbuild build/otfcc.sln /m /nologo /verbosity:minimal %* diff --git a/makefile b/makefile index 79d84398..16ceace4 100644 --- a/makefile +++ b/makefile @@ -1,21 +1,21 @@ default: clang-cl-debug-x64 clang-cl-debug-x64 : mf-vs2015 - cmd /c _vcbuild64.bat /property:Configuration=Debug + @cmd /c _vcbuild64.bat /property:Configuration=Debug clang-cl-debug-x86 : mf-vs2015 - cmd /c _vcbuild32.bat /property:Configuration=Debug /property:Platform=win32 + @cmd /c _vcbuild32.bat /property:Configuration=Debug /property:Platform=win32 clang-cl-release-x64 : mf-vs2015 - cmd /c _vcbuild64.bat /property:Configuration=Release + @cmd /c _vcbuild64.bat /property:Configuration=Release clang-cl-release-x86 : mf-vs2015 - cmd /c _vcbuild32.bat /property:Configuration=Release /property:Platform=win32 + @cmd /c _vcbuild32.bat /property:Configuration=Release /property:Platform=win32 mingw-debug-x64 : mf-gmake - cd build && make config=debug_x64 + @cd build && make config=debug_x64 mingw-debug-x86 : mf-gmake - cd build && make config=debug_x64 + @cd build && make config=debug_x64 mingw-release-x64 : mf-gmake - cd build && make config=release_x64 + @cd build && make config=release_x64 mingw-release-x86 : mf-gmake - cd build && make config=release_x64 + @cd build && make config=release_x64 mf-vs2015 : - premake5 vs2015 + @premake5 vs2015 mf-gmake : - premake5 gmake + @premake5 gmake diff --git a/premake5.lua b/premake5.lua index 0d213cfc..1ede8551 100644 --- a/premake5.lua +++ b/premake5.lua @@ -4,8 +4,12 @@ workspace "otfcc" platforms { "x32", "x64" } location "build" - defines { '_CARYLL_USE_PRE_SERIALIZED' } - defines { 'VERSION="0.1.1"' } + defines { + '_CARYLL_USE_PRE_SERIALIZED', + 'MAIN_VER=0', + "SECONDARY_VER=1", + "PATCH_VER=1" + } filter "action:vs2015" toolset "msc-LLVM-vs2014" diff --git a/src/caryll-sfnt-builder.c b/src/caryll-sfnt-builder.c index 248bec80..0be51d3c 100644 --- a/src/caryll-sfnt-builder.c +++ b/src/caryll-sfnt-builder.c @@ -1,7 +1,13 @@ #include "caryll-sfnt-builder.h" -#ifndef VERSION -#define VERSION "INDEV" +#ifndef MAIN_VER +#define MAIN_VER 0 +#endif +#ifndef SECONDARY_VER +#define SECONDARY_VER 0 +#endif +#ifndef PATCH_VER +#define PATCH_VER 0 #endif static INLINE uint32_t buf_checksum(caryll_buffer *buffer) { @@ -92,7 +98,13 @@ caryll_buffer *sfnt_builder_serialize(sfnt_builder *builder) { } // we are right after the table directory // add copyright information - bufwrite_bytes(buffer, 20, (uint8_t *)("-- BY OTFCC " VERSION " -- ")); + { + sds copyright = + sdscatprintf(sdsempty(), "-- By OTFCC %d.%d.%d --", MAIN_VER, SECONDARY_VER, PATCH_VER); + sdsgrowzero(copyright, 20); + bufwrite_bytes(buffer, 20, (uint8_t *)copyright); + sdsfree(copyright); + } uint32_t wholeChecksum = buf_checksum(buffer); bufseek(buffer, headOffset + 8); bufwrite32b(buffer, 0xB1B0AFBA - wholeChecksum); diff --git a/src/otfccbuild.c b/src/otfccbuild.c index e5c77be8..e01e7bb6 100644 --- a/src/otfccbuild.c +++ b/src/otfccbuild.c @@ -1,16 +1,24 @@ -#include "caryll-sfnt.h" #include "caryll-font.h" #include "caryll-sfnt-builder.h" - +#include "caryll-sfnt.h" #include -#include "support/stopwatch.h" + #include "support/platform.h" +#include "support/stopwatch.h" -#ifndef VERSION -#define VERSION "INDEV" +#ifndef MAIN_VER +#define MAIN_VER 0 +#endif +#ifndef SECONDARY_VER +#define SECONDARY_VER 0 +#endif +#ifndef PATCH_VER +#define PATCH_VER 0 #endif -void printInfo() { fprintf(stdout, "This is otfccbuild, version %s.\n", VERSION); } +void printInfo() { + fprintf(stdout, "This is otfccbuild, version %d.%d.%d.\n", MAIN_VER, SECONDARY_VER, PATCH_VER); +} void printHelp() { fprintf(stdout, "\n" diff --git a/src/otfccdump.c b/src/otfccdump.c index 25238b91..9fbb5a13 100644 --- a/src/otfccdump.c +++ b/src/otfccdump.c @@ -1,15 +1,23 @@ -#include "caryll-sfnt.h" #include "caryll-font.h" +#include "caryll-sfnt.h" #include -#include "support/stopwatch.h" #include "support/platform.h" +#include "support/stopwatch.h" -#ifndef VERSION -#define VERSION "INDEV" +#ifndef MAIN_VER +#define MAIN_VER 0 +#endif +#ifndef SECONDARY_VER +#define SECONDARY_VER 0 +#endif +#ifndef PATCH_VER +#define PATCH_VER 0 #endif -void printInfo() { fprintf(stdout, "This is otfccdump, version %s.\n", VERSION); } +void printInfo() { + fprintf(stdout, "This is otfccdump, version %d.%d.%d.\n", MAIN_VER, SECONDARY_VER, PATCH_VER); +} void printHelp() { fprintf(stdout, "\n" "Usage : otfccdump [OPTIONS] input.[otf|ttf|ttc]\n\n" From e9d5e46f317d520bc20eec80e8e9c8422bb91394 Mon Sep 17 00:00:00 2001 From: be5invis Date: Fri, 15 Apr 2016 10:15:32 +0800 Subject: [PATCH 23/32] spacing --- premake5.lua | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/premake5.lua b/premake5.lua index 1ede8551..cfbb8b70 100644 --- a/premake5.lua +++ b/premake5.lua @@ -17,7 +17,6 @@ workspace "otfcc" buildoptions { '/MP', '/Wall', '-Wno-unused-parameter', '-Qunused-arguments' } flags { "StaticRuntime" } includedirs { "platformdep-win-msvc" } - filter {} filter "action:gmake" @@ -27,11 +26,10 @@ workspace "otfcc" filter "configurations:Debug" defines { "DEBUG" } flags { "Symbols" } - filter "configurations:Release" defines { "NDEBUG" } optimize "Full" - + project "libotfcc" kind "StaticLib" language "C" @@ -56,7 +54,6 @@ project "otfccdump" "src/otfccdump.c" } - project "otfccbuild" kind "ConsoleApp" language "C" @@ -65,4 +62,3 @@ project "otfccbuild" files { "src/otfccbuild.c" } - From 6c722a272350ebc1c33e7dc927d3657344244122 Mon Sep 17 00:00:00 2001 From: be5invis Date: Fri, 15 Apr 2016 11:41:07 +0800 Subject: [PATCH 24/32] separate build directories for different toolchain --- _vcbuild32.bat | 2 +- _vcbuild64.bat | 2 +- makefile | 8 ++++---- premake5.lua | 6 +++++- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/_vcbuild32.bat b/_vcbuild32.bat index 71fcceb8..4c1f5bd4 100644 --- a/_vcbuild32.bat +++ b/_vcbuild32.bat @@ -1,2 +1,2 @@ @CALL "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" x86 -@msbuild build/otfcc.sln /m /nologo /verbosity:minimal %* +@msbuild build\vs\otfcc.sln /m /nologo /verbosity:minimal %* diff --git a/_vcbuild64.bat b/_vcbuild64.bat index 15beadcb..aa880c03 100644 --- a/_vcbuild64.bat +++ b/_vcbuild64.bat @@ -1,2 +1,2 @@ @CALL "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" amd64 -@msbuild build/otfcc.sln /m /nologo /verbosity:minimal %* +@msbuild build\vs\otfcc.sln /m /nologo /verbosity:minimal %* diff --git a/makefile b/makefile index 16ceace4..2b91b34a 100644 --- a/makefile +++ b/makefile @@ -8,13 +8,13 @@ clang-cl-release-x64 : mf-vs2015 clang-cl-release-x86 : mf-vs2015 @cmd /c _vcbuild32.bat /property:Configuration=Release /property:Platform=win32 mingw-debug-x64 : mf-gmake - @cd build && make config=debug_x64 + @cd build/gmake && make config=debug_x64 mingw-debug-x86 : mf-gmake - @cd build && make config=debug_x64 + @cd build/gmake && make config=debug_x64 mingw-release-x64 : mf-gmake - @cd build && make config=release_x64 + @cd build/gmake && make config=release_x64 mingw-release-x86 : mf-gmake - @cd build && make config=release_x64 + @cd build/gmake && make config=release_x64 mf-vs2015 : @premake5 vs2015 mf-gmake : diff --git a/premake5.lua b/premake5.lua index cfbb8b70..a144c7bc 100644 --- a/premake5.lua +++ b/premake5.lua @@ -2,7 +2,6 @@ workspace "otfcc" configurations { "Debug", "Release" } platforms { "x32", "x64" } - location "build" defines { '_CARYLL_USE_PRE_SERIALIZED', @@ -11,7 +10,10 @@ workspace "otfcc" "PATCH_VER=1" } + location "build" + filter "action:vs2015" + location "build/vs" toolset "msc-LLVM-vs2014" defines { '_CRT_SECURE_NO_WARNINGS' } buildoptions { '/MP', '/Wall', '-Wno-unused-parameter', '-Qunused-arguments' } @@ -20,6 +22,7 @@ workspace "otfcc" filter {} filter "action:gmake" + location "build/gmake" buildoptions { '-Wall', '-Wno-multichar' } filter {} @@ -29,6 +32,7 @@ workspace "otfcc" filter "configurations:Release" defines { "NDEBUG" } optimize "Full" + project "libotfcc" kind "StaticLib" From 0b4e24edc034ebace4fc309f1884ff3f28938020 Mon Sep 17 00:00:00 2001 From: be5invis Date: Fri, 15 Apr 2016 11:45:37 +0800 Subject: [PATCH 25/32] update README --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 867534d0..6598b892 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,12 @@ The `otfcc` is a C library and utility used for parsing and writing OpenType fon ## Key features -* Read an OpenType font; (TrueType is supported as well) -* Write an OpenType font; +* Read an OpenType font, (TrueType is supported as well) +* And dump its data into JSON. +* Or parse a dump of an OpenType font, +* And build an OpenType font according to it. -## `otfcc` command line tool +## Usage ### `otfccdump` : Dump an OpenType font file into JSON ``` @@ -47,7 +49,7 @@ otfccbuild [OPTIONS] input.json -o output.[ttf|otf] to enable OpenType features. ``` -## Building from source +## Building `otfcc` can be built on a number of platforms. It uses the [premake](http://premake.github.io/) build system. From 42b8d8cccefcec98451170bc8434ba4b6ba1824e Mon Sep 17 00:00:00 2001 From: be5invis Date: Fri, 15 Apr 2016 13:01:19 +0800 Subject: [PATCH 26/32] support glyf ref flags --- makefile | 21 +- src/tables/glyf.c | 25 +- src/tables/glyf.h | 40 +- tests/payload/iosevka-r.json | 3124 +++++++++++++++++----------------- 4 files changed, 1611 insertions(+), 1599 deletions(-) diff --git a/makefile b/makefile index 2b91b34a..748c412f 100644 --- a/makefile +++ b/makefile @@ -1,20 +1,19 @@ -default: clang-cl-debug-x64 -clang-cl-debug-x64 : mf-vs2015 - @cmd /c _vcbuild64.bat /property:Configuration=Debug -clang-cl-debug-x86 : mf-vs2015 - @cmd /c _vcbuild32.bat /property:Configuration=Debug /property:Platform=win32 -clang-cl-release-x64 : mf-vs2015 - @cmd /c _vcbuild64.bat /property:Configuration=Release -clang-cl-release-x86 : mf-vs2015 - @cmd /c _vcbuild32.bat /property:Configuration=Release /property:Platform=win32 +default: mingw-debug-x64 + mingw-debug-x64 : mf-gmake @cd build/gmake && make config=debug_x64 mingw-debug-x86 : mf-gmake - @cd build/gmake && make config=debug_x64 + @cd build/gmake && make config=debug_x86 mingw-release-x64 : mf-gmake @cd build/gmake && make config=release_x64 mingw-release-x86 : mf-gmake - @cd build/gmake && make config=release_x64 + @cd build/gmake && make config=release_x86 + +clang-cl-release-x64 : mf-vs2015 + @cmd /c _vcbuild64.bat /property:Configuration=Release +clang-cl-release-x86 : mf-vs2015 + @cmd /c _vcbuild32.bat /property:Configuration=Release /property:Platform=win32 + mf-vs2015 : @premake5 vs2015 mf-gmake : diff --git a/src/tables/glyf.c b/src/tables/glyf.c index 4eefd9d6..6cae007b 100644 --- a/src/tables/glyf.c +++ b/src/tables/glyf.c @@ -221,6 +221,8 @@ static INLINE glyf_glyph *caryll_read_composite_glyph(font_file_pointer start) { g->references[j].d = d; g->references[j].x = x; g->references[j].y = y; + g->references[j].roundToGrid = !!(flags & ROUND_XY_TO_GRID); + g->references[j].useMyMetrics = !!(flags & USE_MY_METRICS); } if (glyphHasInstruction) { uint16_t instructionLength = read_16u(start + offset); @@ -378,15 +380,18 @@ static INLINE json_value *glyf_glyph_references_to_json(glyf_glyph *g, caryll_dump_options *dumpopts) { json_value *references = json_array_new(g->numberOfReferences); for (uint16_t k = 0; k < g->numberOfReferences; k++) { - glyf_reference r = g->references[k]; + glyf_reference *r = &(g->references[k]); json_value *ref = json_object_new(9); - json_object_push(ref, "glyph", json_string_new_length(sdslen(r.glyph.name), r.glyph.name)); - json_object_push(ref, "x", coord_to_json(r.x)); - json_object_push(ref, "y", coord_to_json(r.y)); - json_object_push(ref, "a", coord_to_json(r.a)); - json_object_push(ref, "b", coord_to_json(r.b)); - json_object_push(ref, "c", coord_to_json(r.c)); - json_object_push(ref, "d", coord_to_json(r.d)); + json_object_push(ref, "glyph", + json_string_new_length(sdslen(r->glyph.name), r->glyph.name)); + json_object_push(ref, "x", coord_to_json(r->x)); + json_object_push(ref, "y", coord_to_json(r->y)); + json_object_push(ref, "a", coord_to_json(r->a)); + json_object_push(ref, "b", coord_to_json(r->b)); + json_object_push(ref, "c", coord_to_json(r->c)); + json_object_push(ref, "d", coord_to_json(r->d)); + if (r->roundToGrid) { json_object_push(ref, "roundToGrid", json_boolean_new(true)); } + if (r->useMyMetrics) { json_object_push(ref, "useMyMetrics", json_boolean_new(true)); } json_array_push(references, ref); } return references; @@ -450,6 +455,8 @@ static INLINE void glyf_reference_from_json(glyf_reference *ref, json_value *ref ref->b = json_obj_getnum_fallback(refdump, "b", 0.0); ref->c = json_obj_getnum_fallback(refdump, "c", 0.0); ref->d = json_obj_getnum_fallback(refdump, "d", 1.0); + ref->roundToGrid = json_obj_getbool(refdump, "roundToGrid"); + ref->useMyMetrics = json_obj_getbool(refdump, "useMyMetrics"); } else { // Invalid glyph references ref->glyph.name = NULL; @@ -459,6 +466,8 @@ static INLINE void glyf_reference_from_json(glyf_reference *ref, json_value *ref ref->b = 0.0; ref->c = 0.0; ref->d = 1.0; + ref->roundToGrid = false; + ref->useMyMetrics = false; } } static INLINE void glyf_contours_from_json(json_value *col, glyf_glyph *g) { diff --git a/src/tables/glyf.h b/src/tables/glyf.h index 8379617f..fb37183f 100644 --- a/src/tables/glyf.h +++ b/src/tables/glyf.h @@ -30,6 +30,9 @@ typedef struct { float d; float x; float y; + // flags + bool roundToGrid; + bool useMyMetrics; } glyf_reference; typedef struct { @@ -69,24 +72,25 @@ typedef struct { glyf_glyph **glyphs; } table_glyf; -#define GLYF_FLAG_ON_CURVE 1 -#define GLYF_FLAG_X_SHORT (1 << 1) -#define GLYF_FLAG_Y_SHORT (1 << 2) -#define GLYF_FLAG_REPEAT (1 << 3) -#define GLYF_FLAG_SAME_X (1 << 4) -#define GLYF_FLAG_SAME_Y (1 << 5) -#define GLYF_FLAG_POSITIVE_X (1 << 4) -#define GLYF_FLAG_POSITIVE_Y (1 << 5) - -#define ARG_1_AND_2_ARE_WORDS (1 << 0) -#define ARGS_ARE_XY_VALUES (1 << 1) -#define MORE_COMPONENTS (1 << 5) -#define WE_HAVE_A_SCALE (1 << 3) -#define WE_HAVE_AN_X_AND_Y_SCALE (1 << 6) -#define WE_HAVE_A_TWO_BY_TWO (1 << 7) -#define WE_HAVE_INSTRUCTIONS (1 << 8) -#define USE_MY_METRICS (1 << 9) -#define OVERLAP_COMPOUND (1 << 10) +static const int GLYF_FLAG_ON_CURVE = 1; +static const int GLYF_FLAG_X_SHORT = (1 << 1); +static const int GLYF_FLAG_Y_SHORT = (1 << 2); +static const int GLYF_FLAG_REPEAT = (1 << 3); +static const int GLYF_FLAG_SAME_X = (1 << 4); +static const int GLYF_FLAG_SAME_Y = (1 << 5); +static const int GLYF_FLAG_POSITIVE_X = (1 << 4); +static const int GLYF_FLAG_POSITIVE_Y = (1 << 5); + +static const int ARG_1_AND_2_ARE_WORDS = (1 << 0); +static const int ARGS_ARE_XY_VALUES = (1 << 1); +static const int ROUND_XY_TO_GRID = (1 << 2); +static const int WE_HAVE_A_SCALE = (1 << 3); +static const int MORE_COMPONENTS = (1 << 5); +static const int WE_HAVE_AN_X_AND_Y_SCALE = (1 << 6); +static const int WE_HAVE_A_TWO_BY_TWO = (1 << 7); +static const int WE_HAVE_INSTRUCTIONS = (1 << 8); +static const int USE_MY_METRICS = (1 << 9); +static const int OVERLAP_COMPOUND = (1 << 10); glyf_glyph *caryll_new_glyf_glhph(); table_glyf *caryll_read_glyf(caryll_packet packet, table_head *head, table_maxp *maxp); diff --git a/tests/payload/iosevka-r.json b/tests/payload/iosevka-r.json index b9ffdb40..4700c22f 100644 --- a/tests/payload/iosevka-r.json +++ b/tests/payload/iosevka-r.json @@ -2584,7 +2584,7 @@ "name": "uni0308", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0307","x":100,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":-100,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0307","x":100,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":-100,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni030A": { @@ -2598,7 +2598,7 @@ "name": "uni1AB2", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni030A","x":-81,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":81,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni030A","x":-81,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030A","x":81,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "gravecomb": { @@ -2731,14 +2731,14 @@ "name": "uni030F", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"gravecomb","x":85,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":-85,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"gravecomb","x":85,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":-85,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni030B": { "name": "uni030B", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"acutecomb","x":85,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":-85,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"acutecomb","x":85,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":-85,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0313": { @@ -2773,7 +2773,7 @@ "name": "uni030E", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni030D","x":75,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":-75,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni030D","x":75,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":-75,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0346": { @@ -2822,14 +2822,14 @@ "name": "uni0342", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0311","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0311","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0343": { "name": "uni0343", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0313","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0313","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni033D": { @@ -2871,21 +2871,21 @@ "name": "glyph46", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0328","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0328","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0345": { "name": "uni0345", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni030D","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni030D","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPzisDMr" }, "glyph48": { "name": "glyph48", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni030D","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni030D","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPzisDMr" }, "uni031D": { @@ -2941,7 +2941,7 @@ "name": "uni032A", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0346","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0346","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPzisDMr" }, "uni033B": { @@ -2990,14 +2990,14 @@ "name": "uni0351", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni031C","x":0,"y":798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni031C","x":0,"y":798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuAMesDMr" }, "uni0357": { "name": "uni0357", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0339","x":0,"y":798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0339","x":0,"y":798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuAMesDMr" }, "uni0316": { @@ -3018,35 +3018,35 @@ "name": "dotbelowcomb", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0307","x":0,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0307","x":0,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPy4sDMr" }, "uni0324": { "name": "uni0324", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0307","x":-100,"y":-840,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":100,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0307","x":-100,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":100,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPy4sDMrsQEBuPy4sDMr" }, "uni0330": { "name": "uni0330", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"tildecomb","x":0,"y":-814,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"tildecomb","x":0,"y":-814,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPzSsDMr" }, "uni0325": { "name": "uni0325", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni030A","x":0,"y":-791,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni030A","x":0,"y":-791,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACuPzpsDMr" }, "uni0331": { "name": "uni0331", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0304","x":0,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0304","x":0,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPy4sDMr" }, "uni033A": { @@ -3060,91 +3060,91 @@ "name": "uni0332", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0305","x":0,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0305","x":0,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPy4sDMr" }, "uni0333": { "name": "uni0333", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni033F","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni033F","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACuPzisDMr" }, "uni032D": { "name": "uni032D", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0302","x":0,"y":-805,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0302","x":0,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPzbsDMr" }, "uni032C": { "name": "uni032C", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni030C","x":0,"y":-805,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni030C","x":0,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPzbsDMr" }, "uni032E": { "name": "uni032E", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0306","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0306","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPzisDMr" }, "uni032F": { "name": "uni032F", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0311","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0311","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPzisDMr" }, "uni0326": { "name": "uni0326", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0313","x":0,"y":-789,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0313","x":0,"y":-789,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPzrsDMr" }, "uni0329": { "name": "uni0329", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni030D","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni030D","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPzisDMr" }, "uni0348": { "name": "uni0348", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni030D","x":-75,"y":-798,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":75,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni030D","x":-75,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":75,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPzisDMrsQEBuPzisDMr" }, "uni0353": { "name": "uni0353", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni033D","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni033D","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPzisDMr" }, "uni0354": { "name": "uni0354", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni1DFE","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1DFE","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPzisDMr" }, "uni0355": { "name": "uni0355", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0350","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0350","x":0,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPzisDMr" }, "uni035A": { "name": "uni035A", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni030A","x":81,"y":-791,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":-81,"y":-791,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni030A","x":81,"y":-791,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030A","x":-81,"y":-791,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACuPzpsDMrsQICuPzpsDMr" }, "uni034D": { @@ -3179,14 +3179,14 @@ "name": "uni0358", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0307","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0307","x":250,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0315": { "name": "uni0315", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0313","x":198,"y":-220,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0313","x":198,"y":-220,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP8ksDMr" }, "uni0322": { @@ -3207,7 +3207,7 @@ "name": "uni0334", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"tildecomb","x":0,"y":-399,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"tildecomb","x":0,"y":-399,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP5xsDMr" }, "uni0335": { @@ -3263,7 +3263,7 @@ "name": "uni035C", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni035D","x":0,"y":-1208,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni035D","x":0,"y":-1208,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPtIsDMr" }, "uni035E": { @@ -3277,7 +3277,7 @@ "name": "uni035F", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni035E","x":0,"y":-1250,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni035E","x":0,"y":-1250,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPsesDMr" }, "uni0362": { @@ -3298,56 +3298,56 @@ "name": "glyph107", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni1FCD","x":-500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1FCD","x":-500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FCD": { "name": "uni1FCD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0340","x":575,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":425,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0340","x":575,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":425,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph109": { "name": "glyph109", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0341","x":75,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":-75,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0341","x":75,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":-75,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FCE": { "name": "uni1FCE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph111": { "name": "glyph111", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0340","x":75,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":-75,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0340","x":75,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0314","x":-75,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FDD": { "name": "uni1FDD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph113": { "name": "glyph113", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"uni0341","x":75,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":-75,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0341","x":75,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0314","x":-75,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FDE": { "name": "uni1FDE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph115": { @@ -3361,7 +3361,7 @@ "name": "uni1FCF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph115","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph115","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph117": { @@ -3375,7 +3375,7 @@ "name": "uni1FDF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph117","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph117","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph119": { @@ -3396,28 +3396,28 @@ "name": "I", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Iota": { "name": "Iota", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0406": { "name": "uni0406", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04C0": { "name": "uni04C0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni026A": { @@ -3466,56 +3466,56 @@ "name": "dotlessi", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph132": { "name": "glyph132", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "i": { "name": "i", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph134": { "name": "glyph134", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph135": { "name": "glyph135", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":477,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph136": { "name": "glyph136", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph137": { "name": "glyph137", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0456": { "name": "uni0456", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1D09": { @@ -3536,7 +3536,7 @@ "name": "uni0269", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0196": { @@ -3571,21 +3571,21 @@ "name": "J", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph145","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph145","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0408": { "name": "uni0408", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph145","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph145","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni037F": { "name": "uni037F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph145","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph145","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph149": { @@ -3606,28 +3606,28 @@ "name": "uni0237", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph150","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph150","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "j": { "name": "j", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph150","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":550,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph150","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":550,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni03F3": { "name": "uni03F3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"j","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"j","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0458": { "name": "uni0458", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"j","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"j","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni029D": { @@ -3655,21 +3655,21 @@ "name": "Lcaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":642,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":642,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Lslash": { "name": "Lslash", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniE090","x":420,"y":139,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uniE090","x":420,"y":139,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsIuwMys=" }, "Ldot": { "name": "Ldot", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":557,"y":-282,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":557,"y":-282,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP7msDMr" }, "uni023D": { @@ -3725,14 +3725,14 @@ "name": "l", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04CF": { "name": "uni04CF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uniA781": { @@ -3746,7 +3746,7 @@ "name": "ldot", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph166","x":-31,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":628,"y":-282,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph166","x":-31,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":628,"y":-282,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP7msDMr" }, "uni026D": { @@ -3767,7 +3767,7 @@ "name": "uni026B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":-278,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":-278,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP7qsDMr" }, "uni026C": { @@ -3816,7 +3816,7 @@ "name": "uni0475", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2C71","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2C71","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0474": { @@ -3851,14 +3851,14 @@ "name": "Alpha", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0410": { "name": "uni0410", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2C6F": { @@ -3886,14 +3886,14 @@ "name": "a", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0430": { "name": "uni0430", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2C6D": { @@ -3942,7 +3942,7 @@ "name": "uni051C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "w": { @@ -3956,7 +3956,7 @@ "name": "uni051D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni028D": { @@ -3998,14 +3998,14 @@ "name": "Chi", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"X","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"X","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0425": { "name": "uni0425", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"X","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"X","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "x": { @@ -4019,7 +4019,7 @@ "name": "uni0445", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"x","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"x","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "chi": { @@ -4033,7 +4033,7 @@ "name": "uniAB53", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"chi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"chi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04B2": { @@ -4061,14 +4061,14 @@ "name": "Upsilon", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04AE": { "name": "uni04AE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01B3": { @@ -4082,7 +4082,7 @@ "name": "uni04AF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP8zsDMr" }, "uni028F": { @@ -4103,21 +4103,21 @@ "name": "glyph222", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "y": { "name": "y", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0443": { "name": "uni0443", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni028E": { @@ -4138,7 +4138,7 @@ "name": "uni0423", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph221","x":0,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph221","x":0,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsM2wMys=" }, "lambda": { @@ -4152,7 +4152,7 @@ "name": "uni019B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"lambda","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniE090","x":500,"y":250,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"lambda","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uniE090","x":500,"y":250,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsPqwMys=" }, "K": { @@ -4166,14 +4166,14 @@ "name": "Kappa", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni041A": { "name": "uni041A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni049A": { @@ -4201,14 +4201,14 @@ "name": "uni043A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"kappa","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"kappa","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "kgreenlandic": { "name": "kgreenlandic", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"kappa","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"kappa","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni049B": { @@ -4257,14 +4257,14 @@ "name": "Beta", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0412": { "name": "uni0412", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0181": { @@ -4285,7 +4285,7 @@ "name": "uni025E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph247","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph247","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph249": { @@ -4299,14 +4299,14 @@ "name": "uni0299", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph249","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph249","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0432": { "name": "uni0432", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph249","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph249","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0243": { @@ -4348,7 +4348,7 @@ "name": "uni1E03", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"b","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":536,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"b","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":536,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0183": { @@ -4383,14 +4383,14 @@ "name": "Dcroat", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Eth","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Eth","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0189": { "name": "uni0189", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Eth","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Eth","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni018A": { @@ -4439,7 +4439,7 @@ "name": "uni1E0B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":464,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":464,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni018C": { @@ -4460,14 +4460,14 @@ "name": "Rho", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0420": { "name": "uni0420", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01A4": { @@ -4488,7 +4488,7 @@ "name": "uni0440", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"p","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"p","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01A5": { @@ -4614,14 +4614,14 @@ "name": "uni0421", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni03F9": { "name": "uni03F9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "c": { @@ -4635,14 +4635,14 @@ "name": "uni0441", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni03F2": { "name": "uni03F2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0186": { @@ -4663,7 +4663,7 @@ "name": "uni0297", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"C","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"C","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP8zsDMr" }, "uni0187": { @@ -4796,21 +4796,21 @@ "name": "uni0261", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph322": { "name": "glyph322", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "g": { "name": "g", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1D77": { @@ -4845,14 +4845,14 @@ "name": "Omicron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni041E": { "name": "uni041E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "o": { @@ -4866,14 +4866,14 @@ "name": "omicron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni043E": { "name": "uni043E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Oslash": { @@ -4901,14 +4901,14 @@ "name": "uni04E8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni019F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni019F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni03F4": { "name": "uni03F4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni019F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni019F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0275": { @@ -4922,7 +4922,7 @@ "name": "uni04E9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0275","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0275","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0298": { @@ -4957,7 +4957,7 @@ "name": "uni051A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Q","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Q","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "q": { @@ -4971,7 +4971,7 @@ "name": "uni051B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"q","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"q","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni024A": { @@ -5006,7 +5006,7 @@ "name": "Nu", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0274": { @@ -5034,14 +5034,14 @@ "name": "glyph355", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "napostrophe": { "name": "napostrophe", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":310,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":310,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "eng": { @@ -5090,7 +5090,7 @@ "name": "uni019E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "U": { @@ -5146,14 +5146,14 @@ "name": "Mu", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni041C": { "name": "uni041C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni043C": { @@ -5174,7 +5174,7 @@ "name": "glyph375", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"m","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"m","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph376": { @@ -5223,14 +5223,14 @@ "name": "Eta", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni041D": { "name": "uni041D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04A2": { @@ -5251,7 +5251,7 @@ "name": "uni029C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni043D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni043D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04A3": { @@ -5279,7 +5279,7 @@ "name": "uni04BB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0266": { @@ -5335,7 +5335,7 @@ "name": "uni045B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"hbar","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"hbar","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "F": { @@ -5377,7 +5377,7 @@ "name": "uni0283", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph403","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph403","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0284": { @@ -5391,7 +5391,7 @@ "name": "longs", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph402","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph402","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0286": { @@ -5426,7 +5426,7 @@ "name": "uniAB35", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph410","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph410","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph412": { @@ -5440,14 +5440,14 @@ "name": "florin", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph412","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph412","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "f": { "name": "f", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph410","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph410","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni025F": { @@ -5482,7 +5482,7 @@ "name": "uniFB02", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph417","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph417","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "E": { @@ -5496,14 +5496,14 @@ "name": "Epsilon", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0415": { "name": "uni0415", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni018E": { @@ -5531,7 +5531,7 @@ "name": "uni0435", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01DD": { @@ -5545,14 +5545,14 @@ "name": "uni0259", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni01DD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni01DD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04D9": { "name": "uni04D9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni01DD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni01DD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni018F": { @@ -5566,7 +5566,7 @@ "name": "uni04D8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni018F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni018F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0258": { @@ -5587,14 +5587,14 @@ "name": "Tau", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0422": { "name": "uni0422", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04AC": { @@ -5643,7 +5643,7 @@ "name": "uni04AD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph441","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph441","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "tau": { @@ -5713,7 +5713,7 @@ "name": "uni0405", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "s": { @@ -5727,7 +5727,7 @@ "name": "uni0455", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01A7": { @@ -5748,7 +5748,7 @@ "name": "glyph457", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni01A8","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni01A8","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0282": { @@ -5783,7 +5783,7 @@ "name": "Zeta", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "z": { @@ -5853,7 +5853,7 @@ "name": "uniAB64", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Gamma": { @@ -5867,7 +5867,7 @@ "name": "uni0413", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Gamma","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Gamma","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph475": { @@ -5881,14 +5881,14 @@ "name": "glyph476", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0433": { "name": "uni0433", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph475","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph475","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0490": { @@ -5930,14 +5930,14 @@ "name": "uni1D24", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph482","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph482","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0493": { "name": "uni0493", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph481","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph481","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "gamma": { @@ -5958,7 +5958,7 @@ "name": "uni0245", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Lambda","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Lambda","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0394": { @@ -5979,14 +5979,14 @@ "name": "glyph490", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"delta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"delta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E9F": { "name": "uni1E9F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"delta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"delta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni018D": { @@ -6014,7 +6014,7 @@ "name": "uni025B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0190": { @@ -6042,7 +6042,7 @@ "name": "uni025C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0437","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0437","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni029A": { @@ -6105,7 +6105,7 @@ "name": "uni041F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Pi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Pi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph509": { @@ -6119,14 +6119,14 @@ "name": "glyph510", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni043F": { "name": "uni043F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph509","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph509","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "pi": { @@ -6147,7 +6147,7 @@ "name": "uni01A9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Sigma","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Sigma","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Phi": { @@ -6161,7 +6161,7 @@ "name": "uni0424", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Phi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Phi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2C77": { @@ -6189,14 +6189,14 @@ "name": "uni0444", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"phi1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"phi1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0278": { "name": "uni0278", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"phi1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"phi1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Psi": { @@ -6259,7 +6259,7 @@ "name": "omega1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-191,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0305","x":500,"y":-191,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP9BsDMr" }, "uni0277": { @@ -6294,7 +6294,7 @@ "name": "uni0182", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0411","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0411","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0184": { @@ -6357,14 +6357,14 @@ "name": "glyph544", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0438": { "name": "uni0438", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph543","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph543","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0426": { @@ -6392,7 +6392,7 @@ "name": "uni0446", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph547","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph547","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni040F": { @@ -6413,14 +6413,14 @@ "name": "glyph552", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzisDMr" }, "uni045F": { "name": "uni045F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph551","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph551","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0414": { @@ -6448,7 +6448,7 @@ "name": "uni0434", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph555","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph555","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni041B": { @@ -6539,14 +6539,14 @@ "name": "glyph570", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni026F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni026F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0448": { "name": "uni0448", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph569","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph569","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0429": { @@ -6574,21 +6574,21 @@ "name": "uni0449", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph573","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph573","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph576": { "name": "glyph576", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni026F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni026F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0442": { "name": "uni0442", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph440","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph440","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0427": { @@ -6728,7 +6728,7 @@ "name": "uni04D4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"AE","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"AE","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "OE": { @@ -6756,7 +6756,7 @@ "name": "uni04D5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ae","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ae","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1D02": { @@ -6833,21 +6833,21 @@ "name": "uni04E0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni01B7","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni01B7","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0292": { "name": "uni0292", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni01B7","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni01B7","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP8zsDMr" }, "uni04E1": { "name": "uni04E1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni01B7","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni01B7","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP8zsDMr" }, "uni01B8": { @@ -6861,7 +6861,7 @@ "name": "uni01B9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni01B8","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni01B8","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP8zsDMr" }, "uni026E": { @@ -6896,7 +6896,7 @@ "name": "uni0241", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0294","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0294","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0295": { @@ -6924,14 +6924,14 @@ "name": "glyph625", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0294","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0294","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph626": { "name": "glyph626", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0295","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0295","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0296": { @@ -6973,7 +6973,7 @@ "name": "uni03F7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Thorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Thorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "thorn": { @@ -6987,7 +6987,7 @@ "name": "uni03F8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"thorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"thorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01F6": { @@ -7029,7 +7029,7 @@ "name": "uni01BF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni01F7","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni01F7","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACuP8zsDMr" }, "uni021C": { @@ -7043,7 +7043,7 @@ "name": "uni021D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni021C","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni021C","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP8zsDMr" }, "uni0263": { @@ -7120,7 +7120,7 @@ "name": "zero", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph651","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph651","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "one": { @@ -7162,7 +7162,7 @@ "name": "uni01BC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"five","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"five","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01BD": { @@ -7211,7 +7211,7 @@ "name": "glyph666", "advanceWidth": 1000, "contours": [], - "references": [{"glyph":"one","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph651","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"one","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph651","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2000": { @@ -7337,7 +7337,7 @@ "name": "uni27E8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"angleleft","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"angleleft","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "angleright": { @@ -7351,21 +7351,21 @@ "name": "uni27E9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"angleright","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"angleright","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni27EA": { "name": "uni27EA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"angleleft","x":88,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"angleleft","x":-88,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"angleleft","x":88,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"angleleft","x":-88,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni27EB": { "name": "uni27EB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"angleright","x":88,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"angleright","x":-88,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"angleright","x":88,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"angleright","x":-88,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2308": { @@ -7407,7 +7407,7 @@ "name": "glyph694", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"period","x":0,"y":390,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"period","x":0,"y":390,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuAGGsDMr" }, "comma": { @@ -7428,7 +7428,7 @@ "name": "colon", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"period","x":0,"y":390,"a":1,"b":0,"c":0,"d":1},{"glyph":"period","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"period","x":0,"y":390,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"period","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuAGGsDMr" }, "semicolon": { @@ -7442,7 +7442,7 @@ "name": "uni037E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"semicolon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"semicolon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "question": { @@ -7484,7 +7484,7 @@ "name": "exclamdbl", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"exclam","x":125,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"exclam","x":-125,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"exclam","x":125,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"exclam","x":-125,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "bar": { @@ -7505,28 +7505,28 @@ "name": "uni01C0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"bar","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"bar","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01C1": { "name": "uni01C1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"bar","x":88,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"bar","x":-88,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"bar","x":88,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"bar","x":-88,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01C3": { "name": "uni01C3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"exclam","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"exclam","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01C2": { "name": "uni01C2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"bar","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-443,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-265,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"bar","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0305","x":500,"y":-443,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0305","x":500,"y":-265,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP5FsDMrsQIBuP73sDMr" }, "ampersand": { @@ -7561,7 +7561,7 @@ "name": "paragraph", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph714","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph714","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "section": { @@ -7582,14 +7582,14 @@ "name": "glyph719", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph718","x":0,"y":-250,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph718","x":0,"y":-250,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP8GsDMr" }, "asterisk": { "name": "asterisk", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph718","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph718","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "numbersign": { @@ -7617,77 +7617,77 @@ "name": "fraction", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"slash","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"slash","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph725": { "name": "glyph725", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0305","x":500,"y":-649,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0305","x":500,"y":-649,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP13sDMr" }, "glyph726": { "name": "glyph726", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0305","x":500,"y":-834,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0305","x":500,"y":-834,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPy+sDMr" }, "underscore": { "name": "underscore", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0305","x":500,"y":-649,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0305","x":500,"y":-649,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP13sDMr" }, "uni203E": { "name": "uni203E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0305","x":500,"y":14,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0305","x":500,"y":14,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsA6wMys=" }, "hyphen": { "name": "hyphen", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP6esDMr" }, "uni00AD": { "name": "uni00AD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP6esDMr" }, "uni2010": { "name": "uni2010", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP6esDMr" }, "uni2011": { "name": "uni2011", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP6esDMr" }, "figuredash": { "name": "figuredash", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP6esDMr" }, "endash": { "name": "endash", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP6esDMr" }, "emdash": { @@ -7708,35 +7708,35 @@ "name": "uni2015", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"emdash","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"emdash","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "periodcentered": { "name": "periodcentered", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"period","x":0,"y":261,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"period","x":0,"y":261,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuAEFsDMr" }, "bullet": { "name": "bullet", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"period","x":0,"y":261,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"period","x":0,"y":261,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuAEFsDMr" }, "uni2027": { "name": "uni2027", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"period","x":0,"y":261,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"period","x":0,"y":261,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuAEFsDMr" }, "anoteleia": { "name": "anoteleia", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"period","x":0,"y":261,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"period","x":0,"y":261,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuAEFsDMr" }, "quotesingle": { @@ -7750,7 +7750,7 @@ "name": "quotedbl", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"quotesingle","x":100,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"quotesingle","x":-100,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"quotesingle","x":100,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"quotesingle","x":-100,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph744": { @@ -7771,7 +7771,7 @@ "name": "glyph746", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph744","x":0,"y":633,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph744","x":0,"y":633,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuAJ5sDMr" }, "glyph747": { @@ -7785,84 +7785,84 @@ "name": "glyph748", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph744","x":112,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph744","x":-112,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph744","x":112,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph744","x":-112,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph749": { "name": "glyph749", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph745","x":-112,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph745","x":112,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph745","x":-112,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph745","x":112,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph750": { "name": "glyph750", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph748","x":0,"y":633,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph748","x":0,"y":633,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph751": { "name": "glyph751", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph747","x":112,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph747","x":-112,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph747","x":112,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph747","x":-112,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "quotesinglbase": { "name": "quotesinglbase", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph744","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph744","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "quoteleft": { "name": "quoteleft", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph745","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph745","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "quoteright": { "name": "quoteright", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph744","x":0,"y":633,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph744","x":0,"y":633,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuAJ5sDMr" }, "quotereversed": { "name": "quotereversed", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph747","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph747","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "quotedblbase": { "name": "quotedblbase", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph748","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph748","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "quotedblleft": { "name": "quotedblleft", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph749","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph749","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "quotedblright": { "name": "quotedblright", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph748","x":0,"y":633,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph748","x":0,"y":633,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni201F": { "name": "uni201F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph751","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph751","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "minute": { @@ -7876,14 +7876,14 @@ "name": "second", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"minute","x":95,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"minute","x":-95,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"minute","x":95,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"minute","x":-95,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2034": { "name": "uni2034", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"minute","x":150,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"minute","x":-150,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"minute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"minute","x":150,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"minute","x":-150,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"minute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2035": { @@ -7897,14 +7897,14 @@ "name": "uni2036", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2035","x":95,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2035","x":-95,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2035","x":95,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni2035","x":-95,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2037": { "name": "uni2037", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2035","x":150,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2035","x":-150,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2035","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2035","x":150,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni2035","x":-150,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni2035","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "guilsinglleft": { @@ -7918,7 +7918,7 @@ "name": "guillemotleft", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"guilsinglleft","x":-95,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"guilsinglleft","x":95,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"guilsinglleft","x":-95,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"guilsinglleft","x":95,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "guilsinglright": { @@ -7932,21 +7932,21 @@ "name": "guillemotright", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"guilsinglright","x":95,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"guilsinglright","x":-95,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"guilsinglright","x":95,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"guilsinglright","x":-95,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "dagger": { "name": "dagger", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"bar","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-180,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"bar","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0305","x":500,"y":-180,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP9MsDMr" }, "daggerdbl": { "name": "daggerdbl", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"dagger","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-528,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"dagger","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0305","x":500,"y":-528,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP9MsDMr" }, "onedotenleader": { @@ -7960,14 +7960,14 @@ "name": "twodotenleader", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"onedotenleader","x":125,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"onedotenleader","x":-125,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"onedotenleader","x":125,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"onedotenleader","x":-125,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "ellipsis": { "name": "ellipsis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"onedotenleader","x":167,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"onedotenleader","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"onedotenleader","x":-167,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"onedotenleader","x":167,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"onedotenleader","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"onedotenleader","x":-167,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "percent": { @@ -7995,14 +7995,14 @@ "name": "glyph778", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph16","x":0,"y":-354,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph16","x":0,"y":-354,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP6esDMr" }, "asciitilde": { "name": "asciitilde", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph16","x":0,"y":-354,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph16","x":0,"y":-354,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP6esDMr" }, "degree": { @@ -8016,42 +8016,42 @@ "name": "uni02B9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"minute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"minute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02BA": { "name": "uni02BA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"second","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"second","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02BB": { "name": "uni02BB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph745","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph745","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02BC": { "name": "uni02BC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph744","x":0,"y":633,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph744","x":0,"y":633,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuAJ5sDMr" }, "uni02BD": { "name": "uni02BD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph747","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph747","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02C8": { "name": "uni02C8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"quotesingle","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"quotesingle","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02CC": { @@ -8065,56 +8065,56 @@ "name": "uniFF01", "advanceWidth": 1000, "contours": [], - "references": [{"glyph":"exclam","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"exclam","x":250,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uniFF1A": { "name": "uniFF1A", "advanceWidth": 1000, "contours": [], - "references": [{"glyph":"colon","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"colon","x":250,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuAGGsDMr" }, "uniFF1B": { "name": "uniFF1B", "advanceWidth": 1000, "contours": [], - "references": [{"glyph":"semicolon","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"semicolon","x":250,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uniFF0C": { "name": "uniFF0C", "advanceWidth": 1000, "contours": [], - "references": [{"glyph":"comma","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"comma","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uniFF0E": { "name": "uniFF0E", "advanceWidth": 1000, "contours": [], - "references": [{"glyph":"period","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"period","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uniFF08": { "name": "uniFF08", "advanceWidth": 1000, "contours": [], - "references": [{"glyph":"parenleft","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"parenleft","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uniFF09": { "name": "uniFF09", "advanceWidth": 1000, "contours": [], - "references": [{"glyph":"parenright","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"parenright","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "mu": { "name": "mu", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni03BC","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni03BC","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "universal": { @@ -8142,7 +8142,7 @@ "name": "Delta", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0394","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0394","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "gradient": { @@ -8184,28 +8184,28 @@ "name": "minus", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP6esDMr" }, "plusminus": { "name": "plusminus", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"plus","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-649,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"plus","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0305","x":500,"y":-649,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP13sDMr" }, "uni2213": { "name": "uni2213", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"plus","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-58,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"plus","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0305","x":500,"y":-58,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP/GsDMr" }, "equal": { "name": "equal", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0305","x":500,"y":-466,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-241,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0305","x":500,"y":-466,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0305","x":500,"y":-241,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP4usDMrsQEBuP8PsDMr" }, "less": { @@ -8338,14 +8338,14 @@ "name": "equivalence", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0305","x":500,"y":-523,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-185,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0305","x":500,"y":-523,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0305","x":500,"y":-185,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP31sDMrsQEBuP6esDMrsQIBuP9HsDMr" }, "approxequal": { "name": "approxequal", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"similar","x":0,"y":99,"a":1,"b":0,"c":0,"d":1},{"glyph":"similar","x":0,"y":-99,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"similar","x":0,"y":99,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"similar","x":0,"y":-99,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsGOwMyuxAQG4/52wMys=" }, "notequal": { @@ -8471,7 +8471,7 @@ "name": "uni222C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"integral","x":125,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"integral","x":-125,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"integral","x":125,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"integral","x":-125,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni222E": { @@ -8513,7 +8513,7 @@ "name": "uni2219", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"period","x":0,"y":261,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"period","x":0,"y":261,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuAEFsDMr" }, "radical": { @@ -8555,7 +8555,7 @@ "name": "yen", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-501,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0305","x":500,"y":-501,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0305","x":500,"y":-354,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP4LsDMrsQIBuP6esDMr" }, "glyph859": { @@ -8604,14 +8604,14 @@ "name": "Omega", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2127": { "name": "uni2127", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni01B1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni01B1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2113": { @@ -9038,42 +9038,42 @@ "name": "upblock", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"dnblock","x":0,"y":625,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"dnblock","x":0,"y":625,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuAJxsDMr" }, "rtblock": { "name": "rtblock", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"lfblock","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"lfblock","x":250,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "SF100000": { "name": "SF100000", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2574","x":250,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2574","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2574","x":250,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni2574","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2501": { "name": "uni2501", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2578","x":250,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2578","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2578","x":250,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni2578","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "SF110000": { "name": "SF110000", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2575","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2575","x":0,"y":-625,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2575","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni2575","x":0,"y":-625,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP2PsDMr" }, "uni2503": { "name": "uni2503", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2579","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2579","x":0,"y":-625,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2579","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni2579","x":0,"y":-625,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP2PsDMr" }, "uni2574": { @@ -9094,14 +9094,14 @@ "name": "uni2576", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2574","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2574","x":250,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2577": { "name": "uni2577", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2575","x":0,"y":-625,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2575","x":0,"y":-625,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP2PsDMr" }, "uni2578": { @@ -9122,42 +9122,42 @@ "name": "uni257A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2578","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2578","x":250,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni257B": { "name": "uni257B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2579","x":0,"y":-625,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2579","x":0,"y":-625,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP2PsDMr" }, "uni257C": { "name": "uni257C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2578","x":250,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2574","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2578","x":250,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni2574","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni257D": { "name": "uni257D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2579","x":0,"y":-625,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2575","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2579","x":0,"y":-625,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni2575","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP2PsDMr" }, "uni257E": { "name": "uni257E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2578","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2574","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2578","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni2574","x":250,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni257F": { "name": "uni257F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2579","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2575","x":0,"y":-625,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2579","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni2575","x":0,"y":-625,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP2PsDMr" }, "SF430000": { @@ -9514,7 +9514,7 @@ "name": "SF050000", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"SF040000","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"SF010000","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"SF040000","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"SF010000","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni253D": { @@ -9535,7 +9535,7 @@ "name": "uni253F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2519","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni250D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2519","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni250D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2540": { @@ -9556,7 +9556,7 @@ "name": "uni2542", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni251A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni250E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni251A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni250E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2543": { @@ -9619,7 +9619,7 @@ "name": "uni254B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni251B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni250F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni251B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni250F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "SF510000": { @@ -9941,7 +9941,7 @@ "name": "uni2573", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2572","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni2571","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2572","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni2571","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uniE0A0": { @@ -10109,42 +10109,42 @@ "name": "glyph1080", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"greater","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"greater","x":250,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1081": { "name": "glyph1081", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"greater","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"greater","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1082": { "name": "glyph1082", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"greater","x":-250,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"greater","x":-250,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1083": { "name": "glyph1083", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"less","x":-250,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"less","x":-250,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1084": { "name": "glyph1084", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"less","x":-500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"less","x":-500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1085": { "name": "glyph1085", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"less","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"less","x":250,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1086": { @@ -10270,14 +10270,14 @@ "name": "glyph1103", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph736","x":-113,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph736","x":-113,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1104": { "name": "glyph1104", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph736","x":-387,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph736","x":-387,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1105": { @@ -10431,14 +10431,14 @@ "name": "glyph1126", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph736","x":-174,"y":-77,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph736","x":-174,"y":77,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph736","x":-174,"y":-77,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph736","x":-174,"y":77,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP+zsDMrsQEBsE2wMys=" }, "glyph1127": { "name": "glyph1127", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph736","x":-326,"y":-77,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph736","x":-326,"y":77,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph736","x":-326,"y":-77,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph736","x":-326,"y":77,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP+zsDMrsQEBsE2wMys=" }, "glyph1128": { @@ -10480,1715 +10480,1715 @@ "name": "dieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "macron": { "name": "macron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "cedilla": { "name": "cedilla", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Agrave": { "name": "Agrave", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "Aacute": { "name": "Aacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "Acircumflex": { "name": "Acircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "Atilde": { "name": "Atilde", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "Adieresis": { "name": "Adieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "Aring": { "name": "Aring", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030A","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "Ccedilla": { "name": "Ccedilla", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Egrave": { "name": "Egrave", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "Eacute": { "name": "Eacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "Ecircumflex": { "name": "Ecircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "Edieresis": { "name": "Edieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "Igrave": { "name": "Igrave", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "Iacute": { "name": "Iacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "Icircumflex": { "name": "Icircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "Idieresis": { "name": "Idieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "Ntilde": { "name": "Ntilde", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "Ograve": { "name": "Ograve", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "Oacute": { "name": "Oacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "Ocircumflex": { "name": "Ocircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "Otilde": { "name": "Otilde", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "Odieresis": { "name": "Odieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "Ugrave": { "name": "Ugrave", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "Uacute": { "name": "Uacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "Ucircumflex": { "name": "Ucircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "Udieresis": { "name": "Udieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "Yacute": { "name": "Yacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "agrave": { "name": "agrave", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1163": { "name": "glyph1163", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"agrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"agrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1164": { "name": "glyph1164", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "aacute": { "name": "aacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1166": { "name": "glyph1166", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"aacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"aacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1167": { "name": "glyph1167", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "acircumflex": { "name": "acircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1169": { "name": "glyph1169", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1170": { "name": "glyph1170", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "atilde": { "name": "atilde", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1172": { "name": "glyph1172", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"atilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"atilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1173": { "name": "glyph1173", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "adieresis": { "name": "adieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1175": { "name": "glyph1175", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"adieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"adieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1176": { "name": "glyph1176", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "aring": { "name": "aring", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030A","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1178": { "name": "glyph1178", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"aring","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"aring","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1179": { "name": "glyph1179", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030A","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "ccedilla": { "name": "ccedilla", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "egrave": { "name": "egrave", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "eacute": { "name": "eacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "ecircumflex": { "name": "ecircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "edieresis": { "name": "edieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "igrave": { "name": "igrave", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1186": { "name": "glyph1186", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"igrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"igrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1187": { "name": "glyph1187", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":477,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1188": { "name": "glyph1188", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1189": { "name": "glyph1189", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "iacute": { "name": "iacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1191": { "name": "glyph1191", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1192": { "name": "glyph1192", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":477,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1193": { "name": "glyph1193", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1194": { "name": "glyph1194", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "icircumflex": { "name": "icircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1196": { "name": "glyph1196", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"icircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"icircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1197": { "name": "glyph1197", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":477,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1198": { "name": "glyph1198", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1199": { "name": "glyph1199", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "idieresis": { "name": "idieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1201": { "name": "glyph1201", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1202": { "name": "glyph1202", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":577,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":377,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":577,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":377,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1203": { "name": "glyph1203", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1204": { "name": "glyph1204", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "ntilde": { "name": "ntilde", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "ograve": { "name": "ograve", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "oacute": { "name": "oacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "ocircumflex": { "name": "ocircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "otilde": { "name": "otilde", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "odieresis": { "name": "odieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "ugrave": { "name": "ugrave", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uacute": { "name": "uacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "ucircumflex": { "name": "ucircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "udieresis": { "name": "udieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "yacute": { "name": "yacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "ydieresis": { "name": "ydieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Amacron": { "name": "Amacron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "amacron": { "name": "amacron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1219": { "name": "glyph1219", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"amacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"amacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1220": { "name": "glyph1220", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Abreve": { "name": "Abreve", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "abreve": { "name": "abreve", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1223": { "name": "glyph1223", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1224": { "name": "glyph1224", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Aogonek": { "name": "Aogonek", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":654,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0328","x":654,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "aogonek": { "name": "aogonek", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":654,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0328","x":654,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1227": { "name": "glyph1227", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"aogonek","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"aogonek","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1228": { "name": "glyph1228", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":654,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0328","x":654,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Cacute": { "name": "Cacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "cacute": { "name": "cacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Ccircumflex": { "name": "Ccircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "ccircumflex": { "name": "ccircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Cdotaccent": { "name": "Cdotaccent", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "cdotaccent": { "name": "cdotaccent", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Ccaron": { "name": "Ccaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "ccaron": { "name": "ccaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Dcaron": { "name": "Dcaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "Emacron": { "name": "Emacron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "emacron": { "name": "emacron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Ebreve": { "name": "Ebreve", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "ebreve": { "name": "ebreve", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Edotaccent": { "name": "Edotaccent", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "edotaccent": { "name": "edotaccent", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Eogonek": { "name": "Eogonek", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "eogonek": { "name": "eogonek", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Ecaron": { "name": "Ecaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "ecaron": { "name": "ecaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Gcircumflex": { "name": "Gcircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "gcircumflex": { "name": "gcircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1250": { "name": "glyph1250", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"gcircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"gcircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1251": { "name": "glyph1251", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Gbreve": { "name": "Gbreve", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "gbreve": { "name": "gbreve", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1254": { "name": "glyph1254", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"gbreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"gbreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1255": { "name": "glyph1255", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Gdotaccent": { "name": "Gdotaccent", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "gdotaccent": { "name": "gdotaccent", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1258": { "name": "glyph1258", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"gdotaccent","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"gdotaccent","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1259": { "name": "glyph1259", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0122": { "name": "uni0122", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzrsDMr" }, "uni0123": { "name": "uni0123", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0312","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0312","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1262": { "name": "glyph1262", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0123","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0123","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1263": { "name": "glyph1263", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0312","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0312","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Hcircumflex": { "name": "Hcircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "hcircumflex": { "name": "hcircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "Itilde": { "name": "Itilde", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "itilde": { "name": "itilde", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1268": { "name": "glyph1268", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"itilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"itilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1269": { "name": "glyph1269", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":477,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1270": { "name": "glyph1270", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1271": { "name": "glyph1271", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Imacron": { "name": "Imacron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "imacron": { "name": "imacron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph476","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph476","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1274": { "name": "glyph1274", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph476","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph476","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1275": { "name": "glyph1275", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":477,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1276": { "name": "glyph1276", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1277": { "name": "glyph1277", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Ibreve": { "name": "Ibreve", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "ibreve": { "name": "ibreve", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1280": { "name": "glyph1280", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ibreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ibreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1281": { "name": "glyph1281", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":477,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1282": { "name": "glyph1282", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1283": { "name": "glyph1283", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Iogonek": { "name": "Iogonek", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "iogonek": { "name": "iogonek", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph132","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph132","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1286": { "name": "glyph1286", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iogonek","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iogonek","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1287": { "name": "glyph1287", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph135","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":597,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph135","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0328","x":597,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1288": { "name": "glyph1288", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph136","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph136","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1289": { "name": "glyph1289", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph137","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph137","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Idotaccent": { "name": "Idotaccent", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "Jcircumflex": { "name": "Jcircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph145","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":605,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph145","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":605,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "jcircumflex": { "name": "jcircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph150","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":550,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph150","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":550,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0136": { "name": "uni0136", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzrsDMr" }, "uni0137": { "name": "uni0137", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzrsDMr" }, "Lacute": { "name": "Lacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "lacute": { "name": "lacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "glyph1297": { "name": "glyph1297", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"lacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"lacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "glyph1298": { "name": "glyph1298", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":460,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":460,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "glyph1299": { "name": "glyph1299", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "glyph1300": { "name": "glyph1300", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni013B": { "name": "uni013B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzrsDMr" }, "uni013C": { "name": "uni013C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzrsDMr" }, "glyph1303": { "name": "glyph1303", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni013C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni013C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzrsDMr" }, "glyph1304": { "name": "glyph1304", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":588,"y":-789,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":588,"y":-789,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzrsDMr" }, "glyph1305": { "name": "glyph1305", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzrsDMr" }, "glyph1306": { "name": "glyph1306", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzrsDMr" }, "lcaron": { "name": "lcaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":638,"y":-15,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":638,"y":-15,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP/xsDMr" }, "glyph1308": { "name": "glyph1308", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"lcaron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"lcaron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP/xsDMr" }, "glyph1309": { "name": "glyph1309", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":638,"y":-15,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":638,"y":-15,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP/xsDMr" }, "glyph1310": { "name": "glyph1310", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":638,"y":-15,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":638,"y":-15,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP/xsDMr" }, "glyph1311": { "name": "glyph1311", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":638,"y":-15,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":638,"y":-15,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP/xsDMr" }, "lslash": { "name": "lslash", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniE090","x":504,"y":117,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uniE090","x":504,"y":117,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsHWwMys=" }, "glyph1313": { "name": "glyph1313", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"lslash","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"lslash","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsHWwMys=" }, "glyph1314": { "name": "glyph1314", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniE090","x":460,"y":117,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uniE090","x":460,"y":117,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsHWwMys=" }, "glyph1315": { "name": "glyph1315", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniE090","x":500,"y":117,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uniE090","x":500,"y":117,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsHWwMys=" }, "glyph1316": { "name": "glyph1316", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniE090","x":500,"y":117,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uniE090","x":500,"y":117,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsHWwMys=" }, "Nacute": { "name": "Nacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "nacute": { "name": "nacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0145": { "name": "uni0145", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzrsDMr" }, "uni0146": { "name": "uni0146", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzrsDMr" }, "Ncaron": { "name": "Ncaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "ncaron": { "name": "ncaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Omacron": { "name": "Omacron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "omacron": { "name": "omacron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Obreve": { "name": "Obreve", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "obreve": { "name": "obreve", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Ohungarumlaut": { "name": "Ohungarumlaut", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030B","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030B","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "ohungarumlaut": { "name": "ohungarumlaut", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030B","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030B","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Racute": { "name": "Racute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "racute": { "name": "racute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0156": { "name": "uni0156", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPzrsDMr" }, "uni0157": { "name": "uni0157", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzrsDMr" }, "Rcaron": { "name": "Rcaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "rcaron": { "name": "rcaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Sacute": { "name": "Sacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "sacute": { "name": "sacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Scircumflex": { "name": "Scircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "scircumflex": { "name": "scircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Scedilla": { "name": "Scedilla", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "scedilla": { "name": "scedilla", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Scaron": { "name": "Scaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "scaron": { "name": "scaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0162": { "name": "uni0162", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0163": { "name": "uni0163", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":554,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0327","x":554,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Tcaron": { "name": "Tcaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "tcaron": { "name": "tcaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":638,"y":-15,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":638,"y":-15,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP/xsDMr" }, "Utilde": { "name": "Utilde", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "utilde": { "name": "utilde", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Umacron": { "name": "Umacron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "umacron": { "name": "umacron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph510","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph510","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Ubreve": { "name": "Ubreve", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "ubreve": { "name": "ubreve", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Uring": { "name": "Uring", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030A","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uring": { "name": "uring", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030A","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Uhungarumlaut": { "name": "Uhungarumlaut", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030B","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030B","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uhungarumlaut": { "name": "uhungarumlaut", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030B","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030B","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Uogonek": { "name": "Uogonek", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uogonek": { "name": "uogonek", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":654,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0328","x":654,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Wcircumflex": { "name": "Wcircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "wcircumflex": { "name": "wcircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Ycircumflex": { "name": "Ycircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "ycircumflex": { "name": "ycircumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Ydieresis": { "name": "Ydieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "Zacute": { "name": "Zacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "zacute": { "name": "zacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Zdotaccent": { "name": "Zdotaccent", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "zdotaccent": { "name": "zdotaccent", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Zcaron": { "name": "Zcaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "zcaron": { "name": "zcaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0197": { "name": "uni0197", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":117,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":500,"y":117,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsHWwMys=" }, "uni019A": { "name": "uni019A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":504,"y":117,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":504,"y":117,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsHWwMys=" }, "glyph1372": { "name": "glyph1372", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni019A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni019A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsHWwMys=" }, "glyph1373": { "name": "glyph1373", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":460,"y":117,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":460,"y":117,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsHWwMys=" }, "glyph1374": { "name": "glyph1374", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":117,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":500,"y":117,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsHWwMys=" }, "glyph1375": { "name": "glyph1375", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":117,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":500,"y":117,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsHWwMys=" }, "Ohorn": { "name": "Ohorn", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsH6wMys=" }, "ohorn": { "name": "ohorn", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuP+xsDMr" }, "uni01AE": { @@ -12202,945 +12202,945 @@ "name": "Uhorn", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsH6wMys=" }, "uhorn": { "name": "uhorn", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP+xsDMr" }, "uni01B5": { "name": "uni01B5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":117,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":500,"y":117,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsHWwMys=" }, "uni01B6": { "name": "uni01B6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsAuwMys=" }, "uni01BB": { "name": "uni01BB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"two","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0336","x":500,"y":117,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"two","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0336","x":500,"y":117,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsHWwMys=" }, "uni01CD": { "name": "uni01CD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni01CE": { "name": "uni01CE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1386": { "name": "glyph1386", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni01CE","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni01CE","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1387": { "name": "glyph1387", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01CF": { "name": "uni01CF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni01D0": { "name": "uni01D0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1390": { "name": "glyph1390", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni01D0","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni01D0","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1391": { "name": "glyph1391", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":477,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1392": { "name": "glyph1392", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1393": { "name": "glyph1393", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01D1": { "name": "uni01D1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni01D2": { "name": "uni01D2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01D3": { "name": "uni01D3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni01D4": { "name": "uni01D4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01D5": { "name": "uni01D5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni01D6": { "name": "uni01D6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01D7": { "name": "uni01D7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni01D8": { "name": "uni01D8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01D9": { "name": "uni01D9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni01DA": { "name": "uni01DA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01DB": { "name": "uni01DB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni01DC": { "name": "uni01DC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"udieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01DE": { "name": "uni01DE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Adieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Adieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni01DF": { "name": "uni01DF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"adieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"adieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1408": { "name": "glyph1408", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni01DF","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni01DF","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1409": { "name": "glyph1409", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1176","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1176","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01E0": { "name": "uni01E0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0226","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0226","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni01E1": { "name": "uni01E1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0227","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0227","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1412": { "name": "glyph1412", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni01E1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni01E1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1413": { "name": "glyph1413", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1488","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1488","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01E2": { "name": "uni01E2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"AE","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"AE","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni01E3": { "name": "uni01E3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ae","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ae","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Gcaron": { "name": "Gcaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "gcaron": { "name": "gcaron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1418": { "name": "glyph1418", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"gcaron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"gcaron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1419": { "name": "glyph1419", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01E8": { "name": "uni01E8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni01E9": { "name": "uni01E9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni01EA": { "name": "uni01EA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01EB": { "name": "uni01EB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01EC": { "name": "uni01EC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Omacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Omacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni01ED": { "name": "uni01ED", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"omacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"omacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01EE": { "name": "uni01EE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni01B7","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni01B7","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni01EF": { "name": "uni01EF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni01EE","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni01EE","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni01F0": { "name": "uni01F0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph150","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":550,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph150","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":550,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01F4": { "name": "uni01F4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni01F5": { "name": "uni01F5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1431": { "name": "glyph1431", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni01F5","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni01F5","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1432": { "name": "glyph1432", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni01F8": { "name": "uni01F8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni01F9": { "name": "uni01F9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Aringacute": { "name": "Aringacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Aring","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Aring","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "aringacute": { "name": "aringacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"aring","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"aring","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1437": { "name": "glyph1437", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"aringacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"aringacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1438": { "name": "glyph1438", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1179","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1179","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "AEacute": { "name": "AEacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"AE","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"AE","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "aeacute": { "name": "aeacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ae","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ae","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Oslashacute": { "name": "Oslashacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Oslash","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Oslash","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQMBsM2wMys=" }, "oslashacute": { "name": "oslashacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"oslash","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"oslash","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0200": { "name": "uni0200", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMyuxAwGwzbAzKw==" }, "uni0201": { "name": "uni0201", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1445": { "name": "glyph1445", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0201","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0201","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1446": { "name": "glyph1446", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0202": { "name": "uni0202", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni0203": { "name": "uni0203", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1449": { "name": "glyph1449", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0203","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0203","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1450": { "name": "glyph1450", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0204": { "name": "uni0204", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMyuxAgGwzbAzKw==" }, "uni0205": { "name": "uni0205", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0206": { "name": "uni0206", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni0207": { "name": "uni0207", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0208": { "name": "uni0208", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMyuxAgGwzbAzKw==" }, "uni0209": { "name": "uni0209", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1457": { "name": "glyph1457", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0209","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0209","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1458": { "name": "glyph1458", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":562,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":392,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":562,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":392,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1459": { "name": "glyph1459", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1460": { "name": "glyph1460", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni020A": { "name": "uni020A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni020B": { "name": "uni020B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1463": { "name": "glyph1463", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni020B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni020B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1464": { "name": "glyph1464", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":477,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1465": { "name": "glyph1465", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1466": { "name": "glyph1466", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni020C": { "name": "uni020C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMyuxAwGwzbAzKw==" }, "uni020D": { "name": "uni020D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni020E": { "name": "uni020E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni020F": { "name": "uni020F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0210": { "name": "uni0210", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMyuxAwGwzbAzKw==" }, "uni0211": { "name": "uni0211", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0212": { "name": "uni0212", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni0213": { "name": "uni0213", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0214": { "name": "uni0214", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMyuxAgGwzbAzKw==" }, "uni0215": { "name": "uni0215", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0216": { "name": "uni0216", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni0217": { "name": "uni0217", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0218": { "name": "uni0218", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzrsDMr" }, "uni0219": { "name": "uni0219", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzrsDMr" }, "uni021A": { "name": "uni021A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":-789,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzrsDMr" }, "uni021B": { "name": "uni021B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":554,"y":-789,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":554,"y":-789,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzrsDMr" }, "uni021E": { "name": "uni021E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni021F": { "name": "uni021F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030C","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni0226": { "name": "uni0226", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni0227": { "name": "uni0227", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1487": { "name": "glyph1487", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0227","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0227","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1488": { "name": "glyph1488", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0228": { "name": "uni0228", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0229": { "name": "uni0229", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni022A": { "name": "uni022A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Odieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Odieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni022B": { "name": "uni022B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"odieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"odieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni022C": { "name": "uni022C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni022D": { "name": "uni022D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni022E": { "name": "uni022E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni022F": { "name": "uni022F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0230": { "name": "uni0230", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni022E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni022E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni0231": { "name": "uni0231", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni022F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni022F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0232": { "name": "uni0232", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni0233": { "name": "uni0233", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni023A": { "name": "uni023A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0338","x":500,"y":102,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0338","x":500,"y":102,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsGawMys=" }, "uni023B": { "name": "uni023B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0338","x":500,"y":102,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0338","x":500,"y":102,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsGawMys=" }, "uni023C": { "name": "uni023C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0337","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0337","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni023E": { "name": "uni023E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0338","x":500,"y":102,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0338","x":500,"y":102,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsGawMys=" }, "uni0244": { "name": "uni0244", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0336","x":500,"y":117,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0336","x":500,"y":117,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsHWwMys=" }, "uni0246": { "name": "uni0246", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0338","x":500,"y":102,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0338","x":500,"y":102,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsGawMys=" }, "uni0247": { "name": "uni0247", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0337","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0337","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0248": { "name": "uni0248", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph145","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":605,"y":117,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph145","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":605,"y":117,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsHWwMys=" }, "uni0249": { "name": "uni0249", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"j","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":550,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"j","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":550,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni024C": { "name": "uni024C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":390,"y":89,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":390,"y":89,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsFmwMys=" }, "uni024D": { "name": "uni024D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":432,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":432,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni024E": { "name": "uni024E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0336","x":500,"y":29,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0336","x":500,"y":29,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsB2wMys=" }, "uni024F": { "name": "uni024F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0336","x":500,"y":-88,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0336","x":500,"y":-88,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP+osDMr" }, "uni0256": { @@ -13154,35 +13154,35 @@ "name": "uni0268", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1516": { "name": "glyph1516", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0268","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0268","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1517": { "name": "glyph1517", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph135","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph135","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1518": { "name": "glyph1518", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph136","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph136","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1519": { "name": "glyph1519", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph137","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph137","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0273": { @@ -13196,7 +13196,7 @@ "name": "uni0289", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0336","x":500,"y":11,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0336","x":500,"y":11,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsAuwMys=" }, "uni0290": { @@ -13210,833 +13210,833 @@ "name": "circumflex", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "caron": { "name": "caron", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni030C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02C9": { "name": "uni02C9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02CA": { "name": "uni02CA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02CB": { "name": "uni02CB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02CD": { "name": "uni02CD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPy4sDMr" }, "uni02CE": { "name": "uni02CE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0316","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0316","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02CF": { "name": "uni02CF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0317","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0317","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02D2": { "name": "uni02D2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0339","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0339","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02D3": { "name": "uni02D3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni031C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni031C","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02D4": { "name": "uni02D4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni031D","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni031D","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02D5": { "name": "uni02D5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni031E","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni031E","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02D6": { "name": "uni02D6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni031F","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni031F","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02D7": { "name": "uni02D7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0320","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0320","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "breve": { "name": "breve", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "dotaccent": { "name": "dotaccent", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "ring": { "name": "ring", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni030A","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni030A","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "ogonek": { "name": "ogonek", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0328","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "tilde": { "name": "tilde", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "hungarumlaut": { "name": "hungarumlaut", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni030B","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni030B","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02DF": { "name": "uni02DF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni033D","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni033D","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02EC": { "name": "uni02EC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni030C","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni030C","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPzbsDMr" }, "uni02ED": { "name": "uni02ED", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni033F","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni033F","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02F3": { "name": "uni02F3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni030A","x":500,"y":-791,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni030A","x":500,"y":-791,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACuPzpsDMr" }, "uni02F7": { "name": "uni02F7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPzSsDMr" }, "uni0344": { "name": "uni0344", "advanceWidth": 0, "contours": [], - "references": [{"glyph":"acutecomb","x":0,"y":214,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"acutecomb","x":0,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsNawMys=" }, "uni037A": { "name": "uni037A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPzisDMr" }, "tonos": { "name": "tonos", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "dieresistonos": { "name": "dieresistonos", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0344","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0344","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsNawMys=" }, "Alphatonos": { "name": "Alphatonos", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Aacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Aacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "Epsilontonos": { "name": "Epsilontonos", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Eacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Eacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "Etatonos": { "name": "Etatonos", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "Iotatonos": { "name": "Iotatonos", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Iacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Iacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "Omicrontonos": { "name": "Omicrontonos", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Oacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Oacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "Upsilontonos": { "name": "Upsilontonos", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Yacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Yacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "Omegatonos": { "name": "Omegatonos", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "iotadieresistonos": { "name": "iotadieresistonos", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0344","x":500,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0344","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsNawMys=" }, "Iotadieresis": { "name": "Iotadieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "Upsilondieresis": { "name": "Upsilondieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ydieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ydieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "alphatonos": { "name": "alphatonos", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "epsilontonos": { "name": "epsilontonos", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "etatonos": { "name": "etatonos", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "iotatonos": { "name": "iotatonos", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "upsilondieresistonos": { "name": "upsilondieresistonos", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0344","x":500,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0344","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsNawMys=" }, "iotadieresis": { "name": "iotadieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "upsilondieresis": { "name": "upsilondieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "omicrontonos": { "name": "omicrontonos", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"oacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"oacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "upsilontonos": { "name": "upsilontonos", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "omegatonos": { "name": "omegatonos", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0400": { "name": "uni0400", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Egrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Egrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni0401": { "name": "uni0401", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Edieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Edieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni0403": { "name": "uni0403", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Gamma","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Gamma","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni0407": { "name": "uni0407", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni040C": { "name": "uni040C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni040D": { "name": "uni040D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0418","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0418","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni040E": { "name": "uni040E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph221","x":0,"y":205,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph221","x":0,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsM2wMyuxAQGwzbAzKw==" }, "uni0419": { "name": "uni0419", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0418","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0418","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni0439": { "name": "uni0439", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph543","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph543","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0450": { "name": "uni0450", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"egrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"egrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0451": { "name": "uni0451", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"edieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"edieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0453": { "name": "uni0453", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph475","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph475","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0457": { "name": "uni0457", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1585": { "name": "glyph1585", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1586": { "name": "glyph1586", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1202","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1202","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1587": { "name": "glyph1587", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1203","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1203","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1588": { "name": "glyph1588", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1204","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1204","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni045C": { "name": "uni045C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"kappa","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"kappa","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni045D": { "name": "uni045D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph543","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph543","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni045E": { "name": "uni045E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni040E","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni040E","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsM2wMyuxAQGwzbAzKw==" }, "uni0476": { "name": "uni0476", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0474","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0474","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":585,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":415,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMyuxAgGwzbAzKw==" }, "uni0477": { "name": "uni0477", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2C71","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2C71","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":585,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":415,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0498": { "name": "uni0498", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0417","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0417","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni0499": { "name": "uni0499", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0437","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0437","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04AA": { "name": "uni04AA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ccedilla","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ccedilla","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04AB": { "name": "uni04AB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ccedilla","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ccedilla","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04B0": { "name": "uni04B0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":29,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":500,"y":29,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsB2wMys=" }, "uni04B1": { "name": "uni04B1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni04B0","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni04B0","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsB2wMys=" }, "uni04C1": { "name": "uni04C1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0416","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0416","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni04C2": { "name": "uni04C2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0436","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0436","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04D0": { "name": "uni04D0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni04D1": { "name": "uni04D1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1604": { "name": "glyph1604", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1605": { "name": "glyph1605", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1224","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1224","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04D2": { "name": "uni04D2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Adieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Adieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni04D3": { "name": "uni04D3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"adieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"adieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1608": { "name": "glyph1608", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"adieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"adieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1609": { "name": "glyph1609", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1176","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1176","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04D6": { "name": "uni04D6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ebreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ebreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni04D7": { "name": "uni04D7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ebreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ebreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04DA": { "name": "uni04DA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni018F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni018F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni04DB": { "name": "uni04DB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni01DD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni01DD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04DC": { "name": "uni04DC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0416","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0416","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni04DD": { "name": "uni04DD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0436","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0436","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04DE": { "name": "uni04DE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0417","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0417","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni04DF": { "name": "uni04DF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0437","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0437","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04E2": { "name": "uni04E2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0418","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0418","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni04E3": { "name": "uni04E3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph543","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph543","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04E4": { "name": "uni04E4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0418","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0418","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni04E5": { "name": "uni04E5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph543","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph543","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04E6": { "name": "uni04E6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Odieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Odieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni04E7": { "name": "uni04E7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"odieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"odieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04EA": { "name": "uni04EA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni019F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni019F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQMCsM2wMys=" }, "uni04EB": { "name": "uni04EB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0275","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0275","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04EC": { "name": "uni04EC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni042D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni042D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni04ED": { "name": "uni04ED", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni044D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni044D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04EE": { "name": "uni04EE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0233","x":0,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0233","x":0,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04EF": { "name": "uni04EF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0233","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0233","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04F0": { "name": "uni04F0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ydieresis","x":0,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ydieresis","x":0,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04F1": { "name": "uni04F1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ydieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ydieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04F2": { "name": "uni04F2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph221","x":0,"y":205,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030B","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph221","x":0,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030B","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsM2wMyuxAQKwzbAzKw==" }, "uni04F3": { "name": "uni04F3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni04F2","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni04F2","x":0,"y":-205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsM2wMyuxAQKwzbAzKw==" }, "uni04F4": { "name": "uni04F4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0427","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0427","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni04F5": { "name": "uni04F5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0447","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0447","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni04F8": { "name": "uni04F8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni042B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni042B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQMCsM2wMys=" }, "uni04F9": { "name": "uni04F9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni044B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni044B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1D7B": { "name": "uni1D7B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni026A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni026A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsAuwMys=" }, "uni1D7C": { "name": "uni1D7C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":500,"y":11,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsAuwMys=" }, "uni1D7D": { "name": "uni1D7D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"p","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0336","x":500,"y":-88,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"p","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0336","x":500,"y":-88,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuP+osDMr" }, "uni1D7F": { "name": "uni1D7F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni028A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0336","x":500,"y":11,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni028A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0336","x":500,"y":11,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsAuwMys=" }, "uni1D8F": { @@ -14050,14 +14050,14 @@ "name": "glyph1643", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1D8F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1D8F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1644": { "name": "glyph1644", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni024B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni024B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1D90": { @@ -14085,3766 +14085,3766 @@ "name": "uni1E00", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":-791,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030A","x":500,"y":-791,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICuPzpsDMr" }, "uni1E01": { "name": "uni1E01", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":-791,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030A","x":500,"y":-791,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICuPzpsDMr" }, "glyph1650": { "name": "glyph1650", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1E01","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1E01","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICuPzpsDMr" }, "glyph1651": { "name": "glyph1651", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":-791,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030A","x":500,"y":-791,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICuPzpsDMr" }, "uni1E02": { "name": "uni1E02", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQMBsM2wMys=" }, "uni1E04": { "name": "uni1E04", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQMBuPy4sDMr" }, "uni1E05": { "name": "uni1E05", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"b","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"b","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPy4sDMr" }, "uni1E06": { "name": "uni1E06", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQMBuPy4sDMr" }, "uni1E07": { "name": "uni1E07", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"b","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"b","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPy4sDMr" }, "uni1E08": { "name": "uni1E08", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ccedilla","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ccedilla","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E09": { "name": "uni1E09", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ccedilla","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ccedilla","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E0A": { "name": "uni1E0A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1E0C": { "name": "uni1E0C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPy4sDMr" }, "uni1E0D": { "name": "uni1E0D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPy4sDMr" }, "uni1E0E": { "name": "uni1E0E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPy4sDMr" }, "uni1E0F": { "name": "uni1E0F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPy4sDMr" }, "uni1E10": { "name": "uni1E10", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E11": { "name": "uni1E11", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E12": { "name": "uni1E12", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPzbsDMr" }, "uni1E13": { "name": "uni1E13", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPzbsDMr" }, "uni1E14": { "name": "uni1E14", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Emacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Emacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E15": { "name": "uni1E15", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"emacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"emacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E16": { "name": "uni1E16", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Emacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Emacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E17": { "name": "uni1E17", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"emacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"emacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E18": { "name": "uni1E18", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzbsDMr" }, "uni1E19": { "name": "uni1E19", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPzbsDMr" }, "uni1E1A": { "name": "uni1E1A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzSsDMr" }, "uni1E1B": { "name": "uni1E1B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPzSsDMr" }, "uni1E1C": { "name": "uni1E1C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ebreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ebreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E1D": { "name": "uni1E1D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ebreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ebreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E1E": { "name": "uni1E1E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E1F": { "name": "uni1E1F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph410","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph410","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E20": { "name": "uni1E20", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E21": { "name": "uni1E21", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph319","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1682": { "name": "glyph1682", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1E21","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1E21","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1683": { "name": "glyph1683", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph320","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E22": { "name": "uni1E22", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E23": { "name": "uni1E23", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E24": { "name": "uni1E24", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E25": { "name": "uni1E25", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E26": { "name": "uni1E26", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1E27": { "name": "uni1E27", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1E28": { "name": "uni1E28", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E29": { "name": "uni1E29", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0327","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E2A": { "name": "uni1E2A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzisDMr" }, "uni1E2B": { "name": "uni1E2B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzisDMr" }, "uni1E2C": { "name": "uni1E2C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzSsDMr" }, "uni1E2D": { "name": "uni1E2D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1696": { "name": "glyph1696", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1E2D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1E2D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1697": { "name": "glyph1697", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph135","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":597,"y":-814,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph135","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":597,"y":-814,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1698": { "name": "glyph1698", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph136","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph136","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1699": { "name": "glyph1699", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph137","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph137","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E2E": { "name": "uni1E2E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1E2F": { "name": "uni1E2F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"idieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1702": { "name": "glyph1702", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1E2F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1E2F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1703": { "name": "glyph1703", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1202","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":477,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1202","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":477,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1704": { "name": "glyph1704", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1203","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1203","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1705": { "name": "glyph1705", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1204","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1204","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E30": { "name": "uni1E30", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni040C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni040C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E31": { "name": "uni1E31", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E32": { "name": "uni1E32", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E33": { "name": "uni1E33", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E34": { "name": "uni1E34", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E35": { "name": "uni1E35", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E36": { "name": "uni1E36", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E37": { "name": "uni1E37", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "glyph1714": { "name": "glyph1714", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1E37","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1E37","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "glyph1715": { "name": "glyph1715", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":588,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":588,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "glyph1716": { "name": "glyph1716", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "glyph1717": { "name": "glyph1717", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E38": { "name": "uni1E38", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1E36","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1E36","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E39": { "name": "uni1E39", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1E37","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1E37","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "glyph1720": { "name": "glyph1720", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1E39","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1E39","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "glyph1721": { "name": "glyph1721", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1715","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":460,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1715","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":460,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "glyph1722": { "name": "glyph1722", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1716","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1716","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "glyph1723": { "name": "glyph1723", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1717","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1717","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E3A": { "name": "uni1E3A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E3B": { "name": "uni1E3B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "glyph1726": { "name": "glyph1726", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1E3B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1E3B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "glyph1727": { "name": "glyph1727", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":588,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":588,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "glyph1728": { "name": "glyph1728", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "glyph1729": { "name": "glyph1729", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E3C": { "name": "uni1E3C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzbsDMr" }, "uni1E3D": { "name": "uni1E3D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph166","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzbsDMr" }, "glyph1732": { "name": "glyph1732", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1E3D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1E3D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzbsDMr" }, "glyph1733": { "name": "glyph1733", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":588,"y":-805,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph167","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":588,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzbsDMr" }, "glyph1734": { "name": "glyph1734", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph164","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzbsDMr" }, "glyph1735": { "name": "glyph1735", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph165","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzbsDMr" }, "uni1E3E": { "name": "uni1E3E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E3F": { "name": "uni1E3F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"m","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"m","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E40": { "name": "uni1E40", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E41": { "name": "uni1E41", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"m","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"m","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E42": { "name": "uni1E42", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E43": { "name": "uni1E43", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"m","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"m","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E44": { "name": "uni1E44", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E45": { "name": "uni1E45", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E46": { "name": "uni1E46", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E47": { "name": "uni1E47", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E48": { "name": "uni1E48", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E49": { "name": "uni1E49", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E4A": { "name": "uni1E4A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzbsDMr" }, "uni1E4B": { "name": "uni1E4B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzbsDMr" }, "uni1E4C": { "name": "uni1E4C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1E4D": { "name": "uni1E4D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E4E": { "name": "uni1E4E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1E4F": { "name": "uni1E4F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E50": { "name": "uni1E50", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Omacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Omacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1E51": { "name": "uni1E51", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"omacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"omacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E52": { "name": "uni1E52", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Omacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Omacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1E53": { "name": "uni1E53", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"omacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"omacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E54": { "name": "uni1E54", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1E55": { "name": "uni1E55", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"p","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"p","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E56": { "name": "uni1E56", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1E57": { "name": "uni1E57", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"p","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"p","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E58": { "name": "uni1E58", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1E59": { "name": "uni1E59", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E5A": { "name": "uni1E5A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPy4sDMr" }, "uni1E5B": { "name": "uni1E5B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E5C": { "name": "uni1E5C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1E5A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1E5A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPy4sDMr" }, "uni1E5D": { "name": "uni1E5D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1E5B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1E5B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E5E": { "name": "uni1E5E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPy4sDMr" }, "uni1E5F": { "name": "uni1E5F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E60": { "name": "uni1E60", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E61": { "name": "uni1E61", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E62": { "name": "uni1E62", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E63": { "name": "uni1E63", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E64": { "name": "uni1E64", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Sacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Sacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E65": { "name": "uni1E65", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"sacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"sacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E66": { "name": "uni1E66", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Scaron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Scaron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E67": { "name": "uni1E67", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"scaron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"scaron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E68": { "name": "uni1E68", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1E60","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1E60","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E69": { "name": "uni1E69", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1E61","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1E61","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E6A": { "name": "uni1E6A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E6B": { "name": "uni1E6B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E6C": { "name": "uni1E6C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E6D": { "name": "uni1E6D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":554,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":554,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E6E": { "name": "uni1E6E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E6F": { "name": "uni1E6F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":554,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":554,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E70": { "name": "uni1E70", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzbsDMr" }, "uni1E71": { "name": "uni1E71", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":554,"y":-805,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":554,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzbsDMr" }, "uni1E72": { "name": "uni1E72", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0324","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0324","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQMBuPy4sDMrsQQBuPy4sDMr" }, "uni1E73": { "name": "uni1E73", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0324","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0324","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQMBuPy4sDMrsQQBuPy4sDMr" }, "uni1E74": { "name": "uni1E74", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzSsDMr" }, "uni1E75": { "name": "uni1E75", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":-814,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzSsDMr" }, "uni1E76": { "name": "uni1E76", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzbsDMr" }, "uni1E77": { "name": "uni1E77", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzbsDMr" }, "uni1E78": { "name": "uni1E78", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Utilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Utilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E79": { "name": "uni1E79", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"utilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"utilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E7A": { "name": "uni1E7A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Umacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Umacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E7B": { "name": "uni1E7B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph510","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph510","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E7C": { "name": "uni1E7C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"V","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"V","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E7D": { "name": "uni1E7D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"v","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"v","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E7E": { "name": "uni1E7E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"V","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"V","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E7F": { "name": "uni1E7F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"v","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"v","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "Wgrave": { "name": "Wgrave", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "wgrave": { "name": "wgrave", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Wacute": { "name": "Wacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "wacute": { "name": "wacute", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "Wdieresis": { "name": "Wdieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "wdieresis": { "name": "wdieresis", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E86": { "name": "uni1E86", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E87": { "name": "uni1E87", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E88": { "name": "uni1E88", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E89": { "name": "uni1E89", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E8A": { "name": "uni1E8A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"X","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"X","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E8B": { "name": "uni1E8B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"x","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"x","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E8C": { "name": "uni1E8C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"X","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"X","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1E8D": { "name": "uni1E8D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"x","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"x","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E8E": { "name": "uni1E8E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E8F": { "name": "uni1E8F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E90": { "name": "uni1E90", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E91": { "name": "uni1E91", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0302","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E92": { "name": "uni1E92", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E93": { "name": "uni1E93", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E94": { "name": "uni1E94", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E95": { "name": "uni1E95", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E96": { "name": "uni1E96", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1E97": { "name": "uni1E97", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1E98": { "name": "uni1E98", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030A","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E99": { "name": "uni1E99", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030A","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030A","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1E9A": { "name": "uni1E9A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0339","x":500,"y":798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0339","x":500,"y":798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuAMesDMr" }, "glyph1829": { "name": "glyph1829", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1E9A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1E9A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuAMesDMr" }, "glyph1830": { "name": "glyph1830", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0339","x":500,"y":798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0339","x":500,"y":798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuAMesDMr" }, "uni1E9B": { "name": "uni1E9B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph402","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph402","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1E9C": { "name": "uni1E9C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph402","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniE090","x":449,"y":117,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph402","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uniE090","x":449,"y":117,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsHWwMys=" }, "uni1E9D": { "name": "uni1E9D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph402","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0335","x":449,"y":117,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph402","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0335","x":449,"y":117,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsHWwMys=" }, "uni1EA0": { "name": "uni1EA0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPy4sDMr" }, "uni1EA1": { "name": "uni1EA1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPy4sDMr" }, "glyph1836": { "name": "glyph1836", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1EA1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1EA1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPy4sDMr" }, "glyph1837": { "name": "glyph1837", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPy4sDMr" }, "uni1EA2": { "name": "uni1EA2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1EA3": { "name": "uni1EA3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph189","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1840": { "name": "glyph1840", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1EA3","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1EA3","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1841": { "name": "glyph1841", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EA4": { "name": "uni1EA4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1EA5": { "name": "uni1EA5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1844": { "name": "glyph1844", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1EA5","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1EA5","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1845": { "name": "glyph1845", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1170","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1170","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EA6": { "name": "uni1EA6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1EA7": { "name": "uni1EA7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1848": { "name": "glyph1848", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1EA7","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1EA7","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1849": { "name": "glyph1849", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1170","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1170","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EA8": { "name": "uni1EA8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1EA9": { "name": "uni1EA9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1852": { "name": "glyph1852", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1EA9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1EA9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1853": { "name": "glyph1853", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1170","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1170","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EAA": { "name": "uni1EAA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1EAB": { "name": "uni1EAB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1856": { "name": "glyph1856", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1EAB","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1EAB","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1857": { "name": "glyph1857", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1170","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1170","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EAC": { "name": "uni1EAC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1EAD": { "name": "uni1EAD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"acircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1860": { "name": "glyph1860", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1EAD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1EAD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1861": { "name": "glyph1861", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1170","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1170","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EAE": { "name": "uni1EAE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1EAF": { "name": "uni1EAF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1864": { "name": "glyph1864", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1EAF","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1EAF","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1865": { "name": "glyph1865", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1224","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1224","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EB0": { "name": "uni1EB0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1EB1": { "name": "uni1EB1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1868": { "name": "glyph1868", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1EB1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1EB1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1869": { "name": "glyph1869", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1224","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1224","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EB2": { "name": "uni1EB2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1EB3": { "name": "uni1EB3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1872": { "name": "glyph1872", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1EB3","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1EB3","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1873": { "name": "glyph1873", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1224","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1224","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EB4": { "name": "uni1EB4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1EB5": { "name": "uni1EB5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1876": { "name": "glyph1876", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1EB5","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1EB5","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1877": { "name": "glyph1877", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1224","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1224","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EB6": { "name": "uni1EB6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1EB7": { "name": "uni1EB7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1880": { "name": "glyph1880", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1EB7","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1EB7","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1881": { "name": "glyph1881", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph1224","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph1224","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EB8": { "name": "uni1EB8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1EB9": { "name": "uni1EB9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPy4sDMr" }, "uni1EBA": { "name": "uni1EBA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1EBB": { "name": "uni1EBB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EBC": { "name": "uni1EBC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1EBD": { "name": "uni1EBD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EBE": { "name": "uni1EBE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1EBF": { "name": "uni1EBF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EC0": { "name": "uni1EC0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1EC1": { "name": "uni1EC1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EC2": { "name": "uni1EC2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1EC3": { "name": "uni1EC3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EC4": { "name": "uni1EC4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1EC5": { "name": "uni1EC5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EC6": { "name": "uni1EC6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1EC7": { "name": "uni1EC7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ecircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EC8": { "name": "uni1EC8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1EC9": { "name": "uni1EC9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph129","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1900": { "name": "glyph1900", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1EC9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1EC9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1901": { "name": "glyph1901", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":477,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph130","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":477,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1902": { "name": "glyph1902", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph127","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1903": { "name": "glyph1903", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph128","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1ECA": { "name": "uni1ECA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1ECB": { "name": "uni1ECB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1906": { "name": "glyph1906", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1ECB","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1ECB","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1907": { "name": "glyph1907", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph135","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":597,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph135","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":597,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1908": { "name": "glyph1908", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph136","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph136","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph1909": { "name": "glyph1909", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph137","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph137","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1ECC": { "name": "uni1ECC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPy4sDMr" }, "uni1ECD": { "name": "uni1ECD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPy4sDMr" }, "uni1ECE": { "name": "uni1ECE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1ECF": { "name": "uni1ECF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1ED0": { "name": "uni1ED0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1ED1": { "name": "uni1ED1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"acutecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1ED2": { "name": "uni1ED2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1ED3": { "name": "uni1ED3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1ED4": { "name": "uni1ED4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1ED5": { "name": "uni1ED5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1ED6": { "name": "uni1ED6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":419,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1ED7": { "name": "uni1ED7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1ED8": { "name": "uni1ED8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1ED9": { "name": "uni1ED9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ocircumflex","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EDA": { "name": "uni1EDA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Oacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Oacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1EDB": { "name": "uni1EDB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"oacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"oacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EDC": { "name": "uni1EDC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ograve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ograve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1EDD": { "name": "uni1EDD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ograve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ograve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EDE": { "name": "uni1EDE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsH6wMys=" }, "uni1EDF": { "name": "uni1EDF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuP+xsDMr" }, "uni1EE0": { "name": "uni1EE0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1EE1": { "name": "uni1EE1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"otilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EE2": { "name": "uni1EE2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsH6wMys=" }, "uni1EE3": { "name": "uni1EE3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuP+xsDMr" }, "uni1EE4": { "name": "uni1EE4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1EE5": { "name": "uni1EE5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1EE6": { "name": "uni1EE6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1EE7": { "name": "uni1EE7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EE8": { "name": "uni1EE8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Uacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Uacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1EE9": { "name": "uni1EE9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EEA": { "name": "uni1EEA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ugrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ugrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1EEB": { "name": "uni1EEB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ugrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ugrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EEC": { "name": "uni1EEC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsH6wMys=" }, "uni1EED": { "name": "uni1EED", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP+xsDMr" }, "uni1EEE": { "name": "uni1EEE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Utilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Utilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni031B","x":440,"y":126,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1EEF": { "name": "uni1EEF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"utilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"utilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni031B","x":440,"y":-79,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EF0": { "name": "uni1EF0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsH6wMys=" }, "uni1EF1": { "name": "uni1EF1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP+xsDMr" }, "Ygrave": { "name": "Ygrave", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "ygrave": { "name": "ygrave", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EF4": { "name": "uni1EF4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-840,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPy4sDMr" }, "uni1EF5": { "name": "uni1EF5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0307","x":500,"y":-1045,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0307","x":500,"y":-1045,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPvrsDMr" }, "uni1EF6": { "name": "uni1EF6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1EF7": { "name": "uni1EF7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"hookabovecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1EF8": { "name": "uni1EF8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1EF9": { "name": "uni1EF9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph221","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"tildecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F00": { "name": "uni1F00", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F01": { "name": "uni1F01", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F02": { "name": "uni1F02", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F03": { "name": "uni1F03", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F04": { "name": "uni1F04", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F05": { "name": "uni1F05", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F06": { "name": "uni1F06", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph115","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph115","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F07": { "name": "uni1F07", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph117","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F08": { "name": "uni1F08", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1F09": { "name": "uni1F09", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1F0A": { "name": "uni1F0A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni1FCD","x":0,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni1F0B": { "name": "uni1F0B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni1F0C": { "name": "uni1F0C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph109","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni1F0D": { "name": "uni1F0D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni1F0E": { "name": "uni1F0E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph115","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph115","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni1F0F": { "name": "uni1F0F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph117","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni1F10": { "name": "uni1F10", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F11": { "name": "uni1F11", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F12": { "name": "uni1F12", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F13": { "name": "uni1F13", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F14": { "name": "uni1F14", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F15": { "name": "uni1F15", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F18": { "name": "uni1F18", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1F19": { "name": "uni1F19", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1F1A": { "name": "uni1F1A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni1FCD","x":0,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F1B": { "name": "uni1F1B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F1C": { "name": "uni1F1C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph109","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F1D": { "name": "uni1F1D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F20": { "name": "uni1F20", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F21": { "name": "uni1F21", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F22": { "name": "uni1F22", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F23": { "name": "uni1F23", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F24": { "name": "uni1F24", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F25": { "name": "uni1F25", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F26": { "name": "uni1F26", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph115","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph115","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F27": { "name": "uni1F27", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph117","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F28": { "name": "uni1F28", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1F29": { "name": "uni1F29", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1F2A": { "name": "uni1F2A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni1FCD","x":0,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F2B": { "name": "uni1F2B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F2C": { "name": "uni1F2C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph109","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F2D": { "name": "uni1F2D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F2E": { "name": "uni1F2E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph115","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph115","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F2F": { "name": "uni1F2F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph117","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F30": { "name": "uni1F30", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F31": { "name": "uni1F31", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F32": { "name": "uni1F32", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F33": { "name": "uni1F33", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F34": { "name": "uni1F34", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F35": { "name": "uni1F35", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F36": { "name": "uni1F36", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph115","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph115","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F37": { "name": "uni1F37", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph117","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F38": { "name": "uni1F38", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1F39": { "name": "uni1F39", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1F3A": { "name": "uni1F3A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni1FCD","x":0,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F3B": { "name": "uni1F3B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F3C": { "name": "uni1F3C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph109","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F3D": { "name": "uni1F3D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F3E": { "name": "uni1F3E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph115","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph115","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F3F": { "name": "uni1F3F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph120","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph117","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F40": { "name": "uni1F40", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F41": { "name": "uni1F41", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F42": { "name": "uni1F42", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F43": { "name": "uni1F43", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F44": { "name": "uni1F44", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F45": { "name": "uni1F45", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F48": { "name": "uni1F48", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1F49": { "name": "uni1F49", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1F4A": { "name": "uni1F4A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni1FCD","x":0,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni1F4B": { "name": "uni1F4B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni1F4C": { "name": "uni1F4C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph109","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni1F4D": { "name": "uni1F4D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni1F50": { "name": "uni1F50", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F51": { "name": "uni1F51", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F52": { "name": "uni1F52", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F53": { "name": "uni1F53", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F54": { "name": "uni1F54", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F55": { "name": "uni1F55", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F56": { "name": "uni1F56", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph115","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph115","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F57": { "name": "uni1F57", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph117","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F59": { "name": "uni1F59", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1F5B": { "name": "uni1F5B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F5D": { "name": "uni1F5D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F5F": { "name": "uni1F5F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph117","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F60": { "name": "uni1F60", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F61": { "name": "uni1F61", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F62": { "name": "uni1F62", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni1FCD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F63": { "name": "uni1F63", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph111","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F64": { "name": "uni1F64", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph109","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F65": { "name": "uni1F65", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph113","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F66": { "name": "uni1F66", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph115","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph115","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F67": { "name": "uni1F67", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph117","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F68": { "name": "uni1F68", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1F69": { "name": "uni1F69", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1F6A": { "name": "uni1F6A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni1FCD","x":0,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni1FCD","x":0,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F6B": { "name": "uni1F6B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph111","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F6C": { "name": "uni1F6C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph109","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph109","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F6D": { "name": "uni1F6D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph113","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F6E": { "name": "uni1F6E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph115","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph115","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F6F": { "name": "uni1F6F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph117","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph117","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F70": { "name": "uni1F70", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F71": { "name": "uni1F71", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"alphatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"alphatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F72": { "name": "uni1F72", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F73": { "name": "uni1F73", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"epsilontonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"epsilontonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F74": { "name": "uni1F74", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F75": { "name": "uni1F75", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"etatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"etatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F76": { "name": "uni1F76", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F77": { "name": "uni1F77", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iotatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iotatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F78": { "name": "uni1F78", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"ograve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"ograve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F79": { "name": "uni1F79", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"oacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"oacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F7A": { "name": "uni1F7A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F7B": { "name": "uni1F7B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"upsilontonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"upsilontonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F7C": { "name": "uni1F7C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F7D": { "name": "uni1F7D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"omegatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"omegatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F80": { "name": "uni1F80", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F00","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F00","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F81": { "name": "uni1F81", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F01","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F01","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F82": { "name": "uni1F82", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F02","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F02","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F83": { "name": "uni1F83", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F03","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F03","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F84": { "name": "uni1F84", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F04","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F04","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F85": { "name": "uni1F85", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F05","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F05","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F86": { "name": "uni1F86", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F06","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F06","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F87": { "name": "uni1F87", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F07","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F07","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F88": { "name": "uni1F88", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F08","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F08","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1F89": { "name": "uni1F89", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F09","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F09","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1F8A": { "name": "uni1F8A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F0A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F0A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni1F8B": { "name": "uni1F8B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F0B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F0B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni1F8C": { "name": "uni1F8C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F0C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F0C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni1F8D": { "name": "uni1F8D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F0D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F0D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni1F8E": { "name": "uni1F8E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F0E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F0E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni1F8F": { "name": "uni1F8F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F0F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F0F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uni1F90": { "name": "uni1F90", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F20","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F20","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F91": { "name": "uni1F91", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F21","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F21","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F92": { "name": "uni1F92", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F22","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F22","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F93": { "name": "uni1F93", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F23","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F23","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F94": { "name": "uni1F94", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F24","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F24","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F95": { "name": "uni1F95", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F25","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F25","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F96": { "name": "uni1F96", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F26","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F26","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F97": { "name": "uni1F97", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F27","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F27","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1F98": { "name": "uni1F98", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F28","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F28","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1F99": { "name": "uni1F99", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F29","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F29","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1F9A": { "name": "uni1F9A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F2A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F2A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F9B": { "name": "uni1F9B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F2B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F2B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F9C": { "name": "uni1F9C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F2C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F2C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F9D": { "name": "uni1F9D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F2D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F2D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F9E": { "name": "uni1F9E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F2E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F2E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1F9F": { "name": "uni1F9F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F2F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F2F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1FA0": { "name": "uni1FA0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F60","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F60","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FA1": { "name": "uni1FA1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F61","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F61","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FA2": { "name": "uni1FA2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F62","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F62","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FA3": { "name": "uni1FA3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F63","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F63","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FA4": { "name": "uni1FA4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F64","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F64","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FA5": { "name": "uni1FA5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F65","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F65","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FA6": { "name": "uni1FA6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F66","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F66","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FA7": { "name": "uni1FA7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F67","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F67","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FA8": { "name": "uni1FA8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F68","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F68","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1FA9": { "name": "uni1FA9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F69","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F69","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1FAA": { "name": "uni1FAA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F6A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F6A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1FAB": { "name": "uni1FAB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F6B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F6B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1FAC": { "name": "uni1FAC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F6C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F6C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1FAD": { "name": "uni1FAD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F6D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F6D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1FAE": { "name": "uni1FAE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F6E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F6E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1FAF": { "name": "uni1FAF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F6F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F6F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECsM2wMys=" }, "uni1FB0": { "name": "uni1FB0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FB1": { "name": "uni1FB1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FB2": { "name": "uni1FB2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F70","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F70","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FB3": { "name": "uni1FB3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPzisDMr" }, "uni1FB4": { "name": "uni1FB4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"alphatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"alphatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FB6": { "name": "uni1FB6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FB7": { "name": "uni1FB7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1FB3","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1FB3","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPzisDMr" }, "uni1FB8": { "name": "uni1FB8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Abreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1FB9": { "name": "uni1FB9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Amacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Amacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1FBA": { "name": "uni1FBA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Agrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Agrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1FBB": { "name": "uni1FBB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Aacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Aacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1FBC": { "name": "uni1FBC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBuPzisDMr" }, "uni1FBD": { "name": "uni1FBD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FBE": { "name": "uni1FBE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuPzisDMr" }, "uni1FBF": { "name": "uni1FBF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FC0": { "name": "uni1FC0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FC1": { "name": "uni1FC1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0311","x":500,"y":214,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0311","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsNawMys=" }, "uni1FC2": { "name": "uni1FC2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F74","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F74","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FC3": { "name": "uni1FC3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzisDMr" }, "uni1FC4": { "name": "uni1FC4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"etatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"etatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":346,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FC6": { "name": "uni1FC6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FC7": { "name": "uni1FC7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1FC3","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1FC3","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzisDMr" }, "uni1FC8": { "name": "uni1FC8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Egrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Egrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1FC9": { "name": "uni1FC9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Eacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Eacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1FCA": { "name": "uni1FCA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1FCB": { "name": "uni1FCB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Etatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Etatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1FCC": { "name": "uni1FCC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzisDMr" }, "uni1FD0": { "name": "uni1FD0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FD1": { "name": "uni1FD1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FD2": { "name": "uni1FD2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iotadieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iotadieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FD3": { "name": "uni1FD3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iotadieresistonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iotadieresistonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsNawMys=" }, "uni1FD6": { "name": "uni1FD6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FD7": { "name": "uni1FD7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"iotadieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"iotadieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FD8": { "name": "uni1FD8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ibreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ibreve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1FD9": { "name": "uni1FD9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Imacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Imacron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1FDA": { "name": "uni1FDA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Igrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Igrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1FDB": { "name": "uni1FDB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Iacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Iacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1FE0": { "name": "uni1FE0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FE1": { "name": "uni1FE1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0304","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FE2": { "name": "uni1FE2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"upsilondieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"upsilondieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FE3": { "name": "uni1FE3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"upsilondieresistonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"upsilondieresistonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsNawMys=" }, "uni1FE4": { "name": "uni1FE4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"rho","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"rho","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0313","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FE5": { "name": "uni1FE5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"rho","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"rho","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FE6": { "name": "uni1FE6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FE7": { "name": "uni1FE7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"upsilondieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":214,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"upsilondieresis","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FE8": { "name": "uni1FE8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0306","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1FE9": { "name": "uni1FE9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0232","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0232","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1FEA": { "name": "uni1FEA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ygrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ygrave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1FEB": { "name": "uni1FEB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Yacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Yacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1FEC": { "name": "uni1FEC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0314","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1FED": { "name": "uni1FED", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"gravecomb","x":500,"y":214,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0308","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsNawMys=" }, "uni1FEE": { "name": "uni1FEE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0344","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0344","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsNawMys=" }, "uni1FEF": { "name": "uni1FEF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"gravecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FF2": { "name": "uni1FF2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1F7C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1F7C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FF3": { "name": "uni1FF3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzisDMr" }, "uni1FF4": { "name": "uni1FF4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"omegatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"omegatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FF6": { "name": "uni1FF6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FF7": { "name": "uni1FF7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1FF3","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1FF3","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0311","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzisDMr" }, "uni1FF8": { "name": "uni1FF8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Ograve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Ograve","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1FF9": { "name": "uni1FF9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Oacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Oacute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsM2wMys=" }, "uni1FFA": { "name": "uni1FFA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"gravecomb","x":500,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1FFB": { "name": "uni1FFB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Omegatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Omegatonos","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsM2wMys=" }, "uni1FFC": { "name": "uni1FFC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni030D","x":500,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuPzisDMr" }, "uni1FFD": { "name": "uni1FFD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"acutecomb","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1FFE": { "name": "uni1FFE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni0314","x":500,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni212B": { "name": "uni212B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"Aring","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"Aring","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsM2wMys=" }, "uniAB30": { "name": "uniAB30", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uni0336","x":478,"y":11,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uni0336","x":478,"y":11,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsAuwMys=" }, "copyright": { "name": "copyright", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2186","x":0,"y":129,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2186","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsIGwMys=" }, "glyph2186": { @@ -17858,7 +17858,7 @@ "name": "registered", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2188","x":0,"y":129,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2188","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsIGwMys=" }, "glyph2188": { @@ -17872,7 +17872,7 @@ "name": "uni2117", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2190","x":0,"y":129,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2190","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsIGwMys=" }, "glyph2190": { @@ -17886,7 +17886,7 @@ "name": "uni24EA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2192","x":0,"y":129,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2192","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIDsIGwMys=" }, "glyph2192": { @@ -17914,7 +17914,7 @@ "name": "uni2460", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2196","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2196","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2196": { @@ -17928,7 +17928,7 @@ "name": "uni2461", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2198","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2198","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2198": { @@ -17942,7 +17942,7 @@ "name": "uni2462", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2200","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2200","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2200": { @@ -17956,7 +17956,7 @@ "name": "uni2463", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2202","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2202","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsIGwMys=" }, "glyph2202": { @@ -17970,7 +17970,7 @@ "name": "uni2464", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2204","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2204","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2204": { @@ -17984,7 +17984,7 @@ "name": "uni2465", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2206","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2206","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsIGwMys=" }, "glyph2206": { @@ -17998,7 +17998,7 @@ "name": "uni2466", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2208","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2208","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2208": { @@ -18012,7 +18012,7 @@ "name": "uni2467", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2210","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2210","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQADsIGwMys=" }, "glyph2210": { @@ -18026,7 +18026,7 @@ "name": "uni2468", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2212","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2212","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsIGwMys=" }, "glyph2212": { @@ -18040,7 +18040,7 @@ "name": "uni24B6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2214","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2214","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsIGwMys=" }, "glyph2214": { @@ -18054,7 +18054,7 @@ "name": "uni24B7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2216","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2216","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQADsIGwMys=" }, "glyph2216": { @@ -18068,21 +18068,21 @@ "name": "uni24B8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"copyright","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"copyright","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsIGwMys=" }, "glyph2218": { "name": "glyph2218", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2186","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2186","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni24B9": { "name": "uni24B9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2220","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2220","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsIGwMys=" }, "glyph2220": { @@ -18096,7 +18096,7 @@ "name": "uni24BA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2222","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2222","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2222": { @@ -18110,7 +18110,7 @@ "name": "uni24BB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2224","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2224","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2224": { @@ -18124,7 +18124,7 @@ "name": "uni24BC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2226","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2226","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2226": { @@ -18138,7 +18138,7 @@ "name": "uni24BD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2228","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2228","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2228": { @@ -18152,7 +18152,7 @@ "name": "uni24BE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2230","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2230","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2230": { @@ -18166,7 +18166,7 @@ "name": "uni24BF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2232","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2232","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2232": { @@ -18180,7 +18180,7 @@ "name": "uni24C0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2234","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2234","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2234": { @@ -18194,7 +18194,7 @@ "name": "uni24C1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2236","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2236","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2236": { @@ -18208,7 +18208,7 @@ "name": "uni24C2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2238","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2238","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2238": { @@ -18222,7 +18222,7 @@ "name": "uni24C3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2240","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2240","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2240": { @@ -18236,7 +18236,7 @@ "name": "uni24C4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2242","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2242","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsIGwMys=" }, "glyph2242": { @@ -18250,14 +18250,14 @@ "name": "uni24C5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2117","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2117","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsIGwMys=" }, "glyph2244": { "name": "glyph2244", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni24C6": { @@ -18278,21 +18278,21 @@ "name": "uni24C7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"registered","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"registered","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsIGwMys=" }, "glyph2248": { "name": "glyph2248", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2188","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2188","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni24C8": { "name": "uni24C8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2250","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2250","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2250": { @@ -18306,7 +18306,7 @@ "name": "uni24C9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2252","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2252","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2252": { @@ -18320,7 +18320,7 @@ "name": "uni24CA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2254","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2254","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2254": { @@ -18334,7 +18334,7 @@ "name": "uni24CB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2256","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2256","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2256": { @@ -18348,7 +18348,7 @@ "name": "uni24CC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2258","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2258","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2258": { @@ -18362,7 +18362,7 @@ "name": "uni24CD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2260","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2260","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2260": { @@ -18376,7 +18376,7 @@ "name": "uni24CE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2262","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2262","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2262": { @@ -18390,7 +18390,7 @@ "name": "uni24CF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2264","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2264","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2264": { @@ -18404,7 +18404,7 @@ "name": "uni24D0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2266","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2266","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsIGwMys=" }, "glyph2266": { @@ -18418,7 +18418,7 @@ "name": "uni24D1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2268","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2268","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsIGwMys=" }, "glyph2268": { @@ -18432,7 +18432,7 @@ "name": "uni24D2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2270","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2270","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2270": { @@ -18446,7 +18446,7 @@ "name": "uni24D3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2272","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2272","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsIGwMys=" }, "glyph2272": { @@ -18460,7 +18460,7 @@ "name": "uni24D4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2274","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2274","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsIGwMys=" }, "glyph2274": { @@ -18474,7 +18474,7 @@ "name": "uni24D5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2276","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2276","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2276": { @@ -18488,7 +18488,7 @@ "name": "uni24D6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2278","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2278","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQADsIGwMys=" }, "glyph2278": { @@ -18502,7 +18502,7 @@ "name": "uni24D7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2280","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2280","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2280": { @@ -18516,7 +18516,7 @@ "name": "uni24D8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2282","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2282","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsIGwMys=" }, "glyph2282": { @@ -18530,7 +18530,7 @@ "name": "uni24D9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2284","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2284","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsIGwMys=" }, "glyph2284": { @@ -18544,7 +18544,7 @@ "name": "uni24DA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2286","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2286","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2286": { @@ -18558,7 +18558,7 @@ "name": "uni24DB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2288","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2288","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2288": { @@ -18572,7 +18572,7 @@ "name": "uni24DC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2290","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2290","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2290": { @@ -18586,7 +18586,7 @@ "name": "uni24DD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2292","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2292","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2292": { @@ -18600,7 +18600,7 @@ "name": "uni24DE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2294","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2294","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsIGwMys=" }, "glyph2294": { @@ -18614,7 +18614,7 @@ "name": "uni24DF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2296","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2296","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsIGwMys=" }, "glyph2296": { @@ -18628,7 +18628,7 @@ "name": "uni24E0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2298","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2298","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsIGwMys=" }, "glyph2298": { @@ -18642,7 +18642,7 @@ "name": "uni24E1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2300","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2300","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2300": { @@ -18656,7 +18656,7 @@ "name": "uni24E2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2302","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2302","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2302": { @@ -18670,7 +18670,7 @@ "name": "uni24E3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2304","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2304","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2304": { @@ -18684,7 +18684,7 @@ "name": "uni24E4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2306","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2306","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2306": { @@ -18698,7 +18698,7 @@ "name": "uni24E5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2308","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2308","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2308": { @@ -18712,7 +18712,7 @@ "name": "uni24E6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2310","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2310","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2310": { @@ -18726,7 +18726,7 @@ "name": "uni24E7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2312","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2312","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2312": { @@ -18740,7 +18740,7 @@ "name": "uni24E8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2314","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2314","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2314": { @@ -18754,7 +18754,7 @@ "name": "uni24E9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2316","x":0,"y":129,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2316","x":0,"y":129,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2193","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIGwMys=" }, "glyph2316": { @@ -18782,14 +18782,14 @@ "name": "glyph2319", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2196","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2196","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2474": { "name": "uni2474", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2196","x":0,"y":132,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2196","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsISwMys=" }, "glyph2321": { @@ -18803,7 +18803,7 @@ "name": "uni2475", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2321","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2321","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsISwMys=" }, "glyph2323": { @@ -18817,7 +18817,7 @@ "name": "uni2476", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2323","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2323","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsISwMys=" }, "glyph2325": { @@ -18831,7 +18831,7 @@ "name": "uni2477", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2325","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2325","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsISwMys=" }, "glyph2327": { @@ -18845,7 +18845,7 @@ "name": "uni2478", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2327","x":0,"y":133,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2327","x":0,"y":133,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIWwMys=" }, "glyph2329": { @@ -18859,7 +18859,7 @@ "name": "uni2479", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2329","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2329","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsISwMys=" }, "glyph2331": { @@ -18873,7 +18873,7 @@ "name": "uni247A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2331","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2331","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsISwMys=" }, "glyph2333": { @@ -18887,7 +18887,7 @@ "name": "uni247B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2333","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2333","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQADsISwMys=" }, "glyph2335": { @@ -18901,7 +18901,7 @@ "name": "uni247C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2335","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2335","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsISwMys=" }, "glyph2337": { @@ -18915,7 +18915,7 @@ "name": "uni249C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2337","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2337","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsISwMys=" }, "glyph2339": { @@ -18929,7 +18929,7 @@ "name": "uni249D", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2339","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2339","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsISwMys=" }, "glyph2341": { @@ -18943,7 +18943,7 @@ "name": "uni249E", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2341","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2341","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsISwMys=" }, "glyph2343": { @@ -18957,7 +18957,7 @@ "name": "uni249F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2343","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2343","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsISwMys=" }, "glyph2345": { @@ -18971,7 +18971,7 @@ "name": "uni24A0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2345","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2345","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsISwMys=" }, "glyph2347": { @@ -18985,7 +18985,7 @@ "name": "uni24A1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2347","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2347","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsISwMys=" }, "glyph2349": { @@ -18999,7 +18999,7 @@ "name": "uni24A2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2349","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2349","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQADsISwMys=" }, "glyph2351": { @@ -19013,35 +19013,35 @@ "name": "uni24A3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2351","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2351","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsISwMys=" }, "glyph2353": { "name": "glyph2353", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2282","x":0,"y":2,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2282","x":0,"y":2,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsAKwMys=" }, "uni24A4": { "name": "uni24A4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2282","x":0,"y":135,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2282","x":0,"y":135,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsIewMys=" }, "glyph2355": { "name": "glyph2355", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2284","x":0,"y":-54,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2284","x":0,"y":-54,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACuP/KsDMr" }, "uni24A5": { "name": "uni24A5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2284","x":0,"y":79,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2284","x":0,"y":79,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQICsE+wMys=" }, "glyph2357": { @@ -19055,21 +19055,21 @@ "name": "uni24A6", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2357","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2357","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsISwMys=" }, "glyph2359": { "name": "glyph2359", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2288","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2288","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni24A7": { "name": "uni24A7", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2288","x":0,"y":132,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2288","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQIBsISwMys=" }, "glyph2361": { @@ -19083,7 +19083,7 @@ "name": "uni24A8", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2361","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2361","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsISwMys=" }, "glyph2363": { @@ -19097,7 +19097,7 @@ "name": "uni24A9", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2363","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2363","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsISwMys=" }, "glyph2365": { @@ -19111,7 +19111,7 @@ "name": "uni24AA", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2365","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2365","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsISwMys=" }, "glyph2367": { @@ -19125,7 +19125,7 @@ "name": "uni24AB", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2367","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2367","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsISwMys=" }, "glyph2369": { @@ -19139,7 +19139,7 @@ "name": "uni24AC", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2369","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2369","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACsISwMys=" }, "glyph2371": { @@ -19153,7 +19153,7 @@ "name": "uni24AD", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2371","x":0,"y":133,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2371","x":0,"y":133,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsIWwMys=" }, "glyph2373": { @@ -19167,7 +19167,7 @@ "name": "uni24AE", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2373","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2373","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsISwMys=" }, "glyph2375": { @@ -19181,7 +19181,7 @@ "name": "uni24AF", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2375","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2375","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsISwMys=" }, "glyph2377": { @@ -19195,7 +19195,7 @@ "name": "uni24B0", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2377","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2377","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsISwMys=" }, "glyph2379": { @@ -19209,7 +19209,7 @@ "name": "uni24B1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2379","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2379","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsISwMys=" }, "glyph2381": { @@ -19223,7 +19223,7 @@ "name": "uni24B2", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2381","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2381","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsISwMys=" }, "glyph2383": { @@ -19237,7 +19237,7 @@ "name": "uni24B3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2383","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2383","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsISwMys=" }, "glyph2385": { @@ -19251,7 +19251,7 @@ "name": "uni24B4", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2385","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2385","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsISwMys=" }, "glyph2387": { @@ -19265,7 +19265,7 @@ "name": "uni24B5", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2387","x":0,"y":132,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2387","x":0,"y":132,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2318","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABsISwMys=" }, "uni1D00": { @@ -19335,14 +19335,14 @@ "name": "uni1D0B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"kappa","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"kappa","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1D0C": { "name": "uni1D0C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni029F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniE090","x":420,"y":36,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni029F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uniE090","x":420,"y":36,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBsCSwMys=" }, "uni1D0D": { @@ -19391,7 +19391,7 @@ "name": "uni1D19", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni044F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni044F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1D1A": { @@ -19405,14 +19405,14 @@ "name": "uni1D1B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph440","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph440","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1D20": { "name": "uni1D20", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"v","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"v","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1D21": { @@ -19440,7 +19440,7 @@ "name": "uni1D26", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph475","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph475","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1D27": { @@ -19461,14 +19461,14 @@ "name": "uni1D29", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1D18","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1D18","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1D2B": { "name": "uni1D2B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni043B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni043B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2070": { @@ -19909,7 +19909,7 @@ "name": "uni1D9F", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1D4C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1D4C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni1DA0": { @@ -20357,14 +20357,14 @@ "name": "uni2080", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2070","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2070","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQADuP5wsDMr" }, "uni2081": { "name": "uni2081", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni00B9","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni00B9","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP5wsDMr" }, "uni2082": { @@ -20378,182 +20378,182 @@ "name": "uni2083", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni00B3","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni00B3","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP5wsDMr" }, "uni2084": { "name": "uni2084", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2074","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2074","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACuP5wsDMr" }, "uni2085": { "name": "uni2085", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2075","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2075","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP5wsDMr" }, "uni2086": { "name": "uni2086", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2076","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2076","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACuP5wsDMr" }, "uni2087": { "name": "uni2087", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2077","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2077","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP5wsDMr" }, "uni2088": { "name": "uni2088", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2078","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2078","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQADuP5wsDMr" }, "uni2089": { "name": "uni2089", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2079","x":0,"y":-401,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2079","x":0,"y":-401,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACuP5vsDMr" }, "uni2090": { "name": "uni2090", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1D43","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1D43","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACuP5wsDMr" }, "uni2091": { "name": "uni2091", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1D49","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1D49","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACuP5wsDMr" }, "uni2092": { "name": "uni2092", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1D52","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1D52","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACuP5wsDMr" }, "uni2093": { "name": "uni2093", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni02E3","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni02E3","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP5wsDMr" }, "uni2094": { "name": "uni2094", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1D4A","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1D4A","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACuP5wsDMr" }, "uni2095": { "name": "uni2095", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni02B0","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni02B0","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP5wsDMr" }, "uni2096": { "name": "uni2096", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1D4F","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1D4F","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP5wsDMr" }, "uni2097": { "name": "uni2097", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni02E1","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni02E1","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP5wsDMr" }, "uni2098": { "name": "uni2098", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1D50","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1D50","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP5wsDMr" }, "uni2099": { "name": "uni2099", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni207F","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni207F","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP5wsDMr" }, "uni209A": { "name": "uni209A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1D56","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1D56","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACuP5wsDMr" }, "uni209B": { "name": "uni209B", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni02E2","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni02E2","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP5wsDMr" }, "uni209C": { "name": "uni209C", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1D57","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1D57","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP5wsDMr" }, "uni1D62": { "name": "uni1D62", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni2071","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni2071","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACuP5wsDMr" }, "uni1D63": { "name": "uni1D63", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni02B3","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni02B3","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP5wsDMr" }, "uni1D64": { "name": "uni1D64", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1D58","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1D58","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP5wsDMr" }, "uni1D65": { "name": "uni1D65", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1D5B","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1D5B","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP5wsDMr" }, "uni1D66": { "name": "uni1D66", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1D5D","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1D5D","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACuP5wsDMr" }, "uni1D67": { "name": "uni1D67", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1D5E","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1D5E","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP5wsDMr" }, "uni1D68": { @@ -20567,14 +20567,14 @@ "name": "uni1D69", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1D60","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1D60","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQACuP5wsDMr" }, "uni1D6A": { "name": "uni1D6A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni1D61","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni1D61","x":0,"y":-400,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP5wsDMr" }, "uni2C7C": { @@ -20623,7 +20623,7 @@ "name": "onequarter", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2584","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2584","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECuP9NsDMrsQMBuAG1sDMr" }, "glyph2583": { @@ -20644,14 +20644,14 @@ "name": "onehalf", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2587","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2587","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP9NsDMrsQIBuAG1sDMr" }, "glyph2586": { "name": "glyph2586", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph2587": { @@ -20665,7 +20665,7 @@ "name": "threequarters", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2589","x":0,"y":437,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2584","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2589","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2584","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuAG1sDMrsQICuP9NsDMr" }, "glyph2589": { @@ -20679,21 +20679,21 @@ "name": "glyph2590", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2584","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2584","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2150": { "name": "uni2150", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2593","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2593","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP9NsDMrsQIBuAG1sDMr" }, "glyph2592": { "name": "glyph2592", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph2593": { @@ -20707,14 +20707,14 @@ "name": "uni2151", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2596","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2596","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECuP9NsDMrsQMBuAG1sDMr" }, "glyph2595": { "name": "glyph2595", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph2596": { @@ -20728,77 +20728,77 @@ "name": "uni2152", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2599","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2599","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEEuP9NsDMrsQUBuAG1sDMr" }, "glyph2598": { "name": "glyph2598", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph2599": { "name": "glyph2599", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2637","x":138,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":-138,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2637","x":138,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2583","x":-138,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "onethird": { "name": "onethird", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2589","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2589","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP9NsDMrsQIBuAG1sDMr" }, "glyph2601": { "name": "glyph2601", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph2602": { "name": "glyph2602", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2589","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2589","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "twothirds": { "name": "twothirds", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2589","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2587","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2589","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2587","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP9NsDMrsQIBuAG1sDMr" }, "glyph2604": { "name": "glyph2604", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2587","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2587","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph2605": { "name": "glyph2605", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2589","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2589","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2155": { "name": "uni2155", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2608","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2608","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP9NsDMrsQIBuAG1sDMr" }, "glyph2607": { "name": "glyph2607", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph2608": { @@ -20812,77 +20812,77 @@ "name": "uni2156", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2608","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2587","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2608","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2587","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP9NsDMrsQIBuAG1sDMr" }, "glyph2610": { "name": "glyph2610", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2587","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2587","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph2611": { "name": "glyph2611", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2608","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2608","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2157": { "name": "uni2157", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2608","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2589","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2608","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2589","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP9NsDMrsQIBuAG1sDMr" }, "glyph2613": { "name": "glyph2613", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2589","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2589","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph2614": { "name": "glyph2614", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2608","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2608","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2158": { "name": "uni2158", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2608","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2584","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2608","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2584","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP9NsDMrsQICuAG1sDMr" }, "glyph2616": { "name": "glyph2616", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2584","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2584","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph2617": { "name": "glyph2617", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2608","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2608","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2159": { "name": "uni2159", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2620","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2620","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECuP9NsDMrsQMBuAG1sDMr" }, "glyph2619": { "name": "glyph2619", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph2620": { @@ -20896,35 +20896,35 @@ "name": "uni215A", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2620","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2608","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2620","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2608","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECuP9NsDMrsQMBuAG1sDMr" }, "glyph2622": { "name": "glyph2622", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2608","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2608","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph2623": { "name": "glyph2623", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2620","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2620","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "oneeighth": { "name": "oneeighth", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2626","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2626","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2583","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEDuP9NsDMrsQQBuAG1sDMr" }, "glyph2625": { "name": "glyph2625", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2583","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph2626": { @@ -20938,70 +20938,70 @@ "name": "threeeighths", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2626","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2589","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2626","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2589","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEDuP9NsDMrsQQBuAG1sDMr" }, "glyph2628": { "name": "glyph2628", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2589","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2589","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph2629": { "name": "glyph2629", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2626","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2626","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "fiveeighths": { "name": "fiveeighths", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2626","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2608","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2626","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2608","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEDuP9NsDMrsQQBuAG1sDMr" }, "glyph2631": { "name": "glyph2631", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2608","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2608","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph2632": { "name": "glyph2632", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2626","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2626","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "seveneighths": { "name": "seveneighths", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2626","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2593","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2626","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2593","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEDuP9NsDMrsQQBuAG1sDMr" }, "glyph2634": { "name": "glyph2634", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2593","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2593","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph2635": { "name": "glyph2635", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2626","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2626","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2189": { "name": "uni2189", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2637","x":0,"y":437,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2589","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2637","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2589","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEDuAG1sDMrsQQBuP9NsDMr" }, "glyph2637": { @@ -21015,14 +21015,14 @@ "name": "glyph2638", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2589","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2589","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni2105": { "name": "uni2105", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2641","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2640","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2641","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2640","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQECuP9NsDMrsQMBuAG1sDMr" }, "glyph2640": { @@ -21043,14 +21043,14 @@ "name": "uni2106", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2644","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2640","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2644","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2640","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP9NsDMrsQIBuAG1sDMr" }, "glyph2643": { "name": "glyph2643", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2640","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2640","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "glyph2644": { @@ -21064,7 +21064,7 @@ "name": "uniE0A1", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2647","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1},{"glyph":"glyph2646","x":0,"y":437,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"glyph2648","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2647","x":0,"y":-179,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"glyph2646","x":0,"y":437,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP9NsDMrsQIBuAG1sDMr" }, "glyph2646": { @@ -21281,7 +21281,7 @@ "name": "uni01F3", "advanceWidth": 500, "contours": [], - "references": [{"glyph":"uni02A3","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uni02A3","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uni02A4": { @@ -21386,7 +21386,7 @@ "name": "uniFF02", "advanceWidth": 1000, "contours": [], - "references": [{"glyph":"quotesingle","x":375,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"quotesingle","x":125,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"quotesingle","x":375,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"quotesingle","x":125,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uniFF03": { @@ -21421,7 +21421,7 @@ "name": "uniFF07", "advanceWidth": 1000, "contours": [], - "references": [{"glyph":"quotesingle","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"quotesingle","x":250,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uniFF0A": { @@ -21533,7 +21533,7 @@ "name": "uniFF1D", "advanceWidth": 1000, "contours": [], - "references": [{"glyph":"uniFF0D","x":0,"y":-113,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniFF0D","x":0,"y":113,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uniFF0D","x":0,"y":-113,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uniFF0D","x":0,"y":113,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP+PsDMrsQEBsHGwMys=" }, "uniFF1E": { @@ -21764,7 +21764,7 @@ "name": "uniFF3F", "advanceWidth": 1000, "contours": [], - "references": [{"glyph":"uniFF0D","x":0,"y":-295,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uniFF0D","x":0,"y":-295,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQABuP7ZsDMr" }, "uniFF40": { @@ -21967,7 +21967,7 @@ "name": "uniFF5C", "advanceWidth": 1000, "contours": [], - "references": [{"glyph":"bar","x":250,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"bar","x":250,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "" }, "uniFF5D": { @@ -22002,7 +22002,7 @@ "name": "uniFFE5", "advanceWidth": 1000, "contours": [], - "references": [{"glyph":"uniFF39","x":0,"y":0,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniFF0D","x":0,"y":-148,"a":1,"b":0,"c":0,"d":1},{"glyph":"uniFF0D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1}], + "references": [{"glyph":"uniFF39","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uniFF0D","x":0,"y":-148,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true},{"glyph":"uniFF0D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}], "instructions": "sQEBuP9ssDMr" } }, From 074a8ad5773c577fb2c79e6b74c928c02708734e Mon Sep 17 00:00:00 2001 From: be5invis Date: Fri, 15 Apr 2016 13:38:18 +0800 Subject: [PATCH 27/32] remove clang-cl debug build options. --- extern/json.c | 23 +++++++++++++++++++++++ makefile | 2 ++ src/fontops/otl/chaining.c | 29 ++++++++++++++++++----------- 3 files changed, 43 insertions(+), 11 deletions(-) diff --git a/extern/json.c b/extern/json.c index 2eaa6062..160b57a9 100644 --- a/extern/json.c +++ b/extern/json.c @@ -228,6 +228,19 @@ json_value * json_parse_ex (json_settings * settings, json_value * top, * root, * alloc = 0; json_state state; state.used_memory = 0; + state.uint_max = 0; + state.ulong_max = 0; + state.settings.max_memory = 0; + state.settings.mem_alloc = NULL; + state.settings.mem_free = NULL; + state.settings.settings = 0; + state.settings.user_data = NULL; + state.settings.value_extra = 0; + state.first_pass = 0; + state.ptr = NULL; + state.cur_col = 0; + state.cur_line = 0; + long flags; long num_digits = 0, num_e = 0; json_int_t num_fraction = 0; @@ -951,6 +964,11 @@ json_value * json_parse (const json_char * json, size_t length) { json_settings settings; settings.max_memory = 0; + settings.settings = 0; + settings.mem_alloc = NULL; + settings.mem_free = NULL; + settings.user_data = NULL; + settings.value_extra = 0; return json_parse_ex (&settings, json, length, 0); } @@ -1010,6 +1028,11 @@ void json_value_free (json_value * value) { json_settings settings; settings.max_memory = 0; + settings.settings = 0; + settings.mem_alloc = NULL; + settings.mem_free = NULL; + settings.user_data = NULL; + settings.value_extra = 0; settings.mem_free = default_free; json_value_free_ex (&settings, value); } diff --git a/makefile b/makefile index 748c412f..3de628aa 100644 --- a/makefile +++ b/makefile @@ -9,6 +9,8 @@ mingw-release-x64 : mf-gmake mingw-release-x86 : mf-gmake @cd build/gmake && make config=release_x86 +# Clang-cl does not support debugging well +# It is used for release versions only clang-cl-release-x64 : mf-vs2015 @cmd /c _vcbuild64.bat /property:Configuration=Release clang-cl-release-x86 : mf-vs2015 diff --git a/src/fontops/otl/chaining.c b/src/fontops/otl/chaining.c index b0ce785c..f091268f 100644 --- a/src/fontops/otl/chaining.c +++ b/src/fontops/otl/chaining.c @@ -221,7 +221,6 @@ void classify_around(otl_lookup *lookup, uint16_t j) { subtable0->rules[0] = rule0; rewriteRule(rule0, hb, hi, hf); - // write other rules uint16_t kk = 1; for (uint16_t k = j + 1; k < lookup->subtableCount; k++) @@ -242,18 +241,26 @@ void classify_around(otl_lookup *lookup, uint16_t j) { } FAIL:; if (compatibility) free(compatibility); - classifier_hash *s, *tmp; - HASH_ITER(hh, hb, s, tmp) { - HASH_DEL(hb, s); - free(s); + if (hb) { + classifier_hash *s, *tmp; + HASH_ITER(hh, hb, s, tmp) { + HASH_DEL(hb, s); + if (s) free(s); + } } - HASH_ITER(hh, hi, s, tmp) { - HASH_DEL(hi, s); - free(s); + if (hi) { + classifier_hash *s, *tmp; + HASH_ITER(hh, hi, s, tmp) { + HASH_DEL(hi, s); + if (s) free(s); + } } - HASH_ITER(hh, hf, s, tmp) { - HASH_DEL(hf, s); - free(s); + if (hf) { + classifier_hash *s, *tmp; + HASH_ITER(hh, hf, s, tmp) { + HASH_DEL(hf, s); + if (s) free(s); + } } return; } From 79d639f39e96f427ca38316284430a4894eebf8e Mon Sep 17 00:00:00 2001 From: be5invis Date: Sat, 16 Apr 2016 01:50:26 +0800 Subject: [PATCH 28/32] Move out sources for CLI --- extern-msvc/getopt.c | 786 +++++++++++++++++++++++++++ extern-msvc/getopt.h | 147 +++++ platformdep-win-msvc/getopt.h | 553 ------------------- premake5.lua | 52 +- {src => src-cli}/otfccbuild.c | 15 +- {src => src-cli}/otfccdump.c | 13 +- {src/support => src-cli}/platform.h | 10 +- {src/support => src-cli}/stopwatch.c | 0 {src/support => src-cli}/stopwatch.h | 0 9 files changed, 994 insertions(+), 582 deletions(-) create mode 100644 extern-msvc/getopt.c create mode 100644 extern-msvc/getopt.h delete mode 100644 platformdep-win-msvc/getopt.h rename {src => src-cli}/otfccbuild.c (94%) rename {src => src-cli}/otfccdump.c (94%) rename {src/support => src-cli}/platform.h (85%) rename {src/support => src-cli}/stopwatch.c (100%) rename {src/support => src-cli}/stopwatch.h (100%) diff --git a/extern-msvc/getopt.c b/extern-msvc/getopt.c new file mode 100644 index 00000000..a7b2eca8 --- /dev/null +++ b/extern-msvc/getopt.c @@ -0,0 +1,786 @@ +/* Getopt for GNU. + + Copyright 2008-2012 Karl Berry. + Copyright (C) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 2000, 2010 + Free Software Foundation, Inc. + + The original version of this file was part of the GNU C Library. + Its master source is NOT part of the C library, however. + The master source lives in libc. + This version has been modified for use with libkpathsea. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this library; if not, see . */ + +/* This tells Alpha OSF/1 not to define a getopt prototype in . + Ditto for AIX 3.2 and . */ +#ifndef _NO_PROTO +#define _NO_PROTO +#endif + +#ifdef HAVE_CONFIG_H +#include +#endif +#ifdef HAVE_STRING_H +#include +#endif + +#include +#include + +/* Comment out all this code if we are using the GNU C Library, and are not + actually compiling the library itself. This code is part of the GNU C + Library, but also included in many other GNU distributions. Compiling__imp_getopt_long + and linking in this code is a waste when using the GNU C library + (especially if it is a shared library). Rather than having every GNU + program understand `configure --with-gnu-libc' and omit the object files, + it is simpler to just do this in the source for each such file. */ + +#define GETOPT_INTERFACE_VERSION 2 +#if !defined(_LIBC) && defined(__GLIBC__) && __GLIBC__ >= 2 +#include +#if _GNU_GETOPT_INTERFACE_VERSION == GETOPT_INTERFACE_VERSION +#define ELIDE_CODE +#endif +#endif + +#ifndef ELIDE_CODE + +/* This needs to come after some library #include + to get __GNU_LIBRARY__ defined. */ +#ifdef __GNU_LIBRARY__ +/* Don't include stdlib.h for non-GNU C libraries because some of them + contain conflicting prototypes for getopt. */ +#include +#include +#endif /* GNU C library. */ + +#ifdef VMS +#include +#if HAVE_STRING_H - 0 +#include +#endif +#endif + +#if defined(WIN32) && !defined(__CYGWIN__) +/* It's not Unix, really. See? Capital letters. */ +#include +#include +#undef getpid +#define getpid() GetCurrentProcessId() +#endif + +#ifndef _ +/* This is for other GNU distributions with internationalized messages. + When compiling libc, the _ macro is predefined. */ +#ifdef HAVE_LIBINTL_H +#include +#define _(msgid) gettext(msgid) +#else +#define _(msgid) (msgid) +#endif +#endif + +/* This version of `getopt' appears to the caller like standard Unix `getopt' + but it behaves differently for the user, since it allows the user + to intersperse the options with the other arguments. + + As `getopt' works, it permutes the elements of ARGV so that, + when it is done, all the options precede everything else. Thus + all application programs are extended to handle flexible argument order. + + Setting the environment variable POSIXLY_CORRECT disables permutation. + Then the behavior is completely standard. + + GNU application programs can use a third alternative mode in which + they can distinguish the relative order of options and other arguments. */ + +#include "getopt.h" + +/* For communication from `getopt' to the caller. + When `getopt' finds an option that takes an argument, + the argument value is returned here. + Also, when `ordering' is RETURN_IN_ORDER, + each non-option ARGV-element is returned here. */ + +char *optarg = NULL; + +/* Index in ARGV of the next element to be scanned. + This is used for communication to and from the caller + and for communication between successive calls to `getopt'. + + On entry to `getopt', zero means this is the first call; initialize. + + When `getopt' returns -1, this is the index of the first of the + non-option elements that the caller should itself scan. + + Otherwise, `optind' communicates from one call to the next + how much of ARGV has been scanned so far. */ + +/* 1003.2 says this must be 1 before any call. */ +int optind = 1; + +/* Formerly, initialization of getopt depended on optind==0, which + causes problems with re-calling getopt as programs generally don't + know that. */ + +int __getopt_initialized = 0; + +/* The next char to be scanned in the option-element + in which the last option character we returned was found. + This allows us to pick up the scan where we left off. + + If this is zero, or a null string, it means resume the scan + by advancing to the next ARGV-element. */ + +static char *nextchar; + +/* Callers store zero here to inhibit the error message + for unrecognized options. */ + +int opterr = 1; + +/* Set to an option character which was unrecognized. + This must be initialized on some systems to avoid linking in the + system's own getopt implementation. */ + +int optopt = '?'; + +/* Describe how to deal with options that follow non-option ARGV-elements. + + If the caller did not specify anything, + the default is REQUIRE_ORDER if the environment variable + POSIXLY_CORRECT is defined, PERMUTE otherwise. + + REQUIRE_ORDER means don't recognize them as options; + stop option processing when the first non-option is seen. + This is what Unix does. + This mode of operation is selected by either setting the environment + variable POSIXLY_CORRECT, or using `+' as the first character + of the list of option characters. + + PERMUTE is the default. We permute the contents of ARGV as we scan, + so that eventually all the non-options are at the end. This allows options + to be given in any order, even with programs that were not written to + expect this. + + RETURN_IN_ORDER is an option available to programs that were written + to expect options and other ARGV-elements in any order and that care about + the ordering of the two. We describe each non-option ARGV-element + as if it were the argument of an option with character code 1. + Using `-' as the first character of the list of option characters + selects this mode of operation. + + The special argument `--' forces an end of option-scanning regardless + of the value of `ordering'. In the case of RETURN_IN_ORDER, only + `--' can cause `getopt' to return -1 with `optind' != ARGC. */ + +static enum { REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER } ordering; + +/* Value of POSIXLY_CORRECT environment variable. */ +static char *posixly_correct; + +#if defined(__GNU_LIBRARY__) || defined(WIN32) +/* We want to avoid inclusion of string.h with non-GNU libraries + because there are many ways it can cause trouble. + On some systems, it contains special magic macros that don't work + in GCC. */ +#include +#define my_index strchr +#else + +/* Avoid depending on library functions or files + whose names are inconsistent. */ + +char *getenv(); + +static char *my_index(const char *str, int chr) { + while (*str) { + if (*str == chr) return (char *)str; + str++; + } + return 0; +} + +#endif /* not __GNU_LIBRARY__ */ + +/* Handle permutation of arguments. */ + +/* Describe the part of ARGV that contains non-options that have + been skipped. `first_nonopt' is the index in ARGV of the first of them; + `last_nonopt' is the index after the last of them. */ + +static int first_nonopt; +static int last_nonopt; + +#ifdef _LIBC +/* Bash 2.0 gives us an environment variable containing flags + indicating ARGV elements that should not be considered arguments. */ + +static const char *nonoption_flags; +static int nonoption_flags_len; + +static int original_argc; +static char *const *original_argv; + +/* Make sure the environment variable bash 2.0 puts in the environment + is valid for the getopt call we must make sure that the ARGV passed + to getopt is that one passed to the process. */ +static void store_args(int argc, char *const *argv) __attribute__((unused)); +static void store_args(int argc, char *const *argv) { + /* XXX This is no good solution. We should rather copy the args so + that we can compare them later. But we must not use malloc(3). */ + original_argc = argc; + original_argv = argv; +} +text_set_element(__libc_subinit, store_args); +#endif + +/* Exchange two adjacent subsequences of ARGV. + One subsequence is elements [first_nonopt,last_nonopt) + which contains all the non-options that have been skipped so far. + The other is elements [last_nonopt,optind), which contains all + the options processed since those non-options were skipped. + + `first_nonopt' and `last_nonopt' are relocated so that they describe + the new indices of the non-options in ARGV after they are moved. */ + +static void exchange(char **argv) { + int bottom = first_nonopt; + int middle = last_nonopt; + int top = optind; + char *tem; + + /* Exchange the shorter segment with the far end of the longer segment. + That puts the shorter segment into the right place. + It leaves the longer segment in the right place overall, + but it consists of two parts that need to be swapped next. */ + + while (top > middle && middle > bottom) { + if (top - middle > middle - bottom) { + /* Bottom segment is the short one. */ + int len = middle - bottom; + register int i; + + /* Swap it with the top part of the top segment. */ + for (i = 0; i < len; i++) { + tem = argv[bottom + i]; + argv[bottom + i] = argv[top - (middle - bottom) + i]; + argv[top - (middle - bottom) + i] = tem; + } + /* Exclude the moved bottom segment from further swapping. */ + top -= len; + } else { + /* Top segment is the short one. */ + int len = top - middle; + register int i; + + /* Swap it with the bottom part of the bottom segment. */ + for (i = 0; i < len; i++) { + tem = argv[bottom + i]; + argv[bottom + i] = argv[middle + i]; + argv[middle + i] = tem; + } + /* Exclude the moved top segment from further swapping. */ + bottom += len; + } + } + + /* Update records for the slots the non-options now occupy. */ + + first_nonopt += (optind - last_nonopt); + last_nonopt = optind; +} + +/* Initialize the internal data when the first call is made. */ + +static const char *_getopt_initialize(int argc, char *const *argv, const char *optstring) { + /* Start processing options with ARGV-element 1 (since ARGV-element 0 + is the program name); the sequence of previously skipped + non-option ARGV-elements is empty. */ + + first_nonopt = last_nonopt = optind = 1; + + nextchar = NULL; + + posixly_correct = getenv("POSIXLY_CORRECT"); + + /* Determine how to handle the ordering of options and nonoptions. */ + + if (optstring[0] == '-') { + ordering = RETURN_IN_ORDER; + ++optstring; + } else if (optstring[0] == '+') { + ordering = REQUIRE_ORDER; + ++optstring; + } else if (posixly_correct != NULL) + ordering = REQUIRE_ORDER; + else + ordering = PERMUTE; + +#ifdef _LIBC + if (posixly_correct == NULL && argc == original_argc && argv == original_argv) { + /* Bash 2.0 puts a special variable in the environment for each + command it runs, specifying which ARGV elements are the results of + file name wildcard expansion and therefore should not be + considered as options. */ + char var[100]; + sprintf(var, "_%d_GNU_nonoption_argv_flags_", getpid()); + nonoption_flags = getenv(var); + if (nonoption_flags == NULL) + nonoption_flags_len = 0; + else + nonoption_flags_len = strlen(nonoption_flags); + } else + nonoption_flags_len = 0; +#endif + + return optstring; +} + +/* Scan elements of ARGV (whose length is ARGC) for option characters + given in OPTSTRING. + + If an element of ARGV starts with '-', and is not exactly "-" or "--", + then it is an option element. The characters of this element + (aside from the initial '-') are option characters. If `getopt' + is called repeatedly, it returns successively each of the option characters + from each of the option elements. + + If `getopt' finds another option character, it returns that character, + updating `optind' and `nextchar' so that the next call to `getopt' can + resume the scan with the following option character or ARGV-element. + + If there are no more option characters, `getopt' returns -1. + Then `optind' is the index in ARGV of the first ARGV-element + that is not an option. (The ARGV-elements have been permuted + so that those that are not options now come last.) + + OPTSTRING is a string containing the legitimate option characters. + If an option character is seen that is not listed in OPTSTRING, + return '?' after printing an error message. If you set `opterr' to + zero, the error message is suppressed but we still return '?'. + + If a char in OPTSTRING is followed by a colon, that means it wants an arg, + so the following text in the same ARGV-element, or the text of the following + ARGV-element, is returned in `optarg'. Two colons mean an option that + wants an optional arg; if there is text in the current ARGV-element, + it is returned in `optarg', otherwise `optarg' is set to zero. + + If OPTSTRING starts with `-' or `+', it requests different methods of + handling the non-option ARGV-elements. + See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above. + + Long-named options begin with `--' instead of `-'. + Their names may be abbreviated as long as the abbreviation is unique + or is an exact match for some defined option. If they have an + argument, it follows the option name in the same ARGV-element, separated + from the option name by a `=', or else the in next ARGV-element. + When `getopt' finds a long-named option, it returns 0 if that option's + `flag' field is nonzero, the value of the option's `val' field + if the `flag' field is zero. + + The elements of ARGV aren't really const, because we permute them. + But we pretend they're const in the prototype to be compatible + with other systems. + + LONGOPTS is a vector of `struct option' terminated by an + element containing a name which is zero. + + LONGIND returns the index in LONGOPT of the long-named option found. + It is only valid when a long-named option has been found by the most + recent call. + + If LONG_ONLY is nonzero, '-' as well as '--' can introduce + long-named options. */ + +int _getopt_internal(int argc, char *const *argv, const char *optstring, + const struct option *longopts, int *longind, int long_only) { + optarg = NULL; + + if (!__getopt_initialized || optind == 0) { + optstring = _getopt_initialize(argc, argv, optstring); + optind = 1; /* Don't scan ARGV[0], the program name. */ + __getopt_initialized = 1; + } + +/* Test whether ARGV[optind] points to a non-option argument. + Either it does not have option syntax, or there is an environment flag + from the shell indicating it is not an option. The later information + is only used when the used in the GNU libc. */ +#ifdef _LIBC +#define NONOPTION_P \ + (argv[optind][0] != '-' || argv[optind][1] == '\0' || \ + (optind < nonoption_flags_len && nonoption_flags[optind] == '1')) +#else +#define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0') +#endif + + if (nextchar == NULL || *nextchar == '\0') { + /* Advance to the next ARGV-element. */ + + /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been + moved back by the user (who may also have changed the arguments). */ + if (last_nonopt > optind) last_nonopt = optind; + if (first_nonopt > optind) first_nonopt = optind; + + if (ordering == PERMUTE) { + /* If we have just processed some options following some non-options, + exchange them so that the options come first. */ + + if (first_nonopt != last_nonopt && last_nonopt != optind) + exchange((char **)argv); + else if (last_nonopt != optind) + first_nonopt = optind; + + /* Skip any additional non-options + and extend the range of non-options previously skipped. */ + + while (optind < argc && NONOPTION_P) optind++; + last_nonopt = optind; + } + + /* The special ARGV-element `--' means premature end of options. + Skip it like a null option, + then exchange with previous non-options as if it were an option, + then skip everything else like a non-option. */ + + if (optind != argc && !strcmp(argv[optind], "--")) { + optind++; + + if (first_nonopt != last_nonopt && last_nonopt != optind) + exchange((char **)argv); + else if (first_nonopt == last_nonopt) + first_nonopt = optind; + last_nonopt = argc; + + optind = argc; + } + + /* If we have done all the ARGV-elements, stop the scan + and back over any non-options that we skipped and permuted. */ + + if (optind == argc) { + /* Set the next-arg-index to point at the non-options + that we previously skipped, so the caller will digest them. */ + if (first_nonopt != last_nonopt) optind = first_nonopt; + return -1; + } + + /* If we have come to a non-option and did not permute it, + either stop the scan or describe it to the caller and pass it by. */ + + if (NONOPTION_P) { + if (ordering == REQUIRE_ORDER) return -1; + optarg = argv[optind++]; + return 1; + } + + /* We have found another option-ARGV-element. + Skip the initial punctuation. */ + + nextchar = (argv[optind] + 1 + (longopts != NULL && argv[optind][1] == '-')); + } + + /* Decode the current option-ARGV-element. */ + + /* Check whether the ARGV-element is a long option. + + If long_only and the ARGV-element has the form "-f", where f is + a valid short option, don't consider it an abbreviated form of + a long option that starts with f. Otherwise there would be no + way to give the -f short option. + + On the other hand, if there's a long option "fubar" and + the ARGV-element is "-fu", do consider that an abbreviation of + the long option, just like "--fu", and not "-f" with arg "u". + + This distinction seems to be the most useful approach. */ + + if (longopts != NULL && + (argv[optind][1] == '-' || + (long_only && (argv[optind][2] || !my_index(optstring, argv[optind][1]))))) { + char *nameend; + const struct option *p; + const struct option *pfound = NULL; + int exact = 0; + int ambig = 0; + int indfound = -1; + int option_index; + + for (nameend = nextchar; *nameend && *nameend != '='; nameend++) /* Do nothing. */ + ; + + /* Test all long options for either exact match + or abbreviated matches. */ + for (p = longopts, option_index = 0; p->name; p++, option_index++) + if (!strncmp(p->name, nextchar, nameend - nextchar)) { + if ((unsigned int)(nameend - nextchar) == (unsigned int)strlen(p->name)) { + /* Exact match found. */ + pfound = p; + indfound = option_index; + exact = 1; + break; + } else if (pfound == NULL) { + /* First nonexact match found. */ + pfound = p; + indfound = option_index; + } else + /* Second or later nonexact match found. */ + ambig = 1; + } + + if (ambig && !exact) { + if (opterr) fprintf(stderr, _("%s: option `%s' is ambiguous\n"), argv[0], argv[optind]); + nextchar += strlen(nextchar); + optind++; + optopt = 0; + return '?'; + } + + if (pfound != NULL) { + option_index = indfound; + optind++; + if (*nameend) { + /* Don't test has_arg with >, because some C compilers don't + allow it to be used on enums. */ + if (pfound->has_arg) + optarg = nameend + 1; + else { + if (opterr) { + if (argv[optind - 1][1] == '-') /* --option */ + fprintf(stderr, _("%s: option `--%s' doesn't allow an argument\n"), + argv[0], pfound->name); + else + /* +option or -option */ + fprintf(stderr, _("%s: option `%c%s' doesn't allow an argument\n"), + argv[0], argv[optind - 1][0], pfound->name); + } + + nextchar += strlen(nextchar); + + optopt = pfound->val; + return '?'; + } + } else if (pfound->has_arg == 1) { + if (optind < argc) + optarg = argv[optind++]; + else { + if (opterr) + fprintf(stderr, _("%s: option `%s' requires an argument\n"), argv[0], + argv[optind - 1]); + nextchar += strlen(nextchar); + optopt = pfound->val; + return optstring[0] == ':' ? ':' : '?'; + } + } + nextchar += strlen(nextchar); + if (longind != NULL) *longind = option_index; + if (pfound->flag) { + *(pfound->flag) = pfound->val; + return 0; + } + return pfound->val; + } + + /* Can't find it as a long option. If this is not getopt_long_only, + or the option starts with '--' or is not a valid short + option, then it's an error. + Otherwise interpret it as a short option. */ + if (!long_only || argv[optind][1] == '-' || my_index(optstring, *nextchar) == NULL) { + if (opterr) { + if (argv[optind][1] == '-') /* --option */ + fprintf(stderr, _("%s: unrecognized option `--%s'\n"), argv[0], nextchar); + else + /* +option or -option */ + fprintf(stderr, _("%s: unrecognized option `%c%s'\n"), argv[0], argv[optind][0], + nextchar); + } + nextchar = (char *)""; + optind++; + optopt = 0; + return '?'; + } + } + + /* Look at and handle the next short option-character. */ + + { + char c = *nextchar++; + char *temp = my_index(optstring, c); + + /* Increment `optind' when we start to process its last character. */ + if (*nextchar == '\0') ++optind; + + if (temp == NULL || c == ':') { + if (opterr) { + if (posixly_correct) /* 1003.2 specifies the format of this message. */ + fprintf(stderr, _("%s: illegal option -- %c\n"), argv[0], c); + else + fprintf(stderr, _("%s: invalid option -- %c\n"), argv[0], c); + } + optopt = c; + return '?'; + } + /* Convenience. Treat POSIX -W foo same as long option --foo */ + if (temp[0] == 'W' && temp[1] == ';') { + char *nameend; + const struct option *p; + const struct option *pfound = NULL; + int exact = 0; + int ambig = 0; + int indfound = 0; + int option_index; + + /* This is an option that requires an argument. */ + if (*nextchar != '\0') { + optarg = nextchar; + /* If we end this ARGV-element by taking the rest as an arg, + we must advance to the next element now. */ + optind++; + } else if (optind == argc) { + if (opterr) { + /* 1003.2 specifies the format of this message. */ + fprintf(stderr, _("%s: option requires an argument -- %c\n"), argv[0], c); + } + optopt = c; + if (optstring[0] == ':') + c = ':'; + else + c = '?'; + return c; + } else + /* We already incremented `optind' once; + increment it again when taking next ARGV-elt as argument. */ + optarg = argv[optind++]; + + /* optarg is now the argument, see if it's in the + table of longopts. */ + + for (nextchar = nameend = optarg; *nameend && *nameend != '='; nameend++) + /* Do nothing. */; + + /* Test all long options for either exact match + or abbreviated matches. */ + for (p = longopts, option_index = 0; p->name; p++, option_index++) + if (!strncmp(p->name, nextchar, nameend - nextchar)) { + if ((unsigned int)(nameend - nextchar) == strlen(p->name)) { + /* Exact match found. */ + pfound = p; + indfound = option_index; + exact = 1; + break; + } else if (pfound == NULL) { + /* First nonexact match found. */ + pfound = p; + indfound = option_index; + } else + /* Second or later nonexact match found. */ + ambig = 1; + } + if (ambig && !exact) { + if (opterr) + fprintf(stderr, _("%s: option `-W %s' is ambiguous\n"), argv[0], argv[optind]); + nextchar += strlen(nextchar); + optind++; + return '?'; + } + if (pfound != NULL) { + option_index = indfound; + if (*nameend) { + /* Don't test has_arg with >, because some C compilers don't + allow it to be used on enums. */ + if (pfound->has_arg) + optarg = nameend + 1; + else { + if (opterr) + fprintf(stderr, _("\ +%s: option `-W %s' doesn't allow an argument\n"), + argv[0], pfound->name); + + nextchar += strlen(nextchar); + return '?'; + } + } else if (pfound->has_arg == 1) { + if (optind < argc) + optarg = argv[optind++]; + else { + if (opterr) + fprintf(stderr, _("%s: option `%s' requires an argument\n"), argv[0], + argv[optind - 1]); + nextchar += strlen(nextchar); + return optstring[0] == ':' ? ':' : '?'; + } + } + nextchar += strlen(nextchar); + if (longind != NULL) *longind = option_index; + if (pfound->flag) { + *(pfound->flag) = pfound->val; + return 0; + } + return pfound->val; + } + nextchar = NULL; + return 'W'; /* Let the application handle it. */ + } + if (temp[1] == ':') { + if (temp[2] == ':') { + /* This is an option that accepts an argument optionally. */ + if (*nextchar != '\0') { + optarg = nextchar; + optind++; + } else + optarg = NULL; + nextchar = NULL; + } else { + /* This is an option that requires an argument. */ + if (*nextchar != '\0') { + optarg = nextchar; + /* If we end this ARGV-element by taking the rest as an arg, + we must advance to the next element now. */ + optind++; + } else if (optind == argc) { + if (opterr) { + /* 1003.2 specifies the format of this message. */ + fprintf(stderr, _("%s: option requires an argument -- %c\n"), argv[0], c); + } + optopt = c; + if (optstring[0] == ':') + c = ':'; + else + c = '?'; + } else + /* We already incremented `optind' once; + increment it again when taking next ARGV-elt as argument. */ + optarg = argv[optind++]; + nextchar = NULL; + } + } + return c; + } +} + +int getopt(int argc, char *const *argv, const char *optstring) { + return _getopt_internal(argc, argv, optstring, (const struct option *)0, (int *)0, 0); +} + +int getopt_long(int argc, char *const *argv, const char *options, const struct option *long_options, + int *opt_index) { + return _getopt_internal(argc, argv, options, long_options, opt_index, 0); +} + +int getopt_long_only(int argc, char *const *argv, const char *options, + const struct option *long_options, int *opt_index) { + return _getopt_internal(argc, argv, options, long_options, opt_index, 1); +} +#endif /* Not ELIDE_CODE. */ diff --git a/extern-msvc/getopt.h b/extern-msvc/getopt.h new file mode 100644 index 00000000..a5f5ea67 --- /dev/null +++ b/extern-msvc/getopt.h @@ -0,0 +1,147 @@ +/* Declarations for getopt. + + Copyright 2008, 2010-2012 Karl Berry. + Copyright 1989,90,91,92,93,94,96,97,2000,05 Free Software Foundation, Inc. + + The original version of this file was part of the GNU C Library. + Its master source is NOT part of the C library, however. + The master source lives in libc. + This version has been modified for use with libkpathsea. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this library; if not, see . */ + +#ifndef _GETOPT_H + +#ifndef __need_getopt +#define _GETOPT_H 1 +#endif + +#if defined(WIN32) && !defined(__MINGW32__) && !defined(NO_KPSE_DLL) +#define KPSE_DLL 1 +#endif /* WIN32 && !__MINGW32__ && !NO_KPSE_DLL */ + +#define KPSEDLL + +#ifdef __cplusplus +extern "C" { +#endif + +/* For communication from `getopt' to the caller. + When `getopt' finds an option that takes an argument, + the argument value is returned here. + Also, when `ordering' is RETURN_IN_ORDER, + each non-option ARGV-element is returned here. */ + +extern KPSEDLL char *optarg; + +/* Index in ARGV of the next element to be scanned. + This is used for communication to and from the caller + and for communication between successive calls to `getopt'. + + On entry to `getopt', zero means this is the first call; initialize. + + When `getopt' returns -1, this is the index of the first of the + non-option elements that the caller should itself scan. + + Otherwise, `optind' communicates from one call to the next + how much of ARGV has been scanned so far. */ + +extern KPSEDLL int optind; + +/* Callers store zero here to inhibit the error message `getopt' prints + for unrecognized options. */ + +extern KPSEDLL int opterr; + +/* Set to an option character which was unrecognized. */ + +extern KPSEDLL int optopt; + +#ifndef __need_getopt +/* Describe the long-named options requested by the application. + The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector + of `struct option' terminated by an element containing a name which is + zero. + + The field `has_arg' is: + no_argument (or 0) if the option does not take an argument, + required_argument (or 1) if the option requires an argument, + optional_argument (or 2) if the option takes an optional argument. + + If the field `flag' is not NULL, it points to a variable that is set + to the value given in the field `val' when the option is found, but + left unchanged if the option is not found. + + To have a long-named option do something other than set an `int' to + a compiled-in constant, such as set a value from `optarg', set the + option's `flag' field to zero and its `val' field to a nonzero + value (the equivalent single-letter option character, if there is + one). For long options that have a zero `flag' field, `getopt' + returns the contents of the `val' field. */ + +struct option { + const char *name; + /* has_arg can't be an enum because some compilers complain about + type mismatches in all the code that assumes it is an int. */ + int has_arg; + int *flag; + int val; +}; + +/* Names for the values of the `has_arg' field of `struct option'. */ + +#define no_argument 0 +#define required_argument 1 +#define optional_argument 2 +#endif /* need getopt */ + +#if defined(__GNU_LIBRARY__) || defined(WIN32) || defined(__CYGWIN__) +/* Many other libraries have conflicting prototypes for getopt, with + differences in the consts, in stdlib.h. To avoid compilation + errors, only prototype getopt for the GNU C library. And not when + compiling with C++; g++ 4.7.0 chokes on conflicting exception + specifications. */ +#if !defined(__cplusplus) +extern KPSEDLL int getopt(int argc, char *const *argv, const char *shortopts); +#endif +#if defined(__MINGW32__) || defined(__CYGWIN__) +#define __GETOPT_H__ /* Avoid that redeclares the getopt API. */ +#endif +#elif !defined(__cplusplus) +extern KPSEDLL int getopt(); +#endif + +#ifndef __need_getopt +extern KPSEDLL int getopt_long(int argc, char *const *argv, const char *shortopts, + const struct option *longopts, int *longind); +extern KPSEDLL int getopt_long_only(int argc, char *const *argv, const char *shortopts, + const struct option *longopts, int *longind); + +#if defined(MAKE_KPSE_DLL) || defined(NO_KPSE_DLL) /* libkpathsea internal only */ + +/* Internal only. Users should not call this directly. */ +extern int _getopt_internal(int argc, char *const *argv, const char *shortopts, + const struct option *longopts, int *longind, int long_only); + +#endif /* MAKE_KPSE_DLL || NO_KPSE_DLL */ +#endif /* need getopt */ + +#ifdef __cplusplus +} +#endif + +/* Make sure we later can get all the definitions and declarations. */ +#undef __need_getopt + +#endif /* _GETOPT_H */ diff --git a/platformdep-win-msvc/getopt.h b/platformdep-win-msvc/getopt.h deleted file mode 100644 index 27ddadd3..00000000 --- a/platformdep-win-msvc/getopt.h +++ /dev/null @@ -1,553 +0,0 @@ -#ifndef __GETOPT_H__ -/** - * DISCLAIMER - * This file has no copyright assigned and is placed in the Public Domain. - * This file is part of the mingw-w64 runtime package. - * - * The mingw-w64 runtime package and its code is distributed in the hope that it - * will be useful but WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESSED OR - * IMPLIED ARE HEREBY DISCLAIMED. This includes but is not limited to - * warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - */ - -#pragma warning(disable : 4996) - -#define __GETOPT_H__ - -/* All the headers include this file. */ -#include -#include -#include -#include -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif - -#define REPLACE_GETOPT /* use this getopt as the system getopt(3) */ - -#ifdef REPLACE_GETOPT -int opterr = 1; /* if error message should be printed */ -int optind = 1; /* index into parent argv vector */ -int optopt = '?'; /* character checked for validity */ -#undef optreset /* see getopt.h */ -#define optreset __mingw_optreset -int optreset; /* reset getopt */ -char *optarg; /* argument associated with option */ -#endif - -// extern int optind; /* index of first non-option in argv */ -// extern int optopt; /* single option character, as parsed */ -// extern int opterr; /* flag to enable built-in diagnostics... */ -// /* (user may set to zero, to suppress) */ -// -// extern char *optarg; /* pointer to argument of current option */ - -#define PRINT_ERROR ((opterr) && (*options != ':')) - -#define FLAG_PERMUTE 0x01 /* permute non-options to the end of argv */ -#define FLAG_ALLARGS 0x02 /* treat non-options as args to option "-1" */ -#define FLAG_LONGONLY 0x04 /* operate as getopt_long_only */ - -/* return values */ -#define BADCH (int)'?' -#define BADARG ((*options == ':') ? (int)':' : (int)'?') -#define INORDER (int)1 - -#ifndef __CYGWIN__ -#define __progname __argv[0] -#else -extern char __declspec(dllimport) * __progname; -#endif - -#ifdef __CYGWIN__ -static char EMSG[] = ""; -#else -#define EMSG "" -#endif - -static int gcd(int, int); -static void permute_args(int, int, int, char *const *); - -#ifdef REPLACE_GETOPT -int getopt(int nargc, char *const *nargv, const char *options); -#endif - -static char *place = EMSG; /* option letter processing */ - -/* XXX: set optreset to 1 rather than these two */ -static int nonopt_start = -1; /* first non option argument (for permute) */ -static int nonopt_end = -1; /* first option after non options (for permute) */ - -/* Error messages */ -static const char recargchar[] = "option requires an argument -- %c"; -static const char recargstring[] = "option requires an argument -- %s"; -static const char ambig[] = "ambiguous option -- %.*s"; -static const char noarg[] = "option doesn't take an argument -- %.*s"; -static const char illoptchar[] = "unknown option -- %c"; -static const char illoptstring[] = "unknown option -- %s"; - -static void _vwarnx(const char *fmt, va_list ap) { - (void)fprintf(stderr, "%s: ", __progname); - if (fmt != NULL) (void)vfprintf(stderr, fmt, ap); - (void)fprintf(stderr, "\n"); -} - -static void warnx(const char *fmt, ...) { - va_list ap; - va_start(ap, fmt); - _vwarnx(fmt, ap); - va_end(ap); -} - -/* - * Compute the greatest common divisor of a and b. - */ -static int gcd(int a, int b) { - int c; - - c = a % b; - while (c != 0) { - a = b; - b = c; - c = a % b; - } - - return (b); -} - -/* - * Exchange the block from nonopt_start to nonopt_end with the block - * from nonopt_end to opt_end (keeping the same order of arguments - * in each block). - */ -static void permute_args(int panonopt_start, int panonopt_end, int opt_end, char *const *nargv) { - int cstart, cyclelen, i, j, ncycle, nnonopts, nopts, pos; - char *swap; - - /* - * compute lengths of blocks and number and size of cycles - */ - nnonopts = panonopt_end - panonopt_start; - nopts = opt_end - panonopt_end; - ncycle = gcd(nnonopts, nopts); - cyclelen = (opt_end - panonopt_start) / ncycle; - - for (i = 0; i < ncycle; i++) { - cstart = panonopt_end + i; - pos = cstart; - for (j = 0; j < cyclelen; j++) { - if (pos >= panonopt_end) - pos -= nnonopts; - else - pos += nopts; - swap = nargv[pos]; - /* LINTED const cast */ - ((char **)nargv)[pos] = nargv[cstart]; - /* LINTED const cast */ - ((char **)nargv)[cstart] = swap; - } - } -} - -// extern int getopt(int nargc, char * const *nargv, const char *options); - -#ifdef _BSD_SOURCE -/* - * BSD adds the non-standard `optreset' feature, for reinitialisation - * of `getopt' parsing. We support this feature, for applications which - * proclaim their BSD heritage, before including this header; however, - * to maintain portability, developers are advised to avoid it. - */ -#define optreset __mingw_optreset -extern int optreset; -#endif -#ifdef __cplusplus -} -#endif -/* - * POSIX requires the `getopt' API to be specified in `unistd.h'; - * thus, `unistd.h' includes this header. However, we do not want - * to expose the `getopt_long' or `getopt_long_only' APIs, when - * included in this manner. Thus, close the standard __GETOPT_H__ - * declarations block, and open an additional __GETOPT_LONG_H__ - * specific block, only when *not* __UNISTD_H_SOURCED__, in which - * to declare the extended API. - */ - -#if !defined(__UNISTD_H_SOURCED__) && !defined(__GETOPT_LONG_H__) -#define __GETOPT_LONG_H__ - -#ifdef __cplusplus -extern "C" { -#endif - -struct option { /* specification for a long form option... */ - const char *name; /* option name, without leading hyphens */ - int has_arg; /* does it take an argument? */ - int *flag; /* where to save its status, or NULL */ - int val; /* its associated status value */ -}; - -enum { /* permitted values for its `has_arg' field... */ - no_argument = 0, /* option never takes an argument */ - required_argument, /* option always requires an argument */ - optional_argument /* option may take an argument */ -}; - -static int getopt_internal(int nargc, char *const *nargv, const char *options, - const struct option *long_options, int *idx, int flags); - -#ifdef REPLACE_GETOPT -/* - * getopt -- - * Parse argc/argv argument vector. - * - * [eventually this will replace the BSD getopt] - */ -int getopt(int nargc, char *const *nargv, const char *options) { - - /* - * We don't pass FLAG_PERMUTE to getopt_internal() since - * the BSD getopt(3) (unlike GNU) has never done this. - * - * Furthermore, since many privileged programs call getopt() - * before dropping privileges it makes sense to keep things - * as simple (and bug-free) as possible. - */ - return (getopt_internal(nargc, nargv, options, NULL, NULL, 0)); -} -#endif /* REPLACE_GETOPT */ - -/* - * parse_long_options -- - * Parse long options in argc/argv argument vector. - * Returns -1 if short_too is set and the option does not match long_options. - */ -static int parse_long_options(char *const *nargv, const char *options, - const struct option *long_options, int *idx, int short_too) { - char *current_argv, *has_equal; - size_t current_argv_len; - int i, ambiguous, match; - -#define IDENTICAL_INTERPRETATION(_x, _y) \ - (long_options[(_x)].has_arg == long_options[(_y)].has_arg && \ - long_options[(_x)].flag == long_options[(_y)].flag && \ - long_options[(_x)].val == long_options[(_y)].val) - - current_argv = place; - match = -1; - ambiguous = 0; - - optind++; - - if ((has_equal = strchr(current_argv, '=')) != NULL) { - /* argument found (--option=arg) */ - current_argv_len = has_equal - current_argv; - has_equal++; - } else - current_argv_len = strlen(current_argv); - - for (i = 0; long_options[i].name; i++) { - /* find matching long option */ - if (strncmp(current_argv, long_options[i].name, current_argv_len)) continue; - - if (strlen(long_options[i].name) == current_argv_len) { - /* exact match */ - match = i; - ambiguous = 0; - break; - } - /* - * If this is a known short option, don't allow - * a partial match of a single character. - */ - if (short_too && current_argv_len == 1) continue; - - if (match == -1) /* partial match */ - match = i; - else if (!IDENTICAL_INTERPRETATION(i, match)) - ambiguous = 1; - } - if (ambiguous) { - /* ambiguous abbreviation */ - if (PRINT_ERROR) warnx(ambig, (int)current_argv_len, current_argv); - optopt = 0; - return (BADCH); - } - if (match != -1) { /* option found */ - if (long_options[match].has_arg == no_argument && has_equal) { - if (PRINT_ERROR) warnx(noarg, (int)current_argv_len, current_argv); - /* - * XXX: GNU sets optopt to val regardless of flag - */ - if (long_options[match].flag == NULL) - optopt = long_options[match].val; - else - optopt = 0; - return (BADARG); - } - if (long_options[match].has_arg == required_argument || - long_options[match].has_arg == optional_argument) { - if (has_equal) - optarg = has_equal; - else if (long_options[match].has_arg == required_argument) { - /* - * optional argument doesn't use next nargv - */ - optarg = nargv[optind++]; - } - } - if ((long_options[match].has_arg == required_argument) && (optarg == NULL)) { - /* - * Missing argument; leading ':' indicates no error - * should be generated. - */ - if (PRINT_ERROR) warnx(recargstring, current_argv); - /* - * XXX: GNU sets optopt to val regardless of flag - */ - if (long_options[match].flag == NULL) - optopt = long_options[match].val; - else - optopt = 0; - --optind; - return (BADARG); - } - } else { /* unknown option */ - if (short_too) { - --optind; - return (-1); - } - if (PRINT_ERROR) warnx(illoptstring, current_argv); - optopt = 0; - return (BADCH); - } - if (idx) *idx = match; - if (long_options[match].flag) { - *long_options[match].flag = long_options[match].val; - return (0); - } else - return (long_options[match].val); -#undef IDENTICAL_INTERPRETATION -} - -/* - * getopt_internal -- - * Parse argc/argv argument vector. Called by user level routines. - */ -static int getopt_internal(int nargc, char *const *nargv, const char *options, - const struct option *long_options, int *idx, int flags) { - char *oli; /* option letter list index */ - int optchar, short_too; - static int posixly_correct = -1; - - if (options == NULL) return (-1); - - /* - * XXX Some GNU programs (like cvs) set optind to 0 instead of - * XXX using optreset. Work around this braindamage. - */ - if (optind == 0) optind = optreset = 1; - - /* - * Disable GNU extensions if POSIXLY_CORRECT is set or options - * string begins with a '+'. - * - * CV, 2009-12-14: Check POSIXLY_CORRECT anew if optind == 0 or - * optreset != 0 for GNU compatibility. - */ - if (posixly_correct == -1 || optreset != 0) - posixly_correct = (getenv("POSIXLY_CORRECT") != NULL); - if (*options == '-') - flags |= FLAG_ALLARGS; - else if (posixly_correct || *options == '+') - flags &= ~FLAG_PERMUTE; - if (*options == '+' || *options == '-') options++; - - optarg = NULL; - if (optreset) nonopt_start = nonopt_end = -1; -start: - if (optreset || !*place) { /* update scanning pointer */ - optreset = 0; - if (optind >= nargc) { /* end of argument vector */ - place = EMSG; - if (nonopt_end != -1) { - /* do permutation, if we have to */ - permute_args(nonopt_start, nonopt_end, optind, nargv); - optind -= nonopt_end - nonopt_start; - } else if (nonopt_start != -1) { - /* - * If we skipped non-options, set optind - * to the first of them. - */ - optind = nonopt_start; - } - nonopt_start = nonopt_end = -1; - return (-1); - } - if (*(place = nargv[optind]) != '-' || (place[1] == '\0' && strchr(options, '-') == NULL)) { - place = EMSG; /* found non-option */ - if (flags & FLAG_ALLARGS) { - /* - * GNU extension: - * return non-option as argument to option 1 - */ - optarg = nargv[optind++]; - return (INORDER); - } - if (!(flags & FLAG_PERMUTE)) { - /* - * If no permutation wanted, stop parsing - * at first non-option. - */ - return (-1); - } - /* do permutation */ - if (nonopt_start == -1) - nonopt_start = optind; - else if (nonopt_end != -1) { - permute_args(nonopt_start, nonopt_end, optind, nargv); - nonopt_start = optind - (nonopt_end - nonopt_start); - nonopt_end = -1; - } - optind++; - /* process next argument */ - goto start; - } - if (nonopt_start != -1 && nonopt_end == -1) nonopt_end = optind; - - /* - * If we have "-" do nothing, if "--" we are done. - */ - if (place[1] != '\0' && *++place == '-' && place[1] == '\0') { - optind++; - place = EMSG; - /* - * We found an option (--), so if we skipped - * non-options, we have to permute. - */ - if (nonopt_end != -1) { - permute_args(nonopt_start, nonopt_end, optind, nargv); - optind -= nonopt_end - nonopt_start; - } - nonopt_start = nonopt_end = -1; - return (-1); - } - } - - /* - * Check long options if: - * 1) we were passed some - * 2) the arg is not just "-" - * 3) either the arg starts with -- we are getopt_long_only() - */ - if (long_options != NULL && place != nargv[optind] && - (*place == '-' || (flags & FLAG_LONGONLY))) { - short_too = 0; - if (*place == '-') - place++; /* --foo long option */ - else if (*place != ':' && strchr(options, *place) != NULL) - short_too = 1; /* could be short option too */ - - optchar = parse_long_options(nargv, options, long_options, idx, short_too); - if (optchar != -1) { - place = EMSG; - return (optchar); - } - } - - if ((optchar = (int)*place++) == (int)':' || (optchar == (int)'-' && *place != '\0') || - (oli = (char *)strchr(options, optchar)) == NULL) { - /* - * If the user specified "-" and '-' isn't listed in - * options, return -1 (non-option) as per POSIX. - * Otherwise, it is an unknown option character (or ':'). - */ - if (optchar == (int)'-' && *place == '\0') return (-1); - if (!*place) ++optind; - if (PRINT_ERROR) warnx(illoptchar, optchar); - optopt = optchar; - return (BADCH); - } - if (long_options != NULL && optchar == 'W' && oli[1] == ';') { - /* -W long-option */ - if (*place) /* no space */ - /* NOTHING */; - else if (++optind >= nargc) { /* no arg */ - place = EMSG; - if (PRINT_ERROR) warnx(recargchar, optchar); - optopt = optchar; - return (BADARG); - } else /* white space */ - place = nargv[optind]; - optchar = parse_long_options(nargv, options, long_options, idx, 0); - place = EMSG; - return (optchar); - } - if (*++oli != ':') { /* doesn't take argument */ - if (!*place) ++optind; - } else { /* takes (optional) argument */ - optarg = NULL; - if (*place) /* no white space */ - optarg = place; - else if (oli[1] != ':') { /* arg not optional */ - if (++optind >= nargc) { /* no arg */ - place = EMSG; - if (PRINT_ERROR) warnx(recargchar, optchar); - optopt = optchar; - return (BADARG); - } else - optarg = nargv[optind]; - } - place = EMSG; - ++optind; - } - /* dump back option letter */ - return (optchar); -} - -/* - * getopt_long -- - * Parse argc/argv argument vector. - */ -int getopt_long(int nargc, char *const *nargv, const char *options, - const struct option *long_options, int *idx) { - - return (getopt_internal(nargc, nargv, options, long_options, idx, FLAG_PERMUTE)); -} - -/* - * getopt_long_only -- - * Parse argc/argv argument vector. - */ -int getopt_long_only(int nargc, char *const *nargv, const char *options, - const struct option *long_options, int *idx) { - - return ( - getopt_internal(nargc, nargv, options, long_options, idx, FLAG_PERMUTE | FLAG_LONGONLY)); -} - -// extern int getopt_long(int nargc, char * const *nargv, const char *options, -// const struct option *long_options, int *idx); -// extern int getopt_long_only(int nargc, char * const *nargv, const char *options, -// const struct option *long_options, int *idx); -/* - * Previous MinGW implementation had... - */ -#ifndef HAVE_DECL_GETOPT -/* - * ...for the long form API only; keep this for compatibility. - */ -#define HAVE_DECL_GETOPT 1 -#endif - -#ifdef __cplusplus -} -#endif - -#endif /* !defined(__UNISTD_H_SOURCED__) && !defined(__GETOPT_LONG_H__) */ -#endif /* !defined(__GETOPT_H__) */ diff --git a/premake5.lua b/premake5.lua index a144c7bc..7af0c592 100644 --- a/premake5.lua +++ b/premake5.lua @@ -18,7 +18,7 @@ workspace "otfcc" defines { '_CRT_SECURE_NO_WARNINGS' } buildoptions { '/MP', '/Wall', '-Wno-unused-parameter', '-Qunused-arguments' } flags { "StaticRuntime" } - includedirs { "platformdep-win-msvc" } + includedirs { "extern-msvc" } filter {} filter "action:gmake" @@ -32,37 +32,67 @@ workspace "otfcc" filter "configurations:Release" defines { "NDEBUG" } optimize "Full" - -project "libotfcc" +project "externals" kind "StaticLib" language "C" files { - "src/**.h", - "src/**.c", "extern/**.h", "extern/**.c" } +project "extern-msvc" + kind "StaticLib" + language "C" + files { + "extern-msvc/**.h", + "extern-msvc/**.c" + } + +project "libotfcc" + kind "StaticLib" + language "C" + files { + "src/**.h", + "src/**.c" + } + removefiles { - "src/otfccdump.c", - "src/otfccbuild.c" + "src-cli/**" } project "otfccdump" kind "ConsoleApp" language "C" targetdir "bin/%{cfg.buildcfg}-%{cfg.platform}" - links { "libotfcc" } + + links { "libotfcc", "externals" } + filter "action:vs*" + links "extern-msvc" + filter {} + files { - "src/otfccdump.c" + "src-cli/**.c", + "src-cli/**.h" + } + removefiles { + "src-cli/otfccbuild.c" } project "otfccbuild" kind "ConsoleApp" language "C" targetdir "bin/%{cfg.buildcfg}-%{cfg.platform}" - links { "libotfcc" } + + links { "libotfcc", "externals" } + filter "action:vs*" + links "extern-msvc" + filter {} + files { - "src/otfccbuild.c" + "src-cli/**.c", + "src-cli/**.h" + } + removefiles { + "src-cli/otfccdump.c" } diff --git a/src/otfccbuild.c b/src-cli/otfccbuild.c similarity index 94% rename from src/otfccbuild.c rename to src-cli/otfccbuild.c index e01e7bb6..5a3b84f0 100644 --- a/src/otfccbuild.c +++ b/src-cli/otfccbuild.c @@ -1,10 +1,11 @@ -#include "caryll-font.h" -#include "caryll-sfnt-builder.h" -#include "caryll-sfnt.h" -#include +#include "../src/caryll-font.h" +#include "../src/caryll-sfnt-builder.h" +#include "../src/caryll-sfnt.h" + +#include "platform.h" +#include "stopwatch.h" -#include "support/platform.h" -#include "support/stopwatch.h" +#include #ifndef MAIN_VER #define MAIN_VER 0 @@ -101,7 +102,7 @@ void print_table(sfnt_builder_entry *t) { ((uint32_t)(t->tag) >> 8) & 0xff, t->tag & 0xff, t->length, t->checksum); } -#ifdef WIN32 +#ifdef _WIN32 int main() { int argc; char **argv; diff --git a/src/otfccdump.c b/src-cli/otfccdump.c similarity index 94% rename from src/otfccdump.c rename to src-cli/otfccdump.c index 9fbb5a13..4d34e87d 100644 --- a/src/otfccdump.c +++ b/src-cli/otfccdump.c @@ -1,9 +1,10 @@ -#include "caryll-font.h" -#include "caryll-sfnt.h" -#include +#include "../src/caryll-font.h" +#include "../src/caryll-sfnt.h" + +#include "platform.h" +#include "stopwatch.h" -#include "support/platform.h" -#include "support/stopwatch.h" +#include #ifndef MAIN_VER #define MAIN_VER 0 @@ -34,7 +35,7 @@ void printHelp() { " on Windows when redirecting to another program.\n" " Use --no-bom to turn it off.)"); } -#ifdef WIN32 +#ifdef _WIN32 int main() { int argc; char **argv; diff --git a/src/support/platform.h b/src-cli/platform.h similarity index 85% rename from src/support/platform.h rename to src-cli/platform.h index 5ec7378d..a821c596 100644 --- a/src/support/platform.h +++ b/src-cli/platform.h @@ -1,7 +1,7 @@ -#ifndef CARYLL_SUPPORT_PLATFORM_H -#define CARYLL_SUPPORT_PLATFORM_H +#ifndef CARYLL_CLI_PLATFORM_H +#define CARYLL_CLI_PLATFORM_H -#ifdef WIN32 +#ifdef _WIN32 #include #include @@ -16,7 +16,7 @@ int get_argv_utf8(int *argc_ptr, char ***argv_ptr) { int size = offset; for (i = 0; i < argc; i++) size += WideCharToMultiByte(CP_UTF8, 0, argv_utf16[i], -1, 0, 0, 0, 0); - argv = malloc(size); + argv = (char **)malloc(size); for (i = 0; i < argc; i++) { argv[i] = (char *)argv + offset; offset += WideCharToMultiByte(CP_UTF8, 0, argv_utf16[i], -1, argv[i], size - offset, 0, 0); @@ -28,7 +28,7 @@ int get_argv_utf8(int *argc_ptr, char ***argv_ptr) { int widen_utf8(char *filename_utf8, LPWSTR *filename_w) { int num_chars = MultiByteToWideChar(CP_UTF8, 0, filename_utf8, -1, 0, 0); int size = sizeof(WCHAR); - *filename_w = malloc(size * num_chars); + *filename_w = (LPWSTR)malloc(size * num_chars); MultiByteToWideChar(CP_UTF8, 0, filename_utf8, -1, *filename_w, num_chars); return num_chars; } diff --git a/src/support/stopwatch.c b/src-cli/stopwatch.c similarity index 100% rename from src/support/stopwatch.c rename to src-cli/stopwatch.c diff --git a/src/support/stopwatch.h b/src-cli/stopwatch.h similarity index 100% rename from src/support/stopwatch.h rename to src-cli/stopwatch.h From 46a1e5043d06cb336e7731e3284ebf3692d8c38a Mon Sep 17 00:00:00 2001 From: be5invis Date: Sat, 16 Apr 2016 01:50:51 +0800 Subject: [PATCH 29/32] Remove outdated tests. --- tests/kit.h | 20 --------- tests/test-buffer.c | 70 -------------------------------- tests/test-payload-1.c | 92 ------------------------------------------ 3 files changed, 182 deletions(-) delete mode 100644 tests/kit.h delete mode 100644 tests/test-buffer.c delete mode 100644 tests/test-payload-1.c diff --git a/tests/kit.h b/tests/kit.h deleted file mode 100644 index 237be174..00000000 --- a/tests/kit.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifndef CARYLL_TESTS_KIT_H -#define CARYLL_TESTS_KIT_H - -#define assert_equal(message, x, y) \ - { \ - char tmp[16]; \ - sprintf(tmp, "[%d]", ++nChecks); \ - fprintf(stderr, "%8s [%s] Check : %s : %s.\n", tmp, ((x) == (y) ? "OK" : "FAIL"), message, \ - ((x) == (y) ? "Success" : "Fail")); \ - } -#define assert_not_equal(message, x, y) \ - { \ - char tmp[16]; \ - sprintf(tmp, "[%d]", ++nChecks); \ - fprintf(stderr, "%8s [%s] Check : %s : %s.\n", tmp, ((x) != (y) ? "OK" : "FAIL"), message, \ - ((x) != (y) ? "Success" : "Fail")); \ - } -#define assert_exists(message, x) assert_not_equal(message, x, NULL) - -#endif diff --git a/tests/test-buffer.c b/tests/test-buffer.c deleted file mode 100644 index 7fc756d7..00000000 --- a/tests/test-buffer.c +++ /dev/null @@ -1,70 +0,0 @@ -#include -#include -#include - -#include "../src/caryll-sfnt.h" -#include "../src/caryll-font.h" -#include "../src/support/buffer.h" - -#include "kit.h" - -int main(int argc, char *argv[]) { - printf("Testing Buffer\n"); - int nChecks = 0; - { // buffer test - caryll_buffer *buf = bufnew(); - assert_equal("New buffer's length should be 0", buflen(buf), 0); - assert_equal("New buffer's length cursor be 0", bufpos(buf), 0); - - bufwrite8(buf, 12); - assert_equal("After written a byte, buf length should be 1", buflen(buf), 1); - assert_equal("After written a byte, buf cursor should be 1", bufpos(buf), 1); - assert_equal("The byte should be written", buf->s[0], 12); - - bufwrite16b(buf, 0x1234); - bufwrite16l(buf, 0x5678); - bufwrite32b(buf, 0x01020304); - bufwrite32l(buf, 0x05060708); - - assert_equal("16BE Byte 2", buf->s[1], 0x12); - assert_equal("16BE Byte 3", buf->s[2], 0x34); - assert_equal("16LE Byte 4", buf->s[3], 0x78); - assert_equal("16LE Byte 5", buf->s[4], 0x56); - assert_equal("32BE Byte 6", buf->s[5], 0x01); - assert_equal("32BE Byte 7", buf->s[6], 0x02); - assert_equal("32BE Byte 8", buf->s[7], 0x03); - assert_equal("32BE Byte 9", buf->s[8], 0x04); - assert_equal("32LE Byte 10", buf->s[9], 0x08); - assert_equal("32LE Byte 11", buf->s[10], 0x07); - assert_equal("32LE Byte 12", buf->s[11], 0x06); - assert_equal("32LE Byte 13", buf->s[12], 0x05); - - assert_equal("After written them, buf length should be 13", buflen(buf), 13); - - bufseek(buf, 1000); - sds s = sdsnew("abcd"); - bufwrite_sds(buf, s); - assert_equal("After written a sds string, buf length should be 1004", buflen(buf), 1004); - assert_equal("After written a sds string, buf pos should be 1004", bufpos(buf), 1004); - assert_equal("The string is written", strncmp(buf->s + 1000, "abcd", 4), 0); - assert_equal("The skipped zone is filled with zero", buf->s[555], 0); - sdsfree(s); - - bufwrite_str(buf, "PBRT"); - assert_equal("After written a string, buf length should be 1004", buflen(buf), 1008); - assert_equal("After written a string, buf pos should be 1004", bufpos(buf), 1008); - assert_equal("The string is written", strncmp(buf->s + 1004, "PBRT", 4), 0); - - caryll_buffer *that = bufnew(); - sds ts = sdsnew("xyzw"); - bufwrite_sds(that, ts); - sdsfree(ts); - bufwrite_buf(buf, that); - assert_equal("After written a buffer, the buf length should be 1012", buflen(buf), 1012); - assert_equal("buf written", strncmp(buf->s + 1008, "xyzw", 4), 0); - buffree(that); - - buffree(buf); - } - return 0; -} diff --git a/tests/test-payload-1.c b/tests/test-payload-1.c deleted file mode 100644 index 43467d4a..00000000 --- a/tests/test-payload-1.c +++ /dev/null @@ -1,92 +0,0 @@ -#include -#include -#include - -#include "../src/caryll-sfnt.h" -#include "../src/caryll-font.h" - -#include "kit.h" - -int main(int argc, char *argv[]) { - printf("Testing Payload %s\n", argv[1]); - FILE *inf = fopen(argv[1], "rb"); - caryll_sfnt *sfnt = caryll_read_sfnt(inf); - caryll_font *font = caryll_read_font(sfnt, 0); - caryll_font_unconsolidate(font); - - int nChecks = 0; - - { // Simple fields - assert_equal("head.version", font->head->version, 0x10000); - assert_equal("OS/2.version", font->OS_2->version, 0x0004); - assert_equal("OS/2.ulUnicodeRange2", font->OS_2->ulUnicodeRange2, 0x2adf3c10); - } - - { // glyf - assert_equal("Glyph count", font->glyf->numberGlyphs, 15); - assert_equal("glyf[14] contour count", font->glyf->glyphs[14]->numberOfContours, 2); - assert_equal("glyf[14] instr length", font->glyf->glyphs[14]->instructionsLength, 281); - assert_equal("glyf[14] contour[0] pts", font->glyf->glyphs[14]->contours[0].pointsCount, - (11 - 0 + 1)); - assert_equal("glyf[14] contour[1] pts", font->glyf->glyphs[14]->contours[1].pointsCount, - (56 - 12 + 1)); - assert_equal("glyf[14] contour[0] point[0] x", - font->glyf->glyphs[14]->contours[0].points[0].x, 28); - assert_equal("glyf[14] contour[0] point[0] y", - font->glyf->glyphs[14]->contours[0].points[0].y, 63); - assert_equal("glyf[14] contour[0] point[0] on", - font->glyf->glyphs[14]->contours[0].points[0].onCurve, true); - } - - { // Glyph order and naming - glyph_order_entry *s; - int testindex = 0; - HASH_FIND_INT(*(font->glyph_order), &testindex, s); - assert_exists("Glyph 0 has a name", s); - if (s != NULL) assert_equal("Glyph 0 is named as .notdef", strcmp(s->name, ".notdef"), 0); - - testindex = 5; - HASH_FIND_INT(*(font->glyph_order), &testindex, s); - assert_exists("Glyph 5 has a name", s); - if (s != NULL) assert_equal("Glyph 5 is named as NameMe.3", strcmp(s->name, "NameMe.3"), 0); - - bool allGlyphNamed = true; - for (int index = 0; index < font->glyf->numberGlyphs; index++) { - HASH_FIND_INT(*(font->glyph_order), &index, s); - if (s == NULL) allGlyphNamed = false; - if (font->glyf->glyphs[index]->name == NULL) { - printf("%d\n", index); - allGlyphNamed = false; - } - } - assert_equal("All glyphs are named", allGlyphNamed, true); - } - - { // cmap (flatten) - cmap_entry *s; - int testindex = 0x888B; - HASH_FIND_INT(*(font->cmap), &testindex, s); - assert_exists("Found cmap entry for U+888B", s); - if (s != NULL) { - assert_equal("U+888B Mapping correct", s->glyph.gid, 13); - assert_equal("U+888B is named as NameMe.11", strcmp(s->glyph.name, "NameMe.11"), 0); - } - - testindex = 0x9df9; - HASH_FIND_INT(*(font->cmap), &testindex, s); - assert_exists("Found cmap entry for U+9DF9", s); - if (s != NULL) assert_equal("U+9DF9 Mapping correct", s->glyph.gid, 9); - } - - { // name - assert_equal("Should have 34 name records", font->name->count, 34); - assert_equal("Name item 13 should be 'http://www.apache.org/licenses/LICENSE-2.0.html'", - strcmp(font->name->records[13]->nameString, - "http://www.apache.org/licenses/LICENSE-2.0.html"), - 0); - } - - caryll_delete_font(font); - caryll_delete_sfnt(sfnt); - return 0; -} From d90f0e0eb3240caa2c85b6deb04b98a8be5abe47 Mon Sep 17 00:00:00 2001 From: be5invis Date: Sat, 16 Apr 2016 02:39:52 +0800 Subject: [PATCH 30/32] more separations --- _vcbuild32.bat | 2 +- _vcbuild64.bat | 2 +- premake5.lua | 28 ++++++++++++++----- src-cli/otfccbuild.c | 7 +++-- src-cli/otfccdump.c | 5 ++-- {src/fontops => src-fontop}/consolidate.c | 0 {src/fontops => src-fontop}/consolidate.h | 2 +- src-fontop/fontop.h | 8 ++++++ {src/fontops => src-fontop}/otl/GDEF.c | 0 {src/fontops => src-fontop}/otl/GDEF.h | 1 - {src/fontops => src-fontop}/otl/chaining.c | 0 {src/fontops => src-fontop}/otl/chaining.h | 1 - {src/fontops => src-fontop}/otl/common.c | 0 {src/fontops => src-fontop}/otl/common.h | 2 +- .../fontops => src-fontop}/otl/gpos-cursive.c | 0 .../fontops => src-fontop}/otl/gpos-cursive.h | 1 - {src/fontops => src-fontop}/otl/gpos-pair.c | 0 {src/fontops => src-fontop}/otl/gpos-pair.h | 1 - {src/fontops => src-fontop}/otl/gpos-single.c | 0 {src/fontops => src-fontop}/otl/gpos-single.h | 1 - .../otl/gsub-ligature.c | 0 .../otl/gsub-ligature.h | 1 - {src/fontops => src-fontop}/otl/gsub-multi.c | 0 {src/fontops => src-fontop}/otl/gsub-multi.h | 1 - .../fontops => src-fontop}/otl/gsub-reverse.c | 0 .../fontops => src-fontop}/otl/gsub-reverse.h | 1 - {src/fontops => src-fontop}/otl/gsub-single.c | 0 {src/fontops => src-fontop}/otl/gsub-single.h | 1 - {src/fontops => src-fontop}/otl/mark.c | 0 {src/fontops => src-fontop}/otl/mark.h | 1 - {src/fontops => src-fontop}/stat.c | 0 {src/fontops => src-fontop}/stat.h | 2 +- {src/fontops => src-fontop}/unconsolidate.c | 2 +- {src/fontops => src-fontop}/unconsolidate.h | 3 +- {src/support => src-support}/aglfn.c | 0 {src/support => src-support}/aglfn.h | 0 {src/support => src-support}/base64.c | 0 {src/support => src-support}/base64.h | 0 {src/support => src-support}/buffer.c | 0 {src/support => src-support}/buffer.h | 2 +- {src/support => src-support}/glyphorder.c | 0 {src/support => src-support}/glyphorder.h | 0 {src/support => src-support}/unicodeconv.c | 0 {src/support => src-support}/unicodeconv.h | 2 +- {src/support => src-support}/util.h | 8 +++--- {src => src-tables}/caryll-font.c | 0 {src => src-tables}/caryll-font.h | 8 ++---- {src => src-tables}/caryll-sfnt-builder.c | 0 {src => src-tables}/caryll-sfnt-builder.h | 2 +- {src => src-tables}/caryll-sfnt.c | 2 +- {src => src-tables}/caryll-sfnt.h | 0 {src => src-tables}/tables/LTSH.c | 0 {src => src-tables}/tables/LTSH.h | 2 +- {src => src-tables}/tables/OS_2.c | 0 {src => src-tables}/tables/OS_2.h | 2 +- {src => src-tables}/tables/PCLT.c | 0 {src => src-tables}/tables/PCLT.h | 2 +- {src => src-tables}/tables/cmap.c | 0 {src => src-tables}/tables/cmap.h | 2 +- {src => src-tables}/tables/fpgm-prep.c | 0 {src => src-tables}/tables/fpgm-prep.h | 4 +-- {src => src-tables}/tables/gasp.c | 0 {src => src-tables}/tables/gasp.h | 2 +- {src => src-tables}/tables/glyf.c | 0 {src => src-tables}/tables/glyf.h | 4 +-- {src => src-tables}/tables/hdmx.c | 0 {src => src-tables}/tables/hdmx.h | 2 +- {src => src-tables}/tables/head.c | 0 {src => src-tables}/tables/head.h | 2 +- {src => src-tables}/tables/hhea.c | 0 {src => src-tables}/tables/hhea.h | 2 +- {src => src-tables}/tables/hmtx.c | 0 {src => src-tables}/tables/hmtx.h | 2 +- {src => src-tables}/tables/maxp.c | 0 {src => src-tables}/tables/maxp.h | 2 +- {src => src-tables}/tables/name.c | 2 +- {src => src-tables}/tables/name.h | 2 +- {src => src-tables}/tables/otl/GDEF.c | 0 {src => src-tables}/tables/otl/GDEF.h | 0 {src => src-tables}/tables/otl/chaining.c | 0 {src => src-tables}/tables/otl/chaining.h | 0 {src => src-tables}/tables/otl/classdef.c | 0 {src => src-tables}/tables/otl/classdef.h | 2 +- {src => src-tables}/tables/otl/coverage.c | 0 {src => src-tables}/tables/otl/coverage.h | 2 +- {src => src-tables}/tables/otl/extend.c | 0 {src => src-tables}/tables/otl/extend.h | 0 {src => src-tables}/tables/otl/gpos-common.c | 0 {src => src-tables}/tables/otl/gpos-common.h | 0 {src => src-tables}/tables/otl/gpos-cursive.c | 0 {src => src-tables}/tables/otl/gpos-cursive.h | 0 .../tables/otl/gpos-mark-to-ligature.c | 0 .../tables/otl/gpos-mark-to-ligature.h | 0 .../tables/otl/gpos-mark-to-single.c | 0 .../tables/otl/gpos-mark-to-single.h | 0 {src => src-tables}/tables/otl/gpos-pair.c | 0 {src => src-tables}/tables/otl/gpos-pair.h | 0 {src => src-tables}/tables/otl/gpos-single.c | 0 {src => src-tables}/tables/otl/gpos-single.h | 0 .../tables/otl/gsub-ligature.c | 0 .../tables/otl/gsub-ligature.h | 0 {src => src-tables}/tables/otl/gsub-multi.c | 0 {src => src-tables}/tables/otl/gsub-multi.h | 0 {src => src-tables}/tables/otl/gsub-reverse.c | 0 {src => src-tables}/tables/otl/gsub-reverse.h | 0 {src => src-tables}/tables/otl/gsub-single.c | 0 {src => src-tables}/tables/otl/gsub-single.h | 0 {src => src-tables}/tables/otl/otl.c | 0 {src => src-tables}/tables/otl/otl.h | 2 +- {src => src-tables}/tables/post.c | 0 {src => src-tables}/tables/post.h | 4 +-- {src => src-tables}/tables/vhea.c | 0 {src => src-tables}/tables/vhea.h | 2 +- {src => src-tables}/tables/vmtx.c | 0 {src => src-tables}/tables/vmtx.h | 2 +- 115 files changed, 76 insertions(+), 67 deletions(-) rename {src/fontops => src-fontop}/consolidate.c (100%) rename {src/fontops => src-fontop}/consolidate.h (88%) create mode 100644 src-fontop/fontop.h rename {src/fontops => src-fontop}/otl/GDEF.c (100%) rename {src/fontops => src-fontop}/otl/GDEF.h (81%) rename {src/fontops => src-fontop}/otl/chaining.c (100%) rename {src/fontops => src-fontop}/otl/chaining.h (86%) rename {src/fontops => src-fontop}/otl/common.c (100%) rename {src/fontops => src-fontop}/otl/common.h (86%) rename {src/fontops => src-fontop}/otl/gpos-cursive.c (100%) rename {src/fontops => src-fontop}/otl/gpos-cursive.h (86%) rename {src/fontops => src-fontop}/otl/gpos-pair.c (100%) rename {src/fontops => src-fontop}/otl/gpos-pair.h (85%) rename {src/fontops => src-fontop}/otl/gpos-single.c (100%) rename {src/fontops => src-fontop}/otl/gpos-single.h (86%) rename {src/fontops => src-fontop}/otl/gsub-ligature.c (100%) rename {src/fontops => src-fontop}/otl/gsub-ligature.h (86%) rename {src/fontops => src-fontop}/otl/gsub-multi.c (100%) rename {src/fontops => src-fontop}/otl/gsub-multi.h (85%) rename {src/fontops => src-fontop}/otl/gsub-reverse.c (100%) rename {src/fontops => src-fontop}/otl/gsub-reverse.h (86%) rename {src/fontops => src-fontop}/otl/gsub-single.c (100%) rename {src/fontops => src-fontop}/otl/gsub-single.h (86%) rename {src/fontops => src-fontop}/otl/mark.c (100%) rename {src/fontops => src-fontop}/otl/mark.h (90%) rename {src/fontops => src-fontop}/stat.c (100%) rename {src/fontops => src-fontop}/stat.h (75%) rename {src/fontops => src-fontop}/unconsolidate.c (96%) rename {src/fontops => src-fontop}/unconsolidate.h (75%) rename {src/support => src-support}/aglfn.c (100%) rename {src/support => src-support}/aglfn.h (100%) rename {src/support => src-support}/base64.c (100%) rename {src/support => src-support}/base64.h (100%) rename {src/support => src-support}/buffer.c (100%) rename {src/support => src-support}/buffer.h (95%) rename {src/support => src-support}/glyphorder.c (100%) rename {src/support => src-support}/glyphorder.h (100%) rename {src/support => src-support}/unicodeconv.c (100%) rename {src/support => src-support}/unicodeconv.h (88%) rename {src/support => src-support}/util.h (95%) rename {src => src-tables}/caryll-font.c (100%) rename {src => src-tables}/caryll-font.h (90%) rename {src => src-tables}/caryll-sfnt-builder.c (100%) rename {src => src-tables}/caryll-sfnt-builder.h (90%) rename {src => src-tables}/caryll-sfnt.c (98%) rename {src => src-tables}/caryll-sfnt.h (100%) rename {src => src-tables}/tables/LTSH.c (100%) rename {src => src-tables}/tables/LTSH.h (86%) rename {src => src-tables}/tables/OS_2.c (100%) rename {src => src-tables}/tables/OS_2.h (94%) rename {src => src-tables}/tables/PCLT.c (100%) rename {src => src-tables}/tables/PCLT.h (93%) rename {src => src-tables}/tables/cmap.c (100%) rename {src => src-tables}/tables/cmap.h (91%) rename {src => src-tables}/tables/fpgm-prep.c (100%) rename {src => src-tables}/tables/fpgm-prep.h (86%) rename {src => src-tables}/tables/gasp.c (100%) rename {src => src-tables}/tables/gasp.h (91%) rename {src => src-tables}/tables/glyf.c (100%) rename {src => src-tables}/tables/glyf.h (93%) rename {src => src-tables}/tables/hdmx.c (100%) rename {src => src-tables}/tables/hdmx.h (92%) rename {src => src-tables}/tables/head.c (100%) rename {src => src-tables}/tables/head.h (95%) rename {src => src-tables}/tables/hhea.c (100%) rename {src => src-tables}/tables/hhea.h (95%) rename {src => src-tables}/tables/hmtx.c (100%) rename {src => src-tables}/tables/hmtx.h (93%) rename {src => src-tables}/tables/maxp.c (100%) rename {src => src-tables}/tables/maxp.h (95%) rename {src => src-tables}/tables/name.c (96%) rename {src => src-tables}/tables/name.h (91%) rename {src => src-tables}/tables/otl/GDEF.c (100%) rename {src => src-tables}/tables/otl/GDEF.h (100%) rename {src => src-tables}/tables/otl/chaining.c (100%) rename {src => src-tables}/tables/otl/chaining.h (100%) rename {src => src-tables}/tables/otl/classdef.c (100%) rename {src => src-tables}/tables/otl/classdef.h (91%) rename {src => src-tables}/tables/otl/coverage.c (100%) rename {src => src-tables}/tables/otl/coverage.h (90%) rename {src => src-tables}/tables/otl/extend.c (100%) rename {src => src-tables}/tables/otl/extend.h (100%) rename {src => src-tables}/tables/otl/gpos-common.c (100%) rename {src => src-tables}/tables/otl/gpos-common.h (100%) rename {src => src-tables}/tables/otl/gpos-cursive.c (100%) rename {src => src-tables}/tables/otl/gpos-cursive.h (100%) rename {src => src-tables}/tables/otl/gpos-mark-to-ligature.c (100%) rename {src => src-tables}/tables/otl/gpos-mark-to-ligature.h (100%) rename {src => src-tables}/tables/otl/gpos-mark-to-single.c (100%) rename {src => src-tables}/tables/otl/gpos-mark-to-single.h (100%) rename {src => src-tables}/tables/otl/gpos-pair.c (100%) rename {src => src-tables}/tables/otl/gpos-pair.h (100%) rename {src => src-tables}/tables/otl/gpos-single.c (100%) rename {src => src-tables}/tables/otl/gpos-single.h (100%) rename {src => src-tables}/tables/otl/gsub-ligature.c (100%) rename {src => src-tables}/tables/otl/gsub-ligature.h (100%) rename {src => src-tables}/tables/otl/gsub-multi.c (100%) rename {src => src-tables}/tables/otl/gsub-multi.h (100%) rename {src => src-tables}/tables/otl/gsub-reverse.c (100%) rename {src => src-tables}/tables/otl/gsub-reverse.h (100%) rename {src => src-tables}/tables/otl/gsub-single.c (100%) rename {src => src-tables}/tables/otl/gsub-single.h (100%) rename {src => src-tables}/tables/otl/otl.c (100%) rename {src => src-tables}/tables/otl/otl.h (95%) rename {src => src-tables}/tables/post.c (100%) rename {src => src-tables}/tables/post.h (91%) rename {src => src-tables}/tables/vhea.c (100%) rename {src => src-tables}/tables/vhea.h (95%) rename {src => src-tables}/tables/vmtx.c (100%) rename {src => src-tables}/tables/vmtx.h (93%) diff --git a/_vcbuild32.bat b/_vcbuild32.bat index 4c1f5bd4..99d0fc61 100644 --- a/_vcbuild32.bat +++ b/_vcbuild32.bat @@ -1,2 +1,2 @@ @CALL "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" x86 -@msbuild build\vs\otfcc.sln /m /nologo /verbosity:minimal %* +@msbuild build\vs\otfcc.sln /m:%NUMBER_OF_PROCESSORS% /nr:false /nologo /verbosity:minimal %* diff --git a/_vcbuild64.bat b/_vcbuild64.bat index aa880c03..12384551 100644 --- a/_vcbuild64.bat +++ b/_vcbuild64.bat @@ -1,2 +1,2 @@ @CALL "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" amd64 -@msbuild build\vs\otfcc.sln /m /nologo /verbosity:minimal %* +@msbuild build\vs\otfcc.sln /m:%NUMBER_OF_PROCESSORS% /nr:false /nologo /verbosity:minimal %* diff --git a/premake5.lua b/premake5.lua index 7af0c592..47484ed0 100644 --- a/premake5.lua +++ b/premake5.lua @@ -49,16 +49,30 @@ project "extern-msvc" "extern-msvc/**.c" } -project "libotfcc" +project "libotfcc-support" kind "StaticLib" language "C" files { - "src/**.h", - "src/**.c" + "src-support/**.h", + "src-support/**.c" } - removefiles { - "src-cli/**" +project "libotfcc-tables" + kind "StaticLib" + language "C" + links { "libotfcc-support", "externals" } + files { + "src-tables/**.h", + "src-tables/**.c" + } + +project "libotfcc-fontops" + kind "StaticLib" + language "C" + links { "libotfcc-support", "externals" } + files { + "src-fontop/**.h", + "src-fontop/**.c" } project "otfccdump" @@ -66,7 +80,7 @@ project "otfccdump" language "C" targetdir "bin/%{cfg.buildcfg}-%{cfg.platform}" - links { "libotfcc", "externals" } + links { "libotfcc-fontops", "libotfcc-tables", "libotfcc-support", "externals" } filter "action:vs*" links "extern-msvc" filter {} @@ -84,7 +98,7 @@ project "otfccbuild" language "C" targetdir "bin/%{cfg.buildcfg}-%{cfg.platform}" - links { "libotfcc", "externals" } + links { "libotfcc-fontops", "libotfcc-tables", "libotfcc-support", "externals" } filter "action:vs*" links "extern-msvc" filter {} diff --git a/src-cli/otfccbuild.c b/src-cli/otfccbuild.c index 5a3b84f0..87066602 100644 --- a/src-cli/otfccbuild.c +++ b/src-cli/otfccbuild.c @@ -1,6 +1,7 @@ -#include "../src/caryll-font.h" -#include "../src/caryll-sfnt-builder.h" -#include "../src/caryll-sfnt.h" +#include "../src-tables/caryll-font.h" +#include "../src-tables/caryll-sfnt-builder.h" +#include "../src-tables/caryll-sfnt.h" +#include "../src-fontop/fontop.h" #include "platform.h" #include "stopwatch.h" diff --git a/src-cli/otfccdump.c b/src-cli/otfccdump.c index 4d34e87d..8daf4cc8 100644 --- a/src-cli/otfccdump.c +++ b/src-cli/otfccdump.c @@ -1,5 +1,6 @@ -#include "../src/caryll-font.h" -#include "../src/caryll-sfnt.h" +#include "../src-tables/caryll-font.h" +#include "../src-tables/caryll-sfnt.h" +#include "../src-fontop/fontop.h" #include "platform.h" #include "stopwatch.h" diff --git a/src/fontops/consolidate.c b/src-fontop/consolidate.c similarity index 100% rename from src/fontops/consolidate.c rename to src-fontop/consolidate.c diff --git a/src/fontops/consolidate.h b/src-fontop/consolidate.h similarity index 88% rename from src/fontops/consolidate.h rename to src-fontop/consolidate.h index 434ac3ea..30ba1035 100644 --- a/src/fontops/consolidate.h +++ b/src-fontop/consolidate.h @@ -1,6 +1,6 @@ #ifndef CARYLL_FONTOPS_CONSOLIDATE_H #define CARYLL_FONTOPS_CONSOLIDATE_H -#include "../caryll-font.h" +#include "../src-tables/caryll-font.h" #include "otl/gsub-single.h" #include "otl/gsub-multi.h" diff --git a/src-fontop/fontop.h b/src-fontop/fontop.h new file mode 100644 index 00000000..39a1bbae --- /dev/null +++ b/src-fontop/fontop.h @@ -0,0 +1,8 @@ +#ifndef CARYLL_FONTOPS_FONTOP_H +#define CARYLL_FONTOPS_FONTOP_H + +#include "unconsolidate.h" +#include "consolidate.h" +#include "stat.h" + +#endif diff --git a/src/fontops/otl/GDEF.c b/src-fontop/otl/GDEF.c similarity index 100% rename from src/fontops/otl/GDEF.c rename to src-fontop/otl/GDEF.c diff --git a/src/fontops/otl/GDEF.h b/src-fontop/otl/GDEF.h similarity index 81% rename from src/fontops/otl/GDEF.h rename to src-fontop/otl/GDEF.h index 24482681..d3d4671a 100644 --- a/src/fontops/otl/GDEF.h +++ b/src-fontop/otl/GDEF.h @@ -1,6 +1,5 @@ #ifndef CARYLL_FONTOPS_OTL_GDEF_H #define CARYLL_FONTOPS_OTL_GDEF_H -#include "../../caryll-font.h" #include "common.h" void consolidate_GDEF(caryll_font *font, table_GDEF *gdef, char *lookupName); diff --git a/src/fontops/otl/chaining.c b/src-fontop/otl/chaining.c similarity index 100% rename from src/fontops/otl/chaining.c rename to src-fontop/otl/chaining.c diff --git a/src/fontops/otl/chaining.h b/src-fontop/otl/chaining.h similarity index 86% rename from src/fontops/otl/chaining.h rename to src-fontop/otl/chaining.h index fb943066..4a45b0d7 100644 --- a/src/fontops/otl/chaining.h +++ b/src-fontop/otl/chaining.h @@ -1,6 +1,5 @@ #ifndef CARYLL_FONTOPS_OTL_CHAINING_H #define CARYLL_FONTOPS_OTL_CHAINING_H -#include "../../caryll-font.h" #include "common.h" bool consolidate_chaining(caryll_font *font, table_otl *table, otl_subtable *_subtable, diff --git a/src/fontops/otl/common.c b/src-fontop/otl/common.c similarity index 100% rename from src/fontops/otl/common.c rename to src-fontop/otl/common.c diff --git a/src/fontops/otl/common.h b/src-fontop/otl/common.h similarity index 86% rename from src/fontops/otl/common.h rename to src-fontop/otl/common.h index 5fa9b81a..ffd70caa 100644 --- a/src/fontops/otl/common.h +++ b/src-fontop/otl/common.h @@ -1,6 +1,6 @@ #ifndef CARYLL_FONTOPS_OTL_COMMON_H #define CARYLL_FONTOPS_OTL_COMMON_H -#include "../../caryll-font.h" +#include "../../src-tables/caryll-font.h" void consolidate_coverage(caryll_font *font, otl_coverage *coverage, sds lookupName); void shrink_coverage(otl_coverage *coverage, bool dosort); diff --git a/src/fontops/otl/gpos-cursive.c b/src-fontop/otl/gpos-cursive.c similarity index 100% rename from src/fontops/otl/gpos-cursive.c rename to src-fontop/otl/gpos-cursive.c diff --git a/src/fontops/otl/gpos-cursive.h b/src-fontop/otl/gpos-cursive.h similarity index 86% rename from src/fontops/otl/gpos-cursive.h rename to src-fontop/otl/gpos-cursive.h index 1a485b3e..2e8305c4 100644 --- a/src/fontops/otl/gpos-cursive.h +++ b/src-fontop/otl/gpos-cursive.h @@ -1,6 +1,5 @@ #ifndef CARYLL_FONTOPS_OTL_GPOS_CURSIVE_H #define CARYLL_FONTOPS_OTL_GPOS_CURSIVE_H -#include "../../caryll-font.h" #include "common.h" bool consolidate_gpos_cursive(caryll_font *font, table_otl *table, otl_subtable *_subtable, diff --git a/src/fontops/otl/gpos-pair.c b/src-fontop/otl/gpos-pair.c similarity index 100% rename from src/fontops/otl/gpos-pair.c rename to src-fontop/otl/gpos-pair.c diff --git a/src/fontops/otl/gpos-pair.h b/src-fontop/otl/gpos-pair.h similarity index 85% rename from src/fontops/otl/gpos-pair.h rename to src-fontop/otl/gpos-pair.h index 2c7eefcb..1d2cf90f 100644 --- a/src/fontops/otl/gpos-pair.h +++ b/src-fontop/otl/gpos-pair.h @@ -1,6 +1,5 @@ #ifndef CARYLL_FONTOPS_OTL_GPOS_PAIR_H #define CARYLL_FONTOPS_OTL_GPOS_PAIR_H -#include "../../caryll-font.h" #include "common.h" bool consolidate_gpos_pair(caryll_font *font, table_otl *table, otl_subtable *_subtable, diff --git a/src/fontops/otl/gpos-single.c b/src-fontop/otl/gpos-single.c similarity index 100% rename from src/fontops/otl/gpos-single.c rename to src-fontop/otl/gpos-single.c diff --git a/src/fontops/otl/gpos-single.h b/src-fontop/otl/gpos-single.h similarity index 86% rename from src/fontops/otl/gpos-single.h rename to src-fontop/otl/gpos-single.h index cdcbd6b9..d35316ed 100644 --- a/src/fontops/otl/gpos-single.h +++ b/src-fontop/otl/gpos-single.h @@ -1,6 +1,5 @@ #ifndef CARYLL_FONTOPS_OTL_GPOS_SINGLE_H #define CARYLL_FONTOPS_OTL_GPOS_SINGLE_H -#include "../../caryll-font.h" #include "common.h" bool consolidate_gpos_single(caryll_font *font, table_otl *table, otl_subtable *_subtable, diff --git a/src/fontops/otl/gsub-ligature.c b/src-fontop/otl/gsub-ligature.c similarity index 100% rename from src/fontops/otl/gsub-ligature.c rename to src-fontop/otl/gsub-ligature.c diff --git a/src/fontops/otl/gsub-ligature.h b/src-fontop/otl/gsub-ligature.h similarity index 86% rename from src/fontops/otl/gsub-ligature.h rename to src-fontop/otl/gsub-ligature.h index 32395165..5dc90e2d 100644 --- a/src/fontops/otl/gsub-ligature.h +++ b/src-fontop/otl/gsub-ligature.h @@ -1,6 +1,5 @@ #ifndef CARYLL_FONTOPS_OTL_GSUB_LIGATURE_H #define CARYLL_FONTOPS_OTL_GSUB_LIGATURE_H -#include "../../caryll-font.h" #include "common.h" bool consolidate_gsub_ligature(caryll_font *font, table_otl *table, otl_subtable *_subtable, diff --git a/src/fontops/otl/gsub-multi.c b/src-fontop/otl/gsub-multi.c similarity index 100% rename from src/fontops/otl/gsub-multi.c rename to src-fontop/otl/gsub-multi.c diff --git a/src/fontops/otl/gsub-multi.h b/src-fontop/otl/gsub-multi.h similarity index 85% rename from src/fontops/otl/gsub-multi.h rename to src-fontop/otl/gsub-multi.h index fc5fbb2f..f56b0f00 100644 --- a/src/fontops/otl/gsub-multi.h +++ b/src-fontop/otl/gsub-multi.h @@ -1,6 +1,5 @@ #ifndef CARYLL_FONTOPS_OTL_GSUB_MULTI_H #define CARYLL_FONTOPS_OTL_GSUB_MULTI_H -#include "../../caryll-font.h" #include "common.h" bool consolidate_gsub_multi(caryll_font *font, table_otl *table, otl_subtable *_subtable, diff --git a/src/fontops/otl/gsub-reverse.c b/src-fontop/otl/gsub-reverse.c similarity index 100% rename from src/fontops/otl/gsub-reverse.c rename to src-fontop/otl/gsub-reverse.c diff --git a/src/fontops/otl/gsub-reverse.h b/src-fontop/otl/gsub-reverse.h similarity index 86% rename from src/fontops/otl/gsub-reverse.h rename to src-fontop/otl/gsub-reverse.h index 6d6ab0fc..a57c9eee 100644 --- a/src/fontops/otl/gsub-reverse.h +++ b/src-fontop/otl/gsub-reverse.h @@ -1,6 +1,5 @@ #ifndef CARYLL_FONTOPS_OTL_GSUB_REVERSE_H #define CARYLL_FONTOPS_OTL_GSUB_REVERSE_H -#include "../../caryll-font.h" #include "common.h" bool consolidate_gsub_reverse(caryll_font *font, table_otl *table, otl_subtable *_subtable, diff --git a/src/fontops/otl/gsub-single.c b/src-fontop/otl/gsub-single.c similarity index 100% rename from src/fontops/otl/gsub-single.c rename to src-fontop/otl/gsub-single.c diff --git a/src/fontops/otl/gsub-single.h b/src-fontop/otl/gsub-single.h similarity index 86% rename from src/fontops/otl/gsub-single.h rename to src-fontop/otl/gsub-single.h index 1a04dfd5..8606367d 100644 --- a/src/fontops/otl/gsub-single.h +++ b/src-fontop/otl/gsub-single.h @@ -1,6 +1,5 @@ #ifndef CARYLL_FONTOPS_OTL_GSUB_SINGLE_H #define CARYLL_FONTOPS_OTL_GSUB_SINGLE_H -#include "../../caryll-font.h" #include "common.h" bool consolidate_gsub_single(caryll_font *font, table_otl *table, otl_subtable *_subtable, diff --git a/src/fontops/otl/mark.c b/src-fontop/otl/mark.c similarity index 100% rename from src/fontops/otl/mark.c rename to src-fontop/otl/mark.c diff --git a/src/fontops/otl/mark.h b/src-fontop/otl/mark.h similarity index 90% rename from src/fontops/otl/mark.h rename to src-fontop/otl/mark.h index feac6329..e3e3ba7c 100644 --- a/src/fontops/otl/mark.h +++ b/src-fontop/otl/mark.h @@ -1,6 +1,5 @@ #ifndef CARYLL_FONTOPS_OTL_MARK_H #define CARYLL_FONTOPS_OTL_MARK_H -#include "../../caryll-font.h" #include "common.h" bool consolidate_mark_to_single(caryll_font *font, table_otl *table, otl_subtable *_subtable, diff --git a/src/fontops/stat.c b/src-fontop/stat.c similarity index 100% rename from src/fontops/stat.c rename to src-fontop/stat.c diff --git a/src/fontops/stat.h b/src-fontop/stat.h similarity index 75% rename from src/fontops/stat.h rename to src-fontop/stat.h index da5cf57b..deb42997 100644 --- a/src/fontops/stat.h +++ b/src-fontop/stat.h @@ -1,6 +1,6 @@ #ifndef CARYLL_FONTOPS_STAT_H #define CARYLL_FONTOPS_STAT_H -#include "../caryll-font.h" +#include "../src-tables/caryll-font.h" void caryll_font_stat(caryll_font *font, caryll_dump_options *dumpopts); diff --git a/src/fontops/unconsolidate.c b/src-fontop/unconsolidate.c similarity index 96% rename from src/fontops/unconsolidate.c rename to src-fontop/unconsolidate.c index 6fac842f..33e64b40 100644 --- a/src/fontops/unconsolidate.c +++ b/src-fontop/unconsolidate.c @@ -1,5 +1,5 @@ #include "unconsolidate.h" -#include "../support/aglfn.h" +#include "../src-support/aglfn.h" // Unconsolidation: Remove redundent data and de-couple internal data // It does these things: // 1. Merge hmtx data into glyf diff --git a/src/fontops/unconsolidate.h b/src-fontop/unconsolidate.h similarity index 75% rename from src/fontops/unconsolidate.h rename to src-fontop/unconsolidate.h index c033a6cc..314b273b 100644 --- a/src/fontops/unconsolidate.h +++ b/src-fontop/unconsolidate.h @@ -1,7 +1,6 @@ #ifndef CARYLL_FONTOPS_UNCONSOLIDATE_H #define CARYLL_FONTOPS_UNCONSOLIDATE_H - -#include "../caryll-font.h" +#include "../src-tables/caryll-font.h" void caryll_font_unconsolidate(caryll_font *font); diff --git a/src/support/aglfn.c b/src-support/aglfn.c similarity index 100% rename from src/support/aglfn.c rename to src-support/aglfn.c diff --git a/src/support/aglfn.h b/src-support/aglfn.h similarity index 100% rename from src/support/aglfn.h rename to src-support/aglfn.h diff --git a/src/support/base64.c b/src-support/base64.c similarity index 100% rename from src/support/base64.c rename to src-support/base64.c diff --git a/src/support/base64.h b/src-support/base64.h similarity index 100% rename from src/support/base64.h rename to src-support/base64.h diff --git a/src/support/buffer.c b/src-support/buffer.c similarity index 100% rename from src/support/buffer.c rename to src-support/buffer.c diff --git a/src/support/buffer.h b/src-support/buffer.h similarity index 95% rename from src/support/buffer.h rename to src-support/buffer.h index e41293ef..02329c0a 100644 --- a/src/support/buffer.h +++ b/src-support/buffer.h @@ -4,7 +4,7 @@ #include #include #include -#include "../../extern/sds.h" +#include "../extern/sds.h" typedef struct { size_t cursor; sds s; diff --git a/src/support/glyphorder.c b/src-support/glyphorder.c similarity index 100% rename from src/support/glyphorder.c rename to src-support/glyphorder.c diff --git a/src/support/glyphorder.h b/src-support/glyphorder.h similarity index 100% rename from src/support/glyphorder.h rename to src-support/glyphorder.h diff --git a/src/support/unicodeconv.c b/src-support/unicodeconv.c similarity index 100% rename from src/support/unicodeconv.c rename to src-support/unicodeconv.c diff --git a/src/support/unicodeconv.h b/src-support/unicodeconv.h similarity index 88% rename from src/support/unicodeconv.h rename to src-support/unicodeconv.h index d2d938d0..6235ba74 100644 --- a/src/support/unicodeconv.h +++ b/src-support/unicodeconv.h @@ -4,7 +4,7 @@ #include #include #include -#include "../../extern/sds.h" +#include "../extern/sds.h" sds utf16le_to_utf8(const uint8_t *inb, int inlenb); sds utf16be_to_utf8(const uint8_t *inb, int inlenb); uint8_t *utf8toutf16be(sds _in, size_t *out_bytes); diff --git a/src/support/util.h b/src-support/util.h similarity index 95% rename from src/support/util.h rename to src-support/util.h index 055e53d5..66e6ee39 100644 --- a/src/support/util.h +++ b/src-support/util.h @@ -11,10 +11,10 @@ #include #include #include -#include "../../extern/sds.h" -#include "../../extern/uthash.h" -#include "../../extern/json.h" -#include "../../extern/json-builder.h" +#include "../extern/sds.h" +#include "../extern/uthash.h" +#include "../extern/json.h" +#include "../extern/json-builder.h" #include "buffer.h" #include "base64.h" diff --git a/src/caryll-font.c b/src-tables/caryll-font.c similarity index 100% rename from src/caryll-font.c rename to src-tables/caryll-font.c diff --git a/src/caryll-font.h b/src-tables/caryll-font.h similarity index 90% rename from src/caryll-font.h rename to src-tables/caryll-font.h index 7c934007..060039c6 100644 --- a/src/caryll-font.h +++ b/src-tables/caryll-font.h @@ -1,12 +1,12 @@ #ifndef CARYLL_FONT_H #define CARYLL_FONT_H #include "caryll-sfnt.h" -#include "support/util.h" +#include "../src-support/util.h" struct _caryll_font; typedef struct _caryll_font caryll_font; -#include "./support/glyphorder.h" +#include "../src-support/glyphorder.h" #include "./tables/head.h" #include "./tables/hhea.h" @@ -64,8 +64,4 @@ json_value *caryll_font_to_json(caryll_font *font, caryll_dump_options *dumpopts caryll_font *caryll_font_from_json(json_value *root, caryll_dump_options *dumpopts); caryll_buffer *caryll_write_font(caryll_font *font, caryll_dump_options *dumpopts); -#include "fontops/unconsolidate.h" -#include "fontops/consolidate.h" -#include "fontops/stat.h" - #endif diff --git a/src/caryll-sfnt-builder.c b/src-tables/caryll-sfnt-builder.c similarity index 100% rename from src/caryll-sfnt-builder.c rename to src-tables/caryll-sfnt-builder.c diff --git a/src/caryll-sfnt-builder.h b/src-tables/caryll-sfnt-builder.h similarity index 90% rename from src/caryll-sfnt-builder.h rename to src-tables/caryll-sfnt-builder.h index 2be6a967..1fc85bbc 100644 --- a/src/caryll-sfnt-builder.h +++ b/src-tables/caryll-sfnt-builder.h @@ -1,7 +1,7 @@ #ifndef CARYLL_SFNT_BUILDER_H #define CARYLL_SFNT_BUILDER_H -#include "support/util.h" +#include "../src-support/util.h" typedef struct { int tag; diff --git a/src/caryll-sfnt.c b/src-tables/caryll-sfnt.c similarity index 98% rename from src/caryll-sfnt.c rename to src-tables/caryll-sfnt.c index 4cc29bd3..29251920 100644 --- a/src/caryll-sfnt.c +++ b/src-tables/caryll-sfnt.c @@ -1,4 +1,4 @@ -#include "support/util.h" +#include "../src-support/util.h" #include "caryll-sfnt.h" static void caryll_read_packets(caryll_sfnt *font, FILE *file) { diff --git a/src/caryll-sfnt.h b/src-tables/caryll-sfnt.h similarity index 100% rename from src/caryll-sfnt.h rename to src-tables/caryll-sfnt.h diff --git a/src/tables/LTSH.c b/src-tables/tables/LTSH.c similarity index 100% rename from src/tables/LTSH.c rename to src-tables/tables/LTSH.c diff --git a/src/tables/LTSH.h b/src-tables/tables/LTSH.h similarity index 86% rename from src/tables/LTSH.h rename to src-tables/tables/LTSH.h index 94573f2f..59f5fe90 100644 --- a/src/tables/LTSH.h +++ b/src-tables/tables/LTSH.h @@ -1,7 +1,7 @@ #ifndef CARYLL_TABLES_LTSH_H #define CARYLL_TABLES_LTSH_H -#include "../support/util.h" +#include "../../src-support/util.h" #include "../caryll-sfnt.h" typedef struct { diff --git a/src/tables/OS_2.c b/src-tables/tables/OS_2.c similarity index 100% rename from src/tables/OS_2.c rename to src-tables/tables/OS_2.c diff --git a/src/tables/OS_2.h b/src-tables/tables/OS_2.h similarity index 94% rename from src/tables/OS_2.h rename to src-tables/tables/OS_2.h index caf861c1..ae641bd6 100644 --- a/src/tables/OS_2.h +++ b/src-tables/tables/OS_2.h @@ -1,7 +1,7 @@ #ifndef CARYLL_TABLES_OS_2_H #define CARYLL_TABLES_OS_2_H -#include "../support/util.h" +#include "../../src-support/util.h" #include "../caryll-sfnt.h" typedef struct { diff --git a/src/tables/PCLT.c b/src-tables/tables/PCLT.c similarity index 100% rename from src/tables/PCLT.c rename to src-tables/tables/PCLT.c diff --git a/src/tables/PCLT.h b/src-tables/tables/PCLT.h similarity index 93% rename from src/tables/PCLT.h rename to src-tables/tables/PCLT.h index 4f7234ef..796ecd0e 100644 --- a/src/tables/PCLT.h +++ b/src-tables/tables/PCLT.h @@ -1,7 +1,7 @@ #ifndef CARYLL_TABLES_PCLT_H #define CARYLL_TABLES_PCLT_H -#include "../support/util.h" +#include "../../src-support/util.h" #include "../caryll-sfnt.h" typedef struct { diff --git a/src/tables/cmap.c b/src-tables/tables/cmap.c similarity index 100% rename from src/tables/cmap.c rename to src-tables/tables/cmap.c diff --git a/src/tables/cmap.h b/src-tables/tables/cmap.h similarity index 91% rename from src/tables/cmap.h rename to src-tables/tables/cmap.h index 984f4b29..30da35ac 100644 --- a/src/tables/cmap.h +++ b/src-tables/tables/cmap.h @@ -1,7 +1,7 @@ #ifndef CARYLL_TABLES_CMAP_H #define CARYLL_TABLES_CMAP_H -#include "../support/util.h" +#include "../../src-support/util.h" #include "../caryll-sfnt.h" // We will support format 0, 4, 12 of CMAP only diff --git a/src/tables/fpgm-prep.c b/src-tables/tables/fpgm-prep.c similarity index 100% rename from src/tables/fpgm-prep.c rename to src-tables/tables/fpgm-prep.c diff --git a/src/tables/fpgm-prep.h b/src-tables/tables/fpgm-prep.h similarity index 86% rename from src/tables/fpgm-prep.h rename to src-tables/tables/fpgm-prep.h index d98d3a0f..7273810e 100644 --- a/src/tables/fpgm-prep.h +++ b/src-tables/tables/fpgm-prep.h @@ -1,9 +1,9 @@ #ifndef CARYLL_TABLES_FPGM_PREP_H #define CARYLL_TABLES_FPGM_PREP_H -#include "../support/util.h" +#include "../../src-support/util.h" #include "../caryll-sfnt.h" -#include "../support/glyphorder.h" +#include "../../src-support/glyphorder.h" typedef struct { uint32_t length; diff --git a/src/tables/gasp.c b/src-tables/tables/gasp.c similarity index 100% rename from src/tables/gasp.c rename to src-tables/tables/gasp.c diff --git a/src/tables/gasp.h b/src-tables/tables/gasp.h similarity index 91% rename from src/tables/gasp.h rename to src-tables/tables/gasp.h index 7c3dd840..b196041b 100644 --- a/src/tables/gasp.h +++ b/src-tables/tables/gasp.h @@ -1,7 +1,7 @@ #ifndef CARYLL_TABLES_GASP_H #define CARYLL_TABLES_GASP_H -#include "../support/util.h" +#include "../../src-support/util.h" #include "../caryll-sfnt.h" typedef struct { diff --git a/src/tables/glyf.c b/src-tables/tables/glyf.c similarity index 100% rename from src/tables/glyf.c rename to src-tables/tables/glyf.c diff --git a/src/tables/glyf.h b/src-tables/tables/glyf.h similarity index 93% rename from src/tables/glyf.h rename to src-tables/tables/glyf.h index fb37183f..3f0984f7 100644 --- a/src/tables/glyf.h +++ b/src-tables/tables/glyf.h @@ -1,9 +1,9 @@ #ifndef CARYLL_TABLES_GLYF_H #define CARYLL_TABLES_GLYF_H -#include "../support/util.h" +#include "../../src-support/util.h" #include "../caryll-sfnt.h" -#include "../support/glyphorder.h" +#include "../../src-support/glyphorder.h" #include "head.h" #include "maxp.h" diff --git a/src/tables/hdmx.c b/src-tables/tables/hdmx.c similarity index 100% rename from src/tables/hdmx.c rename to src-tables/tables/hdmx.c diff --git a/src/tables/hdmx.h b/src-tables/tables/hdmx.h similarity index 92% rename from src/tables/hdmx.h rename to src-tables/tables/hdmx.h index 7bf12e9e..f59924ae 100644 --- a/src/tables/hdmx.h +++ b/src-tables/tables/hdmx.h @@ -1,7 +1,7 @@ #ifndef CARYLL_TABLES_HDMX_H #define CARYLL_TABLES_HDMX_H -#include "../support/util.h" +#include "../../src-support/util.h" #include "../caryll-sfnt.h" #include "maxp.h" diff --git a/src/tables/head.c b/src-tables/tables/head.c similarity index 100% rename from src/tables/head.c rename to src-tables/tables/head.c diff --git a/src/tables/head.h b/src-tables/tables/head.h similarity index 95% rename from src/tables/head.h rename to src-tables/tables/head.h index b3c0c047..37aca90e 100644 --- a/src/tables/head.h +++ b/src-tables/tables/head.h @@ -1,7 +1,7 @@ #ifndef CARYLL_TABLES_HEAD_H #define CARYLL_TABLES_HEAD_H -#include "../support/util.h" +#include "../../src-support/util.h" #include "../caryll-sfnt.h" typedef struct { diff --git a/src/tables/hhea.c b/src-tables/tables/hhea.c similarity index 100% rename from src/tables/hhea.c rename to src-tables/tables/hhea.c diff --git a/src/tables/hhea.h b/src-tables/tables/hhea.h similarity index 95% rename from src/tables/hhea.h rename to src-tables/tables/hhea.h index aa3c2c21..29ad7cad 100644 --- a/src/tables/hhea.h +++ b/src-tables/tables/hhea.h @@ -1,7 +1,7 @@ #ifndef CARYLL_TABLES_HHEA_H #define CARYLL_TABLES_HHEA_H -#include "../support/util.h" +#include "../../src-support/util.h" #include "../caryll-sfnt.h" typedef struct { diff --git a/src/tables/hmtx.c b/src-tables/tables/hmtx.c similarity index 100% rename from src/tables/hmtx.c rename to src-tables/tables/hmtx.c diff --git a/src/tables/hmtx.h b/src-tables/tables/hmtx.h similarity index 93% rename from src/tables/hmtx.h rename to src-tables/tables/hmtx.h index 611c7a60..6434c5cf 100644 --- a/src/tables/hmtx.h +++ b/src-tables/tables/hmtx.h @@ -1,7 +1,7 @@ #ifndef CARYLL_TABLES_HMTX_H #define CARYLL_TABLES_HMTX_H -#include "../support/util.h" +#include "../../src-support/util.h" #include "../caryll-sfnt.h" #include "hhea.h" diff --git a/src/tables/maxp.c b/src-tables/tables/maxp.c similarity index 100% rename from src/tables/maxp.c rename to src-tables/tables/maxp.c diff --git a/src/tables/maxp.h b/src-tables/tables/maxp.h similarity index 95% rename from src/tables/maxp.h rename to src-tables/tables/maxp.h index c7c12690..53b829ee 100644 --- a/src/tables/maxp.h +++ b/src-tables/tables/maxp.h @@ -1,7 +1,7 @@ #ifndef CARYLL_TABLES_MAXP_H #define CARYLL_TABLES_MAXP_H -#include "../support/util.h" +#include "../../src-support/util.h" #include "../caryll-sfnt.h" typedef struct { diff --git a/src/tables/name.c b/src-tables/tables/name.c similarity index 96% rename from src/tables/name.c rename to src-tables/tables/name.c index d1a3e789..3196e6d4 100644 --- a/src/tables/name.c +++ b/src-tables/tables/name.c @@ -1,5 +1,5 @@ #include "name.h" -#include "../support/unicodeconv.h" +#include "../../src-support/unicodeconv.h" table_name *caryll_read_name(caryll_packet packet) { FOR_TABLE('name', table) { diff --git a/src/tables/name.h b/src-tables/tables/name.h similarity index 91% rename from src/tables/name.h rename to src-tables/tables/name.h index 1f57ee76..5ef24c58 100644 --- a/src/tables/name.h +++ b/src-tables/tables/name.h @@ -1,7 +1,7 @@ #ifndef CARYLL_TABLES_NAME_H #define CARYLL_TABLES_NAME_H -#include "../support/util.h" +#include "../../src-support/util.h" #include "../caryll-sfnt.h" typedef struct { diff --git a/src/tables/otl/GDEF.c b/src-tables/tables/otl/GDEF.c similarity index 100% rename from src/tables/otl/GDEF.c rename to src-tables/tables/otl/GDEF.c diff --git a/src/tables/otl/GDEF.h b/src-tables/tables/otl/GDEF.h similarity index 100% rename from src/tables/otl/GDEF.h rename to src-tables/tables/otl/GDEF.h diff --git a/src/tables/otl/chaining.c b/src-tables/tables/otl/chaining.c similarity index 100% rename from src/tables/otl/chaining.c rename to src-tables/tables/otl/chaining.c diff --git a/src/tables/otl/chaining.h b/src-tables/tables/otl/chaining.h similarity index 100% rename from src/tables/otl/chaining.h rename to src-tables/tables/otl/chaining.h diff --git a/src/tables/otl/classdef.c b/src-tables/tables/otl/classdef.c similarity index 100% rename from src/tables/otl/classdef.c rename to src-tables/tables/otl/classdef.c diff --git a/src/tables/otl/classdef.h b/src-tables/tables/otl/classdef.h similarity index 91% rename from src/tables/otl/classdef.h rename to src-tables/tables/otl/classdef.h index 671bc3b6..97216f42 100644 --- a/src/tables/otl/classdef.h +++ b/src-tables/tables/otl/classdef.h @@ -1,6 +1,6 @@ #ifndef CARYLL_TABLES_OTL_CLASSDEF_H #define CARYLL_TABLES_OTL_CLASSDEF_H -#include "../../support/util.h" +#include "../../../src-support/util.h" #include "../../caryll-sfnt.h" #include "coverage.h" diff --git a/src/tables/otl/coverage.c b/src-tables/tables/otl/coverage.c similarity index 100% rename from src/tables/otl/coverage.c rename to src-tables/tables/otl/coverage.c diff --git a/src/tables/otl/coverage.h b/src-tables/tables/otl/coverage.h similarity index 90% rename from src/tables/otl/coverage.h rename to src-tables/tables/otl/coverage.h index d1a00129..d520a1cc 100644 --- a/src/tables/otl/coverage.h +++ b/src-tables/tables/otl/coverage.h @@ -1,6 +1,6 @@ #ifndef CARYLL_TABLES_OTL_COVERAGE_H #define CARYLL_TABLES_OTL_COVERAGE_H -#include "../../support/util.h" +#include "../../../src-support/util.h" #include "../../caryll-sfnt.h" typedef struct { diff --git a/src/tables/otl/extend.c b/src-tables/tables/otl/extend.c similarity index 100% rename from src/tables/otl/extend.c rename to src-tables/tables/otl/extend.c diff --git a/src/tables/otl/extend.h b/src-tables/tables/otl/extend.h similarity index 100% rename from src/tables/otl/extend.h rename to src-tables/tables/otl/extend.h diff --git a/src/tables/otl/gpos-common.c b/src-tables/tables/otl/gpos-common.c similarity index 100% rename from src/tables/otl/gpos-common.c rename to src-tables/tables/otl/gpos-common.c diff --git a/src/tables/otl/gpos-common.h b/src-tables/tables/otl/gpos-common.h similarity index 100% rename from src/tables/otl/gpos-common.h rename to src-tables/tables/otl/gpos-common.h diff --git a/src/tables/otl/gpos-cursive.c b/src-tables/tables/otl/gpos-cursive.c similarity index 100% rename from src/tables/otl/gpos-cursive.c rename to src-tables/tables/otl/gpos-cursive.c diff --git a/src/tables/otl/gpos-cursive.h b/src-tables/tables/otl/gpos-cursive.h similarity index 100% rename from src/tables/otl/gpos-cursive.h rename to src-tables/tables/otl/gpos-cursive.h diff --git a/src/tables/otl/gpos-mark-to-ligature.c b/src-tables/tables/otl/gpos-mark-to-ligature.c similarity index 100% rename from src/tables/otl/gpos-mark-to-ligature.c rename to src-tables/tables/otl/gpos-mark-to-ligature.c diff --git a/src/tables/otl/gpos-mark-to-ligature.h b/src-tables/tables/otl/gpos-mark-to-ligature.h similarity index 100% rename from src/tables/otl/gpos-mark-to-ligature.h rename to src-tables/tables/otl/gpos-mark-to-ligature.h diff --git a/src/tables/otl/gpos-mark-to-single.c b/src-tables/tables/otl/gpos-mark-to-single.c similarity index 100% rename from src/tables/otl/gpos-mark-to-single.c rename to src-tables/tables/otl/gpos-mark-to-single.c diff --git a/src/tables/otl/gpos-mark-to-single.h b/src-tables/tables/otl/gpos-mark-to-single.h similarity index 100% rename from src/tables/otl/gpos-mark-to-single.h rename to src-tables/tables/otl/gpos-mark-to-single.h diff --git a/src/tables/otl/gpos-pair.c b/src-tables/tables/otl/gpos-pair.c similarity index 100% rename from src/tables/otl/gpos-pair.c rename to src-tables/tables/otl/gpos-pair.c diff --git a/src/tables/otl/gpos-pair.h b/src-tables/tables/otl/gpos-pair.h similarity index 100% rename from src/tables/otl/gpos-pair.h rename to src-tables/tables/otl/gpos-pair.h diff --git a/src/tables/otl/gpos-single.c b/src-tables/tables/otl/gpos-single.c similarity index 100% rename from src/tables/otl/gpos-single.c rename to src-tables/tables/otl/gpos-single.c diff --git a/src/tables/otl/gpos-single.h b/src-tables/tables/otl/gpos-single.h similarity index 100% rename from src/tables/otl/gpos-single.h rename to src-tables/tables/otl/gpos-single.h diff --git a/src/tables/otl/gsub-ligature.c b/src-tables/tables/otl/gsub-ligature.c similarity index 100% rename from src/tables/otl/gsub-ligature.c rename to src-tables/tables/otl/gsub-ligature.c diff --git a/src/tables/otl/gsub-ligature.h b/src-tables/tables/otl/gsub-ligature.h similarity index 100% rename from src/tables/otl/gsub-ligature.h rename to src-tables/tables/otl/gsub-ligature.h diff --git a/src/tables/otl/gsub-multi.c b/src-tables/tables/otl/gsub-multi.c similarity index 100% rename from src/tables/otl/gsub-multi.c rename to src-tables/tables/otl/gsub-multi.c diff --git a/src/tables/otl/gsub-multi.h b/src-tables/tables/otl/gsub-multi.h similarity index 100% rename from src/tables/otl/gsub-multi.h rename to src-tables/tables/otl/gsub-multi.h diff --git a/src/tables/otl/gsub-reverse.c b/src-tables/tables/otl/gsub-reverse.c similarity index 100% rename from src/tables/otl/gsub-reverse.c rename to src-tables/tables/otl/gsub-reverse.c diff --git a/src/tables/otl/gsub-reverse.h b/src-tables/tables/otl/gsub-reverse.h similarity index 100% rename from src/tables/otl/gsub-reverse.h rename to src-tables/tables/otl/gsub-reverse.h diff --git a/src/tables/otl/gsub-single.c b/src-tables/tables/otl/gsub-single.c similarity index 100% rename from src/tables/otl/gsub-single.c rename to src-tables/tables/otl/gsub-single.c diff --git a/src/tables/otl/gsub-single.h b/src-tables/tables/otl/gsub-single.h similarity index 100% rename from src/tables/otl/gsub-single.h rename to src-tables/tables/otl/gsub-single.h diff --git a/src/tables/otl/otl.c b/src-tables/tables/otl/otl.c similarity index 100% rename from src/tables/otl/otl.c rename to src-tables/tables/otl/otl.c diff --git a/src/tables/otl/otl.h b/src-tables/tables/otl/otl.h similarity index 95% rename from src/tables/otl/otl.h rename to src-tables/tables/otl/otl.h index 466bb331..55aa0431 100644 --- a/src/tables/otl/otl.h +++ b/src-tables/tables/otl/otl.h @@ -1,6 +1,6 @@ #ifndef CARYLL_TABLES_OTL_H #define CARYLL_TABLES_OTL_H -#include "../../support/util.h" +#include "../../../src-support/util.h" #include "../../caryll-sfnt.h" typedef enum { diff --git a/src/tables/post.c b/src-tables/tables/post.c similarity index 100% rename from src/tables/post.c rename to src-tables/tables/post.c diff --git a/src/tables/post.h b/src-tables/tables/post.h similarity index 91% rename from src/tables/post.h rename to src-tables/tables/post.h index 612ac7a4..034b8201 100644 --- a/src/tables/post.h +++ b/src-tables/tables/post.h @@ -1,10 +1,10 @@ #ifndef CARYLL_TABLES_POST_H #define CARYLL_TABLES_POST_H -#include "../support/util.h" +#include "../../src-support/util.h" #include "../caryll-sfnt.h" -#include "../support/glyphorder.h" +#include "../../src-support/glyphorder.h" typedef struct { // PostScript information diff --git a/src/tables/vhea.c b/src-tables/tables/vhea.c similarity index 100% rename from src/tables/vhea.c rename to src-tables/tables/vhea.c diff --git a/src/tables/vhea.h b/src-tables/tables/vhea.h similarity index 95% rename from src/tables/vhea.h rename to src-tables/tables/vhea.h index 5501d097..c776530c 100644 --- a/src/tables/vhea.h +++ b/src-tables/tables/vhea.h @@ -1,7 +1,7 @@ #ifndef CARYLL_TABLES_VHEA_H #define CARYLL_TABLES_VHEA_H -#include "../support/util.h" +#include "../../src-support/util.h" #include "../caryll-sfnt.h" typedef struct { diff --git a/src/tables/vmtx.c b/src-tables/tables/vmtx.c similarity index 100% rename from src/tables/vmtx.c rename to src-tables/tables/vmtx.c diff --git a/src/tables/vmtx.h b/src-tables/tables/vmtx.h similarity index 93% rename from src/tables/vmtx.h rename to src-tables/tables/vmtx.h index a93b65d2..2819d6b1 100644 --- a/src/tables/vmtx.h +++ b/src-tables/tables/vmtx.h @@ -1,7 +1,7 @@ #ifndef CARYLL_TABLES_VMTX_H #define CARYLL_TABLES_VMTX_H -#include "../support/util.h" +#include "../../src-support/util.h" #include "../caryll-sfnt.h" #include "vhea.h" From 114010a6d9b2d86930cadaa1aa8b1e157bb0a1d7 Mon Sep 17 00:00:00 2001 From: be5invis Date: Sat, 16 Apr 2016 03:07:45 +0800 Subject: [PATCH 31/32] better org referencing aptex --- {extern => dep/extern}/json-builder.c | 0 {extern => dep/extern}/json-builder.h | 0 {extern => dep/extern}/json.c | 0 {extern => dep/extern}/json.h | 0 {extern => dep/extern}/sds.c | 0 {extern => dep/extern}/sds.h | 0 {extern => dep/extern}/sdsalloc.h | 0 {extern => dep/extern}/uthash.h | 0 premake5.lua | 43 +++++++++++-------- {src-cli => src/cli}/otfccbuild.c | 8 ++-- {src-cli => src/cli}/otfccdump.c | 6 +-- {src-cli => src/cli}/platform.h | 0 {src-cli => src/cli}/stopwatch.c | 0 {src-cli => src/cli}/stopwatch.h | 0 {src-tables => src/font}/caryll-font.c | 0 {src-tables => src/font}/caryll-font.h | 40 ++++++++--------- .../font}/caryll-sfnt-builder.c | 0 .../font}/caryll-sfnt-builder.h | 2 +- {src-tables => src/font}/caryll-sfnt.c | 2 +- {src-tables => src/font}/caryll-sfnt.h | 0 {src-fontop => src/fontops}/consolidate.c | 0 {src-fontop => src/fontops}/consolidate.h | 2 +- {src-fontop => src/fontops}/fontop.h | 0 {src-fontop => src/fontops}/otl/GDEF.c | 0 {src-fontop => src/fontops}/otl/GDEF.h | 0 {src-fontop => src/fontops}/otl/chaining.c | 0 {src-fontop => src/fontops}/otl/chaining.h | 0 {src-fontop => src/fontops}/otl/common.c | 0 {src-fontop => src/fontops}/otl/common.h | 2 +- .../fontops}/otl/gpos-cursive.c | 0 .../fontops}/otl/gpos-cursive.h | 0 {src-fontop => src/fontops}/otl/gpos-pair.c | 0 {src-fontop => src/fontops}/otl/gpos-pair.h | 0 {src-fontop => src/fontops}/otl/gpos-single.c | 0 {src-fontop => src/fontops}/otl/gpos-single.h | 0 .../fontops}/otl/gsub-ligature.c | 0 .../fontops}/otl/gsub-ligature.h | 0 {src-fontop => src/fontops}/otl/gsub-multi.c | 0 {src-fontop => src/fontops}/otl/gsub-multi.h | 0 .../fontops}/otl/gsub-reverse.c | 0 .../fontops}/otl/gsub-reverse.h | 0 {src-fontop => src/fontops}/otl/gsub-single.c | 0 {src-fontop => src/fontops}/otl/gsub-single.h | 0 {src-fontop => src/fontops}/otl/mark.c | 0 {src-fontop => src/fontops}/otl/mark.h | 0 {src-fontop => src/fontops}/stat.c | 0 {src-fontop => src/fontops}/stat.h | 2 +- {src-fontop => src/fontops}/unconsolidate.c | 2 +- {src-fontop => src/fontops}/unconsolidate.h | 2 +- {src-support => src/support}/aglfn.c | 0 {src-support => src/support}/aglfn.h | 0 {src-support => src/support}/base64.c | 0 {src-support => src/support}/base64.h | 0 {src-support => src/support}/buffer.c | 0 {src-support => src/support}/buffer.h | 2 +- {src-support => src/support}/glyphorder.c | 0 {src-support => src/support}/glyphorder.h | 0 {src-support => src/support}/unicodeconv.c | 0 {src-support => src/support}/unicodeconv.h | 2 +- {src-support => src/support}/util.h | 8 ++-- {src-tables => src}/tables/LTSH.c | 0 {src-tables => src}/tables/LTSH.h | 4 +- {src-tables => src}/tables/OS_2.c | 0 {src-tables => src}/tables/OS_2.h | 4 +- {src-tables => src}/tables/PCLT.c | 0 {src-tables => src}/tables/PCLT.h | 4 +- {src-tables => src}/tables/cmap.c | 0 {src-tables => src}/tables/cmap.h | 4 +- {src-tables => src}/tables/fpgm-prep.c | 0 {src-tables => src}/tables/fpgm-prep.h | 6 +-- {src-tables => src}/tables/gasp.c | 0 {src-tables => src}/tables/gasp.h | 4 +- {src-tables => src}/tables/glyf.c | 0 {src-tables => src}/tables/glyf.h | 6 +-- {src-tables => src}/tables/hdmx.c | 0 {src-tables => src}/tables/hdmx.h | 4 +- {src-tables => src}/tables/head.c | 0 {src-tables => src}/tables/head.h | 4 +- {src-tables => src}/tables/hhea.c | 0 {src-tables => src}/tables/hhea.h | 4 +- {src-tables => src}/tables/hmtx.c | 0 {src-tables => src}/tables/hmtx.h | 4 +- {src-tables => src}/tables/maxp.c | 0 {src-tables => src}/tables/maxp.h | 4 +- {src-tables => src}/tables/name.c | 2 +- {src-tables => src}/tables/name.h | 4 +- {src-tables => src}/tables/otl/GDEF.c | 0 {src-tables => src}/tables/otl/GDEF.h | 0 {src-tables => src}/tables/otl/chaining.c | 0 {src-tables => src}/tables/otl/chaining.h | 0 {src-tables => src}/tables/otl/classdef.c | 0 {src-tables => src}/tables/otl/classdef.h | 4 +- {src-tables => src}/tables/otl/coverage.c | 0 {src-tables => src}/tables/otl/coverage.h | 4 +- {src-tables => src}/tables/otl/extend.c | 0 {src-tables => src}/tables/otl/extend.h | 0 {src-tables => src}/tables/otl/gpos-common.c | 0 {src-tables => src}/tables/otl/gpos-common.h | 0 {src-tables => src}/tables/otl/gpos-cursive.c | 0 {src-tables => src}/tables/otl/gpos-cursive.h | 0 .../tables/otl/gpos-mark-to-ligature.c | 0 .../tables/otl/gpos-mark-to-ligature.h | 0 .../tables/otl/gpos-mark-to-single.c | 0 .../tables/otl/gpos-mark-to-single.h | 0 {src-tables => src}/tables/otl/gpos-pair.c | 0 {src-tables => src}/tables/otl/gpos-pair.h | 0 {src-tables => src}/tables/otl/gpos-single.c | 0 {src-tables => src}/tables/otl/gpos-single.h | 0 .../tables/otl/gsub-ligature.c | 0 .../tables/otl/gsub-ligature.h | 0 {src-tables => src}/tables/otl/gsub-multi.c | 0 {src-tables => src}/tables/otl/gsub-multi.h | 0 {src-tables => src}/tables/otl/gsub-reverse.c | 0 {src-tables => src}/tables/otl/gsub-reverse.h | 0 {src-tables => src}/tables/otl/gsub-single.c | 0 {src-tables => src}/tables/otl/gsub-single.h | 0 {src-tables => src}/tables/otl/otl.c | 0 {src-tables => src}/tables/otl/otl.h | 4 +- {src-tables => src}/tables/post.c | 0 {src-tables => src}/tables/post.h | 6 +-- {src-tables => src}/tables/vhea.c | 0 {src-tables => src}/tables/vhea.h | 4 +- {src-tables => src}/tables/vmtx.c | 0 {src-tables => src}/tables/vmtx.h | 4 +- 124 files changed, 107 insertions(+), 100 deletions(-) rename {extern => dep/extern}/json-builder.c (100%) rename {extern => dep/extern}/json-builder.h (100%) rename {extern => dep/extern}/json.c (100%) rename {extern => dep/extern}/json.h (100%) rename {extern => dep/extern}/sds.c (100%) rename {extern => dep/extern}/sds.h (100%) rename {extern => dep/extern}/sdsalloc.h (100%) rename {extern => dep/extern}/uthash.h (100%) rename {src-cli => src/cli}/otfccbuild.c (94%) rename {src-cli => src/cli}/otfccdump.c (95%) rename {src-cli => src/cli}/platform.h (100%) rename {src-cli => src/cli}/stopwatch.c (100%) rename {src-cli => src/cli}/stopwatch.h (100%) rename {src-tables => src/font}/caryll-font.c (100%) rename {src-tables => src/font}/caryll-font.h (63%) rename {src-tables => src/font}/caryll-sfnt-builder.c (100%) rename {src-tables => src/font}/caryll-sfnt-builder.h (90%) rename {src-tables => src/font}/caryll-sfnt.c (98%) rename {src-tables => src/font}/caryll-sfnt.h (100%) rename {src-fontop => src/fontops}/consolidate.c (100%) rename {src-fontop => src/fontops}/consolidate.h (88%) rename {src-fontop => src/fontops}/fontop.h (100%) rename {src-fontop => src/fontops}/otl/GDEF.c (100%) rename {src-fontop => src/fontops}/otl/GDEF.h (100%) rename {src-fontop => src/fontops}/otl/chaining.c (100%) rename {src-fontop => src/fontops}/otl/chaining.h (100%) rename {src-fontop => src/fontops}/otl/common.c (100%) rename {src-fontop => src/fontops}/otl/common.h (86%) rename {src-fontop => src/fontops}/otl/gpos-cursive.c (100%) rename {src-fontop => src/fontops}/otl/gpos-cursive.h (100%) rename {src-fontop => src/fontops}/otl/gpos-pair.c (100%) rename {src-fontop => src/fontops}/otl/gpos-pair.h (100%) rename {src-fontop => src/fontops}/otl/gpos-single.c (100%) rename {src-fontop => src/fontops}/otl/gpos-single.h (100%) rename {src-fontop => src/fontops}/otl/gsub-ligature.c (100%) rename {src-fontop => src/fontops}/otl/gsub-ligature.h (100%) rename {src-fontop => src/fontops}/otl/gsub-multi.c (100%) rename {src-fontop => src/fontops}/otl/gsub-multi.h (100%) rename {src-fontop => src/fontops}/otl/gsub-reverse.c (100%) rename {src-fontop => src/fontops}/otl/gsub-reverse.h (100%) rename {src-fontop => src/fontops}/otl/gsub-single.c (100%) rename {src-fontop => src/fontops}/otl/gsub-single.h (100%) rename {src-fontop => src/fontops}/otl/mark.c (100%) rename {src-fontop => src/fontops}/otl/mark.h (100%) rename {src-fontop => src/fontops}/stat.c (100%) rename {src-fontop => src/fontops}/stat.h (75%) rename {src-fontop => src/fontops}/unconsolidate.c (96%) rename {src-fontop => src/fontops}/unconsolidate.h (75%) rename {src-support => src/support}/aglfn.c (100%) rename {src-support => src/support}/aglfn.h (100%) rename {src-support => src/support}/base64.c (100%) rename {src-support => src/support}/base64.h (100%) rename {src-support => src/support}/buffer.c (100%) rename {src-support => src/support}/buffer.h (95%) rename {src-support => src/support}/glyphorder.c (100%) rename {src-support => src/support}/glyphorder.h (100%) rename {src-support => src/support}/unicodeconv.c (100%) rename {src-support => src/support}/unicodeconv.h (89%) rename {src-support => src/support}/util.h (95%) rename {src-tables => src}/tables/LTSH.c (100%) rename {src-tables => src}/tables/LTSH.h (76%) rename {src-tables => src}/tables/OS_2.c (100%) rename {src-tables => src}/tables/OS_2.h (92%) rename {src-tables => src}/tables/PCLT.c (100%) rename {src-tables => src}/tables/PCLT.h (87%) rename {src-tables => src}/tables/cmap.c (100%) rename {src-tables => src}/tables/cmap.h (86%) rename {src-tables => src}/tables/fpgm-prep.c (100%) rename {src-tables => src}/tables/fpgm-prep.h (82%) rename {src-tables => src}/tables/gasp.c (100%) rename {src-tables => src}/tables/gasp.h (87%) rename {src-tables => src}/tables/glyf.c (100%) rename {src-tables => src}/tables/glyf.h (92%) rename {src-tables => src}/tables/hdmx.c (100%) rename {src-tables => src}/tables/hdmx.h (87%) rename {src-tables => src}/tables/head.c (100%) rename {src-tables => src}/tables/head.h (92%) rename {src-tables => src}/tables/hhea.c (100%) rename {src-tables => src}/tables/hhea.h (92%) rename {src-tables => src}/tables/hmtx.c (100%) rename {src-tables => src}/tables/hmtx.h (88%) rename {src-tables => src}/tables/maxp.c (100%) rename {src-tables => src}/tables/maxp.h (92%) rename {src-tables => src}/tables/name.c (96%) rename {src-tables => src}/tables/name.h (87%) rename {src-tables => src}/tables/otl/GDEF.c (100%) rename {src-tables => src}/tables/otl/GDEF.h (100%) rename {src-tables => src}/tables/otl/chaining.c (100%) rename {src-tables => src}/tables/otl/chaining.h (100%) rename {src-tables => src}/tables/otl/classdef.c (100%) rename {src-tables => src}/tables/otl/classdef.h (87%) rename {src-tables => src}/tables/otl/coverage.c (100%) rename {src-tables => src}/tables/otl/coverage.h (85%) rename {src-tables => src}/tables/otl/extend.c (100%) rename {src-tables => src}/tables/otl/extend.h (100%) rename {src-tables => src}/tables/otl/gpos-common.c (100%) rename {src-tables => src}/tables/otl/gpos-common.h (100%) rename {src-tables => src}/tables/otl/gpos-cursive.c (100%) rename {src-tables => src}/tables/otl/gpos-cursive.h (100%) rename {src-tables => src}/tables/otl/gpos-mark-to-ligature.c (100%) rename {src-tables => src}/tables/otl/gpos-mark-to-ligature.h (100%) rename {src-tables => src}/tables/otl/gpos-mark-to-single.c (100%) rename {src-tables => src}/tables/otl/gpos-mark-to-single.h (100%) rename {src-tables => src}/tables/otl/gpos-pair.c (100%) rename {src-tables => src}/tables/otl/gpos-pair.h (100%) rename {src-tables => src}/tables/otl/gpos-single.c (100%) rename {src-tables => src}/tables/otl/gpos-single.h (100%) rename {src-tables => src}/tables/otl/gsub-ligature.c (100%) rename {src-tables => src}/tables/otl/gsub-ligature.h (100%) rename {src-tables => src}/tables/otl/gsub-multi.c (100%) rename {src-tables => src}/tables/otl/gsub-multi.h (100%) rename {src-tables => src}/tables/otl/gsub-reverse.c (100%) rename {src-tables => src}/tables/otl/gsub-reverse.h (100%) rename {src-tables => src}/tables/otl/gsub-single.c (100%) rename {src-tables => src}/tables/otl/gsub-single.h (100%) rename {src-tables => src}/tables/otl/otl.c (100%) rename {src-tables => src}/tables/otl/otl.h (94%) rename {src-tables => src}/tables/post.c (100%) rename {src-tables => src}/tables/post.h (87%) rename {src-tables => src}/tables/vhea.c (100%) rename {src-tables => src}/tables/vhea.h (92%) rename {src-tables => src}/tables/vmtx.c (100%) rename {src-tables => src}/tables/vmtx.h (88%) diff --git a/extern/json-builder.c b/dep/extern/json-builder.c similarity index 100% rename from extern/json-builder.c rename to dep/extern/json-builder.c diff --git a/extern/json-builder.h b/dep/extern/json-builder.h similarity index 100% rename from extern/json-builder.h rename to dep/extern/json-builder.h diff --git a/extern/json.c b/dep/extern/json.c similarity index 100% rename from extern/json.c rename to dep/extern/json.c diff --git a/extern/json.h b/dep/extern/json.h similarity index 100% rename from extern/json.h rename to dep/extern/json.h diff --git a/extern/sds.c b/dep/extern/sds.c similarity index 100% rename from extern/sds.c rename to dep/extern/sds.c diff --git a/extern/sds.h b/dep/extern/sds.h similarity index 100% rename from extern/sds.h rename to dep/extern/sds.h diff --git a/extern/sdsalloc.h b/dep/extern/sdsalloc.h similarity index 100% rename from extern/sdsalloc.h rename to dep/extern/sdsalloc.h diff --git a/extern/uthash.h b/dep/extern/uthash.h similarity index 100% rename from extern/uthash.h rename to dep/extern/uthash.h diff --git a/premake5.lua b/premake5.lua index 47484ed0..52fc032f 100644 --- a/premake5.lua +++ b/premake5.lua @@ -11,6 +11,7 @@ workspace "otfcc" } location "build" + includedirs { "dep", "src" } filter "action:vs2015" location "build/vs" @@ -37,8 +38,8 @@ project "externals" kind "StaticLib" language "C" files { - "extern/**.h", - "extern/**.c" + "dep/extern/**.h", + "dep/extern/**.c" } project "extern-msvc" @@ -53,26 +54,32 @@ project "libotfcc-support" kind "StaticLib" language "C" files { - "src-support/**.h", - "src-support/**.c" + "src/support/**.h", + "src/support/**.c" } project "libotfcc-tables" kind "StaticLib" language "C" - links { "libotfcc-support", "externals" } files { - "src-tables/**.h", - "src-tables/**.c" + "src/tables/**.h", + "src/tables/**.c" + } + +project "libotfcc-font" + kind "StaticLib" + language "C" + files { + "src/font/**.h", + "src/font/**.c" } project "libotfcc-fontops" kind "StaticLib" language "C" - links { "libotfcc-support", "externals" } files { - "src-fontop/**.h", - "src-fontop/**.c" + "src/fontops/**.h", + "src/fontops/**.c" } project "otfccdump" @@ -80,17 +87,17 @@ project "otfccdump" language "C" targetdir "bin/%{cfg.buildcfg}-%{cfg.platform}" - links { "libotfcc-fontops", "libotfcc-tables", "libotfcc-support", "externals" } + links { "libotfcc-fontops", "libotfcc-font", "libotfcc-tables", "libotfcc-support", "externals" } filter "action:vs*" links "extern-msvc" filter {} files { - "src-cli/**.c", - "src-cli/**.h" + "src/cli/**.c", + "src/cli/**.h" } removefiles { - "src-cli/otfccbuild.c" + "src/cli/otfccbuild.c" } project "otfccbuild" @@ -98,15 +105,15 @@ project "otfccbuild" language "C" targetdir "bin/%{cfg.buildcfg}-%{cfg.platform}" - links { "libotfcc-fontops", "libotfcc-tables", "libotfcc-support", "externals" } + links { "libotfcc-fontops", "libotfcc-font", "libotfcc-tables", "libotfcc-support", "externals" } filter "action:vs*" links "extern-msvc" filter {} files { - "src-cli/**.c", - "src-cli/**.h" + "src/cli/**.c", + "src/cli/**.h" } removefiles { - "src-cli/otfccdump.c" + "src/cli/otfccdump.c" } diff --git a/src-cli/otfccbuild.c b/src/cli/otfccbuild.c similarity index 94% rename from src-cli/otfccbuild.c rename to src/cli/otfccbuild.c index 87066602..f454b41f 100644 --- a/src-cli/otfccbuild.c +++ b/src/cli/otfccbuild.c @@ -1,7 +1,7 @@ -#include "../src-tables/caryll-font.h" -#include "../src-tables/caryll-sfnt-builder.h" -#include "../src-tables/caryll-sfnt.h" -#include "../src-fontop/fontop.h" +#include +#include +#include +#include #include "platform.h" #include "stopwatch.h" diff --git a/src-cli/otfccdump.c b/src/cli/otfccdump.c similarity index 95% rename from src-cli/otfccdump.c rename to src/cli/otfccdump.c index 8daf4cc8..9fdf8e55 100644 --- a/src-cli/otfccdump.c +++ b/src/cli/otfccdump.c @@ -1,6 +1,6 @@ -#include "../src-tables/caryll-font.h" -#include "../src-tables/caryll-sfnt.h" -#include "../src-fontop/fontop.h" +#include +#include +#include #include "platform.h" #include "stopwatch.h" diff --git a/src-cli/platform.h b/src/cli/platform.h similarity index 100% rename from src-cli/platform.h rename to src/cli/platform.h diff --git a/src-cli/stopwatch.c b/src/cli/stopwatch.c similarity index 100% rename from src-cli/stopwatch.c rename to src/cli/stopwatch.c diff --git a/src-cli/stopwatch.h b/src/cli/stopwatch.h similarity index 100% rename from src-cli/stopwatch.h rename to src/cli/stopwatch.h diff --git a/src-tables/caryll-font.c b/src/font/caryll-font.c similarity index 100% rename from src-tables/caryll-font.c rename to src/font/caryll-font.c diff --git a/src-tables/caryll-font.h b/src/font/caryll-font.h similarity index 63% rename from src-tables/caryll-font.h rename to src/font/caryll-font.h index 060039c6..26561104 100644 --- a/src-tables/caryll-font.h +++ b/src/font/caryll-font.h @@ -1,33 +1,33 @@ #ifndef CARYLL_FONT_H #define CARYLL_FONT_H +#include #include "caryll-sfnt.h" -#include "../src-support/util.h" struct _caryll_font; typedef struct _caryll_font caryll_font; -#include "../src-support/glyphorder.h" +#include -#include "./tables/head.h" -#include "./tables/hhea.h" -#include "./tables/maxp.h" -#include "./tables/hmtx.h" -#include "./tables/post.h" -#include "./tables/OS_2.h" -#include "./tables/name.h" -#include "./tables/glyf.h" -#include "./tables/cmap.h" -#include "./tables/fpgm-prep.h" -#include "./tables/gasp.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include -#include "./tables/hdmx.h" -#include "./tables/LTSH.h" -#include "./tables/PCLT.h" -#include "./tables/vhea.h" -#include "./tables/vmtx.h" +#include +#include +#include +#include +#include -#include "./tables/otl/otl.h" -#include "./tables/otl/GDEF.h" +#include +#include struct _caryll_font { table_head *head; diff --git a/src-tables/caryll-sfnt-builder.c b/src/font/caryll-sfnt-builder.c similarity index 100% rename from src-tables/caryll-sfnt-builder.c rename to src/font/caryll-sfnt-builder.c diff --git a/src-tables/caryll-sfnt-builder.h b/src/font/caryll-sfnt-builder.h similarity index 90% rename from src-tables/caryll-sfnt-builder.h rename to src/font/caryll-sfnt-builder.h index 1fc85bbc..6879e9bf 100644 --- a/src-tables/caryll-sfnt-builder.h +++ b/src/font/caryll-sfnt-builder.h @@ -1,7 +1,7 @@ #ifndef CARYLL_SFNT_BUILDER_H #define CARYLL_SFNT_BUILDER_H -#include "../src-support/util.h" +#include typedef struct { int tag; diff --git a/src-tables/caryll-sfnt.c b/src/font/caryll-sfnt.c similarity index 98% rename from src-tables/caryll-sfnt.c rename to src/font/caryll-sfnt.c index 29251920..96969cab 100644 --- a/src-tables/caryll-sfnt.c +++ b/src/font/caryll-sfnt.c @@ -1,4 +1,4 @@ -#include "../src-support/util.h" +#include #include "caryll-sfnt.h" static void caryll_read_packets(caryll_sfnt *font, FILE *file) { diff --git a/src-tables/caryll-sfnt.h b/src/font/caryll-sfnt.h similarity index 100% rename from src-tables/caryll-sfnt.h rename to src/font/caryll-sfnt.h diff --git a/src-fontop/consolidate.c b/src/fontops/consolidate.c similarity index 100% rename from src-fontop/consolidate.c rename to src/fontops/consolidate.c diff --git a/src-fontop/consolidate.h b/src/fontops/consolidate.h similarity index 88% rename from src-fontop/consolidate.h rename to src/fontops/consolidate.h index 30ba1035..4f0f42ca 100644 --- a/src-fontop/consolidate.h +++ b/src/fontops/consolidate.h @@ -1,6 +1,6 @@ #ifndef CARYLL_FONTOPS_CONSOLIDATE_H #define CARYLL_FONTOPS_CONSOLIDATE_H -#include "../src-tables/caryll-font.h" +#include #include "otl/gsub-single.h" #include "otl/gsub-multi.h" diff --git a/src-fontop/fontop.h b/src/fontops/fontop.h similarity index 100% rename from src-fontop/fontop.h rename to src/fontops/fontop.h diff --git a/src-fontop/otl/GDEF.c b/src/fontops/otl/GDEF.c similarity index 100% rename from src-fontop/otl/GDEF.c rename to src/fontops/otl/GDEF.c diff --git a/src-fontop/otl/GDEF.h b/src/fontops/otl/GDEF.h similarity index 100% rename from src-fontop/otl/GDEF.h rename to src/fontops/otl/GDEF.h diff --git a/src-fontop/otl/chaining.c b/src/fontops/otl/chaining.c similarity index 100% rename from src-fontop/otl/chaining.c rename to src/fontops/otl/chaining.c diff --git a/src-fontop/otl/chaining.h b/src/fontops/otl/chaining.h similarity index 100% rename from src-fontop/otl/chaining.h rename to src/fontops/otl/chaining.h diff --git a/src-fontop/otl/common.c b/src/fontops/otl/common.c similarity index 100% rename from src-fontop/otl/common.c rename to src/fontops/otl/common.c diff --git a/src-fontop/otl/common.h b/src/fontops/otl/common.h similarity index 86% rename from src-fontop/otl/common.h rename to src/fontops/otl/common.h index ffd70caa..6f0e246d 100644 --- a/src-fontop/otl/common.h +++ b/src/fontops/otl/common.h @@ -1,6 +1,6 @@ #ifndef CARYLL_FONTOPS_OTL_COMMON_H #define CARYLL_FONTOPS_OTL_COMMON_H -#include "../../src-tables/caryll-font.h" +#include void consolidate_coverage(caryll_font *font, otl_coverage *coverage, sds lookupName); void shrink_coverage(otl_coverage *coverage, bool dosort); diff --git a/src-fontop/otl/gpos-cursive.c b/src/fontops/otl/gpos-cursive.c similarity index 100% rename from src-fontop/otl/gpos-cursive.c rename to src/fontops/otl/gpos-cursive.c diff --git a/src-fontop/otl/gpos-cursive.h b/src/fontops/otl/gpos-cursive.h similarity index 100% rename from src-fontop/otl/gpos-cursive.h rename to src/fontops/otl/gpos-cursive.h diff --git a/src-fontop/otl/gpos-pair.c b/src/fontops/otl/gpos-pair.c similarity index 100% rename from src-fontop/otl/gpos-pair.c rename to src/fontops/otl/gpos-pair.c diff --git a/src-fontop/otl/gpos-pair.h b/src/fontops/otl/gpos-pair.h similarity index 100% rename from src-fontop/otl/gpos-pair.h rename to src/fontops/otl/gpos-pair.h diff --git a/src-fontop/otl/gpos-single.c b/src/fontops/otl/gpos-single.c similarity index 100% rename from src-fontop/otl/gpos-single.c rename to src/fontops/otl/gpos-single.c diff --git a/src-fontop/otl/gpos-single.h b/src/fontops/otl/gpos-single.h similarity index 100% rename from src-fontop/otl/gpos-single.h rename to src/fontops/otl/gpos-single.h diff --git a/src-fontop/otl/gsub-ligature.c b/src/fontops/otl/gsub-ligature.c similarity index 100% rename from src-fontop/otl/gsub-ligature.c rename to src/fontops/otl/gsub-ligature.c diff --git a/src-fontop/otl/gsub-ligature.h b/src/fontops/otl/gsub-ligature.h similarity index 100% rename from src-fontop/otl/gsub-ligature.h rename to src/fontops/otl/gsub-ligature.h diff --git a/src-fontop/otl/gsub-multi.c b/src/fontops/otl/gsub-multi.c similarity index 100% rename from src-fontop/otl/gsub-multi.c rename to src/fontops/otl/gsub-multi.c diff --git a/src-fontop/otl/gsub-multi.h b/src/fontops/otl/gsub-multi.h similarity index 100% rename from src-fontop/otl/gsub-multi.h rename to src/fontops/otl/gsub-multi.h diff --git a/src-fontop/otl/gsub-reverse.c b/src/fontops/otl/gsub-reverse.c similarity index 100% rename from src-fontop/otl/gsub-reverse.c rename to src/fontops/otl/gsub-reverse.c diff --git a/src-fontop/otl/gsub-reverse.h b/src/fontops/otl/gsub-reverse.h similarity index 100% rename from src-fontop/otl/gsub-reverse.h rename to src/fontops/otl/gsub-reverse.h diff --git a/src-fontop/otl/gsub-single.c b/src/fontops/otl/gsub-single.c similarity index 100% rename from src-fontop/otl/gsub-single.c rename to src/fontops/otl/gsub-single.c diff --git a/src-fontop/otl/gsub-single.h b/src/fontops/otl/gsub-single.h similarity index 100% rename from src-fontop/otl/gsub-single.h rename to src/fontops/otl/gsub-single.h diff --git a/src-fontop/otl/mark.c b/src/fontops/otl/mark.c similarity index 100% rename from src-fontop/otl/mark.c rename to src/fontops/otl/mark.c diff --git a/src-fontop/otl/mark.h b/src/fontops/otl/mark.h similarity index 100% rename from src-fontop/otl/mark.h rename to src/fontops/otl/mark.h diff --git a/src-fontop/stat.c b/src/fontops/stat.c similarity index 100% rename from src-fontop/stat.c rename to src/fontops/stat.c diff --git a/src-fontop/stat.h b/src/fontops/stat.h similarity index 75% rename from src-fontop/stat.h rename to src/fontops/stat.h index deb42997..fc6a37d8 100644 --- a/src-fontop/stat.h +++ b/src/fontops/stat.h @@ -1,6 +1,6 @@ #ifndef CARYLL_FONTOPS_STAT_H #define CARYLL_FONTOPS_STAT_H -#include "../src-tables/caryll-font.h" +#include void caryll_font_stat(caryll_font *font, caryll_dump_options *dumpopts); diff --git a/src-fontop/unconsolidate.c b/src/fontops/unconsolidate.c similarity index 96% rename from src-fontop/unconsolidate.c rename to src/fontops/unconsolidate.c index 33e64b40..5b41d014 100644 --- a/src-fontop/unconsolidate.c +++ b/src/fontops/unconsolidate.c @@ -1,5 +1,5 @@ #include "unconsolidate.h" -#include "../src-support/aglfn.h" +#include // Unconsolidation: Remove redundent data and de-couple internal data // It does these things: // 1. Merge hmtx data into glyf diff --git a/src-fontop/unconsolidate.h b/src/fontops/unconsolidate.h similarity index 75% rename from src-fontop/unconsolidate.h rename to src/fontops/unconsolidate.h index 314b273b..ad587fd8 100644 --- a/src-fontop/unconsolidate.h +++ b/src/fontops/unconsolidate.h @@ -1,6 +1,6 @@ #ifndef CARYLL_FONTOPS_UNCONSOLIDATE_H #define CARYLL_FONTOPS_UNCONSOLIDATE_H -#include "../src-tables/caryll-font.h" +#include void caryll_font_unconsolidate(caryll_font *font); diff --git a/src-support/aglfn.c b/src/support/aglfn.c similarity index 100% rename from src-support/aglfn.c rename to src/support/aglfn.c diff --git a/src-support/aglfn.h b/src/support/aglfn.h similarity index 100% rename from src-support/aglfn.h rename to src/support/aglfn.h diff --git a/src-support/base64.c b/src/support/base64.c similarity index 100% rename from src-support/base64.c rename to src/support/base64.c diff --git a/src-support/base64.h b/src/support/base64.h similarity index 100% rename from src-support/base64.h rename to src/support/base64.h diff --git a/src-support/buffer.c b/src/support/buffer.c similarity index 100% rename from src-support/buffer.c rename to src/support/buffer.c diff --git a/src-support/buffer.h b/src/support/buffer.h similarity index 95% rename from src-support/buffer.h rename to src/support/buffer.h index 02329c0a..0017a183 100644 --- a/src-support/buffer.h +++ b/src/support/buffer.h @@ -4,7 +4,7 @@ #include #include #include -#include "../extern/sds.h" +#include typedef struct { size_t cursor; sds s; diff --git a/src-support/glyphorder.c b/src/support/glyphorder.c similarity index 100% rename from src-support/glyphorder.c rename to src/support/glyphorder.c diff --git a/src-support/glyphorder.h b/src/support/glyphorder.h similarity index 100% rename from src-support/glyphorder.h rename to src/support/glyphorder.h diff --git a/src-support/unicodeconv.c b/src/support/unicodeconv.c similarity index 100% rename from src-support/unicodeconv.c rename to src/support/unicodeconv.c diff --git a/src-support/unicodeconv.h b/src/support/unicodeconv.h similarity index 89% rename from src-support/unicodeconv.h rename to src/support/unicodeconv.h index 6235ba74..943d5e32 100644 --- a/src-support/unicodeconv.h +++ b/src/support/unicodeconv.h @@ -4,7 +4,7 @@ #include #include #include -#include "../extern/sds.h" +#include sds utf16le_to_utf8(const uint8_t *inb, int inlenb); sds utf16be_to_utf8(const uint8_t *inb, int inlenb); uint8_t *utf8toutf16be(sds _in, size_t *out_bytes); diff --git a/src-support/util.h b/src/support/util.h similarity index 95% rename from src-support/util.h rename to src/support/util.h index 66e6ee39..a2b5acb0 100644 --- a/src-support/util.h +++ b/src/support/util.h @@ -11,10 +11,10 @@ #include #include #include -#include "../extern/sds.h" -#include "../extern/uthash.h" -#include "../extern/json.h" -#include "../extern/json-builder.h" +#include +#include +#include +#include #include "buffer.h" #include "base64.h" diff --git a/src-tables/tables/LTSH.c b/src/tables/LTSH.c similarity index 100% rename from src-tables/tables/LTSH.c rename to src/tables/LTSH.c diff --git a/src-tables/tables/LTSH.h b/src/tables/LTSH.h similarity index 76% rename from src-tables/tables/LTSH.h rename to src/tables/LTSH.h index 59f5fe90..224ef812 100644 --- a/src-tables/tables/LTSH.h +++ b/src/tables/LTSH.h @@ -1,8 +1,8 @@ #ifndef CARYLL_TABLES_LTSH_H #define CARYLL_TABLES_LTSH_H -#include "../../src-support/util.h" -#include "../caryll-sfnt.h" +#include +#include typedef struct { uint16_t version; diff --git a/src-tables/tables/OS_2.c b/src/tables/OS_2.c similarity index 100% rename from src-tables/tables/OS_2.c rename to src/tables/OS_2.c diff --git a/src-tables/tables/OS_2.h b/src/tables/OS_2.h similarity index 92% rename from src-tables/tables/OS_2.h rename to src/tables/OS_2.h index ae641bd6..1b82df80 100644 --- a/src-tables/tables/OS_2.h +++ b/src/tables/OS_2.h @@ -1,8 +1,8 @@ #ifndef CARYLL_TABLES_OS_2_H #define CARYLL_TABLES_OS_2_H -#include "../../src-support/util.h" -#include "../caryll-sfnt.h" +#include +#include typedef struct { // OS/2 and Windows specific metrics diff --git a/src-tables/tables/PCLT.c b/src/tables/PCLT.c similarity index 100% rename from src-tables/tables/PCLT.c rename to src/tables/PCLT.c diff --git a/src-tables/tables/PCLT.h b/src/tables/PCLT.h similarity index 87% rename from src-tables/tables/PCLT.h rename to src/tables/PCLT.h index 796ecd0e..3ad631ed 100644 --- a/src-tables/tables/PCLT.h +++ b/src/tables/PCLT.h @@ -1,8 +1,8 @@ #ifndef CARYLL_TABLES_PCLT_H #define CARYLL_TABLES_PCLT_H -#include "../../src-support/util.h" -#include "../caryll-sfnt.h" +#include +#include typedef struct { uint32_t version; diff --git a/src-tables/tables/cmap.c b/src/tables/cmap.c similarity index 100% rename from src-tables/tables/cmap.c rename to src/tables/cmap.c diff --git a/src-tables/tables/cmap.h b/src/tables/cmap.h similarity index 86% rename from src-tables/tables/cmap.h rename to src/tables/cmap.h index 30da35ac..919d1757 100644 --- a/src-tables/tables/cmap.h +++ b/src/tables/cmap.h @@ -1,8 +1,8 @@ #ifndef CARYLL_TABLES_CMAP_H #define CARYLL_TABLES_CMAP_H -#include "../../src-support/util.h" -#include "../caryll-sfnt.h" +#include +#include // We will support format 0, 4, 12 of CMAP only typedef struct { diff --git a/src-tables/tables/fpgm-prep.c b/src/tables/fpgm-prep.c similarity index 100% rename from src-tables/tables/fpgm-prep.c rename to src/tables/fpgm-prep.c diff --git a/src-tables/tables/fpgm-prep.h b/src/tables/fpgm-prep.h similarity index 82% rename from src-tables/tables/fpgm-prep.h rename to src/tables/fpgm-prep.h index 7273810e..79115d48 100644 --- a/src-tables/tables/fpgm-prep.h +++ b/src/tables/fpgm-prep.h @@ -1,9 +1,9 @@ #ifndef CARYLL_TABLES_FPGM_PREP_H #define CARYLL_TABLES_FPGM_PREP_H -#include "../../src-support/util.h" -#include "../caryll-sfnt.h" -#include "../../src-support/glyphorder.h" +#include +#include +#include typedef struct { uint32_t length; diff --git a/src-tables/tables/gasp.c b/src/tables/gasp.c similarity index 100% rename from src-tables/tables/gasp.c rename to src/tables/gasp.c diff --git a/src-tables/tables/gasp.h b/src/tables/gasp.h similarity index 87% rename from src-tables/tables/gasp.h rename to src/tables/gasp.h index b196041b..615fcbd8 100644 --- a/src-tables/tables/gasp.h +++ b/src/tables/gasp.h @@ -1,8 +1,8 @@ #ifndef CARYLL_TABLES_GASP_H #define CARYLL_TABLES_GASP_H -#include "../../src-support/util.h" -#include "../caryll-sfnt.h" +#include +#include typedef struct { uint16_t rangeMaxPPEM; diff --git a/src-tables/tables/glyf.c b/src/tables/glyf.c similarity index 100% rename from src-tables/tables/glyf.c rename to src/tables/glyf.c diff --git a/src-tables/tables/glyf.h b/src/tables/glyf.h similarity index 92% rename from src-tables/tables/glyf.h rename to src/tables/glyf.h index 3f0984f7..5402f017 100644 --- a/src-tables/tables/glyf.h +++ b/src/tables/glyf.h @@ -1,9 +1,9 @@ #ifndef CARYLL_TABLES_GLYF_H #define CARYLL_TABLES_GLYF_H -#include "../../src-support/util.h" -#include "../caryll-sfnt.h" -#include "../../src-support/glyphorder.h" +#include +#include +#include #include "head.h" #include "maxp.h" diff --git a/src-tables/tables/hdmx.c b/src/tables/hdmx.c similarity index 100% rename from src-tables/tables/hdmx.c rename to src/tables/hdmx.c diff --git a/src-tables/tables/hdmx.h b/src/tables/hdmx.h similarity index 87% rename from src-tables/tables/hdmx.h rename to src/tables/hdmx.h index f59924ae..fab8b50f 100644 --- a/src-tables/tables/hdmx.h +++ b/src/tables/hdmx.h @@ -1,8 +1,8 @@ #ifndef CARYLL_TABLES_HDMX_H #define CARYLL_TABLES_HDMX_H -#include "../../src-support/util.h" -#include "../caryll-sfnt.h" +#include +#include #include "maxp.h" diff --git a/src-tables/tables/head.c b/src/tables/head.c similarity index 100% rename from src-tables/tables/head.c rename to src/tables/head.c diff --git a/src-tables/tables/head.h b/src/tables/head.h similarity index 92% rename from src-tables/tables/head.h rename to src/tables/head.h index 37aca90e..2d5ab57e 100644 --- a/src-tables/tables/head.h +++ b/src/tables/head.h @@ -1,8 +1,8 @@ #ifndef CARYLL_TABLES_HEAD_H #define CARYLL_TABLES_HEAD_H -#include "../../src-support/util.h" -#include "../caryll-sfnt.h" +#include +#include typedef struct { // Font header diff --git a/src-tables/tables/hhea.c b/src/tables/hhea.c similarity index 100% rename from src-tables/tables/hhea.c rename to src/tables/hhea.c diff --git a/src-tables/tables/hhea.h b/src/tables/hhea.h similarity index 92% rename from src-tables/tables/hhea.h rename to src/tables/hhea.h index 29ad7cad..7d9d3426 100644 --- a/src-tables/tables/hhea.h +++ b/src/tables/hhea.h @@ -1,8 +1,8 @@ #ifndef CARYLL_TABLES_HHEA_H #define CARYLL_TABLES_HHEA_H -#include "../../src-support/util.h" -#include "../caryll-sfnt.h" +#include +#include typedef struct { // Horizontal header diff --git a/src-tables/tables/hmtx.c b/src/tables/hmtx.c similarity index 100% rename from src-tables/tables/hmtx.c rename to src/tables/hmtx.c diff --git a/src-tables/tables/hmtx.h b/src/tables/hmtx.h similarity index 88% rename from src-tables/tables/hmtx.h rename to src/tables/hmtx.h index 6434c5cf..08070396 100644 --- a/src-tables/tables/hmtx.h +++ b/src/tables/hmtx.h @@ -1,8 +1,8 @@ #ifndef CARYLL_TABLES_HMTX_H #define CARYLL_TABLES_HMTX_H -#include "../../src-support/util.h" -#include "../caryll-sfnt.h" +#include +#include #include "hhea.h" #include "maxp.h" diff --git a/src-tables/tables/maxp.c b/src/tables/maxp.c similarity index 100% rename from src-tables/tables/maxp.c rename to src/tables/maxp.c diff --git a/src-tables/tables/maxp.h b/src/tables/maxp.h similarity index 92% rename from src-tables/tables/maxp.h rename to src/tables/maxp.h index 53b829ee..cc074dd9 100644 --- a/src-tables/tables/maxp.h +++ b/src/tables/maxp.h @@ -1,8 +1,8 @@ #ifndef CARYLL_TABLES_MAXP_H #define CARYLL_TABLES_MAXP_H -#include "../../src-support/util.h" -#include "../caryll-sfnt.h" +#include +#include typedef struct { // Maximum profile diff --git a/src-tables/tables/name.c b/src/tables/name.c similarity index 96% rename from src-tables/tables/name.c rename to src/tables/name.c index 3196e6d4..e6d81e21 100644 --- a/src-tables/tables/name.c +++ b/src/tables/name.c @@ -1,5 +1,5 @@ #include "name.h" -#include "../../src-support/unicodeconv.h" +#include table_name *caryll_read_name(caryll_packet packet) { FOR_TABLE('name', table) { diff --git a/src-tables/tables/name.h b/src/tables/name.h similarity index 87% rename from src-tables/tables/name.h rename to src/tables/name.h index 5ef24c58..d2e0a1d6 100644 --- a/src-tables/tables/name.h +++ b/src/tables/name.h @@ -1,8 +1,8 @@ #ifndef CARYLL_TABLES_NAME_H #define CARYLL_TABLES_NAME_H -#include "../../src-support/util.h" -#include "../caryll-sfnt.h" +#include +#include typedef struct { uint16_t platformID; diff --git a/src-tables/tables/otl/GDEF.c b/src/tables/otl/GDEF.c similarity index 100% rename from src-tables/tables/otl/GDEF.c rename to src/tables/otl/GDEF.c diff --git a/src-tables/tables/otl/GDEF.h b/src/tables/otl/GDEF.h similarity index 100% rename from src-tables/tables/otl/GDEF.h rename to src/tables/otl/GDEF.h diff --git a/src-tables/tables/otl/chaining.c b/src/tables/otl/chaining.c similarity index 100% rename from src-tables/tables/otl/chaining.c rename to src/tables/otl/chaining.c diff --git a/src-tables/tables/otl/chaining.h b/src/tables/otl/chaining.h similarity index 100% rename from src-tables/tables/otl/chaining.h rename to src/tables/otl/chaining.h diff --git a/src-tables/tables/otl/classdef.c b/src/tables/otl/classdef.c similarity index 100% rename from src-tables/tables/otl/classdef.c rename to src/tables/otl/classdef.c diff --git a/src-tables/tables/otl/classdef.h b/src/tables/otl/classdef.h similarity index 87% rename from src-tables/tables/otl/classdef.h rename to src/tables/otl/classdef.h index 97216f42..e37fc944 100644 --- a/src-tables/tables/otl/classdef.h +++ b/src/tables/otl/classdef.h @@ -1,7 +1,7 @@ #ifndef CARYLL_TABLES_OTL_CLASSDEF_H #define CARYLL_TABLES_OTL_CLASSDEF_H -#include "../../../src-support/util.h" -#include "../../caryll-sfnt.h" +#include +#include #include "coverage.h" typedef struct { diff --git a/src-tables/tables/otl/coverage.c b/src/tables/otl/coverage.c similarity index 100% rename from src-tables/tables/otl/coverage.c rename to src/tables/otl/coverage.c diff --git a/src-tables/tables/otl/coverage.h b/src/tables/otl/coverage.h similarity index 85% rename from src-tables/tables/otl/coverage.h rename to src/tables/otl/coverage.h index d520a1cc..1a8188f0 100644 --- a/src-tables/tables/otl/coverage.h +++ b/src/tables/otl/coverage.h @@ -1,7 +1,7 @@ #ifndef CARYLL_TABLES_OTL_COVERAGE_H #define CARYLL_TABLES_OTL_COVERAGE_H -#include "../../../src-support/util.h" -#include "../../caryll-sfnt.h" +#include +#include typedef struct { uint16_t numGlyphs; diff --git a/src-tables/tables/otl/extend.c b/src/tables/otl/extend.c similarity index 100% rename from src-tables/tables/otl/extend.c rename to src/tables/otl/extend.c diff --git a/src-tables/tables/otl/extend.h b/src/tables/otl/extend.h similarity index 100% rename from src-tables/tables/otl/extend.h rename to src/tables/otl/extend.h diff --git a/src-tables/tables/otl/gpos-common.c b/src/tables/otl/gpos-common.c similarity index 100% rename from src-tables/tables/otl/gpos-common.c rename to src/tables/otl/gpos-common.c diff --git a/src-tables/tables/otl/gpos-common.h b/src/tables/otl/gpos-common.h similarity index 100% rename from src-tables/tables/otl/gpos-common.h rename to src/tables/otl/gpos-common.h diff --git a/src-tables/tables/otl/gpos-cursive.c b/src/tables/otl/gpos-cursive.c similarity index 100% rename from src-tables/tables/otl/gpos-cursive.c rename to src/tables/otl/gpos-cursive.c diff --git a/src-tables/tables/otl/gpos-cursive.h b/src/tables/otl/gpos-cursive.h similarity index 100% rename from src-tables/tables/otl/gpos-cursive.h rename to src/tables/otl/gpos-cursive.h diff --git a/src-tables/tables/otl/gpos-mark-to-ligature.c b/src/tables/otl/gpos-mark-to-ligature.c similarity index 100% rename from src-tables/tables/otl/gpos-mark-to-ligature.c rename to src/tables/otl/gpos-mark-to-ligature.c diff --git a/src-tables/tables/otl/gpos-mark-to-ligature.h b/src/tables/otl/gpos-mark-to-ligature.h similarity index 100% rename from src-tables/tables/otl/gpos-mark-to-ligature.h rename to src/tables/otl/gpos-mark-to-ligature.h diff --git a/src-tables/tables/otl/gpos-mark-to-single.c b/src/tables/otl/gpos-mark-to-single.c similarity index 100% rename from src-tables/tables/otl/gpos-mark-to-single.c rename to src/tables/otl/gpos-mark-to-single.c diff --git a/src-tables/tables/otl/gpos-mark-to-single.h b/src/tables/otl/gpos-mark-to-single.h similarity index 100% rename from src-tables/tables/otl/gpos-mark-to-single.h rename to src/tables/otl/gpos-mark-to-single.h diff --git a/src-tables/tables/otl/gpos-pair.c b/src/tables/otl/gpos-pair.c similarity index 100% rename from src-tables/tables/otl/gpos-pair.c rename to src/tables/otl/gpos-pair.c diff --git a/src-tables/tables/otl/gpos-pair.h b/src/tables/otl/gpos-pair.h similarity index 100% rename from src-tables/tables/otl/gpos-pair.h rename to src/tables/otl/gpos-pair.h diff --git a/src-tables/tables/otl/gpos-single.c b/src/tables/otl/gpos-single.c similarity index 100% rename from src-tables/tables/otl/gpos-single.c rename to src/tables/otl/gpos-single.c diff --git a/src-tables/tables/otl/gpos-single.h b/src/tables/otl/gpos-single.h similarity index 100% rename from src-tables/tables/otl/gpos-single.h rename to src/tables/otl/gpos-single.h diff --git a/src-tables/tables/otl/gsub-ligature.c b/src/tables/otl/gsub-ligature.c similarity index 100% rename from src-tables/tables/otl/gsub-ligature.c rename to src/tables/otl/gsub-ligature.c diff --git a/src-tables/tables/otl/gsub-ligature.h b/src/tables/otl/gsub-ligature.h similarity index 100% rename from src-tables/tables/otl/gsub-ligature.h rename to src/tables/otl/gsub-ligature.h diff --git a/src-tables/tables/otl/gsub-multi.c b/src/tables/otl/gsub-multi.c similarity index 100% rename from src-tables/tables/otl/gsub-multi.c rename to src/tables/otl/gsub-multi.c diff --git a/src-tables/tables/otl/gsub-multi.h b/src/tables/otl/gsub-multi.h similarity index 100% rename from src-tables/tables/otl/gsub-multi.h rename to src/tables/otl/gsub-multi.h diff --git a/src-tables/tables/otl/gsub-reverse.c b/src/tables/otl/gsub-reverse.c similarity index 100% rename from src-tables/tables/otl/gsub-reverse.c rename to src/tables/otl/gsub-reverse.c diff --git a/src-tables/tables/otl/gsub-reverse.h b/src/tables/otl/gsub-reverse.h similarity index 100% rename from src-tables/tables/otl/gsub-reverse.h rename to src/tables/otl/gsub-reverse.h diff --git a/src-tables/tables/otl/gsub-single.c b/src/tables/otl/gsub-single.c similarity index 100% rename from src-tables/tables/otl/gsub-single.c rename to src/tables/otl/gsub-single.c diff --git a/src-tables/tables/otl/gsub-single.h b/src/tables/otl/gsub-single.h similarity index 100% rename from src-tables/tables/otl/gsub-single.h rename to src/tables/otl/gsub-single.h diff --git a/src-tables/tables/otl/otl.c b/src/tables/otl/otl.c similarity index 100% rename from src-tables/tables/otl/otl.c rename to src/tables/otl/otl.c diff --git a/src-tables/tables/otl/otl.h b/src/tables/otl/otl.h similarity index 94% rename from src-tables/tables/otl/otl.h rename to src/tables/otl/otl.h index 55aa0431..ccb323a9 100644 --- a/src-tables/tables/otl/otl.h +++ b/src/tables/otl/otl.h @@ -1,7 +1,7 @@ #ifndef CARYLL_TABLES_OTL_H #define CARYLL_TABLES_OTL_H -#include "../../../src-support/util.h" -#include "../../caryll-sfnt.h" +#include +#include typedef enum { otl_type_unknown = 0, diff --git a/src-tables/tables/post.c b/src/tables/post.c similarity index 100% rename from src-tables/tables/post.c rename to src/tables/post.c diff --git a/src-tables/tables/post.h b/src/tables/post.h similarity index 87% rename from src-tables/tables/post.h rename to src/tables/post.h index 034b8201..dc8616ab 100644 --- a/src-tables/tables/post.h +++ b/src/tables/post.h @@ -1,10 +1,10 @@ #ifndef CARYLL_TABLES_POST_H #define CARYLL_TABLES_POST_H -#include "../../src-support/util.h" -#include "../caryll-sfnt.h" +#include +#include +#include -#include "../../src-support/glyphorder.h" typedef struct { // PostScript information diff --git a/src-tables/tables/vhea.c b/src/tables/vhea.c similarity index 100% rename from src-tables/tables/vhea.c rename to src/tables/vhea.c diff --git a/src-tables/tables/vhea.h b/src/tables/vhea.h similarity index 92% rename from src-tables/tables/vhea.h rename to src/tables/vhea.h index c776530c..36a8473a 100644 --- a/src-tables/tables/vhea.h +++ b/src/tables/vhea.h @@ -1,8 +1,8 @@ #ifndef CARYLL_TABLES_VHEA_H #define CARYLL_TABLES_VHEA_H -#include "../../src-support/util.h" -#include "../caryll-sfnt.h" +#include +#include typedef struct { f16dot16 version; diff --git a/src-tables/tables/vmtx.c b/src/tables/vmtx.c similarity index 100% rename from src-tables/tables/vmtx.c rename to src/tables/vmtx.c diff --git a/src-tables/tables/vmtx.h b/src/tables/vmtx.h similarity index 88% rename from src-tables/tables/vmtx.h rename to src/tables/vmtx.h index 2819d6b1..eb95a431 100644 --- a/src-tables/tables/vmtx.h +++ b/src/tables/vmtx.h @@ -1,8 +1,8 @@ #ifndef CARYLL_TABLES_VMTX_H #define CARYLL_TABLES_VMTX_H -#include "../../src-support/util.h" -#include "../caryll-sfnt.h" +#include +#include #include "vhea.h" #include "maxp.h" From 0a97ee8bbb10acbc2883beb4c274468e6085ed25 Mon Sep 17 00:00:00 2001 From: be5invis Date: Sat, 16 Apr 2016 03:13:49 +0800 Subject: [PATCH 32/32] update readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6598b892..4991e370 100644 --- a/README.md +++ b/README.md @@ -67,11 +67,11 @@ On Windows building `otfcc` is tested under the toolchains listed below. The def make ``` -* [Visual C++ Building Tools (Mar 2016)](https://blogs.msdn.microsoft.com/vcblog/2016/03/31/announcing-the-official-release-of-the-visual-c-build-tools-2015/) with [Clang/LLVM 3.8](http://clang.llvm.org/). Run the following from the Visual C++ Command Prompt: +* [Visual C++ Building Tools (Mar 2016)](https://blogs.msdn.microsoft.com/vcblog/2016/03/31/announcing-the-official-release-of-the-visual-c-build-tools-2015/) with [Clang/LLVM 3.8](http://clang.llvm.org/). Only Release build is tested. Run the following from the Visual C++ Command Prompt: ```bat premake5 vs2015 - msbuild build\otfcc.sln + msbuild build\otfcc.sln /property:Configuration=Release ``` ### Linux