diff --git a/.appveyor.yml b/.appveyor.yml index 67fb291f..17e281ec 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -4,6 +4,7 @@ os: install: - set PATH=C:\msys64\usr\bin;C:\msys64\mingw64\bin;%PATH% - appveyor DownloadFile "https://raw.githubusercontent.com/swig/cccl/master/cccl" + - appveyor DownloadFile "https://github.com/adah1972/libunibreak/releases/download/libunibreak_4_0/libunibreak-4.0.tar.gz" - call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" %PLATFORM% - appveyor-retry C:\msys64\usr\bin\pacman -Syuu --needed --noconfirm --noprogressbar --ask=127 - appveyor-retry C:\msys64\usr\bin\pacman -S --noconfirm autoconf automake libtool gtk-doc mingw-w64-x86_64-pkg-config mingw-w64-x86_64-harfbuzz mingw-w64-x86_64-fribidi mingw-w64-x86_64-freetype @@ -14,6 +15,9 @@ build_script: - set LD=cccl - set PKG_CONFIG_PATH=%PKG_CONFIG_PATH%:/mingw64/lib/pkgconfig - bash -c "mv cccl /usr/bin" + - bash -c "tar xf libunibreak-4.0.tar.gz && cd libunibreak-4.0 && ./configure --prefix=/usr/local && make && make install" + - set UNIBREAK_CFLAGS=-I/usr/local/include + - set UNIBREAK_LIBS="-L/usr/local/lib/ -lunibreak" - bash -c "exec 0= 12.0.6], []) AX_PKG_CHECK_MODULES(HARFBUZZ, [], harfbuzz) AX_PKG_CHECK_MODULES(FRIBIDI, [], fribidi) +AX_PKG_CHECK_MODULES(UNIBREAK, [], libunibreak) PKG_CHECK_MODULES(GLIB, glib-2.0, have_glib=true, have_glib=false) _save_libs="$LIBS" diff --git a/docs/raqm-sections.txt b/docs/raqm-sections.txt index eabcbe11..40d9f346 100644 --- a/docs/raqm-sections.txt +++ b/docs/raqm-sections.txt @@ -7,6 +7,8 @@ raqm_set_text raqm_set_text_utf8 raqm_set_par_direction raqm_set_language +raqm_set_width +raqm_set_alignment raqm_set_freetype_face raqm_set_freetype_face_range raqm_set_freetype_load_flags @@ -17,5 +19,6 @@ raqm_index_to_position raqm_position_to_index raqm_t raqm_direction_t +raqm_alignment_t raqm_glyph_t diff --git a/src/Makefile.am b/src/Makefile.am index c8b33945..fce4f519 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -16,6 +16,7 @@ libraqm_la_LIBADD = \ $(FREETYPE_LIBS) \ $(HARFBUZZ_LIBS) \ $(FRIBIDI_LIBS) \ + $(UNIBREAK_LIBS) \ $(WARN_LDLAGS) \ $(NULL) @@ -23,6 +24,7 @@ libraqm_la_CPPFLAGS = \ $(FREETYPE_CFLAGS) \ $(HARFBUZZ_CFLAGS) \ $(FRIBIDI_CFLAGS) \ + $(UNIBREAK_CFLAGS) \ $(WARN_CFLAGS) \ $(NULL) diff --git a/src/raqm.c b/src/raqm.c index a2b85f2f..e051d04c 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -32,6 +32,7 @@ #include #include #include +#include #include "raqm.h" @@ -191,11 +192,15 @@ struct _raqm { _raqm_flags_t flags; int ft_loadflags; + + int line_width; + raqm_alignment_t alignment; }; struct _raqm_run { int pos; int len; + int line; hb_direction_t direction; hb_script_t script; @@ -307,6 +312,10 @@ raqm_create (void) rq->ft_loadflags = -1; + rq->line_width = -1; + + rq->alignment = RAQM_ALIGNMENT_LEFT; + return rq; } @@ -766,12 +775,66 @@ raqm_set_freetype_load_flags (raqm_t *rq, return true; } +/** + * raqm_set_width: + * @rq: a #raqm_t. + * @width: the line width. + * + * Sets the maximum line width for the paragraph. Causes Raqm to break lines + * exceeding @width. By default no line breaking takes place, and negative + * @width has the same effect. + * + * Return value: + * %true if no errors happened, %false otherwise. + * + * Since: 0.3 + */ +bool +raqm_set_width (raqm_t *rq, + int width) +{ + if (!rq) + return false; + + rq->line_width = width; + + return true; +} + +/** + * raqm_set_alignment: + * @rq: a #raqm_t. + * @alignment: the alignment of paragraph. + * + * Sets the paragraph alignment. By default text is left aligned. Has no effect + * if line width is not set, see raqm_set_width(). + * + * Return value: + * %true if no errors happened, %false otherwise. + * + * Since: 0.3 + */ +bool +raqm_set_alignment (raqm_t *rq, + raqm_alignment_t alignment) +{ + if (!rq) + return false; + + rq->alignment = alignment; + + return true; +} + static bool _raqm_itemize (raqm_t *rq); static bool _raqm_shape (raqm_t *rq); +static bool +_raqm_line_break (raqm_t *rq); + /** * raqm_layout: * @rq: a #raqm_t. @@ -809,6 +872,9 @@ raqm_layout (raqm_t *rq) if (!_raqm_shape (rq)) return false; + if (!_raqm_line_break (rq)) + return false; + return true; } @@ -849,47 +915,25 @@ raqm_get_glyphs (raqm_t *rq, *length = count; - if (rq->glyphs) - free (rq->glyphs); - - rq->glyphs = malloc (sizeof (raqm_glyph_t) * count); if (!rq->glyphs) { *length = 0; return NULL; } +#ifdef RAQM_TESTING RAQM_TEST ("Glyph information:\n"); - count = 0; - for (raqm_run_t *run = rq->runs; run != NULL; run = run->next) + for (size_t i = 0; i < *length; i++) { - size_t len; - hb_glyph_info_t *info; - hb_glyph_position_t *position; - - len = hb_buffer_get_length (run->buffer); - info = hb_buffer_get_glyph_infos (run->buffer, NULL); - position = hb_buffer_get_glyph_positions (run->buffer, NULL); - - for (size_t i = 0; i < len; i++) - { - rq->glyphs[count + i].index = info[i].codepoint; - rq->glyphs[count + i].cluster = info[i].cluster; - rq->glyphs[count + i].x_advance = position[i].x_advance; - rq->glyphs[count + i].y_advance = position[i].y_advance; - rq->glyphs[count + i].x_offset = position[i].x_offset; - rq->glyphs[count + i].y_offset = position[i].y_offset; - rq->glyphs[count + i].ftface = rq->text_info[info[i].cluster].ftface; - - RAQM_TEST ("glyph [%d]\tx_offset: %d\ty_offset: %d\tx_advance: %d\tfont: %s\n", - rq->glyphs[count + i].index, rq->glyphs[count + i].x_offset, - rq->glyphs[count + i].y_offset, rq->glyphs[count + i].x_advance, - rq->glyphs[count + i].ftface->family_name); - } - - count += len; + RAQM_TEST ("glyph [%d]\tx_offset: %d\ty_offset: %d\tx_advance: %d\t" + "line: %02d\tfont: %s\n", + rq->glyphs[i].index, rq->glyphs[i].x_offset, + rq->glyphs[i].y_offset, rq->glyphs[i].x_advance, + rq->glyphs[i].line, + rq->glyphs[i].ftface->family_name); } +#endif if (rq->flags & RAQM_FLAG_UTF8) { @@ -1036,6 +1080,368 @@ _raqm_reorder_runs (const FriBidiCharType *types, return runs; } +static bool +_raqm_find_line_breaks (raqm_t *rq, bool *result) +{ + char *breaks = NULL; + const char *lang; + + breaks = calloc (1, rq->text_len); + if (!breaks) + return false; + + lang = hb_language_to_string (rq->text_info[0].lang); + + init_linebreak (); + set_linebreaks_utf32 (rq->text, rq->text_len, lang, breaks); + + for (size_t i = 0; i < rq->text_len; i++) + { + if (breaks[i] == LINEBREAK_MUSTBREAK || breaks[i] == LINEBREAK_ALLOWBREAK) + { + result[i] = true; + } + else + result[i] = false; + } + + free (breaks); + + return true; +} + +static int +_raqm_logical_sort (const void *a, const void *b) +{ + raqm_glyph_t *ia = (raqm_glyph_t *) a; + raqm_glyph_t *ib = (raqm_glyph_t *) b; + + return ia->cluster - ib->cluster; +} + +static int +_raqm_visual_sort (const void *a, const void *b) +{ + raqm_glyph_t *ia = (raqm_glyph_t *) a; + raqm_glyph_t *ib = (raqm_glyph_t *) b; + + if (ia->line == ib->line) + return ia->visual_index - ib->visual_index; + else + return ia->line - ib->line; +} + +static bool +_raqm_is_space_glyph (raqm_t *rq, int idx) +{ + uint32_t ch = rq->text[rq->glyphs[idx].cluster]; + return hb_unicode_general_category (hb_unicode_funcs_get_default (), ch) == + HB_UNICODE_GENERAL_CATEGORY_SPACE_SEPARATOR; +} + +static bool +_raqm_next_is_same_cluster (raqm_t *rq, size_t idx, size_t count) +{ + if (idx < count - 1) + return rq->glyphs[idx].cluster == rq->glyphs[idx + 1].cluster; + return false; +} + +static bool +_raqm_break_lines (raqm_t *rq, size_t glyph_count) +{ + int width = 0; + int line = 0; + + /* Find possible break points */ + bool *breaks = calloc (rq->text_len, sizeof (bool)); + if (!breaks) + return false; + + /* Sort glyphs in logical order */ + qsort (rq->glyphs, glyph_count, sizeof (raqm_glyph_t), _raqm_logical_sort); + + /* Do line breaking */ + + /* Find possible line break points */ + if (!_raqm_find_line_breaks (rq, breaks)) + return false; + + /* Select actual line break points */ + for (size_t i = 0; i < glyph_count; i++) + { + size_t j; + int word_width = 0; + + rq->glyphs[i].line = line; + + /* Calculate the width to next possible break */ + for (j = i; j < glyph_count; j++) + { + uint32_t cluster; + + word_width += rq->glyphs[j].x_advance; + /* Add the width of all glyphs with the same cluster */ + for (; _raqm_next_is_same_cluster (rq, j, glyph_count); j++) + word_width += rq->glyphs[j + 1].x_advance; + + /* Find the last character index in this cluster */ + if (j < glyph_count - 1) + cluster = rq->glyphs[j + 1].cluster - 1; + else + cluster = rq->glyphs[j].cluster; + + if (cluster < rq->text_len - 1 && breaks[cluster + 1]) + break; + } + + if (width + word_width > rq->line_width) + { + /* Word does not fit, start a new line */ + line++; + width = 0; + } + else + { + /* Word fits, append all glyph to the current line */ + while (i < j && i < glyph_count - 1) + rq->glyphs[++i].line = line; + width += word_width; + } + } + + /* Then sort glyphs back in visual order */ + qsort (rq->glyphs, glyph_count, sizeof (raqm_glyph_t), _raqm_visual_sort); + + free (breaks); + + return true; +} + +static void +_raqm_align_text (raqm_t *rq, size_t glyph_count) +{ + raqm_glyph_t *glyphs = rq->glyphs; + int line_width = rq->line_width; + raqm_alignment_t alignment = rq->alignment; + raqm_alignment_t last_alignment = rq->alignment; + + switch (rq->alignment) + { + case RAQM_ALIGNMENT_START: + if (rq->resolved_dir == RAQM_DIRECTION_RTL) + alignment = RAQM_ALIGNMENT_RIGHT; + else + alignment = RAQM_ALIGNMENT_LEFT; + break; + case RAQM_ALIGNMENT_END: + if (rq->resolved_dir == RAQM_DIRECTION_RTL) + alignment = RAQM_ALIGNMENT_LEFT; + else + alignment = RAQM_ALIGNMENT_RIGHT; + break; + case RAQM_ALIGNMENT_JUSTIFY: + if (rq->resolved_dir == RAQM_DIRECTION_RTL) + last_alignment = RAQM_ALIGNMENT_RIGHT; + else + last_alignment = RAQM_ALIGNMENT_LEFT; + break; + case RAQM_ALIGNMENT_CENTER: + case RAQM_ALIGNMENT_RIGHT: + case RAQM_ALIGNMENT_LEFT: + default: + break; + } + + switch (alignment) + { + case RAQM_ALIGNMENT_RIGHT: + { + size_t j = 0; + int line = -1; + for (size_t i = glyph_count - 1; i != 0; i--) + { + if (glyphs[i].line != line) + { + int offset = line_width - (glyphs[i].x + glyphs[i].x_advance); + line = glyphs[i].line; + for (j = i; j != 0 && glyphs[j].line == line; j--) + { + /* check if at the start of the line there is a space */ + if (_raqm_is_space_glyph (rq, j) && (line != glyphs[j + 1].line)) + { + int space_width = glyphs[j].x_advance; + + /* apply shift */ + for (j = i; j != 0 && glyphs[j].line == line; j--) + { + glyphs[j - 1].x = glyphs[j - 1].x + space_width; + glyphs[j - 1].x += offset; + } + } + else + { + glyphs[j].x += offset; + } + } + } + i = j + 1; + } + break; + } + case RAQM_ALIGNMENT_CENTER: + { + size_t j = 0; + int line = -1; + for (size_t i = glyph_count - 1; i != 0; i--) + { + if (glyphs[i].line != line) + { + int offset = (line_width - (glyphs[i].x + glyphs[i].x_advance)) / 2; + line = glyphs[i].line; + for (j = i; j != 0 && glyphs[j].line == line; j--) + glyphs[j].x += offset; + } + i = j + 1; + } + break; + } + case RAQM_ALIGNMENT_JUSTIFY: + { + int space_count = 0; + size_t j = 0; + int line = -1; + (void)last_alignment; + for (size_t i = glyph_count - 1; i != 0; i--) + { + if (glyphs[i].line != line) + { + int space_extension = 0; + int offset = line_width - (glyphs[i].x + glyphs[i].x_advance); + line = glyphs[i].line; + + /* counting spaces in one line */ + for (j = i; j != 0 && glyphs[j].line == line; j--) + { + if (_raqm_is_space_glyph (rq, j)) + space_count++; + } + + /* distributing align offset to all spaces */ + if (space_count == 0) + offset = 0; + else + offset = offset / space_count; + for (size_t k = j + 1; glyphs[k].line == line; k++) + { + glyphs[k].x += space_extension; + if (_raqm_is_space_glyph (rq, k)) + space_extension += offset; + } + } + i = j + 1; + } + break; + } + case RAQM_ALIGNMENT_START: + case RAQM_ALIGNMENT_END: + /* Should have been resolved earlier. */ + assert(false); + break; + case RAQM_ALIGNMENT_LEFT: + default: + break; + } +} + +static bool +_raqm_line_break (raqm_t *rq) +{ + size_t count = 0; + size_t glyph_count = 0; + int x = 0; + int line = 0; + + /* counting total glyphs */ + for (raqm_run_t *run = rq->runs; run != NULL; run = run->next) + glyph_count += hb_buffer_get_length (run->buffer); + + rq->glyphs = malloc (sizeof (raqm_glyph_t) * glyph_count); + if (!rq->glyphs) + return false; + + /* populating glyphs */ + count = 0; + x = 0; + for (raqm_run_t *run = rq->runs; run != NULL; run = run->next) + { + size_t len; + hb_glyph_info_t *info; + hb_glyph_position_t *position; + + len = hb_buffer_get_length (run->buffer); + info = hb_buffer_get_glyph_infos (run->buffer, NULL); + position = hb_buffer_get_glyph_positions (run->buffer, NULL); + + for (size_t i = 0; i < len; i++) + { + rq->glyphs[count + i].index = info[i].codepoint; + rq->glyphs[count + i].cluster = info[i].cluster; + rq->glyphs[count + i].x_advance = position[i].x_advance; + rq->glyphs[count + i].y_advance = position[i].y_advance; + rq->glyphs[count + i].x_offset = position[i].x_offset; + rq->glyphs[count + i].y_offset = position[i].y_offset; + rq->glyphs[count + i].x = x + position[i].x_offset; + rq->glyphs[count + i].y = position[i].y_offset; + rq->glyphs[count + i].ftface = + rq->text_info[rq->glyphs[count + i].cluster].ftface; + rq->glyphs[count + i].visual_index = count + i; + rq->glyphs[count + i].line = 0; + + x += position[i].x_advance; + } + + count += len; + } + + if (rq->line_width < 0) + return true; + + /* Do line breaking */ + if (!_raqm_break_lines (rq, glyph_count)) + return false; + + /* calculating positions */ + line = 0; + x = 0; + for (size_t i = 0; i < glyph_count; i++) + { + FT_Face face; + int ascender, descender, leading; + + face = rq->text_info[rq->glyphs[i].cluster].ftface; + ascender = face->size->metrics.ascender; + descender = -face->size->metrics.descender; + leading = ascender + descender; + + if (rq->glyphs[i].line != line) + { + x = 0; + line = rq->glyphs[i].line; + } + + rq->glyphs[i].x = x + rq->glyphs[i].x_offset; + rq->glyphs[i].y = rq->glyphs[i].y_offset - line * leading - ascender; + + x += rq->glyphs[i].x_advance; + } + + /* Do text alignment */ + _raqm_align_text (rq, glyph_count); + + return true; +} + static bool _raqm_itemize (raqm_t *rq) { diff --git a/src/raqm.h b/src/raqm.h index f1decdd9..dcd2ccf3 100644 --- a/src/raqm.h +++ b/src/raqm.h @@ -31,6 +31,7 @@ #include #include +#include #include #include FT_FREETYPE_H @@ -67,6 +68,33 @@ typedef enum RAQM_DIRECTION_TTB } raqm_direction_t; +/** + * raqm_alignment_t: + * @RAQM_ALIGNMENT_START: Same as #RAQM_ALIGNMENT_RIGHT if paragraph direction + * is #RAQM_DIRECTION_RTL, same as #RAQM_ALIGNMENT_LEFT + * otherwise. + * @RAQM_ALIGNMENT_END: Same as #RAQM_ALIGNMENT_LEFT if paragraph direction is + * #RAQM_DIRECTION_RTL, same as #RAQM_ALIGNMENT_RIGHT + * otherwise. + * @RAQM_ALIGNMENT_RIGHT: Paragraph is right aligned. + * @RAQM_ALIGNMENT_LEFT: Paragraph is left aligned. + * @RAQM_ALIGNMENT_CENTER: Paragraph is center aligned.. + * @RAQM_ALIGNMENT_JUSTIFY: Paragraph is justified. + * + * Base paragraph alignment, see raqm_set_alignment(). + * + * Since: 0.3 + */ +typedef enum +{ + RAQM_ALIGNMENT_START, + RAQM_ALIGNMENT_END, + RAQM_ALIGNMENT_RIGHT, + RAQM_ALIGNMENT_LEFT, + RAQM_ALIGNMENT_CENTER, + RAQM_ALIGNMENT_JUSTIFY, +} raqm_alignment_t; + /** * raqm_glyph_t: * @index: the index of the glyph in the font file. @@ -74,6 +102,8 @@ typedef enum * @y_advance: the glyph advance width in vertical text. * @x_offset: the horizontal movement of the glyph from the current point. * @y_offset: the vertical movement of the glyph from the current point. + * @x: the absolute x position of the glyph. + * @y: the absolute y position of the glyph. * @cluster: the index of original character in input text. * @ftface: the @FT_Face of the glyph. * @@ -88,6 +118,11 @@ typedef struct raqm_glyph_t { int y_offset; uint32_t cluster; FT_Face ftface; + int x; + int y; + /*< private >*/ + int visual_index; + int line; } raqm_glyph_t; raqm_t * @@ -119,6 +154,14 @@ raqm_set_language (raqm_t *rq, size_t start, size_t len); +bool +raqm_set_width (raqm_t *rq, + int width); + +bool +raqm_set_alignment (raqm_t *rq, + raqm_alignment_t alignment); + bool raqm_add_font_feature (raqm_t *rq, const char *feature, diff --git a/tests/Makefile.am b/tests/Makefile.am index 0421d257..4460f7d7 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -40,6 +40,8 @@ TEST_FILES = \ scripts-forward-rtl.test \ languages-sr.test \ languages-sr-ru.test \ + line-breaking-ltr.test \ + line-breaking-rtl.test \ multi-fonts.test \ multi-fonts2.test \ xyoffset.test \ diff --git a/tests/buffer-flags-1.test b/tests/buffer-flags-1.test index e46ed818..27a1ab1b 100644 --- a/tests/buffer-flags-1.test +++ b/tests/buffer-flags-1.test @@ -28,11 +28,11 @@ run[0]: start: 1 length: 3 direction: rtl script: Arab font: Amiri run[1]: start: 0 length: 1 direction: rtl script: Zinh font: Amiri Glyph information: -glyph [427] x_offset: 0 y_offset: 0 x_advance: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [389] x_offset: 0 y_offset: 0 x_advance: 1897 font: Amiri -glyph [782] x_offset: 0 y_offset: 0 x_advance: 1392 font: Amiri -glyph [427] x_offset: -1245 y_offset: -430 x_advance: 0 font: Amiri +glyph [427] x_offset: 0 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [389] x_offset: 0 y_offset: 0 x_advance: 1897 line: 00 font: Amiri +glyph [782] x_offset: 0 y_offset: 0 x_advance: 1392 line: 00 font: Amiri +glyph [427] x_offset: -1245 y_offset: -430 x_advance: 0 line: 00 font: Amiri UTF-32 clusters: 02 02 01 00 00 UTF-8 clusters: 04 04 02 00 00 diff --git a/tests/cursor_position1.test b/tests/cursor_position1.test index bcc1555a..2c6e9480 100644 --- a/tests/cursor_position1.test +++ b/tests/cursor_position1.test @@ -45,16 +45,16 @@ run[0]: start: 0 length: 7 direction: ltr script: Latn font: Amiri run[1]: start: 7 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [183] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [162] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [428] x_offset: -234 y_offset: 0 x_advance: 0 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri +glyph [183] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [162] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [428] x_offset: -234 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri UTF-32 clusters: 00 02 03 05 06 11 10 09 07 07 UTF-8 clusters: 00 03 04 07 08 17 15 13 09 09 diff --git a/tests/cursor_position2.test b/tests/cursor_position2.test index eee569d5..f164e203 100644 --- a/tests/cursor_position2.test +++ b/tests/cursor_position2.test @@ -45,16 +45,16 @@ run[0]: start: 0 length: 7 direction: ltr script: Latn font: Amiri run[1]: start: 7 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [183] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [162] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [428] x_offset: -234 y_offset: 0 x_advance: 0 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri +glyph [183] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [162] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [428] x_offset: -234 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri UTF-32 clusters: 00 02 03 05 06 11 10 09 07 07 UTF-8 clusters: 00 03 04 07 08 17 15 13 09 09 diff --git a/tests/cursor_position3.test b/tests/cursor_position3.test index add1bb27..7c462271 100644 --- a/tests/cursor_position3.test +++ b/tests/cursor_position3.test @@ -41,16 +41,16 @@ run[0]: start: 6 length: 4 direction: ltr script: Latn font: Amiri run[1]: start: 0 length: 6 direction: rtl script: Arab font: Amiri Glyph information: -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri UTF-32 clusters: 06 07 08 09 05 04 03 01 01 00 UTF-8 clusters: 11 12 13 14 10 08 06 02 02 00 diff --git a/tests/cursor_position4.test b/tests/cursor_position4.test index 8efc8d48..52ebade9 100644 --- a/tests/cursor_position4.test +++ b/tests/cursor_position4.test @@ -41,16 +41,16 @@ run[0]: start: 6 length: 4 direction: ltr script: Latn font: Amiri run[1]: start: 0 length: 6 direction: rtl script: Arab font: Amiri Glyph information: -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri UTF-32 clusters: 06 07 08 09 05 04 03 01 01 00 UTF-8 clusters: 11 12 13 14 10 08 06 02 02 00 diff --git a/tests/cursor_position_GB3.test b/tests/cursor_position_GB3.test index c8fb716b..4ed6dbee 100644 --- a/tests/cursor_position_GB3.test +++ b/tests/cursor_position_GB3.test @@ -32,12 +32,12 @@ Final Runs: run[0]: start: 0 length: 6 direction: ltr script: Latn font: Amiri Glyph information: -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 UTF-8 clusters: 00 01 02 03 04 05 diff --git a/tests/cursor_position_GB4.test b/tests/cursor_position_GB4.test index ea459845..b961c088 100644 --- a/tests/cursor_position_GB4.test +++ b/tests/cursor_position_GB4.test @@ -37,15 +37,15 @@ Final Runs: run[0]: start: 0 length: 9 direction: ltr script: Latn font: Amiri Glyph information: -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 UTF-8 clusters: 00 01 02 03 04 06 07 08 09 diff --git a/tests/cursor_position_GB5.test b/tests/cursor_position_GB5.test index 85e974d8..9db242f3 100644 --- a/tests/cursor_position_GB5.test +++ b/tests/cursor_position_GB5.test @@ -37,15 +37,15 @@ Final Runs: run[0]: start: 0 length: 9 direction: ltr script: Latn font: Amiri Glyph information: -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 UTF-8 clusters: 00 01 02 03 04 06 07 08 09 diff --git a/tests/cursor_position_GB8a.test b/tests/cursor_position_GB8a.test index 217bb91e..0c138c2a 100644 --- a/tests/cursor_position_GB8a.test +++ b/tests/cursor_position_GB8a.test @@ -27,10 +27,10 @@ Final Runs: run[0]: start: 0 length: 4 direction: ltr script: Zyyy font: Amiri Glyph information: -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 UTF-8 clusters: 00 04 08 12 diff --git a/tests/cursor_position_GB9.test b/tests/cursor_position_GB9.test index bcc1555a..2c6e9480 100644 --- a/tests/cursor_position_GB9.test +++ b/tests/cursor_position_GB9.test @@ -45,16 +45,16 @@ run[0]: start: 0 length: 7 direction: ltr script: Latn font: Amiri run[1]: start: 7 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [183] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [162] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [428] x_offset: -234 y_offset: 0 x_advance: 0 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri +glyph [183] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [162] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [428] x_offset: -234 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri UTF-32 clusters: 00 02 03 05 06 11 10 09 07 07 UTF-8 clusters: 00 03 04 07 08 17 15 13 09 09 diff --git a/tests/cursor_position_GB9a.test b/tests/cursor_position_GB9a.test index fe4df1b3..cee4a3fb 100644 --- a/tests/cursor_position_GB9a.test +++ b/tests/cursor_position_GB9a.test @@ -25,9 +25,9 @@ Final Runs: run[0]: start: 0 length: 3 direction: ltr script: Deva font: Amiri Glyph information: -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri UTF-32 clusters: 00 00 02 UTF-8 clusters: 00 00 06 diff --git a/tests/features-arabic.test b/tests/features-arabic.test index 4f1ce6a9..42dd968f 100644 --- a/tests/features-arabic.test +++ b/tests/features-arabic.test @@ -45,19 +45,19 @@ Final Runs: run[0]: start: 0 length: 13 direction: rtl script: Arab font: Amiri Glyph information: -glyph [390] x_offset: 0 y_offset: 0 x_advance: 756 font: Amiri -glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 font: Amiri -glyph [389] x_offset: 0 y_offset: 0 x_advance: 1897 font: Amiri -glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 font: Amiri -glyph [406] x_offset: 0 y_offset: 0 x_advance: 1107 font: Amiri -glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [390] x_offset: 0 y_offset: 0 x_advance: 756 font: Amiri -glyph [407] x_offset: 0 y_offset: 0 x_advance: 1107 font: Amiri -glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 font: Amiri -glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 font: Amiri +glyph [390] x_offset: 0 y_offset: 0 x_advance: 756 line: 00 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 line: 00 font: Amiri +glyph [389] x_offset: 0 y_offset: 0 x_advance: 1897 line: 00 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 line: 00 font: Amiri +glyph [406] x_offset: 0 y_offset: 0 x_advance: 1107 line: 00 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [390] x_offset: 0 y_offset: 0 x_advance: 756 line: 00 font: Amiri +glyph [407] x_offset: 0 y_offset: 0 x_advance: 1107 line: 00 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 00 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri UTF-32 clusters: 12 11 10 09 08 07 06 05 04 03 02 01 00 UTF-8 clusters: 23 21 19 17 15 13 11 10 08 06 04 02 00 diff --git a/tests/features-kerning.test b/tests/features-kerning.test index 884e8b2d..77ad0efb 100644 --- a/tests/features-kerning.test +++ b/tests/features-kerning.test @@ -45,19 +45,19 @@ Final Runs: run[0]: start: 0 length: 13 direction: ltr script: Latn font: Amiri Glyph information: -glyph [47] x_offset: 0 y_offset: 0 x_advance: 1128 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 font: Amiri -glyph [91] x_offset: 0 y_offset: 0 x_advance: 952 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [54] x_offset: 0 y_offset: 0 x_advance: 1004 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 font: Amiri +glyph [47] x_offset: 0 y_offset: 0 x_advance: 1128 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 00 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 952 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [54] x_offset: 0 y_offset: 0 x_advance: 1004 line: 00 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 00 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 00 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 00 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 00 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 diff --git a/tests/features-ligature.test b/tests/features-ligature.test index 10aa6fde..66c40f28 100644 --- a/tests/features-ligature.test +++ b/tests/features-ligature.test @@ -49,21 +49,21 @@ Final Runs: run[0]: start: 0 length: 15 direction: ltr script: Latn font: Amiri Glyph information: -glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 font: Amiri +glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 diff --git a/tests/languages-sr-ru.test b/tests/languages-sr-ru.test index 0b776393..83f9dfa7 100644 --- a/tests/languages-sr-ru.test +++ b/tests/languages-sr-ru.test @@ -28,10 +28,10 @@ run[0]: start: 0 length: 2 direction: ltr script: Cyrl font: DejaVu Serif run[1]: start: 2 length: 2 direction: ltr script: Cyrl font: DejaVu Serif Glyph information: -glyph [5] x_offset: 0 y_offset: 0 x_advance: 1940 font: DejaVu Serif -glyph [4] x_offset: 0 y_offset: 0 x_advance: 1233 font: DejaVu Serif -glyph [3] x_offset: 0 y_offset: 0 x_advance: 1942 font: DejaVu Serif -glyph [2] x_offset: 0 y_offset: 0 x_advance: 1250 font: DejaVu Serif +glyph [5] x_offset: 0 y_offset: 0 x_advance: 1940 line: 00 font: DejaVu Serif +glyph [4] x_offset: 0 y_offset: 0 x_advance: 1233 line: 00 font: DejaVu Serif +glyph [3] x_offset: 0 y_offset: 0 x_advance: 1942 line: 00 font: DejaVu Serif +glyph [2] x_offset: 0 y_offset: 0 x_advance: 1250 line: 00 font: DejaVu Serif UTF-32 clusters: 00 01 02 03 UTF-8 clusters: 00 02 04 06 diff --git a/tests/languages-sr.test b/tests/languages-sr.test index 0ea8445b..b5ac6fee 100644 --- a/tests/languages-sr.test +++ b/tests/languages-sr.test @@ -23,8 +23,8 @@ Final Runs: run[0]: start: 0 length: 2 direction: ltr script: Cyrl font: DejaVu Serif Glyph information: -glyph [5] x_offset: 0 y_offset: 0 x_advance: 1940 font: DejaVu Serif -glyph [4] x_offset: 0 y_offset: 0 x_advance: 1233 font: DejaVu Serif +glyph [5] x_offset: 0 y_offset: 0 x_advance: 1940 line: 00 font: DejaVu Serif +glyph [4] x_offset: 0 y_offset: 0 x_advance: 1233 line: 00 font: DejaVu Serif UTF-32 clusters: 00 01 UTF-8 clusters: 00 02 diff --git a/tests/line-breaking-ltr.test b/tests/line-breaking-ltr.test new file mode 100644 index 00000000..5c984bab --- /dev/null +++ b/tests/line-breaking-ltr.test @@ -0,0 +1,1357 @@ +fonts/sha1sum/bcb3b98eb67ece19b8b709f77143d91bcb3d95eb.ttf +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. +--line-width=50000 +Text is: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. +Direction is: DEFAULT + +Before script detection: +script for ch[0] Latn +script for ch[1] Latn +script for ch[2] Latn +script for ch[3] Latn +script for ch[4] Latn +script for ch[5] Zyyy +script for ch[6] Latn +script for ch[7] Latn +script for ch[8] Latn +script for ch[9] Latn +script for ch[10] Latn +script for ch[11] Zyyy +script for ch[12] Latn +script for ch[13] Latn +script for ch[14] Latn +script for ch[15] Latn +script for ch[16] Latn +script for ch[17] Zyyy +script for ch[18] Latn +script for ch[19] Latn +script for ch[20] Latn +script for ch[21] Zyyy +script for ch[22] Latn +script for ch[23] Latn +script for ch[24] Latn +script for ch[25] Latn +script for ch[26] Zyyy +script for ch[27] Zyyy +script for ch[28] Latn +script for ch[29] Latn +script for ch[30] Latn +script for ch[31] Latn +script for ch[32] Latn +script for ch[33] Latn +script for ch[34] Latn +script for ch[35] Latn +script for ch[36] Latn +script for ch[37] Latn +script for ch[38] Latn +script for ch[39] Zyyy +script for ch[40] Latn +script for ch[41] Latn +script for ch[42] Latn +script for ch[43] Latn +script for ch[44] Latn +script for ch[45] Latn +script for ch[46] Latn +script for ch[47] Latn +script for ch[48] Latn +script for ch[49] Latn +script for ch[50] Zyyy +script for ch[51] Latn +script for ch[52] Latn +script for ch[53] Latn +script for ch[54] Latn +script for ch[55] Zyyy +script for ch[56] Zyyy +script for ch[57] Latn +script for ch[58] Latn +script for ch[59] Latn +script for ch[60] Zyyy +script for ch[61] Latn +script for ch[62] Latn +script for ch[63] Zyyy +script for ch[64] Latn +script for ch[65] Latn +script for ch[66] Latn +script for ch[67] Latn +script for ch[68] Latn +script for ch[69] Latn +script for ch[70] Latn +script for ch[71] Zyyy +script for ch[72] Latn +script for ch[73] Latn +script for ch[74] Latn +script for ch[75] Latn +script for ch[76] Latn +script for ch[77] Latn +script for ch[78] Zyyy +script for ch[79] Latn +script for ch[80] Latn +script for ch[81] Latn +script for ch[82] Latn +script for ch[83] Latn +script for ch[84] Latn +script for ch[85] Latn +script for ch[86] Latn +script for ch[87] Latn +script for ch[88] Latn +script for ch[89] Zyyy +script for ch[90] Latn +script for ch[91] Latn +script for ch[92] Zyyy +script for ch[93] Latn +script for ch[94] Latn +script for ch[95] Latn +script for ch[96] Latn +script for ch[97] Latn +script for ch[98] Latn +script for ch[99] Zyyy +script for ch[100] Latn +script for ch[101] Latn +script for ch[102] Zyyy +script for ch[103] Latn +script for ch[104] Latn +script for ch[105] Latn +script for ch[106] Latn +script for ch[107] Latn +script for ch[108] Latn +script for ch[109] Zyyy +script for ch[110] Latn +script for ch[111] Latn +script for ch[112] Latn +script for ch[113] Latn +script for ch[114] Latn +script for ch[115] Zyyy +script for ch[116] Latn +script for ch[117] Latn +script for ch[118] Latn +script for ch[119] Latn +script for ch[120] Latn +script for ch[121] Latn +script for ch[122] Zyyy +script for ch[123] Zyyy +script for ch[124] Latn +script for ch[125] Latn +script for ch[126] Zyyy +script for ch[127] Latn +script for ch[128] Latn +script for ch[129] Latn +script for ch[130] Latn +script for ch[131] Zyyy +script for ch[132] Latn +script for ch[133] Latn +script for ch[134] Zyyy +script for ch[135] Latn +script for ch[136] Latn +script for ch[137] Latn +script for ch[138] Latn +script for ch[139] Latn +script for ch[140] Zyyy +script for ch[141] Latn +script for ch[142] Latn +script for ch[143] Latn +script for ch[144] Latn +script for ch[145] Latn +script for ch[146] Latn +script for ch[147] Zyyy +script for ch[148] Zyyy +script for ch[149] Latn +script for ch[150] Latn +script for ch[151] Latn +script for ch[152] Latn +script for ch[153] Zyyy +script for ch[154] Latn +script for ch[155] Latn +script for ch[156] Latn +script for ch[157] Latn +script for ch[158] Latn +script for ch[159] Latn +script for ch[160] Latn +script for ch[161] Zyyy +script for ch[162] Latn +script for ch[163] Latn +script for ch[164] Latn +script for ch[165] Latn +script for ch[166] Latn +script for ch[167] Latn +script for ch[168] Latn +script for ch[169] Latn +script for ch[170] Latn +script for ch[171] Latn +script for ch[172] Latn +script for ch[173] Latn +script for ch[174] Zyyy +script for ch[175] Latn +script for ch[176] Latn +script for ch[177] Latn +script for ch[178] Latn +script for ch[179] Latn +script for ch[180] Latn +script for ch[181] Latn +script for ch[182] Zyyy +script for ch[183] Latn +script for ch[184] Latn +script for ch[185] Latn +script for ch[186] Latn +script for ch[187] Latn +script for ch[188] Latn +script for ch[189] Latn +script for ch[190] Zyyy +script for ch[191] Latn +script for ch[192] Latn +script for ch[193] Latn +script for ch[194] Latn +script for ch[195] Zyyy +script for ch[196] Latn +script for ch[197] Latn +script for ch[198] Zyyy +script for ch[199] Latn +script for ch[200] Latn +script for ch[201] Latn +script for ch[202] Latn +script for ch[203] Latn +script for ch[204] Latn +script for ch[205] Latn +script for ch[206] Zyyy +script for ch[207] Latn +script for ch[208] Latn +script for ch[209] Zyyy +script for ch[210] Latn +script for ch[211] Latn +script for ch[212] Zyyy +script for ch[213] Latn +script for ch[214] Latn +script for ch[215] Latn +script for ch[216] Latn +script for ch[217] Latn +script for ch[218] Latn +script for ch[219] Latn +script for ch[220] Zyyy +script for ch[221] Latn +script for ch[222] Latn +script for ch[223] Latn +script for ch[224] Latn +script for ch[225] Latn +script for ch[226] Latn +script for ch[227] Latn +script for ch[228] Latn +script for ch[229] Latn +script for ch[230] Zyyy +script for ch[231] Zyyy +script for ch[232] Latn +script for ch[233] Latn +script for ch[234] Latn +script for ch[235] Latn +script for ch[236] Zyyy +script for ch[237] Latn +script for ch[238] Latn +script for ch[239] Latn +script for ch[240] Latn +script for ch[241] Zyyy +script for ch[242] Latn +script for ch[243] Latn +script for ch[244] Latn +script for ch[245] Latn +script for ch[246] Latn +script for ch[247] Zyyy +script for ch[248] Latn +script for ch[249] Latn +script for ch[250] Latn +script for ch[251] Latn +script for ch[252] Latn +script for ch[253] Zyyy +script for ch[254] Latn +script for ch[255] Latn +script for ch[256] Zyyy +script for ch[257] Latn +script for ch[258] Latn +script for ch[259] Latn +script for ch[260] Latn +script for ch[261] Latn +script for ch[262] Latn +script for ch[263] Latn +script for ch[264] Latn +script for ch[265] Latn +script for ch[266] Latn +script for ch[267] Latn +script for ch[268] Latn +script for ch[269] Latn +script for ch[270] Zyyy +script for ch[271] Latn +script for ch[272] Latn +script for ch[273] Zyyy +script for ch[274] Latn +script for ch[275] Latn +script for ch[276] Latn +script for ch[277] Latn +script for ch[278] Latn +script for ch[279] Latn +script for ch[280] Latn +script for ch[281] Latn +script for ch[282] Latn +script for ch[283] Zyyy +script for ch[284] Latn +script for ch[285] Latn +script for ch[286] Latn +script for ch[287] Latn +script for ch[288] Latn +script for ch[289] Zyyy +script for ch[290] Latn +script for ch[291] Latn +script for ch[292] Latn +script for ch[293] Latn +script for ch[294] Zyyy +script for ch[295] Latn +script for ch[296] Latn +script for ch[297] Latn +script for ch[298] Latn +script for ch[299] Latn +script for ch[300] Latn +script for ch[301] Zyyy +script for ch[302] Latn +script for ch[303] Latn +script for ch[304] Latn +script for ch[305] Latn +script for ch[306] Latn +script for ch[307] Latn +script for ch[308] Zyyy +script for ch[309] Latn +script for ch[310] Latn +script for ch[311] Zyyy +script for ch[312] Latn +script for ch[313] Latn +script for ch[314] Latn +script for ch[315] Latn +script for ch[316] Latn +script for ch[317] Latn +script for ch[318] Zyyy +script for ch[319] Latn +script for ch[320] Latn +script for ch[321] Latn +script for ch[322] Latn +script for ch[323] Latn +script for ch[324] Zyyy +script for ch[325] Latn +script for ch[326] Latn +script for ch[327] Latn +script for ch[328] Latn +script for ch[329] Latn +script for ch[330] Latn +script for ch[331] Latn +script for ch[332] Latn +script for ch[333] Zyyy +script for ch[334] Zyyy +script for ch[335] Latn +script for ch[336] Latn +script for ch[337] Latn +script for ch[338] Latn +script for ch[339] Latn +script for ch[340] Latn +script for ch[341] Latn +script for ch[342] Latn +script for ch[343] Latn +script for ch[344] Zyyy +script for ch[345] Latn +script for ch[346] Latn +script for ch[347] Latn +script for ch[348] Latn +script for ch[349] Zyyy +script for ch[350] Latn +script for ch[351] Latn +script for ch[352] Latn +script for ch[353] Latn +script for ch[354] Latn +script for ch[355] Latn +script for ch[356] Latn +script for ch[357] Latn +script for ch[358] Zyyy +script for ch[359] Latn +script for ch[360] Latn +script for ch[361] Latn +script for ch[362] Latn +script for ch[363] Latn +script for ch[364] Latn +script for ch[365] Latn +script for ch[366] Latn +script for ch[367] Latn +script for ch[368] Zyyy +script for ch[369] Latn +script for ch[370] Latn +script for ch[371] Latn +script for ch[372] Zyyy +script for ch[373] Latn +script for ch[374] Latn +script for ch[375] Latn +script for ch[376] Latn +script for ch[377] Latn +script for ch[378] Latn +script for ch[379] Latn +script for ch[380] Latn +script for ch[381] Zyyy +script for ch[382] Zyyy +script for ch[383] Latn +script for ch[384] Latn +script for ch[385] Latn +script for ch[386] Latn +script for ch[387] Zyyy +script for ch[388] Latn +script for ch[389] Latn +script for ch[390] Zyyy +script for ch[391] Latn +script for ch[392] Latn +script for ch[393] Latn +script for ch[394] Latn +script for ch[395] Latn +script for ch[396] Zyyy +script for ch[397] Latn +script for ch[398] Latn +script for ch[399] Latn +script for ch[400] Zyyy +script for ch[401] Latn +script for ch[402] Latn +script for ch[403] Latn +script for ch[404] Latn +script for ch[405] Latn +script for ch[406] Latn +script for ch[407] Latn +script for ch[408] Zyyy +script for ch[409] Latn +script for ch[410] Latn +script for ch[411] Latn +script for ch[412] Latn +script for ch[413] Latn +script for ch[414] Latn +script for ch[415] Latn +script for ch[416] Latn +script for ch[417] Zyyy +script for ch[418] Latn +script for ch[419] Latn +script for ch[420] Latn +script for ch[421] Latn +script for ch[422] Latn +script for ch[423] Latn +script for ch[424] Zyyy +script for ch[425] Latn +script for ch[426] Latn +script for ch[427] Latn +script for ch[428] Latn +script for ch[429] Zyyy +script for ch[430] Latn +script for ch[431] Latn +script for ch[432] Zyyy +script for ch[433] Latn +script for ch[434] Latn +script for ch[435] Latn +script for ch[436] Zyyy +script for ch[437] Latn +script for ch[438] Latn +script for ch[439] Latn +script for ch[440] Latn +script for ch[441] Latn +script for ch[442] Latn +script for ch[443] Latn +script for ch[444] Zyyy + +After script detection: +script for ch[0] Latn +script for ch[1] Latn +script for ch[2] Latn +script for ch[3] Latn +script for ch[4] Latn +script for ch[5] Latn +script for ch[6] Latn +script for ch[7] Latn +script for ch[8] Latn +script for ch[9] Latn +script for ch[10] Latn +script for ch[11] Latn +script for ch[12] Latn +script for ch[13] Latn +script for ch[14] Latn +script for ch[15] Latn +script for ch[16] Latn +script for ch[17] Latn +script for ch[18] Latn +script for ch[19] Latn +script for ch[20] Latn +script for ch[21] Latn +script for ch[22] Latn +script for ch[23] Latn +script for ch[24] Latn +script for ch[25] Latn +script for ch[26] Latn +script for ch[27] Latn +script for ch[28] Latn +script for ch[29] Latn +script for ch[30] Latn +script for ch[31] Latn +script for ch[32] Latn +script for ch[33] Latn +script for ch[34] Latn +script for ch[35] Latn +script for ch[36] Latn +script for ch[37] Latn +script for ch[38] Latn +script for ch[39] Latn +script for ch[40] Latn +script for ch[41] Latn +script for ch[42] Latn +script for ch[43] Latn +script for ch[44] Latn +script for ch[45] Latn +script for ch[46] Latn +script for ch[47] Latn +script for ch[48] Latn +script for ch[49] Latn +script for ch[50] Latn +script for ch[51] Latn +script for ch[52] Latn +script for ch[53] Latn +script for ch[54] Latn +script for ch[55] Latn +script for ch[56] Latn +script for ch[57] Latn +script for ch[58] Latn +script for ch[59] Latn +script for ch[60] Latn +script for ch[61] Latn +script for ch[62] Latn +script for ch[63] Latn +script for ch[64] Latn +script for ch[65] Latn +script for ch[66] Latn +script for ch[67] Latn +script for ch[68] Latn +script for ch[69] Latn +script for ch[70] Latn +script for ch[71] Latn +script for ch[72] Latn +script for ch[73] Latn +script for ch[74] Latn +script for ch[75] Latn +script for ch[76] Latn +script for ch[77] Latn +script for ch[78] Latn +script for ch[79] Latn +script for ch[80] Latn +script for ch[81] Latn +script for ch[82] Latn +script for ch[83] Latn +script for ch[84] Latn +script for ch[85] Latn +script for ch[86] Latn +script for ch[87] Latn +script for ch[88] Latn +script for ch[89] Latn +script for ch[90] Latn +script for ch[91] Latn +script for ch[92] Latn +script for ch[93] Latn +script for ch[94] Latn +script for ch[95] Latn +script for ch[96] Latn +script for ch[97] Latn +script for ch[98] Latn +script for ch[99] Latn +script for ch[100] Latn +script for ch[101] Latn +script for ch[102] Latn +script for ch[103] Latn +script for ch[104] Latn +script for ch[105] Latn +script for ch[106] Latn +script for ch[107] Latn +script for ch[108] Latn +script for ch[109] Latn +script for ch[110] Latn +script for ch[111] Latn +script for ch[112] Latn +script for ch[113] Latn +script for ch[114] Latn +script for ch[115] Latn +script for ch[116] Latn +script for ch[117] Latn +script for ch[118] Latn +script for ch[119] Latn +script for ch[120] Latn +script for ch[121] Latn +script for ch[122] Latn +script for ch[123] Latn +script for ch[124] Latn +script for ch[125] Latn +script for ch[126] Latn +script for ch[127] Latn +script for ch[128] Latn +script for ch[129] Latn +script for ch[130] Latn +script for ch[131] Latn +script for ch[132] Latn +script for ch[133] Latn +script for ch[134] Latn +script for ch[135] Latn +script for ch[136] Latn +script for ch[137] Latn +script for ch[138] Latn +script for ch[139] Latn +script for ch[140] Latn +script for ch[141] Latn +script for ch[142] Latn +script for ch[143] Latn +script for ch[144] Latn +script for ch[145] Latn +script for ch[146] Latn +script for ch[147] Latn +script for ch[148] Latn +script for ch[149] Latn +script for ch[150] Latn +script for ch[151] Latn +script for ch[152] Latn +script for ch[153] Latn +script for ch[154] Latn +script for ch[155] Latn +script for ch[156] Latn +script for ch[157] Latn +script for ch[158] Latn +script for ch[159] Latn +script for ch[160] Latn +script for ch[161] Latn +script for ch[162] Latn +script for ch[163] Latn +script for ch[164] Latn +script for ch[165] Latn +script for ch[166] Latn +script for ch[167] Latn +script for ch[168] Latn +script for ch[169] Latn +script for ch[170] Latn +script for ch[171] Latn +script for ch[172] Latn +script for ch[173] Latn +script for ch[174] Latn +script for ch[175] Latn +script for ch[176] Latn +script for ch[177] Latn +script for ch[178] Latn +script for ch[179] Latn +script for ch[180] Latn +script for ch[181] Latn +script for ch[182] Latn +script for ch[183] Latn +script for ch[184] Latn +script for ch[185] Latn +script for ch[186] Latn +script for ch[187] Latn +script for ch[188] Latn +script for ch[189] Latn +script for ch[190] Latn +script for ch[191] Latn +script for ch[192] Latn +script for ch[193] Latn +script for ch[194] Latn +script for ch[195] Latn +script for ch[196] Latn +script for ch[197] Latn +script for ch[198] Latn +script for ch[199] Latn +script for ch[200] Latn +script for ch[201] Latn +script for ch[202] Latn +script for ch[203] Latn +script for ch[204] Latn +script for ch[205] Latn +script for ch[206] Latn +script for ch[207] Latn +script for ch[208] Latn +script for ch[209] Latn +script for ch[210] Latn +script for ch[211] Latn +script for ch[212] Latn +script for ch[213] Latn +script for ch[214] Latn +script for ch[215] Latn +script for ch[216] Latn +script for ch[217] Latn +script for ch[218] Latn +script for ch[219] Latn +script for ch[220] Latn +script for ch[221] Latn +script for ch[222] Latn +script for ch[223] Latn +script for ch[224] Latn +script for ch[225] Latn +script for ch[226] Latn +script for ch[227] Latn +script for ch[228] Latn +script for ch[229] Latn +script for ch[230] Latn +script for ch[231] Latn +script for ch[232] Latn +script for ch[233] Latn +script for ch[234] Latn +script for ch[235] Latn +script for ch[236] Latn +script for ch[237] Latn +script for ch[238] Latn +script for ch[239] Latn +script for ch[240] Latn +script for ch[241] Latn +script for ch[242] Latn +script for ch[243] Latn +script for ch[244] Latn +script for ch[245] Latn +script for ch[246] Latn +script for ch[247] Latn +script for ch[248] Latn +script for ch[249] Latn +script for ch[250] Latn +script for ch[251] Latn +script for ch[252] Latn +script for ch[253] Latn +script for ch[254] Latn +script for ch[255] Latn +script for ch[256] Latn +script for ch[257] Latn +script for ch[258] Latn +script for ch[259] Latn +script for ch[260] Latn +script for ch[261] Latn +script for ch[262] Latn +script for ch[263] Latn +script for ch[264] Latn +script for ch[265] Latn +script for ch[266] Latn +script for ch[267] Latn +script for ch[268] Latn +script for ch[269] Latn +script for ch[270] Latn +script for ch[271] Latn +script for ch[272] Latn +script for ch[273] Latn +script for ch[274] Latn +script for ch[275] Latn +script for ch[276] Latn +script for ch[277] Latn +script for ch[278] Latn +script for ch[279] Latn +script for ch[280] Latn +script for ch[281] Latn +script for ch[282] Latn +script for ch[283] Latn +script for ch[284] Latn +script for ch[285] Latn +script for ch[286] Latn +script for ch[287] Latn +script for ch[288] Latn +script for ch[289] Latn +script for ch[290] Latn +script for ch[291] Latn +script for ch[292] Latn +script for ch[293] Latn +script for ch[294] Latn +script for ch[295] Latn +script for ch[296] Latn +script for ch[297] Latn +script for ch[298] Latn +script for ch[299] Latn +script for ch[300] Latn +script for ch[301] Latn +script for ch[302] Latn +script for ch[303] Latn +script for ch[304] Latn +script for ch[305] Latn +script for ch[306] Latn +script for ch[307] Latn +script for ch[308] Latn +script for ch[309] Latn +script for ch[310] Latn +script for ch[311] Latn +script for ch[312] Latn +script for ch[313] Latn +script for ch[314] Latn +script for ch[315] Latn +script for ch[316] Latn +script for ch[317] Latn +script for ch[318] Latn +script for ch[319] Latn +script for ch[320] Latn +script for ch[321] Latn +script for ch[322] Latn +script for ch[323] Latn +script for ch[324] Latn +script for ch[325] Latn +script for ch[326] Latn +script for ch[327] Latn +script for ch[328] Latn +script for ch[329] Latn +script for ch[330] Latn +script for ch[331] Latn +script for ch[332] Latn +script for ch[333] Latn +script for ch[334] Latn +script for ch[335] Latn +script for ch[336] Latn +script for ch[337] Latn +script for ch[338] Latn +script for ch[339] Latn +script for ch[340] Latn +script for ch[341] Latn +script for ch[342] Latn +script for ch[343] Latn +script for ch[344] Latn +script for ch[345] Latn +script for ch[346] Latn +script for ch[347] Latn +script for ch[348] Latn +script for ch[349] Latn +script for ch[350] Latn +script for ch[351] Latn +script for ch[352] Latn +script for ch[353] Latn +script for ch[354] Latn +script for ch[355] Latn +script for ch[356] Latn +script for ch[357] Latn +script for ch[358] Latn +script for ch[359] Latn +script for ch[360] Latn +script for ch[361] Latn +script for ch[362] Latn +script for ch[363] Latn +script for ch[364] Latn +script for ch[365] Latn +script for ch[366] Latn +script for ch[367] Latn +script for ch[368] Latn +script for ch[369] Latn +script for ch[370] Latn +script for ch[371] Latn +script for ch[372] Latn +script for ch[373] Latn +script for ch[374] Latn +script for ch[375] Latn +script for ch[376] Latn +script for ch[377] Latn +script for ch[378] Latn +script for ch[379] Latn +script for ch[380] Latn +script for ch[381] Latn +script for ch[382] Latn +script for ch[383] Latn +script for ch[384] Latn +script for ch[385] Latn +script for ch[386] Latn +script for ch[387] Latn +script for ch[388] Latn +script for ch[389] Latn +script for ch[390] Latn +script for ch[391] Latn +script for ch[392] Latn +script for ch[393] Latn +script for ch[394] Latn +script for ch[395] Latn +script for ch[396] Latn +script for ch[397] Latn +script for ch[398] Latn +script for ch[399] Latn +script for ch[400] Latn +script for ch[401] Latn +script for ch[402] Latn +script for ch[403] Latn +script for ch[404] Latn +script for ch[405] Latn +script for ch[406] Latn +script for ch[407] Latn +script for ch[408] Latn +script for ch[409] Latn +script for ch[410] Latn +script for ch[411] Latn +script for ch[412] Latn +script for ch[413] Latn +script for ch[414] Latn +script for ch[415] Latn +script for ch[416] Latn +script for ch[417] Latn +script for ch[418] Latn +script for ch[419] Latn +script for ch[420] Latn +script for ch[421] Latn +script for ch[422] Latn +script for ch[423] Latn +script for ch[424] Latn +script for ch[425] Latn +script for ch[426] Latn +script for ch[427] Latn +script for ch[428] Latn +script for ch[429] Latn +script for ch[430] Latn +script for ch[431] Latn +script for ch[432] Latn +script for ch[433] Latn +script for ch[434] Latn +script for ch[435] Latn +script for ch[436] Latn +script for ch[437] Latn +script for ch[438] Latn +script for ch[439] Latn +script for ch[440] Latn +script for ch[441] Latn +script for ch[442] Latn +script for ch[443] Latn +script for ch[444] Latn + +Number of runs before script itemization: 1 + +Fribidi Runs: +run[0]: start: 0 length: 445 level: 0 + +Number of runs after script itemization: 1 + +Final Runs: +run[0]: start: 0 length: 445 direction: ltr script: Latn font: Amiri + +Glyph information: +glyph [47] x_offset: 0 y_offset: 0 x_advance: 1128 line: 00 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 line: 00 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 00 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 00 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 00 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 00 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 00 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 00 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 00 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 01 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 01 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 01 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 01 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 01 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 01 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 01 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 01 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 01 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 01 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 01 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 01 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 01 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 01 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 01 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 01 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 01 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 01 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 01 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 01 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 01 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 01 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 01 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 01 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 01 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 01 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 line: 01 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 01 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 01 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 01 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 01 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 01 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 line: 01 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 01 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 01 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 01 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 01 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 02 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 02 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 02 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 line: 02 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 02 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 02 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [56] x_offset: 0 y_offset: 0 x_advance: 1408 line: 02 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 02 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 02 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 02 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 02 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 02 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 02 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 02 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 02 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 line: 02 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 02 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 02 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 02 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 02 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 02 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 line: 02 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 02 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 02 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 02 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 02 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 02 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 02 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 02 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 02 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 02 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 904 line: 02 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 02 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 750 line: 02 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 02 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 02 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 02 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 02 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 02 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 02 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 02 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 03 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 03 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 03 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 03 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 03 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 03 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 03 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 03 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 03 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 03 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 03 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 03 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 03 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 03 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 03 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 03 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 03 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 03 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 03 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 line: 03 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 03 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 03 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 03 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 952 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 03 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 03 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 03 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 03 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 03 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 03 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 03 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 03 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 03 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 03 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 03 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 03 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 line: 03 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 03 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 03 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 03 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [39] x_offset: 0 y_offset: 0 x_advance: 1420 line: 04 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 04 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 04 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 04 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 04 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 04 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 04 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 04 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 04 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 04 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 04 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 04 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 04 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 04 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 04 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 04 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 04 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 04 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 line: 04 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 04 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 04 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 04 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 04 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 04 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 04 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 04 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 04 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 04 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 05 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 05 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 05 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 05 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 05 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 05 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 05 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 05 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 05 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 line: 05 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 05 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 line: 05 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 05 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 05 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 05 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 05 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 05 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 05 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 05 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 05 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 05 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 05 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 05 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 05 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 05 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 05 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 05 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 742 line: 05 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 line: 05 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 900 line: 05 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 05 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 05 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 05 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 05 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 05 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 05 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 05 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 05 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 05 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 06 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 06 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 06 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 06 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 06 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 06 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 06 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 06 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 06 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 06 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 06 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 06 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 06 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 06 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 06 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 06 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 06 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 06 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 line: 06 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 06 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 06 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 06 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 06 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 06 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 06 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 06 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 06 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 06 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 06 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 06 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 06 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 06 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 06 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 line: 06 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 06 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 06 font: Amiri +glyph [786] x_offset: 0 y_offset: 0 x_advance: 1630 line: 06 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 06 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 06 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 07 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 07 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 07 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 07 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 07 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 07 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 07 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 07 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 07 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 07 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 07 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 07 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 07 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 07 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 07 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 07 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 07 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 07 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 07 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 07 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 07 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 07 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 07 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 07 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 07 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 line: 07 font: Amiri + +UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 +UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 diff --git a/tests/line-breaking-rtl.test b/tests/line-breaking-rtl.test new file mode 100644 index 00000000..b210ab59 --- /dev/null +++ b/tests/line-breaking-rtl.test @@ -0,0 +1,6523 @@ +fonts/sha1sum/bcb3b98eb67ece19b8b709f77143d91bcb3d95eb.ttf +(الْبَيْنُ) الْفِرَاقُ وَبَابُهُ بَاعَ وَ (بَيْنُونَةً) أَيْضًا. وَالْبَيْنُ الْوَصْلُ وَهُوَ مِنَ الْأَضْدَادِ. وَقُرِئَ «{لَقَدْ تَقَطَّعَ بَيْنُكُمْ} [الأنعام: 94]» بِالرَّفْعِ وَالنَّصْبِ فَالرَّفْعُ عَلَى الْفِعْلِ أَيْ تَقَطَّعَ وَصْلُكُمْ وَالنَّصْبُ عَلَى الْحَذْفِ يُرِيدُ مَا بَيْنَكُمْ. وَ (الْبَوْنُ) الْفَضْلُ وَالْمَزِيَّةُ وَقَدْ (بَانَهُ) مِنْ بَابِ قَالَ وَبَاعَ، وَبَيْنَهُمَا (بَوْنٌ) بِعِيدٌ وَ (بَيْنٌ) بَعِيدٌ، وَالْوَاوُ أَفْصَحُ، فَأَمَّا بِمَعْنَى الْبُعْدِ فَيُقَالُ: إِنَّ بَيْنَهُمَا (بَيْنًا) لَا غَيْرُ. وَ (الْبَيَانُ) الْفَصَاحَةُ وَاللَّسَنُ. وَفِي الْحَدِيثِ: «إِنَّ مِنَ الْبَيَانِ لَسِحْرًا» وَفُلَانٌ (أَبْيَنُ) مِنْ فُلَانٍ أَيْ أَفْصَحُ مِنْهُ وَأَوْضَحُ كَلَامًا. وَ (الْبَيَانُ) أَيْضًا مَا (يَتَبَيَّنُ) بِهِ الشَّيْءُ مِنَ الدَّلَالَةِ وَغَيْرِهَا. وَ (بَانَ) الشَّيْءُ يَبِينُ (بَيَانًا) اتَّضَحَ فَهُوَ (بَيِّنٌ) وَكَذَا (أَبَانَ) الشَّيْءُ فَهُوَ (مُبِينٌ) وَ (أَبَنْتُهُ) أَنَا أَيْ أَوْضَحْتُهُ وَ (اسْتَبَانَ) الشَّيْءُ ظَهَرَ وَ (اسْتَبَنْتُهُ) أَنَا عَرَفْتُهُ وَ (تَبَيَّنَ) الشَّيْءُ ظَهَرَ وَ (تَبَيَّنْتُ) أَنَا، تَتَعَدَّى هَذِهِ الثَّلَاثَةُ وَتَلْزَمُ. وَ (التَّبْيِينُ) الْإِيضَاحُ وَهُوَ أَيْضًا الْوُضُوحُ، وَفِي الْمَثَلِ: قَدْ (بَيَّنَ) الصُّبْحُ لِذِي عَيْنَيْنِ أَيْ تَبَيَّنَ. وَ (التِّبْيَانُ) مَصْدَرٌ وَهُوَ شَاذٌّ لِأَنَّ الْمَصَادِرَ إِنَّمَا تَجِيءُ عَلَى التَّفْعَالِ بِفَتْحِ التَّاءِ كَالتَّذْكَارِ وَالتَّكْرَارِ وَالتَّوْكَافِ وَلَمْ يَجِئْ بِالْكَسْرِ إِلَّا (التِّبْيَانُ) وَالتِّلْقَاءُ. وَضَرَبَهُ (فَأَبَانَ) رَأَسَهُ مِنْ جَسَدِهِ أَيْ فَصَلَهُ فَهُوَ (مُبِينٌ). وَ (الْمُبَايَنَةُ) الْمُفَارَقَةُ وَ (تَبَايَنَ) الْقَوْمُ تَهَاجَرُوا. وَتَطْلِيقَةٌ (بَائِنَةٌ) وَهِيَ فَاعِلَةٌ بِمَعْنَى مُفَعْوِلَةٍ. وَغُرَابُ (الْبَيْنِ) هُوَ الْأَبْقَعُ، وَقَالَ أَبُو الْغَوْثِ: هُوَ الْأَحْمَرُ الْمِنْقَارِ وَالرِّجْلَيْنِ، فَأَمَّا الْأَسْوَدُ فَهُوَ الْحَاتِمُ فَإِنَّهُ يَحْتِمُ بِالْفِرَاقِ. وَ (بَيْنَ) بِمَعْنَى وَسْطَ تَقُولُ جَلَسَ بَيْنَ الْقَوْمِ كَمَا تَقُولُ جَلَسَ وَسْطَ الْقَوْمِ بِالتَّخْفِيفِ، وَهُوَ ظَرْفٌ فَإِنْ جَعَلْتَهُ اسْمًا أَعْرَبْتَهُ تَقُولُ: لَقَدْ تَقَطَّعَ بَيْنُكُمْ، بِرَفْعِ النُّونِ. وَهَذَا الشَّيْءُ (بَيْنَ بَيْنَ) أَيْ بَيْنَ الْجَيِّدِ وَالرَّدِيءِ. +--line-width=50000 +Text is: (الْبَيْنُ) الْفِرَاقُ وَبَابُهُ بَاعَ وَ (بَيْنُونَةً) أَيْضًا. وَالْبَيْنُ الْوَصْلُ وَهُوَ مِنَ الْأَضْدَادِ. وَقُرِئَ «{لَقَدْ تَقَطَّعَ بَيْنُكُمْ} [الأنعام: 94]» بِالرَّفْعِ وَالنَّصْبِ فَالرَّفْعُ عَلَى الْفِعْلِ أَيْ تَقَطَّعَ وَصْلُكُمْ وَالنَّصْبُ عَلَى الْحَذْفِ يُرِيدُ مَا بَيْنَكُمْ. وَ (الْبَوْنُ) الْفَضْلُ وَالْمَزِيَّةُ وَقَدْ (بَانَهُ) مِنْ بَابِ قَالَ وَبَاعَ، وَبَيْنَهُمَا (بَوْنٌ) بِعِيدٌ وَ (بَيْنٌ) بَعِيدٌ، وَالْوَاوُ أَفْصَحُ، فَأَمَّا بِمَعْنَى الْبُعْدِ فَيُقَالُ: إِنَّ بَيْنَهُمَا (بَيْنًا) لَا غَيْرُ. وَ (الْبَيَانُ) الْفَصَاحَةُ وَاللَّسَنُ. وَفِي الْحَدِيثِ: «إِنَّ مِنَ الْبَيَانِ لَسِحْرًا» وَفُلَانٌ (أَبْيَنُ) مِنْ فُلَانٍ أَيْ أَفْصَحُ مِنْهُ وَأَوْضَحُ كَلَامًا. وَ (الْبَيَانُ) أَيْضًا مَا (يَتَبَيَّنُ) بِهِ الشَّيْءُ مِنَ الدَّلَالَةِ وَغَيْرِهَا. وَ (بَانَ) الشَّيْءُ يَبِينُ (بَيَانًا) اتَّضَحَ فَهُوَ (بَيِّنٌ) وَكَذَا (أَبَانَ) الشَّيْءُ فَهُوَ (مُبِينٌ) وَ (أَبَنْتُهُ) أَنَا أَيْ أَوْضَحْتُهُ وَ (اسْتَبَانَ) الشَّيْءُ ظَهَرَ وَ (اسْتَبَنْتُهُ) أَنَا عَرَفْتُهُ وَ (تَبَيَّنَ) الشَّيْءُ ظَهَرَ وَ (تَبَيَّنْتُ) أَنَا، تَتَعَدَّى هَذِهِ الثَّلَاثَةُ وَتَلْزَمُ. وَ (التَّبْيِينُ) الْإِيضَاحُ وَهُوَ أَيْضًا الْوُضُوحُ، وَفِي الْمَثَلِ: قَدْ (بَيَّنَ) الصُّبْحُ لِذِي عَيْنَيْنِ أَيْ تَبَيَّنَ. وَ (التِّبْيَانُ) مَصْدَرٌ وَهُوَ شَاذٌّ لِأَنَّ الْمَصَادِرَ إِنَّمَا تَجِيءُ عَلَى التَّفْعَالِ بِفَتْحِ التَّاءِ كَالتَّذْكَارِ وَالتَّكْرَارِ وَالتَّوْكَافِ وَلَمْ يَجِئْ بِالْكَسْرِ إِلَّا (التِّبْيَانُ) وَالتِّلْقَاءُ. وَضَرَبَهُ (فَأَبَانَ) رَأَسَهُ مِنْ جَسَدِهِ أَيْ فَصَلَهُ فَهُوَ (مُبِينٌ). وَ (الْمُبَايَنَةُ) الْمُفَارَقَةُ وَ (تَبَايَنَ) الْقَوْمُ تَهَاجَرُوا. وَتَطْلِيقَةٌ (بَائِنَةٌ) وَهِيَ فَاعِلَةٌ بِمَعْنَى مُفَعْوِلَةٍ. وَغُرَابُ (الْبَيْنِ) هُوَ الْأَبْقَعُ، وَقَالَ أَبُو الْغَوْثِ: هُوَ الْأَحْمَرُ الْمِنْقَارِ وَالرِّجْلَيْنِ، فَأَمَّا الْأَسْوَدُ فَهُوَ الْحَاتِمُ فَإِنَّهُ يَحْتِمُ بِالْفِرَاقِ. وَ (بَيْنَ) بِمَعْنَى وَسْطَ تَقُولُ جَلَسَ بَيْنَ الْقَوْمِ كَمَا تَقُولُ جَلَسَ وَسْطَ الْقَوْمِ بِالتَّخْفِيفِ، وَهُوَ ظَرْفٌ فَإِنْ جَعَلْتَهُ اسْمًا أَعْرَبْتَهُ تَقُولُ: لَقَدْ تَقَطَّعَ بَيْنُكُمْ، بِرَفْعِ النُّونِ. وَهَذَا الشَّيْءُ (بَيْنَ بَيْنَ) أَيْ بَيْنَ الْجَيِّدِ وَالرَّدِيءِ. +Direction is: DEFAULT + +Before script detection: +script for ch[0] Zyyy +script for ch[1] Arab +script for ch[2] Arab +script for ch[3] Zinh +script for ch[4] Arab +script for ch[5] Zinh +script for ch[6] Arab +script for ch[7] Zinh +script for ch[8] Arab +script for ch[9] Zinh +script for ch[10] Zyyy +script for ch[11] Zyyy +script for ch[12] Arab +script for ch[13] Arab +script for ch[14] Zinh +script for ch[15] Arab +script for ch[16] Zinh +script for ch[17] Arab +script for ch[18] Zinh +script for ch[19] Arab +script for ch[20] Arab +script for ch[21] Zinh +script for ch[22] Zyyy +script for ch[23] Arab +script for ch[24] Zinh +script for ch[25] Arab +script for ch[26] Zinh +script for ch[27] Arab +script for ch[28] Arab +script for ch[29] Zinh +script for ch[30] Arab +script for ch[31] Zinh +script for ch[32] Zyyy +script for ch[33] Arab +script for ch[34] Zinh +script for ch[35] Arab +script for ch[36] Arab +script for ch[37] Zinh +script for ch[38] Zyyy +script for ch[39] Arab +script for ch[40] Zinh +script for ch[41] Zyyy +script for ch[42] Zyyy +script for ch[43] Arab +script for ch[44] Zinh +script for ch[45] Arab +script for ch[46] Zinh +script for ch[47] Arab +script for ch[48] Zinh +script for ch[49] Arab +script for ch[50] Arab +script for ch[51] Zinh +script for ch[52] Arab +script for ch[53] Zinh +script for ch[54] Zyyy +script for ch[55] Zyyy +script for ch[56] Arab +script for ch[57] Zinh +script for ch[58] Arab +script for ch[59] Zinh +script for ch[60] Arab +script for ch[61] Zinh +script for ch[62] Arab +script for ch[63] Zyyy +script for ch[64] Zyyy +script for ch[65] Arab +script for ch[66] Zinh +script for ch[67] Arab +script for ch[68] Arab +script for ch[69] Zinh +script for ch[70] Arab +script for ch[71] Zinh +script for ch[72] Arab +script for ch[73] Zinh +script for ch[74] Arab +script for ch[75] Zinh +script for ch[76] Zyyy +script for ch[77] Arab +script for ch[78] Arab +script for ch[79] Zinh +script for ch[80] Arab +script for ch[81] Zinh +script for ch[82] Arab +script for ch[83] Zinh +script for ch[84] Arab +script for ch[85] Zinh +script for ch[86] Zyyy +script for ch[87] Arab +script for ch[88] Zinh +script for ch[89] Arab +script for ch[90] Zinh +script for ch[91] Arab +script for ch[92] Zinh +script for ch[93] Zyyy +script for ch[94] Arab +script for ch[95] Zinh +script for ch[96] Arab +script for ch[97] Zinh +script for ch[98] Zyyy +script for ch[99] Arab +script for ch[100] Arab +script for ch[101] Zinh +script for ch[102] Arab +script for ch[103] Zinh +script for ch[104] Arab +script for ch[105] Zinh +script for ch[106] Arab +script for ch[107] Zinh +script for ch[108] Arab +script for ch[109] Arab +script for ch[110] Zinh +script for ch[111] Zyyy +script for ch[112] Zyyy +script for ch[113] Arab +script for ch[114] Zinh +script for ch[115] Arab +script for ch[116] Zinh +script for ch[117] Arab +script for ch[118] Zinh +script for ch[119] Arab +script for ch[120] Zinh +script for ch[121] Zyyy +script for ch[122] Zyyy +script for ch[123] Zyyy +script for ch[124] Arab +script for ch[125] Zinh +script for ch[126] Arab +script for ch[127] Zinh +script for ch[128] Arab +script for ch[129] Zinh +script for ch[130] Zyyy +script for ch[131] Arab +script for ch[132] Zinh +script for ch[133] Arab +script for ch[134] Zinh +script for ch[135] Arab +script for ch[136] Zinh +script for ch[137] Zinh +script for ch[138] Arab +script for ch[139] Zinh +script for ch[140] Zyyy +script for ch[141] Arab +script for ch[142] Zinh +script for ch[143] Arab +script for ch[144] Zinh +script for ch[145] Arab +script for ch[146] Zinh +script for ch[147] Arab +script for ch[148] Zinh +script for ch[149] Arab +script for ch[150] Zinh +script for ch[151] Zyyy +script for ch[152] Zyyy +script for ch[153] Zyyy +script for ch[154] Arab +script for ch[155] Arab +script for ch[156] Arab +script for ch[157] Arab +script for ch[158] Arab +script for ch[159] Arab +script for ch[160] Arab +script for ch[161] Zyyy +script for ch[162] Zyyy +script for ch[163] Zyyy +script for ch[164] Zyyy +script for ch[165] Zyyy +script for ch[166] Zyyy +script for ch[167] Zyyy +script for ch[168] Arab +script for ch[169] Zinh +script for ch[170] Arab +script for ch[171] Arab +script for ch[172] Arab +script for ch[173] Zinh +script for ch[174] Zinh +script for ch[175] Arab +script for ch[176] Zinh +script for ch[177] Arab +script for ch[178] Zinh +script for ch[179] Zyyy +script for ch[180] Arab +script for ch[181] Zinh +script for ch[182] Arab +script for ch[183] Arab +script for ch[184] Arab +script for ch[185] Zinh +script for ch[186] Zinh +script for ch[187] Arab +script for ch[188] Zinh +script for ch[189] Arab +script for ch[190] Zinh +script for ch[191] Zyyy +script for ch[192] Arab +script for ch[193] Zinh +script for ch[194] Arab +script for ch[195] Arab +script for ch[196] Arab +script for ch[197] Zinh +script for ch[198] Zinh +script for ch[199] Arab +script for ch[200] Zinh +script for ch[201] Arab +script for ch[202] Zinh +script for ch[203] Zyyy +script for ch[204] Arab +script for ch[205] Zinh +script for ch[206] Arab +script for ch[207] Zinh +script for ch[208] Arab +script for ch[209] Zyyy +script for ch[210] Arab +script for ch[211] Arab +script for ch[212] Zinh +script for ch[213] Arab +script for ch[214] Zinh +script for ch[215] Arab +script for ch[216] Zinh +script for ch[217] Arab +script for ch[218] Zinh +script for ch[219] Zyyy +script for ch[220] Arab +script for ch[221] Zinh +script for ch[222] Arab +script for ch[223] Zinh +script for ch[224] Zyyy +script for ch[225] Arab +script for ch[226] Zinh +script for ch[227] Arab +script for ch[228] Zinh +script for ch[229] Arab +script for ch[230] Zinh +script for ch[231] Zinh +script for ch[232] Arab +script for ch[233] Zinh +script for ch[234] Zyyy +script for ch[235] Arab +script for ch[236] Zinh +script for ch[237] Arab +script for ch[238] Zinh +script for ch[239] Arab +script for ch[240] Zinh +script for ch[241] Arab +script for ch[242] Zinh +script for ch[243] Arab +script for ch[244] Zinh +script for ch[245] Zyyy +script for ch[246] Arab +script for ch[247] Zinh +script for ch[248] Arab +script for ch[249] Arab +script for ch[250] Arab +script for ch[251] Zinh +script for ch[252] Zinh +script for ch[253] Arab +script for ch[254] Zinh +script for ch[255] Arab +script for ch[256] Zinh +script for ch[257] Zyyy +script for ch[258] Arab +script for ch[259] Zinh +script for ch[260] Arab +script for ch[261] Zinh +script for ch[262] Arab +script for ch[263] Zyyy +script for ch[264] Arab +script for ch[265] Arab +script for ch[266] Zinh +script for ch[267] Arab +script for ch[268] Zinh +script for ch[269] Arab +script for ch[270] Zinh +script for ch[271] Arab +script for ch[272] Zinh +script for ch[273] Zyyy +script for ch[274] Arab +script for ch[275] Zinh +script for ch[276] Arab +script for ch[277] Zinh +script for ch[278] Arab +script for ch[279] Arab +script for ch[280] Zinh +script for ch[281] Zyyy +script for ch[282] Arab +script for ch[283] Zinh +script for ch[284] Arab +script for ch[285] Zyyy +script for ch[286] Arab +script for ch[287] Zinh +script for ch[288] Arab +script for ch[289] Zinh +script for ch[290] Arab +script for ch[291] Zinh +script for ch[292] Arab +script for ch[293] Zinh +script for ch[294] Arab +script for ch[295] Zinh +script for ch[296] Zyyy +script for ch[297] Zyyy +script for ch[298] Arab +script for ch[299] Zinh +script for ch[300] Zyyy +script for ch[301] Zyyy +script for ch[302] Arab +script for ch[303] Arab +script for ch[304] Zinh +script for ch[305] Arab +script for ch[306] Zinh +script for ch[307] Arab +script for ch[308] Zinh +script for ch[309] Arab +script for ch[310] Zinh +script for ch[311] Zyyy +script for ch[312] Zyyy +script for ch[313] Arab +script for ch[314] Arab +script for ch[315] Zinh +script for ch[316] Arab +script for ch[317] Zinh +script for ch[318] Arab +script for ch[319] Zinh +script for ch[320] Arab +script for ch[321] Zinh +script for ch[322] Zyyy +script for ch[323] Arab +script for ch[324] Zinh +script for ch[325] Arab +script for ch[326] Arab +script for ch[327] Zinh +script for ch[328] Arab +script for ch[329] Zinh +script for ch[330] Arab +script for ch[331] Zinh +script for ch[332] Arab +script for ch[333] Zinh +script for ch[334] Zinh +script for ch[335] Arab +script for ch[336] Zinh +script for ch[337] Zyyy +script for ch[338] Arab +script for ch[339] Zinh +script for ch[340] Arab +script for ch[341] Zinh +script for ch[342] Arab +script for ch[343] Zinh +script for ch[344] Zyyy +script for ch[345] Zyyy +script for ch[346] Arab +script for ch[347] Zinh +script for ch[348] Arab +script for ch[349] Arab +script for ch[350] Zinh +script for ch[351] Arab +script for ch[352] Zinh +script for ch[353] Zyyy +script for ch[354] Zyyy +script for ch[355] Arab +script for ch[356] Zinh +script for ch[357] Arab +script for ch[358] Zinh +script for ch[359] Zyyy +script for ch[360] Arab +script for ch[361] Zinh +script for ch[362] Arab +script for ch[363] Arab +script for ch[364] Zinh +script for ch[365] Zyyy +script for ch[366] Arab +script for ch[367] Zinh +script for ch[368] Arab +script for ch[369] Arab +script for ch[370] Zinh +script for ch[371] Zyyy +script for ch[372] Arab +script for ch[373] Zinh +script for ch[374] Arab +script for ch[375] Zinh +script for ch[376] Arab +script for ch[377] Arab +script for ch[378] Zinh +script for ch[379] Zyyy +script for ch[380] Zyyy +script for ch[381] Arab +script for ch[382] Zinh +script for ch[383] Arab +script for ch[384] Zinh +script for ch[385] Arab +script for ch[386] Zinh +script for ch[387] Arab +script for ch[388] Zinh +script for ch[389] Arab +script for ch[390] Zinh +script for ch[391] Arab +script for ch[392] Zinh +script for ch[393] Arab +script for ch[394] Zyyy +script for ch[395] Zyyy +script for ch[396] Arab +script for ch[397] Zinh +script for ch[398] Arab +script for ch[399] Zinh +script for ch[400] Arab +script for ch[401] Zinh +script for ch[402] Zyyy +script for ch[403] Zyyy +script for ch[404] Arab +script for ch[405] Zinh +script for ch[406] Arab +script for ch[407] Zinh +script for ch[408] Arab +script for ch[409] Arab +script for ch[410] Zinh +script for ch[411] Zyyy +script for ch[412] Arab +script for ch[413] Zinh +script for ch[414] Zyyy +script for ch[415] Zyyy +script for ch[416] Arab +script for ch[417] Zinh +script for ch[418] Arab +script for ch[419] Zinh +script for ch[420] Arab +script for ch[421] Zinh +script for ch[422] Zyyy +script for ch[423] Zyyy +script for ch[424] Arab +script for ch[425] Zinh +script for ch[426] Arab +script for ch[427] Zinh +script for ch[428] Arab +script for ch[429] Arab +script for ch[430] Zinh +script for ch[431] Zyyy +script for ch[432] Zyyy +script for ch[433] Arab +script for ch[434] Zinh +script for ch[435] Arab +script for ch[436] Arab +script for ch[437] Zinh +script for ch[438] Arab +script for ch[439] Zinh +script for ch[440] Arab +script for ch[441] Arab +script for ch[442] Zinh +script for ch[443] Zyyy +script for ch[444] Arab +script for ch[445] Zinh +script for ch[446] Arab +script for ch[447] Zinh +script for ch[448] Arab +script for ch[449] Zinh +script for ch[450] Arab +script for ch[451] Zinh +script for ch[452] Zyyy +script for ch[453] Zyyy +script for ch[454] Arab +script for ch[455] Zinh +script for ch[456] Arab +script for ch[457] Zinh +script for ch[458] Arab +script for ch[459] Zinh +script for ch[460] Zinh +script for ch[461] Arab +script for ch[462] Zyyy +script for ch[463] Arab +script for ch[464] Zinh +script for ch[465] Arab +script for ch[466] Zinh +script for ch[467] Arab +script for ch[468] Zinh +script for ch[469] Arab +script for ch[470] Zinh +script for ch[471] Arab +script for ch[472] Zyyy +script for ch[473] Arab +script for ch[474] Arab +script for ch[475] Zinh +script for ch[476] Arab +script for ch[477] Zinh +script for ch[478] Arab +script for ch[479] Zinh +script for ch[480] Arab +script for ch[481] Zinh +script for ch[482] Zyyy +script for ch[483] Arab +script for ch[484] Zinh +script for ch[485] Arab +script for ch[486] Zinh +script for ch[487] Arab +script for ch[488] Zinh +script for ch[489] Arab +script for ch[490] Arab +script for ch[491] Zinh +script for ch[492] Zyyy +script for ch[493] Zyyy +script for ch[494] Arab +script for ch[495] Zinh +script for ch[496] Arab +script for ch[497] Zinh +script for ch[498] Zinh +script for ch[499] Zyyy +script for ch[500] Arab +script for ch[501] Zinh +script for ch[502] Arab +script for ch[503] Zinh +script for ch[504] Arab +script for ch[505] Zinh +script for ch[506] Arab +script for ch[507] Zinh +script for ch[508] Arab +script for ch[509] Zinh +script for ch[510] Arab +script for ch[511] Zyyy +script for ch[512] Zyyy +script for ch[513] Arab +script for ch[514] Zinh +script for ch[515] Arab +script for ch[516] Zinh +script for ch[517] Arab +script for ch[518] Zinh +script for ch[519] Arab +script for ch[520] Zyyy +script for ch[521] Zyyy +script for ch[522] Arab +script for ch[523] Zinh +script for ch[524] Arab +script for ch[525] Zyyy +script for ch[526] Arab +script for ch[527] Zinh +script for ch[528] Arab +script for ch[529] Zinh +script for ch[530] Arab +script for ch[531] Zinh +script for ch[532] Zyyy +script for ch[533] Zyyy +script for ch[534] Arab +script for ch[535] Zinh +script for ch[536] Zyyy +script for ch[537] Zyyy +script for ch[538] Arab +script for ch[539] Arab +script for ch[540] Zinh +script for ch[541] Arab +script for ch[542] Zinh +script for ch[543] Arab +script for ch[544] Zinh +script for ch[545] Arab +script for ch[546] Arab +script for ch[547] Zinh +script for ch[548] Zyyy +script for ch[549] Zyyy +script for ch[550] Arab +script for ch[551] Arab +script for ch[552] Zinh +script for ch[553] Arab +script for ch[554] Zinh +script for ch[555] Arab +script for ch[556] Zinh +script for ch[557] Arab +script for ch[558] Arab +script for ch[559] Zinh +script for ch[560] Arab +script for ch[561] Zinh +script for ch[562] Zyyy +script for ch[563] Arab +script for ch[564] Zinh +script for ch[565] Arab +script for ch[566] Arab +script for ch[567] Arab +script for ch[568] Zinh +script for ch[569] Zinh +script for ch[570] Arab +script for ch[571] Zinh +script for ch[572] Arab +script for ch[573] Zinh +script for ch[574] Zyyy +script for ch[575] Zyyy +script for ch[576] Arab +script for ch[577] Zinh +script for ch[578] Arab +script for ch[579] Zinh +script for ch[580] Arab +script for ch[581] Zyyy +script for ch[582] Arab +script for ch[583] Arab +script for ch[584] Zinh +script for ch[585] Arab +script for ch[586] Zinh +script for ch[587] Arab +script for ch[588] Zinh +script for ch[589] Arab +script for ch[590] Arab +script for ch[591] Zinh +script for ch[592] Zyyy +script for ch[593] Zyyy +script for ch[594] Zyyy +script for ch[595] Arab +script for ch[596] Zinh +script for ch[597] Arab +script for ch[598] Zinh +script for ch[599] Zinh +script for ch[600] Zyyy +script for ch[601] Arab +script for ch[602] Zinh +script for ch[603] Arab +script for ch[604] Zinh +script for ch[605] Zyyy +script for ch[606] Arab +script for ch[607] Arab +script for ch[608] Zinh +script for ch[609] Arab +script for ch[610] Zinh +script for ch[611] Arab +script for ch[612] Zinh +script for ch[613] Arab +script for ch[614] Arab +script for ch[615] Zinh +script for ch[616] Zyyy +script for ch[617] Arab +script for ch[618] Zinh +script for ch[619] Arab +script for ch[620] Zinh +script for ch[621] Arab +script for ch[622] Zinh +script for ch[623] Arab +script for ch[624] Zinh +script for ch[625] Arab +script for ch[626] Zyyy +script for ch[627] Zyyy +script for ch[628] Arab +script for ch[629] Zinh +script for ch[630] Arab +script for ch[631] Zinh +script for ch[632] Arab +script for ch[633] Zinh +script for ch[634] Arab +script for ch[635] Arab +script for ch[636] Zinh +script for ch[637] Zyyy +script for ch[638] Zyyy +script for ch[639] Arab +script for ch[640] Zinh +script for ch[641] Arab +script for ch[642] Zinh +script for ch[643] Arab +script for ch[644] Zinh +script for ch[645] Arab +script for ch[646] Zinh +script for ch[647] Zyyy +script for ch[648] Zyyy +script for ch[649] Arab +script for ch[650] Zinh +script for ch[651] Arab +script for ch[652] Zinh +script for ch[653] Zyyy +script for ch[654] Arab +script for ch[655] Zinh +script for ch[656] Arab +script for ch[657] Zinh +script for ch[658] Arab +script for ch[659] Arab +script for ch[660] Zinh +script for ch[661] Zyyy +script for ch[662] Arab +script for ch[663] Zinh +script for ch[664] Arab +script for ch[665] Zinh +script for ch[666] Zyyy +script for ch[667] Arab +script for ch[668] Zinh +script for ch[669] Arab +script for ch[670] Zinh +script for ch[671] Arab +script for ch[672] Zinh +script for ch[673] Arab +script for ch[674] Zinh +script for ch[675] Zyyy +script for ch[676] Arab +script for ch[677] Zinh +script for ch[678] Arab +script for ch[679] Zinh +script for ch[680] Arab +script for ch[681] Zinh +script for ch[682] Zyyy +script for ch[683] Arab +script for ch[684] Zinh +script for ch[685] Arab +script for ch[686] Zinh +script for ch[687] Arab +script for ch[688] Zinh +script for ch[689] Arab +script for ch[690] Zinh +script for ch[691] Arab +script for ch[692] Zinh +script for ch[693] Zyyy +script for ch[694] Arab +script for ch[695] Zinh +script for ch[696] Arab +script for ch[697] Zinh +script for ch[698] Arab +script for ch[699] Arab +script for ch[700] Zinh +script for ch[701] Arab +script for ch[702] Zyyy +script for ch[703] Zyyy +script for ch[704] Arab +script for ch[705] Zinh +script for ch[706] Zyyy +script for ch[707] Zyyy +script for ch[708] Arab +script for ch[709] Arab +script for ch[710] Zinh +script for ch[711] Arab +script for ch[712] Zinh +script for ch[713] Arab +script for ch[714] Zinh +script for ch[715] Arab +script for ch[716] Arab +script for ch[717] Zinh +script for ch[718] Zyyy +script for ch[719] Zyyy +script for ch[720] Arab +script for ch[721] Zinh +script for ch[722] Arab +script for ch[723] Zinh +script for ch[724] Arab +script for ch[725] Zinh +script for ch[726] Arab +script for ch[727] Zyyy +script for ch[728] Arab +script for ch[729] Zinh +script for ch[730] Arab +script for ch[731] Zyyy +script for ch[732] Zyyy +script for ch[733] Arab +script for ch[734] Zinh +script for ch[735] Arab +script for ch[736] Zinh +script for ch[737] Arab +script for ch[738] Zinh +script for ch[739] Arab +script for ch[740] Zinh +script for ch[741] Zinh +script for ch[742] Arab +script for ch[743] Zinh +script for ch[744] Zyyy +script for ch[745] Zyyy +script for ch[746] Arab +script for ch[747] Zinh +script for ch[748] Arab +script for ch[749] Zinh +script for ch[750] Zyyy +script for ch[751] Arab +script for ch[752] Arab +script for ch[753] Arab +script for ch[754] Zinh +script for ch[755] Zinh +script for ch[756] Arab +script for ch[757] Zinh +script for ch[758] Arab +script for ch[759] Zinh +script for ch[760] Zyyy +script for ch[761] Arab +script for ch[762] Zinh +script for ch[763] Arab +script for ch[764] Zinh +script for ch[765] Zyyy +script for ch[766] Arab +script for ch[767] Arab +script for ch[768] Arab +script for ch[769] Zinh +script for ch[770] Zinh +script for ch[771] Arab +script for ch[772] Zinh +script for ch[773] Arab +script for ch[774] Arab +script for ch[775] Zinh +script for ch[776] Arab +script for ch[777] Zinh +script for ch[778] Zyyy +script for ch[779] Arab +script for ch[780] Zinh +script for ch[781] Arab +script for ch[782] Zinh +script for ch[783] Arab +script for ch[784] Zinh +script for ch[785] Arab +script for ch[786] Zinh +script for ch[787] Arab +script for ch[788] Zinh +script for ch[789] Arab +script for ch[790] Zyyy +script for ch[791] Zyyy +script for ch[792] Arab +script for ch[793] Zinh +script for ch[794] Zyyy +script for ch[795] Zyyy +script for ch[796] Arab +script for ch[797] Zinh +script for ch[798] Arab +script for ch[799] Arab +script for ch[800] Zinh +script for ch[801] Zyyy +script for ch[802] Zyyy +script for ch[803] Arab +script for ch[804] Arab +script for ch[805] Arab +script for ch[806] Zinh +script for ch[807] Zinh +script for ch[808] Arab +script for ch[809] Zinh +script for ch[810] Arab +script for ch[811] Zinh +script for ch[812] Zyyy +script for ch[813] Arab +script for ch[814] Zinh +script for ch[815] Arab +script for ch[816] Zinh +script for ch[817] Arab +script for ch[818] Arab +script for ch[819] Zinh +script for ch[820] Zyyy +script for ch[821] Zyyy +script for ch[822] Arab +script for ch[823] Zinh +script for ch[824] Arab +script for ch[825] Zinh +script for ch[826] Arab +script for ch[827] Arab +script for ch[828] Zinh +script for ch[829] Arab +script for ch[830] Zyyy +script for ch[831] Zyyy +script for ch[832] Arab +script for ch[833] Arab +script for ch[834] Zinh +script for ch[835] Zinh +script for ch[836] Arab +script for ch[837] Zinh +script for ch[838] Arab +script for ch[839] Zinh +script for ch[840] Zyyy +script for ch[841] Arab +script for ch[842] Zinh +script for ch[843] Arab +script for ch[844] Zinh +script for ch[845] Arab +script for ch[846] Zinh +script for ch[847] Zyyy +script for ch[848] Zyyy +script for ch[849] Arab +script for ch[850] Zinh +script for ch[851] Arab +script for ch[852] Zinh +script for ch[853] Zinh +script for ch[854] Arab +script for ch[855] Zinh +script for ch[856] Zyyy +script for ch[857] Zyyy +script for ch[858] Arab +script for ch[859] Zinh +script for ch[860] Arab +script for ch[861] Zinh +script for ch[862] Arab +script for ch[863] Zinh +script for ch[864] Arab +script for ch[865] Zyyy +script for ch[866] Zyyy +script for ch[867] Arab +script for ch[868] Zinh +script for ch[869] Arab +script for ch[870] Zinh +script for ch[871] Arab +script for ch[872] Arab +script for ch[873] Zinh +script for ch[874] Zyyy +script for ch[875] Zyyy +script for ch[876] Arab +script for ch[877] Arab +script for ch[878] Arab +script for ch[879] Zinh +script for ch[880] Zinh +script for ch[881] Arab +script for ch[882] Zinh +script for ch[883] Arab +script for ch[884] Zinh +script for ch[885] Zyyy +script for ch[886] Arab +script for ch[887] Zinh +script for ch[888] Arab +script for ch[889] Zinh +script for ch[890] Arab +script for ch[891] Zinh +script for ch[892] Zyyy +script for ch[893] Zyyy +script for ch[894] Arab +script for ch[895] Zinh +script for ch[896] Arab +script for ch[897] Zinh +script for ch[898] Arab +script for ch[899] Arab +script for ch[900] Zinh +script for ch[901] Zyyy +script for ch[902] Zyyy +script for ch[903] Arab +script for ch[904] Zinh +script for ch[905] Zyyy +script for ch[906] Zyyy +script for ch[907] Arab +script for ch[908] Zinh +script for ch[909] Arab +script for ch[910] Zinh +script for ch[911] Arab +script for ch[912] Zinh +script for ch[913] Arab +script for ch[914] Zinh +script for ch[915] Arab +script for ch[916] Zinh +script for ch[917] Zyyy +script for ch[918] Zyyy +script for ch[919] Arab +script for ch[920] Zinh +script for ch[921] Arab +script for ch[922] Zinh +script for ch[923] Arab +script for ch[924] Zyyy +script for ch[925] Arab +script for ch[926] Zinh +script for ch[927] Arab +script for ch[928] Zinh +script for ch[929] Zyyy +script for ch[930] Arab +script for ch[931] Zinh +script for ch[932] Arab +script for ch[933] Zinh +script for ch[934] Arab +script for ch[935] Zinh +script for ch[936] Arab +script for ch[937] Zinh +script for ch[938] Arab +script for ch[939] Zinh +script for ch[940] Arab +script for ch[941] Zinh +script for ch[942] Zyyy +script for ch[943] Arab +script for ch[944] Zinh +script for ch[945] Zyyy +script for ch[946] Zyyy +script for ch[947] Arab +script for ch[948] Arab +script for ch[949] Zinh +script for ch[950] Arab +script for ch[951] Zinh +script for ch[952] Arab +script for ch[953] Zinh +script for ch[954] Arab +script for ch[955] Arab +script for ch[956] Zinh +script for ch[957] Zyyy +script for ch[958] Zyyy +script for ch[959] Arab +script for ch[960] Arab +script for ch[961] Arab +script for ch[962] Zinh +script for ch[963] Zinh +script for ch[964] Arab +script for ch[965] Zinh +script for ch[966] Arab +script for ch[967] Zinh +script for ch[968] Zyyy +script for ch[969] Arab +script for ch[970] Zinh +script for ch[971] Arab +script for ch[972] Zinh +script for ch[973] Arab +script for ch[974] Zinh +script for ch[975] Zyyy +script for ch[976] Arab +script for ch[977] Zinh +script for ch[978] Zyyy +script for ch[979] Zyyy +script for ch[980] Arab +script for ch[981] Arab +script for ch[982] Zinh +script for ch[983] Arab +script for ch[984] Zinh +script for ch[985] Arab +script for ch[986] Zinh +script for ch[987] Arab +script for ch[988] Zinh +script for ch[989] Arab +script for ch[990] Zinh +script for ch[991] Arab +script for ch[992] Zinh +script for ch[993] Zyyy +script for ch[994] Zyyy +script for ch[995] Arab +script for ch[996] Zinh +script for ch[997] Arab +script for ch[998] Zinh +script for ch[999] Arab +script for ch[1000] Zyyy +script for ch[1001] Arab +script for ch[1002] Zinh +script for ch[1003] Arab +script for ch[1004] Zinh +script for ch[1005] Arab +script for ch[1006] Zinh +script for ch[1007] Arab +script for ch[1008] Zinh +script for ch[1009] Arab +script for ch[1010] Zinh +script for ch[1011] Zyyy +script for ch[1012] Arab +script for ch[1013] Zinh +script for ch[1014] Zyyy +script for ch[1015] Zyyy +script for ch[1016] Arab +script for ch[1017] Zinh +script for ch[1018] Arab +script for ch[1019] Zinh +script for ch[1020] Arab +script for ch[1021] Zinh +script for ch[1022] Zinh +script for ch[1023] Arab +script for ch[1024] Zinh +script for ch[1025] Zyyy +script for ch[1026] Zyyy +script for ch[1027] Arab +script for ch[1028] Arab +script for ch[1029] Arab +script for ch[1030] Zinh +script for ch[1031] Zinh +script for ch[1032] Arab +script for ch[1033] Zinh +script for ch[1034] Arab +script for ch[1035] Zinh +script for ch[1036] Zyyy +script for ch[1037] Arab +script for ch[1038] Zinh +script for ch[1039] Arab +script for ch[1040] Zinh +script for ch[1041] Arab +script for ch[1042] Zinh +script for ch[1043] Zyyy +script for ch[1044] Arab +script for ch[1045] Zinh +script for ch[1046] Zyyy +script for ch[1047] Zyyy +script for ch[1048] Arab +script for ch[1049] Zinh +script for ch[1050] Arab +script for ch[1051] Zinh +script for ch[1052] Arab +script for ch[1053] Zinh +script for ch[1054] Zinh +script for ch[1055] Arab +script for ch[1056] Zinh +script for ch[1057] Arab +script for ch[1058] Zinh +script for ch[1059] Zyyy +script for ch[1060] Zyyy +script for ch[1061] Arab +script for ch[1062] Zinh +script for ch[1063] Arab +script for ch[1064] Zinh +script for ch[1065] Arab +script for ch[1066] Zyyy +script for ch[1067] Zyyy +script for ch[1068] Arab +script for ch[1069] Zinh +script for ch[1070] Arab +script for ch[1071] Zinh +script for ch[1072] Arab +script for ch[1073] Zinh +script for ch[1074] Arab +script for ch[1075] Zinh +script for ch[1076] Zinh +script for ch[1077] Arab +script for ch[1078] Zyyy +script for ch[1079] Arab +script for ch[1080] Zinh +script for ch[1081] Arab +script for ch[1082] Zinh +script for ch[1083] Arab +script for ch[1084] Zinh +script for ch[1085] Zyyy +script for ch[1086] Arab +script for ch[1087] Arab +script for ch[1088] Arab +script for ch[1089] Zinh +script for ch[1090] Zinh +script for ch[1091] Arab +script for ch[1092] Zinh +script for ch[1093] Arab +script for ch[1094] Arab +script for ch[1095] Zinh +script for ch[1096] Arab +script for ch[1097] Zinh +script for ch[1098] Zyyy +script for ch[1099] Arab +script for ch[1100] Zinh +script for ch[1101] Arab +script for ch[1102] Zinh +script for ch[1103] Arab +script for ch[1104] Zinh +script for ch[1105] Arab +script for ch[1106] Zinh +script for ch[1107] Arab +script for ch[1108] Zinh +script for ch[1109] Zyyy +script for ch[1110] Zyyy +script for ch[1111] Arab +script for ch[1112] Zinh +script for ch[1113] Zyyy +script for ch[1114] Zyyy +script for ch[1115] Arab +script for ch[1116] Arab +script for ch[1117] Arab +script for ch[1118] Zinh +script for ch[1119] Zinh +script for ch[1120] Arab +script for ch[1121] Zinh +script for ch[1122] Arab +script for ch[1123] Zinh +script for ch[1124] Arab +script for ch[1125] Arab +script for ch[1126] Zinh +script for ch[1127] Zyyy +script for ch[1128] Zyyy +script for ch[1129] Arab +script for ch[1130] Arab +script for ch[1131] Zinh +script for ch[1132] Arab +script for ch[1133] Zinh +script for ch[1134] Arab +script for ch[1135] Arab +script for ch[1136] Zinh +script for ch[1137] Arab +script for ch[1138] Arab +script for ch[1139] Zinh +script for ch[1140] Zyyy +script for ch[1141] Arab +script for ch[1142] Zinh +script for ch[1143] Arab +script for ch[1144] Zinh +script for ch[1145] Arab +script for ch[1146] Zinh +script for ch[1147] Zyyy +script for ch[1148] Arab +script for ch[1149] Zinh +script for ch[1150] Arab +script for ch[1151] Zinh +script for ch[1152] Arab +script for ch[1153] Zinh +script for ch[1154] Arab +script for ch[1155] Zyyy +script for ch[1156] Arab +script for ch[1157] Arab +script for ch[1158] Zinh +script for ch[1159] Arab +script for ch[1160] Zinh +script for ch[1161] Arab +script for ch[1162] Zinh +script for ch[1163] Arab +script for ch[1164] Arab +script for ch[1165] Zinh +script for ch[1166] Zyyy +script for ch[1167] Zyyy +script for ch[1168] Arab +script for ch[1169] Zinh +script for ch[1170] Arab +script for ch[1171] Zinh +script for ch[1172] Arab +script for ch[1173] Zyyy +script for ch[1174] Arab +script for ch[1175] Arab +script for ch[1176] Zinh +script for ch[1177] Arab +script for ch[1178] Zinh +script for ch[1179] Arab +script for ch[1180] Zinh +script for ch[1181] Arab +script for ch[1182] Zinh +script for ch[1183] Zyyy +script for ch[1184] Zyyy +script for ch[1185] Arab +script for ch[1186] Zinh +script for ch[1187] Arab +script for ch[1188] Zinh +script for ch[1189] Zyyy +script for ch[1190] Zyyy +script for ch[1191] Arab +script for ch[1192] Zinh +script for ch[1193] Arab +script for ch[1194] Zinh +script for ch[1195] Zinh +script for ch[1196] Arab +script for ch[1197] Zinh +script for ch[1198] Zyyy +script for ch[1199] Zyyy +script for ch[1200] Arab +script for ch[1201] Arab +script for ch[1202] Arab +script for ch[1203] Zinh +script for ch[1204] Zinh +script for ch[1205] Arab +script for ch[1206] Zinh +script for ch[1207] Arab +script for ch[1208] Zinh +script for ch[1209] Zyyy +script for ch[1210] Arab +script for ch[1211] Zinh +script for ch[1212] Arab +script for ch[1213] Zinh +script for ch[1214] Arab +script for ch[1215] Zyyy +script for ch[1216] Arab +script for ch[1217] Zinh +script for ch[1218] Arab +script for ch[1219] Zinh +script for ch[1220] Arab +script for ch[1221] Zinh +script for ch[1222] Arab +script for ch[1223] Zinh +script for ch[1224] Arab +script for ch[1225] Zinh +script for ch[1226] Zyyy +script for ch[1227] Arab +script for ch[1228] Zinh +script for ch[1229] Arab +script for ch[1230] Zinh +script for ch[1231] Zyyy +script for ch[1232] Arab +script for ch[1233] Zinh +script for ch[1234] Arab +script for ch[1235] Zinh +script for ch[1236] Arab +script for ch[1237] Zinh +script for ch[1238] Zinh +script for ch[1239] Arab +script for ch[1240] Zinh +script for ch[1241] Zyyy +script for ch[1242] Zyyy +script for ch[1243] Arab +script for ch[1244] Zinh +script for ch[1245] Zyyy +script for ch[1246] Zyyy +script for ch[1247] Arab +script for ch[1248] Arab +script for ch[1249] Arab +script for ch[1250] Zinh +script for ch[1251] Zinh +script for ch[1252] Arab +script for ch[1253] Zinh +script for ch[1254] Arab +script for ch[1255] Zinh +script for ch[1256] Arab +script for ch[1257] Arab +script for ch[1258] Zinh +script for ch[1259] Zyyy +script for ch[1260] Zyyy +script for ch[1261] Arab +script for ch[1262] Zinh +script for ch[1263] Arab +script for ch[1264] Zinh +script for ch[1265] Arab +script for ch[1266] Zinh +script for ch[1267] Arab +script for ch[1268] Zinh +script for ch[1269] Zyyy +script for ch[1270] Arab +script for ch[1271] Zinh +script for ch[1272] Arab +script for ch[1273] Zinh +script for ch[1274] Arab +script for ch[1275] Zinh +script for ch[1276] Zyyy +script for ch[1277] Arab +script for ch[1278] Zinh +script for ch[1279] Arab +script for ch[1280] Arab +script for ch[1281] Zinh +script for ch[1282] Zinh +script for ch[1283] Zyyy +script for ch[1284] Arab +script for ch[1285] Zinh +script for ch[1286] Arab +script for ch[1287] Zinh +script for ch[1288] Arab +script for ch[1289] Zinh +script for ch[1290] Zinh +script for ch[1291] Zyyy +script for ch[1292] Arab +script for ch[1293] Arab +script for ch[1294] Zinh +script for ch[1295] Arab +script for ch[1296] Zinh +script for ch[1297] Arab +script for ch[1298] Zinh +script for ch[1299] Arab +script for ch[1300] Arab +script for ch[1301] Zinh +script for ch[1302] Arab +script for ch[1303] Zinh +script for ch[1304] Zyyy +script for ch[1305] Arab +script for ch[1306] Zinh +script for ch[1307] Arab +script for ch[1308] Zinh +script for ch[1309] Zinh +script for ch[1310] Arab +script for ch[1311] Zinh +script for ch[1312] Arab +script for ch[1313] Zyyy +script for ch[1314] Arab +script for ch[1315] Zinh +script for ch[1316] Arab +script for ch[1317] Zinh +script for ch[1318] Arab +script for ch[1319] Arab +script for ch[1320] Zinh +script for ch[1321] Zyyy +script for ch[1322] Arab +script for ch[1323] Zinh +script for ch[1324] Arab +script for ch[1325] Zinh +script for ch[1326] Arab +script for ch[1327] Zyyy +script for ch[1328] Arab +script for ch[1329] Arab +script for ch[1330] Arab +script for ch[1331] Zinh +script for ch[1332] Zinh +script for ch[1333] Arab +script for ch[1334] Zinh +script for ch[1335] Arab +script for ch[1336] Zinh +script for ch[1337] Arab +script for ch[1338] Arab +script for ch[1339] Zinh +script for ch[1340] Zyyy +script for ch[1341] Arab +script for ch[1342] Zinh +script for ch[1343] Arab +script for ch[1344] Zinh +script for ch[1345] Arab +script for ch[1346] Zinh +script for ch[1347] Arab +script for ch[1348] Zinh +script for ch[1349] Zyyy +script for ch[1350] Arab +script for ch[1351] Arab +script for ch[1352] Arab +script for ch[1353] Zinh +script for ch[1354] Zinh +script for ch[1355] Arab +script for ch[1356] Arab +script for ch[1357] Zinh +script for ch[1358] Zyyy +script for ch[1359] Arab +script for ch[1360] Zinh +script for ch[1361] Arab +script for ch[1362] Arab +script for ch[1363] Arab +script for ch[1364] Zinh +script for ch[1365] Zinh +script for ch[1366] Arab +script for ch[1367] Zinh +script for ch[1368] Arab +script for ch[1369] Zinh +script for ch[1370] Arab +script for ch[1371] Arab +script for ch[1372] Zinh +script for ch[1373] Zyyy +script for ch[1374] Arab +script for ch[1375] Zinh +script for ch[1376] Arab +script for ch[1377] Arab +script for ch[1378] Arab +script for ch[1379] Zinh +script for ch[1380] Zinh +script for ch[1381] Arab +script for ch[1382] Zinh +script for ch[1383] Arab +script for ch[1384] Zinh +script for ch[1385] Arab +script for ch[1386] Arab +script for ch[1387] Zinh +script for ch[1388] Zyyy +script for ch[1389] Arab +script for ch[1390] Zinh +script for ch[1391] Arab +script for ch[1392] Arab +script for ch[1393] Arab +script for ch[1394] Zinh +script for ch[1395] Zinh +script for ch[1396] Arab +script for ch[1397] Zinh +script for ch[1398] Arab +script for ch[1399] Zinh +script for ch[1400] Arab +script for ch[1401] Arab +script for ch[1402] Zinh +script for ch[1403] Zyyy +script for ch[1404] Arab +script for ch[1405] Zinh +script for ch[1406] Arab +script for ch[1407] Zinh +script for ch[1408] Arab +script for ch[1409] Zinh +script for ch[1410] Zyyy +script for ch[1411] Arab +script for ch[1412] Zinh +script for ch[1413] Arab +script for ch[1414] Zinh +script for ch[1415] Arab +script for ch[1416] Zinh +script for ch[1417] Zyyy +script for ch[1418] Arab +script for ch[1419] Zinh +script for ch[1420] Arab +script for ch[1421] Arab +script for ch[1422] Zinh +script for ch[1423] Arab +script for ch[1424] Zinh +script for ch[1425] Arab +script for ch[1426] Zinh +script for ch[1427] Arab +script for ch[1428] Zinh +script for ch[1429] Zyyy +script for ch[1430] Arab +script for ch[1431] Zinh +script for ch[1432] Arab +script for ch[1433] Zinh +script for ch[1434] Zinh +script for ch[1435] Arab +script for ch[1436] Zyyy +script for ch[1437] Zyyy +script for ch[1438] Arab +script for ch[1439] Arab +script for ch[1440] Arab +script for ch[1441] Zinh +script for ch[1442] Zinh +script for ch[1443] Arab +script for ch[1444] Zinh +script for ch[1445] Arab +script for ch[1446] Zinh +script for ch[1447] Arab +script for ch[1448] Arab +script for ch[1449] Zinh +script for ch[1450] Zyyy +script for ch[1451] Zyyy +script for ch[1452] Arab +script for ch[1453] Zinh +script for ch[1454] Arab +script for ch[1455] Arab +script for ch[1456] Arab +script for ch[1457] Zinh +script for ch[1458] Zinh +script for ch[1459] Arab +script for ch[1460] Zinh +script for ch[1461] Arab +script for ch[1462] Zinh +script for ch[1463] Arab +script for ch[1464] Arab +script for ch[1465] Zinh +script for ch[1466] Zyyy +script for ch[1467] Zyyy +script for ch[1468] Arab +script for ch[1469] Zinh +script for ch[1470] Arab +script for ch[1471] Zinh +script for ch[1472] Arab +script for ch[1473] Zinh +script for ch[1474] Arab +script for ch[1475] Zinh +script for ch[1476] Arab +script for ch[1477] Zinh +script for ch[1478] Zyyy +script for ch[1479] Zyyy +script for ch[1480] Arab +script for ch[1481] Zinh +script for ch[1482] Arab +script for ch[1483] Zinh +script for ch[1484] Arab +script for ch[1485] Zinh +script for ch[1486] Arab +script for ch[1487] Arab +script for ch[1488] Zinh +script for ch[1489] Zyyy +script for ch[1490] Zyyy +script for ch[1491] Arab +script for ch[1492] Zinh +script for ch[1493] Arab +script for ch[1494] Zinh +script for ch[1495] Arab +script for ch[1496] Zinh +script for ch[1497] Arab +script for ch[1498] Zinh +script for ch[1499] Zyyy +script for ch[1500] Arab +script for ch[1501] Zinh +script for ch[1502] Arab +script for ch[1503] Zinh +script for ch[1504] Zyyy +script for ch[1505] Arab +script for ch[1506] Zinh +script for ch[1507] Arab +script for ch[1508] Zinh +script for ch[1509] Arab +script for ch[1510] Zinh +script for ch[1511] Arab +script for ch[1512] Zinh +script for ch[1513] Zyyy +script for ch[1514] Arab +script for ch[1515] Zinh +script for ch[1516] Arab +script for ch[1517] Zinh +script for ch[1518] Zyyy +script for ch[1519] Arab +script for ch[1520] Zinh +script for ch[1521] Arab +script for ch[1522] Zinh +script for ch[1523] Arab +script for ch[1524] Zinh +script for ch[1525] Arab +script for ch[1526] Zinh +script for ch[1527] Zyyy +script for ch[1528] Arab +script for ch[1529] Zinh +script for ch[1530] Arab +script for ch[1531] Zinh +script for ch[1532] Arab +script for ch[1533] Zinh +script for ch[1534] Zyyy +script for ch[1535] Zyyy +script for ch[1536] Arab +script for ch[1537] Zinh +script for ch[1538] Arab +script for ch[1539] Zinh +script for ch[1540] Arab +script for ch[1541] Arab +script for ch[1542] Zinh +script for ch[1543] Zyyy +script for ch[1544] Zyyy +script for ch[1545] Zyyy +script for ch[1546] Arab +script for ch[1547] Zinh +script for ch[1548] Zyyy +script for ch[1549] Zyyy +script for ch[1550] Arab +script for ch[1551] Arab +script for ch[1552] Zinh +script for ch[1553] Arab +script for ch[1554] Zinh +script for ch[1555] Arab +script for ch[1556] Zinh +script for ch[1557] Arab +script for ch[1558] Arab +script for ch[1559] Zinh +script for ch[1560] Arab +script for ch[1561] Zinh +script for ch[1562] Arab +script for ch[1563] Zinh +script for ch[1564] Zyyy +script for ch[1565] Zyyy +script for ch[1566] Arab +script for ch[1567] Arab +script for ch[1568] Zinh +script for ch[1569] Arab +script for ch[1570] Zinh +script for ch[1571] Arab +script for ch[1572] Zinh +script for ch[1573] Arab +script for ch[1574] Arab +script for ch[1575] Zinh +script for ch[1576] Arab +script for ch[1577] Zinh +script for ch[1578] Arab +script for ch[1579] Zinh +script for ch[1580] Zyyy +script for ch[1581] Arab +script for ch[1582] Zinh +script for ch[1583] Zyyy +script for ch[1584] Zyyy +script for ch[1585] Arab +script for ch[1586] Zinh +script for ch[1587] Arab +script for ch[1588] Zinh +script for ch[1589] Arab +script for ch[1590] Arab +script for ch[1591] Zinh +script for ch[1592] Arab +script for ch[1593] Zinh +script for ch[1594] Zyyy +script for ch[1595] Zyyy +script for ch[1596] Arab +script for ch[1597] Arab +script for ch[1598] Zinh +script for ch[1599] Arab +script for ch[1600] Zinh +script for ch[1601] Arab +script for ch[1602] Zinh +script for ch[1603] Arab +script for ch[1604] Zinh +script for ch[1605] Zyyy +script for ch[1606] Arab +script for ch[1607] Zinh +script for ch[1608] Arab +script for ch[1609] Zinh +script for ch[1610] Arab +script for ch[1611] Arab +script for ch[1612] Zinh +script for ch[1613] Arab +script for ch[1614] Zinh +script for ch[1615] Arab +script for ch[1616] Arab +script for ch[1617] Zyyy +script for ch[1618] Zyyy +script for ch[1619] Arab +script for ch[1620] Zinh +script for ch[1621] Arab +script for ch[1622] Zinh +script for ch[1623] Arab +script for ch[1624] Zinh +script for ch[1625] Arab +script for ch[1626] Zinh +script for ch[1627] Arab +script for ch[1628] Arab +script for ch[1629] Zinh +script for ch[1630] Arab +script for ch[1631] Zinh +script for ch[1632] Zyyy +script for ch[1633] Zyyy +script for ch[1634] Arab +script for ch[1635] Zinh +script for ch[1636] Arab +script for ch[1637] Arab +script for ch[1638] Zinh +script for ch[1639] Arab +script for ch[1640] Zinh +script for ch[1641] Arab +script for ch[1642] Zinh +script for ch[1643] Zyyy +script for ch[1644] Zyyy +script for ch[1645] Arab +script for ch[1646] Zinh +script for ch[1647] Arab +script for ch[1648] Zinh +script for ch[1649] Arab +script for ch[1650] Zinh +script for ch[1651] Zyyy +script for ch[1652] Arab +script for ch[1653] Zinh +script for ch[1654] Arab +script for ch[1655] Arab +script for ch[1656] Zinh +script for ch[1657] Arab +script for ch[1658] Zinh +script for ch[1659] Arab +script for ch[1660] Zinh +script for ch[1661] Zyyy +script for ch[1662] Arab +script for ch[1663] Zinh +script for ch[1664] Arab +script for ch[1665] Zinh +script for ch[1666] Arab +script for ch[1667] Zinh +script for ch[1668] Arab +script for ch[1669] Zinh +script for ch[1670] Arab +script for ch[1671] Zyyy +script for ch[1672] Arab +script for ch[1673] Zinh +script for ch[1674] Arab +script for ch[1675] Zinh +script for ch[1676] Arab +script for ch[1677] Zinh +script for ch[1678] Arab +script for ch[1679] Zinh +script for ch[1680] Arab +script for ch[1681] Zinh +script for ch[1682] Arab +script for ch[1683] Zinh +script for ch[1684] Zyyy +script for ch[1685] Zyyy +script for ch[1686] Arab +script for ch[1687] Zinh +script for ch[1688] Arab +script for ch[1689] Zinh +script for ch[1690] Arab +script for ch[1691] Zinh +script for ch[1692] Arab +script for ch[1693] Arab +script for ch[1694] Zinh +script for ch[1695] Zyyy +script for ch[1696] Zyyy +script for ch[1697] Arab +script for ch[1698] Arab +script for ch[1699] Zinh +script for ch[1700] Arab +script for ch[1701] Zinh +script for ch[1702] Arab +script for ch[1703] Zinh +script for ch[1704] Arab +script for ch[1705] Zinh +script for ch[1706] Zyyy +script for ch[1707] Zyyy +script for ch[1708] Arab +script for ch[1709] Zinh +script for ch[1710] Arab +script for ch[1711] Zinh +script for ch[1712] Zyyy +script for ch[1713] Arab +script for ch[1714] Arab +script for ch[1715] Zinh +script for ch[1716] Arab +script for ch[1717] Zinh +script for ch[1718] Arab +script for ch[1719] Zinh +script for ch[1720] Arab +script for ch[1721] Zinh +script for ch[1722] Arab +script for ch[1723] Zinh +script for ch[1724] Zyyy +script for ch[1725] Zyyy +script for ch[1726] Arab +script for ch[1727] Zinh +script for ch[1728] Arab +script for ch[1729] Zinh +script for ch[1730] Arab +script for ch[1731] Arab +script for ch[1732] Zinh +script for ch[1733] Zyyy +script for ch[1734] Arab +script for ch[1735] Zinh +script for ch[1736] Arab +script for ch[1737] Zinh +script for ch[1738] Arab +script for ch[1739] Zyyy +script for ch[1740] Arab +script for ch[1741] Arab +script for ch[1742] Zinh +script for ch[1743] Arab +script for ch[1744] Zinh +script for ch[1745] Arab +script for ch[1746] Zinh +script for ch[1747] Arab +script for ch[1748] Zinh +script for ch[1749] Zyyy +script for ch[1750] Zyyy +script for ch[1751] Arab +script for ch[1752] Zinh +script for ch[1753] Arab +script for ch[1754] Zinh +script for ch[1755] Zyyy +script for ch[1756] Arab +script for ch[1757] Arab +script for ch[1758] Zinh +script for ch[1759] Arab +script for ch[1760] Zinh +script for ch[1761] Arab +script for ch[1762] Zinh +script for ch[1763] Arab +script for ch[1764] Zinh +script for ch[1765] Arab +script for ch[1766] Zinh +script for ch[1767] Zyyy +script for ch[1768] Arab +script for ch[1769] Arab +script for ch[1770] Zinh +script for ch[1771] Arab +script for ch[1772] Zinh +script for ch[1773] Arab +script for ch[1774] Zinh +script for ch[1775] Arab +script for ch[1776] Zinh +script for ch[1777] Arab +script for ch[1778] Arab +script for ch[1779] Zinh +script for ch[1780] Zyyy +script for ch[1781] Arab +script for ch[1782] Zinh +script for ch[1783] Arab +script for ch[1784] Arab +script for ch[1785] Arab +script for ch[1786] Zinh +script for ch[1787] Zinh +script for ch[1788] Arab +script for ch[1789] Zinh +script for ch[1790] Arab +script for ch[1791] Zinh +script for ch[1792] Arab +script for ch[1793] Zinh +script for ch[1794] Arab +script for ch[1795] Zinh +script for ch[1796] Zyyy +script for ch[1797] Zyyy +script for ch[1798] Arab +script for ch[1799] Zinh +script for ch[1800] Arab +script for ch[1801] Zinh +script for ch[1802] Arab +script for ch[1803] Zinh +script for ch[1804] Zinh +script for ch[1805] Arab +script for ch[1806] Zyyy +script for ch[1807] Arab +script for ch[1808] Arab +script for ch[1809] Zinh +script for ch[1810] Arab +script for ch[1811] Zinh +script for ch[1812] Arab +script for ch[1813] Zinh +script for ch[1814] Arab +script for ch[1815] Zinh +script for ch[1816] Arab +script for ch[1817] Zinh +script for ch[1818] Zyyy +script for ch[1819] Arab +script for ch[1820] Zinh +script for ch[1821] Arab +script for ch[1822] Zinh +script for ch[1823] Arab +script for ch[1824] Zinh +script for ch[1825] Zyyy +script for ch[1826] Arab +script for ch[1827] Arab +script for ch[1828] Zinh +script for ch[1829] Arab +script for ch[1830] Zinh +script for ch[1831] Arab +script for ch[1832] Arab +script for ch[1833] Zinh +script for ch[1834] Arab +script for ch[1835] Zinh +script for ch[1836] Zyyy +script for ch[1837] Arab +script for ch[1838] Zinh +script for ch[1839] Arab +script for ch[1840] Zinh +script for ch[1841] Arab +script for ch[1842] Zinh +script for ch[1843] Zinh +script for ch[1844] Arab +script for ch[1845] Zinh +script for ch[1846] Zyyy +script for ch[1847] Arab +script for ch[1848] Zinh +script for ch[1849] Arab +script for ch[1850] Zinh +script for ch[1851] Arab +script for ch[1852] Zinh +script for ch[1853] Arab +script for ch[1854] Zinh +script for ch[1855] Zyyy +script for ch[1856] Arab +script for ch[1857] Zinh +script for ch[1858] Arab +script for ch[1859] Arab +script for ch[1860] Zinh +script for ch[1861] Arab +script for ch[1862] Zinh +script for ch[1863] Arab +script for ch[1864] Zinh +script for ch[1865] Arab +script for ch[1866] Arab +script for ch[1867] Zinh +script for ch[1868] Zyyy +script for ch[1869] Zyyy +script for ch[1870] Arab +script for ch[1871] Zinh +script for ch[1872] Zyyy +script for ch[1873] Zyyy +script for ch[1874] Arab +script for ch[1875] Zinh +script for ch[1876] Arab +script for ch[1877] Zinh +script for ch[1878] Arab +script for ch[1879] Zinh +script for ch[1880] Zyyy +script for ch[1881] Zyyy +script for ch[1882] Arab +script for ch[1883] Zinh +script for ch[1884] Arab +script for ch[1885] Zinh +script for ch[1886] Arab +script for ch[1887] Zinh +script for ch[1888] Arab +script for ch[1889] Zinh +script for ch[1890] Arab +script for ch[1891] Zyyy +script for ch[1892] Arab +script for ch[1893] Zinh +script for ch[1894] Arab +script for ch[1895] Zinh +script for ch[1896] Arab +script for ch[1897] Zinh +script for ch[1898] Zyyy +script for ch[1899] Arab +script for ch[1900] Zinh +script for ch[1901] Arab +script for ch[1902] Zinh +script for ch[1903] Arab +script for ch[1904] Arab +script for ch[1905] Zinh +script for ch[1906] Zyyy +script for ch[1907] Arab +script for ch[1908] Zinh +script for ch[1909] Arab +script for ch[1910] Zinh +script for ch[1911] Arab +script for ch[1912] Zinh +script for ch[1913] Zyyy +script for ch[1914] Arab +script for ch[1915] Zinh +script for ch[1916] Arab +script for ch[1917] Zinh +script for ch[1918] Arab +script for ch[1919] Zinh +script for ch[1920] Zyyy +script for ch[1921] Arab +script for ch[1922] Arab +script for ch[1923] Zinh +script for ch[1924] Arab +script for ch[1925] Zinh +script for ch[1926] Arab +script for ch[1927] Zinh +script for ch[1928] Arab +script for ch[1929] Zinh +script for ch[1930] Zyyy +script for ch[1931] Arab +script for ch[1932] Zinh +script for ch[1933] Arab +script for ch[1934] Zinh +script for ch[1935] Arab +script for ch[1936] Zyyy +script for ch[1937] Arab +script for ch[1938] Zinh +script for ch[1939] Arab +script for ch[1940] Zinh +script for ch[1941] Arab +script for ch[1942] Arab +script for ch[1943] Zinh +script for ch[1944] Zyyy +script for ch[1945] Arab +script for ch[1946] Zinh +script for ch[1947] Arab +script for ch[1948] Zinh +script for ch[1949] Arab +script for ch[1950] Zinh +script for ch[1951] Zyyy +script for ch[1952] Arab +script for ch[1953] Zinh +script for ch[1954] Arab +script for ch[1955] Zinh +script for ch[1956] Arab +script for ch[1957] Zinh +script for ch[1958] Zyyy +script for ch[1959] Arab +script for ch[1960] Arab +script for ch[1961] Zinh +script for ch[1962] Arab +script for ch[1963] Zinh +script for ch[1964] Arab +script for ch[1965] Zinh +script for ch[1966] Arab +script for ch[1967] Zinh +script for ch[1968] Zyyy +script for ch[1969] Arab +script for ch[1970] Zinh +script for ch[1971] Arab +script for ch[1972] Arab +script for ch[1973] Arab +script for ch[1974] Zinh +script for ch[1975] Zinh +script for ch[1976] Arab +script for ch[1977] Zinh +script for ch[1978] Arab +script for ch[1979] Zinh +script for ch[1980] Arab +script for ch[1981] Arab +script for ch[1982] Zinh +script for ch[1983] Zyyy +script for ch[1984] Zyyy +script for ch[1985] Arab +script for ch[1986] Zinh +script for ch[1987] Arab +script for ch[1988] Zinh +script for ch[1989] Arab +script for ch[1990] Zinh +script for ch[1991] Zyyy +script for ch[1992] Arab +script for ch[1993] Zinh +script for ch[1994] Arab +script for ch[1995] Zinh +script for ch[1996] Arab +script for ch[1997] Zinh +script for ch[1998] Zyyy +script for ch[1999] Arab +script for ch[2000] Zinh +script for ch[2001] Arab +script for ch[2002] Zinh +script for ch[2003] Arab +script for ch[2004] Zinh +script for ch[2005] Zyyy +script for ch[2006] Arab +script for ch[2007] Zinh +script for ch[2008] Arab +script for ch[2009] Zinh +script for ch[2010] Arab +script for ch[2011] Zinh +script for ch[2012] Arab +script for ch[2013] Zinh +script for ch[2014] Arab +script for ch[2015] Zinh +script for ch[2016] Zyyy +script for ch[2017] Arab +script for ch[2018] Arab +script for ch[2019] Zinh +script for ch[2020] Arab +script for ch[2021] Zinh +script for ch[2022] Arab +script for ch[2023] Zyyy +script for ch[2024] Arab +script for ch[2025] Zinh +script for ch[2026] Arab +script for ch[2027] Zinh +script for ch[2028] Arab +script for ch[2029] Zinh +script for ch[2030] Arab +script for ch[2031] Zinh +script for ch[2032] Arab +script for ch[2033] Zinh +script for ch[2034] Arab +script for ch[2035] Zinh +script for ch[2036] Zyyy +script for ch[2037] Arab +script for ch[2038] Zinh +script for ch[2039] Arab +script for ch[2040] Zinh +script for ch[2041] Arab +script for ch[2042] Arab +script for ch[2043] Zinh +script for ch[2044] Zyyy +script for ch[2045] Zyyy +script for ch[2046] Arab +script for ch[2047] Zinh +script for ch[2048] Arab +script for ch[2049] Zinh +script for ch[2050] Arab +script for ch[2051] Zinh +script for ch[2052] Zyyy +script for ch[2053] Arab +script for ch[2054] Zinh +script for ch[2055] Arab +script for ch[2056] Zinh +script for ch[2057] Arab +script for ch[2058] Zinh +script for ch[2059] Zinh +script for ch[2060] Arab +script for ch[2061] Zinh +script for ch[2062] Zyyy +script for ch[2063] Arab +script for ch[2064] Zinh +script for ch[2065] Arab +script for ch[2066] Zinh +script for ch[2067] Arab +script for ch[2068] Zinh +script for ch[2069] Arab +script for ch[2070] Zinh +script for ch[2071] Arab +script for ch[2072] Zinh +script for ch[2073] Zyyy +script for ch[2074] Zyyy +script for ch[2075] Arab +script for ch[2076] Zinh +script for ch[2077] Arab +script for ch[2078] Zinh +script for ch[2079] Arab +script for ch[2080] Zinh +script for ch[2081] Arab +script for ch[2082] Zinh +script for ch[2083] Zyyy +script for ch[2084] Arab +script for ch[2085] Arab +script for ch[2086] Arab +script for ch[2087] Zinh +script for ch[2088] Zinh +script for ch[2089] Arab +script for ch[2090] Arab +script for ch[2091] Zinh +script for ch[2092] Zyyy +script for ch[2093] Zyyy +script for ch[2094] Arab +script for ch[2095] Zinh +script for ch[2096] Arab +script for ch[2097] Zinh +script for ch[2098] Arab +script for ch[2099] Zinh +script for ch[2100] Arab +script for ch[2101] Zyyy +script for ch[2102] Arab +script for ch[2103] Arab +script for ch[2104] Arab +script for ch[2105] Zinh +script for ch[2106] Zinh +script for ch[2107] Arab +script for ch[2108] Zinh +script for ch[2109] Arab +script for ch[2110] Zinh +script for ch[2111] Zyyy +script for ch[2112] Zyyy +script for ch[2113] Arab +script for ch[2114] Zinh +script for ch[2115] Arab +script for ch[2116] Zinh +script for ch[2117] Arab +script for ch[2118] Zinh +script for ch[2119] Zyyy +script for ch[2120] Arab +script for ch[2121] Zinh +script for ch[2122] Arab +script for ch[2123] Zinh +script for ch[2124] Arab +script for ch[2125] Zinh +script for ch[2126] Zyyy +script for ch[2127] Zyyy +script for ch[2128] Arab +script for ch[2129] Zinh +script for ch[2130] Arab +script for ch[2131] Zinh +script for ch[2132] Zyyy +script for ch[2133] Arab +script for ch[2134] Zinh +script for ch[2135] Arab +script for ch[2136] Zinh +script for ch[2137] Arab +script for ch[2138] Zinh +script for ch[2139] Zyyy +script for ch[2140] Arab +script for ch[2141] Arab +script for ch[2142] Zinh +script for ch[2143] Arab +script for ch[2144] Zinh +script for ch[2145] Arab +script for ch[2146] Zinh +script for ch[2147] Zinh +script for ch[2148] Arab +script for ch[2149] Zinh +script for ch[2150] Zyyy +script for ch[2151] Arab +script for ch[2152] Zinh +script for ch[2153] Arab +script for ch[2154] Arab +script for ch[2155] Arab +script for ch[2156] Zinh +script for ch[2157] Zinh +script for ch[2158] Arab +script for ch[2159] Zinh +script for ch[2160] Arab +script for ch[2161] Arab +script for ch[2162] Zinh +script for ch[2163] Zyyy + +After script detection: +script for ch[0] Zyyy +script for ch[1] Arab +script for ch[2] Arab +script for ch[3] Arab +script for ch[4] Arab +script for ch[5] Arab +script for ch[6] Arab +script for ch[7] Arab +script for ch[8] Arab +script for ch[9] Arab +script for ch[10] Arab +script for ch[11] Arab +script for ch[12] Arab +script for ch[13] Arab +script for ch[14] Arab +script for ch[15] Arab +script for ch[16] Arab +script for ch[17] Arab +script for ch[18] Arab +script for ch[19] Arab +script for ch[20] Arab +script for ch[21] Arab +script for ch[22] Arab +script for ch[23] Arab +script for ch[24] Arab +script for ch[25] Arab +script for ch[26] Arab +script for ch[27] Arab +script for ch[28] Arab +script for ch[29] Arab +script for ch[30] Arab +script for ch[31] Arab +script for ch[32] Arab +script for ch[33] Arab +script for ch[34] Arab +script for ch[35] Arab +script for ch[36] Arab +script for ch[37] Arab +script for ch[38] Arab +script for ch[39] Arab +script for ch[40] Arab +script for ch[41] Arab +script for ch[42] Arab +script for ch[43] Arab +script for ch[44] Arab +script for ch[45] Arab +script for ch[46] Arab +script for ch[47] Arab +script for ch[48] Arab +script for ch[49] Arab +script for ch[50] Arab +script for ch[51] Arab +script for ch[52] Arab +script for ch[53] Arab +script for ch[54] Arab +script for ch[55] Arab +script for ch[56] Arab +script for ch[57] Arab +script for ch[58] Arab +script for ch[59] Arab +script for ch[60] Arab +script for ch[61] Arab +script for ch[62] Arab +script for ch[63] Arab +script for ch[64] Arab +script for ch[65] Arab +script for ch[66] Arab +script for ch[67] Arab +script for ch[68] Arab +script for ch[69] Arab +script for ch[70] Arab +script for ch[71] Arab +script for ch[72] Arab +script for ch[73] Arab +script for ch[74] Arab +script for ch[75] Arab +script for ch[76] Arab +script for ch[77] Arab +script for ch[78] Arab +script for ch[79] Arab +script for ch[80] Arab +script for ch[81] Arab +script for ch[82] Arab +script for ch[83] Arab +script for ch[84] Arab +script for ch[85] Arab +script for ch[86] Arab +script for ch[87] Arab +script for ch[88] Arab +script for ch[89] Arab +script for ch[90] Arab +script for ch[91] Arab +script for ch[92] Arab +script for ch[93] Arab +script for ch[94] Arab +script for ch[95] Arab +script for ch[96] Arab +script for ch[97] Arab +script for ch[98] Arab +script for ch[99] Arab +script for ch[100] Arab +script for ch[101] Arab +script for ch[102] Arab +script for ch[103] Arab +script for ch[104] Arab +script for ch[105] Arab +script for ch[106] Arab +script for ch[107] Arab +script for ch[108] Arab +script for ch[109] Arab +script for ch[110] Arab +script for ch[111] Arab +script for ch[112] Arab +script for ch[113] Arab +script for ch[114] Arab +script for ch[115] Arab +script for ch[116] Arab +script for ch[117] Arab +script for ch[118] Arab +script for ch[119] Arab +script for ch[120] Arab +script for ch[121] Arab +script for ch[122] Arab +script for ch[123] Arab +script for ch[124] Arab +script for ch[125] Arab +script for ch[126] Arab +script for ch[127] Arab +script for ch[128] Arab +script for ch[129] Arab +script for ch[130] Arab +script for ch[131] Arab +script for ch[132] Arab +script for ch[133] Arab +script for ch[134] Arab +script for ch[135] Arab +script for ch[136] Arab +script for ch[137] Arab +script for ch[138] Arab +script for ch[139] Arab +script for ch[140] Arab +script for ch[141] Arab +script for ch[142] Arab +script for ch[143] Arab +script for ch[144] Arab +script for ch[145] Arab +script for ch[146] Arab +script for ch[147] Arab +script for ch[148] Arab +script for ch[149] Arab +script for ch[150] Arab +script for ch[151] Arab +script for ch[152] Arab +script for ch[153] Arab +script for ch[154] Arab +script for ch[155] Arab +script for ch[156] Arab +script for ch[157] Arab +script for ch[158] Arab +script for ch[159] Arab +script for ch[160] Arab +script for ch[161] Arab +script for ch[162] Arab +script for ch[163] Arab +script for ch[164] Arab +script for ch[165] Arab +script for ch[166] Arab +script for ch[167] Arab +script for ch[168] Arab +script for ch[169] Arab +script for ch[170] Arab +script for ch[171] Arab +script for ch[172] Arab +script for ch[173] Arab +script for ch[174] Arab +script for ch[175] Arab +script for ch[176] Arab +script for ch[177] Arab +script for ch[178] Arab +script for ch[179] Arab +script for ch[180] Arab +script for ch[181] Arab +script for ch[182] Arab +script for ch[183] Arab +script for ch[184] Arab +script for ch[185] Arab +script for ch[186] Arab +script for ch[187] Arab +script for ch[188] Arab +script for ch[189] Arab +script for ch[190] Arab +script for ch[191] Arab +script for ch[192] Arab +script for ch[193] Arab +script for ch[194] Arab +script for ch[195] Arab +script for ch[196] Arab +script for ch[197] Arab +script for ch[198] Arab +script for ch[199] Arab +script for ch[200] Arab +script for ch[201] Arab +script for ch[202] Arab +script for ch[203] Arab +script for ch[204] Arab +script for ch[205] Arab +script for ch[206] Arab +script for ch[207] Arab +script for ch[208] Arab +script for ch[209] Arab +script for ch[210] Arab +script for ch[211] Arab +script for ch[212] Arab +script for ch[213] Arab +script for ch[214] Arab +script for ch[215] Arab +script for ch[216] Arab +script for ch[217] Arab +script for ch[218] Arab +script for ch[219] Arab +script for ch[220] Arab +script for ch[221] Arab +script for ch[222] Arab +script for ch[223] Arab +script for ch[224] Arab +script for ch[225] Arab +script for ch[226] Arab +script for ch[227] Arab +script for ch[228] Arab +script for ch[229] Arab +script for ch[230] Arab +script for ch[231] Arab +script for ch[232] Arab +script for ch[233] Arab +script for ch[234] Arab +script for ch[235] Arab +script for ch[236] Arab +script for ch[237] Arab +script for ch[238] Arab +script for ch[239] Arab +script for ch[240] Arab +script for ch[241] Arab +script for ch[242] Arab +script for ch[243] Arab +script for ch[244] Arab +script for ch[245] Arab +script for ch[246] Arab +script for ch[247] Arab +script for ch[248] Arab +script for ch[249] Arab +script for ch[250] Arab +script for ch[251] Arab +script for ch[252] Arab +script for ch[253] Arab +script for ch[254] Arab +script for ch[255] Arab +script for ch[256] Arab +script for ch[257] Arab +script for ch[258] Arab +script for ch[259] Arab +script for ch[260] Arab +script for ch[261] Arab +script for ch[262] Arab +script for ch[263] Arab +script for ch[264] Arab +script for ch[265] Arab +script for ch[266] Arab +script for ch[267] Arab +script for ch[268] Arab +script for ch[269] Arab +script for ch[270] Arab +script for ch[271] Arab +script for ch[272] Arab +script for ch[273] Arab +script for ch[274] Arab +script for ch[275] Arab +script for ch[276] Arab +script for ch[277] Arab +script for ch[278] Arab +script for ch[279] Arab +script for ch[280] Arab +script for ch[281] Arab +script for ch[282] Arab +script for ch[283] Arab +script for ch[284] Arab +script for ch[285] Arab +script for ch[286] Arab +script for ch[287] Arab +script for ch[288] Arab +script for ch[289] Arab +script for ch[290] Arab +script for ch[291] Arab +script for ch[292] Arab +script for ch[293] Arab +script for ch[294] Arab +script for ch[295] Arab +script for ch[296] Arab +script for ch[297] Arab +script for ch[298] Arab +script for ch[299] Arab +script for ch[300] Arab +script for ch[301] Arab +script for ch[302] Arab +script for ch[303] Arab +script for ch[304] Arab +script for ch[305] Arab +script for ch[306] Arab +script for ch[307] Arab +script for ch[308] Arab +script for ch[309] Arab +script for ch[310] Arab +script for ch[311] Arab +script for ch[312] Arab +script for ch[313] Arab +script for ch[314] Arab +script for ch[315] Arab +script for ch[316] Arab +script for ch[317] Arab +script for ch[318] Arab +script for ch[319] Arab +script for ch[320] Arab +script for ch[321] Arab +script for ch[322] Arab +script for ch[323] Arab +script for ch[324] Arab +script for ch[325] Arab +script for ch[326] Arab +script for ch[327] Arab +script for ch[328] Arab +script for ch[329] Arab +script for ch[330] Arab +script for ch[331] Arab +script for ch[332] Arab +script for ch[333] Arab +script for ch[334] Arab +script for ch[335] Arab +script for ch[336] Arab +script for ch[337] Arab +script for ch[338] Arab +script for ch[339] Arab +script for ch[340] Arab +script for ch[341] Arab +script for ch[342] Arab +script for ch[343] Arab +script for ch[344] Arab +script for ch[345] Arab +script for ch[346] Arab +script for ch[347] Arab +script for ch[348] Arab +script for ch[349] Arab +script for ch[350] Arab +script for ch[351] Arab +script for ch[352] Arab +script for ch[353] Arab +script for ch[354] Arab +script for ch[355] Arab +script for ch[356] Arab +script for ch[357] Arab +script for ch[358] Arab +script for ch[359] Arab +script for ch[360] Arab +script for ch[361] Arab +script for ch[362] Arab +script for ch[363] Arab +script for ch[364] Arab +script for ch[365] Arab +script for ch[366] Arab +script for ch[367] Arab +script for ch[368] Arab +script for ch[369] Arab +script for ch[370] Arab +script for ch[371] Arab +script for ch[372] Arab +script for ch[373] Arab +script for ch[374] Arab +script for ch[375] Arab +script for ch[376] Arab +script for ch[377] Arab +script for ch[378] Arab +script for ch[379] Arab +script for ch[380] Arab +script for ch[381] Arab +script for ch[382] Arab +script for ch[383] Arab +script for ch[384] Arab +script for ch[385] Arab +script for ch[386] Arab +script for ch[387] Arab +script for ch[388] Arab +script for ch[389] Arab +script for ch[390] Arab +script for ch[391] Arab +script for ch[392] Arab +script for ch[393] Arab +script for ch[394] Arab +script for ch[395] Arab +script for ch[396] Arab +script for ch[397] Arab +script for ch[398] Arab +script for ch[399] Arab +script for ch[400] Arab +script for ch[401] Arab +script for ch[402] Arab +script for ch[403] Arab +script for ch[404] Arab +script for ch[405] Arab +script for ch[406] Arab +script for ch[407] Arab +script for ch[408] Arab +script for ch[409] Arab +script for ch[410] Arab +script for ch[411] Arab +script for ch[412] Arab +script for ch[413] Arab +script for ch[414] Arab +script for ch[415] Arab +script for ch[416] Arab +script for ch[417] Arab +script for ch[418] Arab +script for ch[419] Arab +script for ch[420] Arab +script for ch[421] Arab +script for ch[422] Arab +script for ch[423] Arab +script for ch[424] Arab +script for ch[425] Arab +script for ch[426] Arab +script for ch[427] Arab +script for ch[428] Arab +script for ch[429] Arab +script for ch[430] Arab +script for ch[431] Arab +script for ch[432] Arab +script for ch[433] Arab +script for ch[434] Arab +script for ch[435] Arab +script for ch[436] Arab +script for ch[437] Arab +script for ch[438] Arab +script for ch[439] Arab +script for ch[440] Arab +script for ch[441] Arab +script for ch[442] Arab +script for ch[443] Arab +script for ch[444] Arab +script for ch[445] Arab +script for ch[446] Arab +script for ch[447] Arab +script for ch[448] Arab +script for ch[449] Arab +script for ch[450] Arab +script for ch[451] Arab +script for ch[452] Arab +script for ch[453] Arab +script for ch[454] Arab +script for ch[455] Arab +script for ch[456] Arab +script for ch[457] Arab +script for ch[458] Arab +script for ch[459] Arab +script for ch[460] Arab +script for ch[461] Arab +script for ch[462] Arab +script for ch[463] Arab +script for ch[464] Arab +script for ch[465] Arab +script for ch[466] Arab +script for ch[467] Arab +script for ch[468] Arab +script for ch[469] Arab +script for ch[470] Arab +script for ch[471] Arab +script for ch[472] Arab +script for ch[473] Arab +script for ch[474] Arab +script for ch[475] Arab +script for ch[476] Arab +script for ch[477] Arab +script for ch[478] Arab +script for ch[479] Arab +script for ch[480] Arab +script for ch[481] Arab +script for ch[482] Arab +script for ch[483] Arab +script for ch[484] Arab +script for ch[485] Arab +script for ch[486] Arab +script for ch[487] Arab +script for ch[488] Arab +script for ch[489] Arab +script for ch[490] Arab +script for ch[491] Arab +script for ch[492] Arab +script for ch[493] Arab +script for ch[494] Arab +script for ch[495] Arab +script for ch[496] Arab +script for ch[497] Arab +script for ch[498] Arab +script for ch[499] Arab +script for ch[500] Arab +script for ch[501] Arab +script for ch[502] Arab +script for ch[503] Arab +script for ch[504] Arab +script for ch[505] Arab +script for ch[506] Arab +script for ch[507] Arab +script for ch[508] Arab +script for ch[509] Arab +script for ch[510] Arab +script for ch[511] Arab +script for ch[512] Arab +script for ch[513] Arab +script for ch[514] Arab +script for ch[515] Arab +script for ch[516] Arab +script for ch[517] Arab +script for ch[518] Arab +script for ch[519] Arab +script for ch[520] Arab +script for ch[521] Arab +script for ch[522] Arab +script for ch[523] Arab +script for ch[524] Arab +script for ch[525] Arab +script for ch[526] Arab +script for ch[527] Arab +script for ch[528] Arab +script for ch[529] Arab +script for ch[530] Arab +script for ch[531] Arab +script for ch[532] Arab +script for ch[533] Arab +script for ch[534] Arab +script for ch[535] Arab +script for ch[536] Arab +script for ch[537] Arab +script for ch[538] Arab +script for ch[539] Arab +script for ch[540] Arab +script for ch[541] Arab +script for ch[542] Arab +script for ch[543] Arab +script for ch[544] Arab +script for ch[545] Arab +script for ch[546] Arab +script for ch[547] Arab +script for ch[548] Arab +script for ch[549] Arab +script for ch[550] Arab +script for ch[551] Arab +script for ch[552] Arab +script for ch[553] Arab +script for ch[554] Arab +script for ch[555] Arab +script for ch[556] Arab +script for ch[557] Arab +script for ch[558] Arab +script for ch[559] Arab +script for ch[560] Arab +script for ch[561] Arab +script for ch[562] Arab +script for ch[563] Arab +script for ch[564] Arab +script for ch[565] Arab +script for ch[566] Arab +script for ch[567] Arab +script for ch[568] Arab +script for ch[569] Arab +script for ch[570] Arab +script for ch[571] Arab +script for ch[572] Arab +script for ch[573] Arab +script for ch[574] Arab +script for ch[575] Arab +script for ch[576] Arab +script for ch[577] Arab +script for ch[578] Arab +script for ch[579] Arab +script for ch[580] Arab +script for ch[581] Arab +script for ch[582] Arab +script for ch[583] Arab +script for ch[584] Arab +script for ch[585] Arab +script for ch[586] Arab +script for ch[587] Arab +script for ch[588] Arab +script for ch[589] Arab +script for ch[590] Arab +script for ch[591] Arab +script for ch[592] Arab +script for ch[593] Arab +script for ch[594] Arab +script for ch[595] Arab +script for ch[596] Arab +script for ch[597] Arab +script for ch[598] Arab +script for ch[599] Arab +script for ch[600] Arab +script for ch[601] Arab +script for ch[602] Arab +script for ch[603] Arab +script for ch[604] Arab +script for ch[605] Arab +script for ch[606] Arab +script for ch[607] Arab +script for ch[608] Arab +script for ch[609] Arab +script for ch[610] Arab +script for ch[611] Arab +script for ch[612] Arab +script for ch[613] Arab +script for ch[614] Arab +script for ch[615] Arab +script for ch[616] Arab +script for ch[617] Arab +script for ch[618] Arab +script for ch[619] Arab +script for ch[620] Arab +script for ch[621] Arab +script for ch[622] Arab +script for ch[623] Arab +script for ch[624] Arab +script for ch[625] Arab +script for ch[626] Arab +script for ch[627] Arab +script for ch[628] Arab +script for ch[629] Arab +script for ch[630] Arab +script for ch[631] Arab +script for ch[632] Arab +script for ch[633] Arab +script for ch[634] Arab +script for ch[635] Arab +script for ch[636] Arab +script for ch[637] Arab +script for ch[638] Arab +script for ch[639] Arab +script for ch[640] Arab +script for ch[641] Arab +script for ch[642] Arab +script for ch[643] Arab +script for ch[644] Arab +script for ch[645] Arab +script for ch[646] Arab +script for ch[647] Arab +script for ch[648] Arab +script for ch[649] Arab +script for ch[650] Arab +script for ch[651] Arab +script for ch[652] Arab +script for ch[653] Arab +script for ch[654] Arab +script for ch[655] Arab +script for ch[656] Arab +script for ch[657] Arab +script for ch[658] Arab +script for ch[659] Arab +script for ch[660] Arab +script for ch[661] Arab +script for ch[662] Arab +script for ch[663] Arab +script for ch[664] Arab +script for ch[665] Arab +script for ch[666] Arab +script for ch[667] Arab +script for ch[668] Arab +script for ch[669] Arab +script for ch[670] Arab +script for ch[671] Arab +script for ch[672] Arab +script for ch[673] Arab +script for ch[674] Arab +script for ch[675] Arab +script for ch[676] Arab +script for ch[677] Arab +script for ch[678] Arab +script for ch[679] Arab +script for ch[680] Arab +script for ch[681] Arab +script for ch[682] Arab +script for ch[683] Arab +script for ch[684] Arab +script for ch[685] Arab +script for ch[686] Arab +script for ch[687] Arab +script for ch[688] Arab +script for ch[689] Arab +script for ch[690] Arab +script for ch[691] Arab +script for ch[692] Arab +script for ch[693] Arab +script for ch[694] Arab +script for ch[695] Arab +script for ch[696] Arab +script for ch[697] Arab +script for ch[698] Arab +script for ch[699] Arab +script for ch[700] Arab +script for ch[701] Arab +script for ch[702] Arab +script for ch[703] Arab +script for ch[704] Arab +script for ch[705] Arab +script for ch[706] Arab +script for ch[707] Arab +script for ch[708] Arab +script for ch[709] Arab +script for ch[710] Arab +script for ch[711] Arab +script for ch[712] Arab +script for ch[713] Arab +script for ch[714] Arab +script for ch[715] Arab +script for ch[716] Arab +script for ch[717] Arab +script for ch[718] Arab +script for ch[719] Arab +script for ch[720] Arab +script for ch[721] Arab +script for ch[722] Arab +script for ch[723] Arab +script for ch[724] Arab +script for ch[725] Arab +script for ch[726] Arab +script for ch[727] Arab +script for ch[728] Arab +script for ch[729] Arab +script for ch[730] Arab +script for ch[731] Arab +script for ch[732] Arab +script for ch[733] Arab +script for ch[734] Arab +script for ch[735] Arab +script for ch[736] Arab +script for ch[737] Arab +script for ch[738] Arab +script for ch[739] Arab +script for ch[740] Arab +script for ch[741] Arab +script for ch[742] Arab +script for ch[743] Arab +script for ch[744] Arab +script for ch[745] Arab +script for ch[746] Arab +script for ch[747] Arab +script for ch[748] Arab +script for ch[749] Arab +script for ch[750] Arab +script for ch[751] Arab +script for ch[752] Arab +script for ch[753] Arab +script for ch[754] Arab +script for ch[755] Arab +script for ch[756] Arab +script for ch[757] Arab +script for ch[758] Arab +script for ch[759] Arab +script for ch[760] Arab +script for ch[761] Arab +script for ch[762] Arab +script for ch[763] Arab +script for ch[764] Arab +script for ch[765] Arab +script for ch[766] Arab +script for ch[767] Arab +script for ch[768] Arab +script for ch[769] Arab +script for ch[770] Arab +script for ch[771] Arab +script for ch[772] Arab +script for ch[773] Arab +script for ch[774] Arab +script for ch[775] Arab +script for ch[776] Arab +script for ch[777] Arab +script for ch[778] Arab +script for ch[779] Arab +script for ch[780] Arab +script for ch[781] Arab +script for ch[782] Arab +script for ch[783] Arab +script for ch[784] Arab +script for ch[785] Arab +script for ch[786] Arab +script for ch[787] Arab +script for ch[788] Arab +script for ch[789] Arab +script for ch[790] Arab +script for ch[791] Arab +script for ch[792] Arab +script for ch[793] Arab +script for ch[794] Arab +script for ch[795] Arab +script for ch[796] Arab +script for ch[797] Arab +script for ch[798] Arab +script for ch[799] Arab +script for ch[800] Arab +script for ch[801] Arab +script for ch[802] Arab +script for ch[803] Arab +script for ch[804] Arab +script for ch[805] Arab +script for ch[806] Arab +script for ch[807] Arab +script for ch[808] Arab +script for ch[809] Arab +script for ch[810] Arab +script for ch[811] Arab +script for ch[812] Arab +script for ch[813] Arab +script for ch[814] Arab +script for ch[815] Arab +script for ch[816] Arab +script for ch[817] Arab +script for ch[818] Arab +script for ch[819] Arab +script for ch[820] Arab +script for ch[821] Arab +script for ch[822] Arab +script for ch[823] Arab +script for ch[824] Arab +script for ch[825] Arab +script for ch[826] Arab +script for ch[827] Arab +script for ch[828] Arab +script for ch[829] Arab +script for ch[830] Arab +script for ch[831] Arab +script for ch[832] Arab +script for ch[833] Arab +script for ch[834] Arab +script for ch[835] Arab +script for ch[836] Arab +script for ch[837] Arab +script for ch[838] Arab +script for ch[839] Arab +script for ch[840] Arab +script for ch[841] Arab +script for ch[842] Arab +script for ch[843] Arab +script for ch[844] Arab +script for ch[845] Arab +script for ch[846] Arab +script for ch[847] Arab +script for ch[848] Arab +script for ch[849] Arab +script for ch[850] Arab +script for ch[851] Arab +script for ch[852] Arab +script for ch[853] Arab +script for ch[854] Arab +script for ch[855] Arab +script for ch[856] Arab +script for ch[857] Arab +script for ch[858] Arab +script for ch[859] Arab +script for ch[860] Arab +script for ch[861] Arab +script for ch[862] Arab +script for ch[863] Arab +script for ch[864] Arab +script for ch[865] Arab +script for ch[866] Arab +script for ch[867] Arab +script for ch[868] Arab +script for ch[869] Arab +script for ch[870] Arab +script for ch[871] Arab +script for ch[872] Arab +script for ch[873] Arab +script for ch[874] Arab +script for ch[875] Arab +script for ch[876] Arab +script for ch[877] Arab +script for ch[878] Arab +script for ch[879] Arab +script for ch[880] Arab +script for ch[881] Arab +script for ch[882] Arab +script for ch[883] Arab +script for ch[884] Arab +script for ch[885] Arab +script for ch[886] Arab +script for ch[887] Arab +script for ch[888] Arab +script for ch[889] Arab +script for ch[890] Arab +script for ch[891] Arab +script for ch[892] Arab +script for ch[893] Arab +script for ch[894] Arab +script for ch[895] Arab +script for ch[896] Arab +script for ch[897] Arab +script for ch[898] Arab +script for ch[899] Arab +script for ch[900] Arab +script for ch[901] Arab +script for ch[902] Arab +script for ch[903] Arab +script for ch[904] Arab +script for ch[905] Arab +script for ch[906] Arab +script for ch[907] Arab +script for ch[908] Arab +script for ch[909] Arab +script for ch[910] Arab +script for ch[911] Arab +script for ch[912] Arab +script for ch[913] Arab +script for ch[914] Arab +script for ch[915] Arab +script for ch[916] Arab +script for ch[917] Arab +script for ch[918] Arab +script for ch[919] Arab +script for ch[920] Arab +script for ch[921] Arab +script for ch[922] Arab +script for ch[923] Arab +script for ch[924] Arab +script for ch[925] Arab +script for ch[926] Arab +script for ch[927] Arab +script for ch[928] Arab +script for ch[929] Arab +script for ch[930] Arab +script for ch[931] Arab +script for ch[932] Arab +script for ch[933] Arab +script for ch[934] Arab +script for ch[935] Arab +script for ch[936] Arab +script for ch[937] Arab +script for ch[938] Arab +script for ch[939] Arab +script for ch[940] Arab +script for ch[941] Arab +script for ch[942] Arab +script for ch[943] Arab +script for ch[944] Arab +script for ch[945] Arab +script for ch[946] Arab +script for ch[947] Arab +script for ch[948] Arab +script for ch[949] Arab +script for ch[950] Arab +script for ch[951] Arab +script for ch[952] Arab +script for ch[953] Arab +script for ch[954] Arab +script for ch[955] Arab +script for ch[956] Arab +script for ch[957] Arab +script for ch[958] Arab +script for ch[959] Arab +script for ch[960] Arab +script for ch[961] Arab +script for ch[962] Arab +script for ch[963] Arab +script for ch[964] Arab +script for ch[965] Arab +script for ch[966] Arab +script for ch[967] Arab +script for ch[968] Arab +script for ch[969] Arab +script for ch[970] Arab +script for ch[971] Arab +script for ch[972] Arab +script for ch[973] Arab +script for ch[974] Arab +script for ch[975] Arab +script for ch[976] Arab +script for ch[977] Arab +script for ch[978] Arab +script for ch[979] Arab +script for ch[980] Arab +script for ch[981] Arab +script for ch[982] Arab +script for ch[983] Arab +script for ch[984] Arab +script for ch[985] Arab +script for ch[986] Arab +script for ch[987] Arab +script for ch[988] Arab +script for ch[989] Arab +script for ch[990] Arab +script for ch[991] Arab +script for ch[992] Arab +script for ch[993] Arab +script for ch[994] Arab +script for ch[995] Arab +script for ch[996] Arab +script for ch[997] Arab +script for ch[998] Arab +script for ch[999] Arab +script for ch[1000] Arab +script for ch[1001] Arab +script for ch[1002] Arab +script for ch[1003] Arab +script for ch[1004] Arab +script for ch[1005] Arab +script for ch[1006] Arab +script for ch[1007] Arab +script for ch[1008] Arab +script for ch[1009] Arab +script for ch[1010] Arab +script for ch[1011] Arab +script for ch[1012] Arab +script for ch[1013] Arab +script for ch[1014] Arab +script for ch[1015] Arab +script for ch[1016] Arab +script for ch[1017] Arab +script for ch[1018] Arab +script for ch[1019] Arab +script for ch[1020] Arab +script for ch[1021] Arab +script for ch[1022] Arab +script for ch[1023] Arab +script for ch[1024] Arab +script for ch[1025] Arab +script for ch[1026] Arab +script for ch[1027] Arab +script for ch[1028] Arab +script for ch[1029] Arab +script for ch[1030] Arab +script for ch[1031] Arab +script for ch[1032] Arab +script for ch[1033] Arab +script for ch[1034] Arab +script for ch[1035] Arab +script for ch[1036] Arab +script for ch[1037] Arab +script for ch[1038] Arab +script for ch[1039] Arab +script for ch[1040] Arab +script for ch[1041] Arab +script for ch[1042] Arab +script for ch[1043] Arab +script for ch[1044] Arab +script for ch[1045] Arab +script for ch[1046] Arab +script for ch[1047] Arab +script for ch[1048] Arab +script for ch[1049] Arab +script for ch[1050] Arab +script for ch[1051] Arab +script for ch[1052] Arab +script for ch[1053] Arab +script for ch[1054] Arab +script for ch[1055] Arab +script for ch[1056] Arab +script for ch[1057] Arab +script for ch[1058] Arab +script for ch[1059] Arab +script for ch[1060] Arab +script for ch[1061] Arab +script for ch[1062] Arab +script for ch[1063] Arab +script for ch[1064] Arab +script for ch[1065] Arab +script for ch[1066] Arab +script for ch[1067] Arab +script for ch[1068] Arab +script for ch[1069] Arab +script for ch[1070] Arab +script for ch[1071] Arab +script for ch[1072] Arab +script for ch[1073] Arab +script for ch[1074] Arab +script for ch[1075] Arab +script for ch[1076] Arab +script for ch[1077] Arab +script for ch[1078] Arab +script for ch[1079] Arab +script for ch[1080] Arab +script for ch[1081] Arab +script for ch[1082] Arab +script for ch[1083] Arab +script for ch[1084] Arab +script for ch[1085] Arab +script for ch[1086] Arab +script for ch[1087] Arab +script for ch[1088] Arab +script for ch[1089] Arab +script for ch[1090] Arab +script for ch[1091] Arab +script for ch[1092] Arab +script for ch[1093] Arab +script for ch[1094] Arab +script for ch[1095] Arab +script for ch[1096] Arab +script for ch[1097] Arab +script for ch[1098] Arab +script for ch[1099] Arab +script for ch[1100] Arab +script for ch[1101] Arab +script for ch[1102] Arab +script for ch[1103] Arab +script for ch[1104] Arab +script for ch[1105] Arab +script for ch[1106] Arab +script for ch[1107] Arab +script for ch[1108] Arab +script for ch[1109] Arab +script for ch[1110] Arab +script for ch[1111] Arab +script for ch[1112] Arab +script for ch[1113] Arab +script for ch[1114] Arab +script for ch[1115] Arab +script for ch[1116] Arab +script for ch[1117] Arab +script for ch[1118] Arab +script for ch[1119] Arab +script for ch[1120] Arab +script for ch[1121] Arab +script for ch[1122] Arab +script for ch[1123] Arab +script for ch[1124] Arab +script for ch[1125] Arab +script for ch[1126] Arab +script for ch[1127] Arab +script for ch[1128] Arab +script for ch[1129] Arab +script for ch[1130] Arab +script for ch[1131] Arab +script for ch[1132] Arab +script for ch[1133] Arab +script for ch[1134] Arab +script for ch[1135] Arab +script for ch[1136] Arab +script for ch[1137] Arab +script for ch[1138] Arab +script for ch[1139] Arab +script for ch[1140] Arab +script for ch[1141] Arab +script for ch[1142] Arab +script for ch[1143] Arab +script for ch[1144] Arab +script for ch[1145] Arab +script for ch[1146] Arab +script for ch[1147] Arab +script for ch[1148] Arab +script for ch[1149] Arab +script for ch[1150] Arab +script for ch[1151] Arab +script for ch[1152] Arab +script for ch[1153] Arab +script for ch[1154] Arab +script for ch[1155] Arab +script for ch[1156] Arab +script for ch[1157] Arab +script for ch[1158] Arab +script for ch[1159] Arab +script for ch[1160] Arab +script for ch[1161] Arab +script for ch[1162] Arab +script for ch[1163] Arab +script for ch[1164] Arab +script for ch[1165] Arab +script for ch[1166] Arab +script for ch[1167] Arab +script for ch[1168] Arab +script for ch[1169] Arab +script for ch[1170] Arab +script for ch[1171] Arab +script for ch[1172] Arab +script for ch[1173] Arab +script for ch[1174] Arab +script for ch[1175] Arab +script for ch[1176] Arab +script for ch[1177] Arab +script for ch[1178] Arab +script for ch[1179] Arab +script for ch[1180] Arab +script for ch[1181] Arab +script for ch[1182] Arab +script for ch[1183] Arab +script for ch[1184] Arab +script for ch[1185] Arab +script for ch[1186] Arab +script for ch[1187] Arab +script for ch[1188] Arab +script for ch[1189] Arab +script for ch[1190] Arab +script for ch[1191] Arab +script for ch[1192] Arab +script for ch[1193] Arab +script for ch[1194] Arab +script for ch[1195] Arab +script for ch[1196] Arab +script for ch[1197] Arab +script for ch[1198] Arab +script for ch[1199] Arab +script for ch[1200] Arab +script for ch[1201] Arab +script for ch[1202] Arab +script for ch[1203] Arab +script for ch[1204] Arab +script for ch[1205] Arab +script for ch[1206] Arab +script for ch[1207] Arab +script for ch[1208] Arab +script for ch[1209] Arab +script for ch[1210] Arab +script for ch[1211] Arab +script for ch[1212] Arab +script for ch[1213] Arab +script for ch[1214] Arab +script for ch[1215] Arab +script for ch[1216] Arab +script for ch[1217] Arab +script for ch[1218] Arab +script for ch[1219] Arab +script for ch[1220] Arab +script for ch[1221] Arab +script for ch[1222] Arab +script for ch[1223] Arab +script for ch[1224] Arab +script for ch[1225] Arab +script for ch[1226] Arab +script for ch[1227] Arab +script for ch[1228] Arab +script for ch[1229] Arab +script for ch[1230] Arab +script for ch[1231] Arab +script for ch[1232] Arab +script for ch[1233] Arab +script for ch[1234] Arab +script for ch[1235] Arab +script for ch[1236] Arab +script for ch[1237] Arab +script for ch[1238] Arab +script for ch[1239] Arab +script for ch[1240] Arab +script for ch[1241] Arab +script for ch[1242] Arab +script for ch[1243] Arab +script for ch[1244] Arab +script for ch[1245] Arab +script for ch[1246] Arab +script for ch[1247] Arab +script for ch[1248] Arab +script for ch[1249] Arab +script for ch[1250] Arab +script for ch[1251] Arab +script for ch[1252] Arab +script for ch[1253] Arab +script for ch[1254] Arab +script for ch[1255] Arab +script for ch[1256] Arab +script for ch[1257] Arab +script for ch[1258] Arab +script for ch[1259] Arab +script for ch[1260] Arab +script for ch[1261] Arab +script for ch[1262] Arab +script for ch[1263] Arab +script for ch[1264] Arab +script for ch[1265] Arab +script for ch[1266] Arab +script for ch[1267] Arab +script for ch[1268] Arab +script for ch[1269] Arab +script for ch[1270] Arab +script for ch[1271] Arab +script for ch[1272] Arab +script for ch[1273] Arab +script for ch[1274] Arab +script for ch[1275] Arab +script for ch[1276] Arab +script for ch[1277] Arab +script for ch[1278] Arab +script for ch[1279] Arab +script for ch[1280] Arab +script for ch[1281] Arab +script for ch[1282] Arab +script for ch[1283] Arab +script for ch[1284] Arab +script for ch[1285] Arab +script for ch[1286] Arab +script for ch[1287] Arab +script for ch[1288] Arab +script for ch[1289] Arab +script for ch[1290] Arab +script for ch[1291] Arab +script for ch[1292] Arab +script for ch[1293] Arab +script for ch[1294] Arab +script for ch[1295] Arab +script for ch[1296] Arab +script for ch[1297] Arab +script for ch[1298] Arab +script for ch[1299] Arab +script for ch[1300] Arab +script for ch[1301] Arab +script for ch[1302] Arab +script for ch[1303] Arab +script for ch[1304] Arab +script for ch[1305] Arab +script for ch[1306] Arab +script for ch[1307] Arab +script for ch[1308] Arab +script for ch[1309] Arab +script for ch[1310] Arab +script for ch[1311] Arab +script for ch[1312] Arab +script for ch[1313] Arab +script for ch[1314] Arab +script for ch[1315] Arab +script for ch[1316] Arab +script for ch[1317] Arab +script for ch[1318] Arab +script for ch[1319] Arab +script for ch[1320] Arab +script for ch[1321] Arab +script for ch[1322] Arab +script for ch[1323] Arab +script for ch[1324] Arab +script for ch[1325] Arab +script for ch[1326] Arab +script for ch[1327] Arab +script for ch[1328] Arab +script for ch[1329] Arab +script for ch[1330] Arab +script for ch[1331] Arab +script for ch[1332] Arab +script for ch[1333] Arab +script for ch[1334] Arab +script for ch[1335] Arab +script for ch[1336] Arab +script for ch[1337] Arab +script for ch[1338] Arab +script for ch[1339] Arab +script for ch[1340] Arab +script for ch[1341] Arab +script for ch[1342] Arab +script for ch[1343] Arab +script for ch[1344] Arab +script for ch[1345] Arab +script for ch[1346] Arab +script for ch[1347] Arab +script for ch[1348] Arab +script for ch[1349] Arab +script for ch[1350] Arab +script for ch[1351] Arab +script for ch[1352] Arab +script for ch[1353] Arab +script for ch[1354] Arab +script for ch[1355] Arab +script for ch[1356] Arab +script for ch[1357] Arab +script for ch[1358] Arab +script for ch[1359] Arab +script for ch[1360] Arab +script for ch[1361] Arab +script for ch[1362] Arab +script for ch[1363] Arab +script for ch[1364] Arab +script for ch[1365] Arab +script for ch[1366] Arab +script for ch[1367] Arab +script for ch[1368] Arab +script for ch[1369] Arab +script for ch[1370] Arab +script for ch[1371] Arab +script for ch[1372] Arab +script for ch[1373] Arab +script for ch[1374] Arab +script for ch[1375] Arab +script for ch[1376] Arab +script for ch[1377] Arab +script for ch[1378] Arab +script for ch[1379] Arab +script for ch[1380] Arab +script for ch[1381] Arab +script for ch[1382] Arab +script for ch[1383] Arab +script for ch[1384] Arab +script for ch[1385] Arab +script for ch[1386] Arab +script for ch[1387] Arab +script for ch[1388] Arab +script for ch[1389] Arab +script for ch[1390] Arab +script for ch[1391] Arab +script for ch[1392] Arab +script for ch[1393] Arab +script for ch[1394] Arab +script for ch[1395] Arab +script for ch[1396] Arab +script for ch[1397] Arab +script for ch[1398] Arab +script for ch[1399] Arab +script for ch[1400] Arab +script for ch[1401] Arab +script for ch[1402] Arab +script for ch[1403] Arab +script for ch[1404] Arab +script for ch[1405] Arab +script for ch[1406] Arab +script for ch[1407] Arab +script for ch[1408] Arab +script for ch[1409] Arab +script for ch[1410] Arab +script for ch[1411] Arab +script for ch[1412] Arab +script for ch[1413] Arab +script for ch[1414] Arab +script for ch[1415] Arab +script for ch[1416] Arab +script for ch[1417] Arab +script for ch[1418] Arab +script for ch[1419] Arab +script for ch[1420] Arab +script for ch[1421] Arab +script for ch[1422] Arab +script for ch[1423] Arab +script for ch[1424] Arab +script for ch[1425] Arab +script for ch[1426] Arab +script for ch[1427] Arab +script for ch[1428] Arab +script for ch[1429] Arab +script for ch[1430] Arab +script for ch[1431] Arab +script for ch[1432] Arab +script for ch[1433] Arab +script for ch[1434] Arab +script for ch[1435] Arab +script for ch[1436] Arab +script for ch[1437] Arab +script for ch[1438] Arab +script for ch[1439] Arab +script for ch[1440] Arab +script for ch[1441] Arab +script for ch[1442] Arab +script for ch[1443] Arab +script for ch[1444] Arab +script for ch[1445] Arab +script for ch[1446] Arab +script for ch[1447] Arab +script for ch[1448] Arab +script for ch[1449] Arab +script for ch[1450] Arab +script for ch[1451] Arab +script for ch[1452] Arab +script for ch[1453] Arab +script for ch[1454] Arab +script for ch[1455] Arab +script for ch[1456] Arab +script for ch[1457] Arab +script for ch[1458] Arab +script for ch[1459] Arab +script for ch[1460] Arab +script for ch[1461] Arab +script for ch[1462] Arab +script for ch[1463] Arab +script for ch[1464] Arab +script for ch[1465] Arab +script for ch[1466] Arab +script for ch[1467] Arab +script for ch[1468] Arab +script for ch[1469] Arab +script for ch[1470] Arab +script for ch[1471] Arab +script for ch[1472] Arab +script for ch[1473] Arab +script for ch[1474] Arab +script for ch[1475] Arab +script for ch[1476] Arab +script for ch[1477] Arab +script for ch[1478] Arab +script for ch[1479] Arab +script for ch[1480] Arab +script for ch[1481] Arab +script for ch[1482] Arab +script for ch[1483] Arab +script for ch[1484] Arab +script for ch[1485] Arab +script for ch[1486] Arab +script for ch[1487] Arab +script for ch[1488] Arab +script for ch[1489] Arab +script for ch[1490] Arab +script for ch[1491] Arab +script for ch[1492] Arab +script for ch[1493] Arab +script for ch[1494] Arab +script for ch[1495] Arab +script for ch[1496] Arab +script for ch[1497] Arab +script for ch[1498] Arab +script for ch[1499] Arab +script for ch[1500] Arab +script for ch[1501] Arab +script for ch[1502] Arab +script for ch[1503] Arab +script for ch[1504] Arab +script for ch[1505] Arab +script for ch[1506] Arab +script for ch[1507] Arab +script for ch[1508] Arab +script for ch[1509] Arab +script for ch[1510] Arab +script for ch[1511] Arab +script for ch[1512] Arab +script for ch[1513] Arab +script for ch[1514] Arab +script for ch[1515] Arab +script for ch[1516] Arab +script for ch[1517] Arab +script for ch[1518] Arab +script for ch[1519] Arab +script for ch[1520] Arab +script for ch[1521] Arab +script for ch[1522] Arab +script for ch[1523] Arab +script for ch[1524] Arab +script for ch[1525] Arab +script for ch[1526] Arab +script for ch[1527] Arab +script for ch[1528] Arab +script for ch[1529] Arab +script for ch[1530] Arab +script for ch[1531] Arab +script for ch[1532] Arab +script for ch[1533] Arab +script for ch[1534] Arab +script for ch[1535] Arab +script for ch[1536] Arab +script for ch[1537] Arab +script for ch[1538] Arab +script for ch[1539] Arab +script for ch[1540] Arab +script for ch[1541] Arab +script for ch[1542] Arab +script for ch[1543] Arab +script for ch[1544] Arab +script for ch[1545] Arab +script for ch[1546] Arab +script for ch[1547] Arab +script for ch[1548] Arab +script for ch[1549] Arab +script for ch[1550] Arab +script for ch[1551] Arab +script for ch[1552] Arab +script for ch[1553] Arab +script for ch[1554] Arab +script for ch[1555] Arab +script for ch[1556] Arab +script for ch[1557] Arab +script for ch[1558] Arab +script for ch[1559] Arab +script for ch[1560] Arab +script for ch[1561] Arab +script for ch[1562] Arab +script for ch[1563] Arab +script for ch[1564] Arab +script for ch[1565] Arab +script for ch[1566] Arab +script for ch[1567] Arab +script for ch[1568] Arab +script for ch[1569] Arab +script for ch[1570] Arab +script for ch[1571] Arab +script for ch[1572] Arab +script for ch[1573] Arab +script for ch[1574] Arab +script for ch[1575] Arab +script for ch[1576] Arab +script for ch[1577] Arab +script for ch[1578] Arab +script for ch[1579] Arab +script for ch[1580] Arab +script for ch[1581] Arab +script for ch[1582] Arab +script for ch[1583] Arab +script for ch[1584] Arab +script for ch[1585] Arab +script for ch[1586] Arab +script for ch[1587] Arab +script for ch[1588] Arab +script for ch[1589] Arab +script for ch[1590] Arab +script for ch[1591] Arab +script for ch[1592] Arab +script for ch[1593] Arab +script for ch[1594] Arab +script for ch[1595] Arab +script for ch[1596] Arab +script for ch[1597] Arab +script for ch[1598] Arab +script for ch[1599] Arab +script for ch[1600] Arab +script for ch[1601] Arab +script for ch[1602] Arab +script for ch[1603] Arab +script for ch[1604] Arab +script for ch[1605] Arab +script for ch[1606] Arab +script for ch[1607] Arab +script for ch[1608] Arab +script for ch[1609] Arab +script for ch[1610] Arab +script for ch[1611] Arab +script for ch[1612] Arab +script for ch[1613] Arab +script for ch[1614] Arab +script for ch[1615] Arab +script for ch[1616] Arab +script for ch[1617] Arab +script for ch[1618] Arab +script for ch[1619] Arab +script for ch[1620] Arab +script for ch[1621] Arab +script for ch[1622] Arab +script for ch[1623] Arab +script for ch[1624] Arab +script for ch[1625] Arab +script for ch[1626] Arab +script for ch[1627] Arab +script for ch[1628] Arab +script for ch[1629] Arab +script for ch[1630] Arab +script for ch[1631] Arab +script for ch[1632] Arab +script for ch[1633] Arab +script for ch[1634] Arab +script for ch[1635] Arab +script for ch[1636] Arab +script for ch[1637] Arab +script for ch[1638] Arab +script for ch[1639] Arab +script for ch[1640] Arab +script for ch[1641] Arab +script for ch[1642] Arab +script for ch[1643] Arab +script for ch[1644] Arab +script for ch[1645] Arab +script for ch[1646] Arab +script for ch[1647] Arab +script for ch[1648] Arab +script for ch[1649] Arab +script for ch[1650] Arab +script for ch[1651] Arab +script for ch[1652] Arab +script for ch[1653] Arab +script for ch[1654] Arab +script for ch[1655] Arab +script for ch[1656] Arab +script for ch[1657] Arab +script for ch[1658] Arab +script for ch[1659] Arab +script for ch[1660] Arab +script for ch[1661] Arab +script for ch[1662] Arab +script for ch[1663] Arab +script for ch[1664] Arab +script for ch[1665] Arab +script for ch[1666] Arab +script for ch[1667] Arab +script for ch[1668] Arab +script for ch[1669] Arab +script for ch[1670] Arab +script for ch[1671] Arab +script for ch[1672] Arab +script for ch[1673] Arab +script for ch[1674] Arab +script for ch[1675] Arab +script for ch[1676] Arab +script for ch[1677] Arab +script for ch[1678] Arab +script for ch[1679] Arab +script for ch[1680] Arab +script for ch[1681] Arab +script for ch[1682] Arab +script for ch[1683] Arab +script for ch[1684] Arab +script for ch[1685] Arab +script for ch[1686] Arab +script for ch[1687] Arab +script for ch[1688] Arab +script for ch[1689] Arab +script for ch[1690] Arab +script for ch[1691] Arab +script for ch[1692] Arab +script for ch[1693] Arab +script for ch[1694] Arab +script for ch[1695] Arab +script for ch[1696] Arab +script for ch[1697] Arab +script for ch[1698] Arab +script for ch[1699] Arab +script for ch[1700] Arab +script for ch[1701] Arab +script for ch[1702] Arab +script for ch[1703] Arab +script for ch[1704] Arab +script for ch[1705] Arab +script for ch[1706] Arab +script for ch[1707] Arab +script for ch[1708] Arab +script for ch[1709] Arab +script for ch[1710] Arab +script for ch[1711] Arab +script for ch[1712] Arab +script for ch[1713] Arab +script for ch[1714] Arab +script for ch[1715] Arab +script for ch[1716] Arab +script for ch[1717] Arab +script for ch[1718] Arab +script for ch[1719] Arab +script for ch[1720] Arab +script for ch[1721] Arab +script for ch[1722] Arab +script for ch[1723] Arab +script for ch[1724] Arab +script for ch[1725] Arab +script for ch[1726] Arab +script for ch[1727] Arab +script for ch[1728] Arab +script for ch[1729] Arab +script for ch[1730] Arab +script for ch[1731] Arab +script for ch[1732] Arab +script for ch[1733] Arab +script for ch[1734] Arab +script for ch[1735] Arab +script for ch[1736] Arab +script for ch[1737] Arab +script for ch[1738] Arab +script for ch[1739] Arab +script for ch[1740] Arab +script for ch[1741] Arab +script for ch[1742] Arab +script for ch[1743] Arab +script for ch[1744] Arab +script for ch[1745] Arab +script for ch[1746] Arab +script for ch[1747] Arab +script for ch[1748] Arab +script for ch[1749] Arab +script for ch[1750] Arab +script for ch[1751] Arab +script for ch[1752] Arab +script for ch[1753] Arab +script for ch[1754] Arab +script for ch[1755] Arab +script for ch[1756] Arab +script for ch[1757] Arab +script for ch[1758] Arab +script for ch[1759] Arab +script for ch[1760] Arab +script for ch[1761] Arab +script for ch[1762] Arab +script for ch[1763] Arab +script for ch[1764] Arab +script for ch[1765] Arab +script for ch[1766] Arab +script for ch[1767] Arab +script for ch[1768] Arab +script for ch[1769] Arab +script for ch[1770] Arab +script for ch[1771] Arab +script for ch[1772] Arab +script for ch[1773] Arab +script for ch[1774] Arab +script for ch[1775] Arab +script for ch[1776] Arab +script for ch[1777] Arab +script for ch[1778] Arab +script for ch[1779] Arab +script for ch[1780] Arab +script for ch[1781] Arab +script for ch[1782] Arab +script for ch[1783] Arab +script for ch[1784] Arab +script for ch[1785] Arab +script for ch[1786] Arab +script for ch[1787] Arab +script for ch[1788] Arab +script for ch[1789] Arab +script for ch[1790] Arab +script for ch[1791] Arab +script for ch[1792] Arab +script for ch[1793] Arab +script for ch[1794] Arab +script for ch[1795] Arab +script for ch[1796] Arab +script for ch[1797] Arab +script for ch[1798] Arab +script for ch[1799] Arab +script for ch[1800] Arab +script for ch[1801] Arab +script for ch[1802] Arab +script for ch[1803] Arab +script for ch[1804] Arab +script for ch[1805] Arab +script for ch[1806] Arab +script for ch[1807] Arab +script for ch[1808] Arab +script for ch[1809] Arab +script for ch[1810] Arab +script for ch[1811] Arab +script for ch[1812] Arab +script for ch[1813] Arab +script for ch[1814] Arab +script for ch[1815] Arab +script for ch[1816] Arab +script for ch[1817] Arab +script for ch[1818] Arab +script for ch[1819] Arab +script for ch[1820] Arab +script for ch[1821] Arab +script for ch[1822] Arab +script for ch[1823] Arab +script for ch[1824] Arab +script for ch[1825] Arab +script for ch[1826] Arab +script for ch[1827] Arab +script for ch[1828] Arab +script for ch[1829] Arab +script for ch[1830] Arab +script for ch[1831] Arab +script for ch[1832] Arab +script for ch[1833] Arab +script for ch[1834] Arab +script for ch[1835] Arab +script for ch[1836] Arab +script for ch[1837] Arab +script for ch[1838] Arab +script for ch[1839] Arab +script for ch[1840] Arab +script for ch[1841] Arab +script for ch[1842] Arab +script for ch[1843] Arab +script for ch[1844] Arab +script for ch[1845] Arab +script for ch[1846] Arab +script for ch[1847] Arab +script for ch[1848] Arab +script for ch[1849] Arab +script for ch[1850] Arab +script for ch[1851] Arab +script for ch[1852] Arab +script for ch[1853] Arab +script for ch[1854] Arab +script for ch[1855] Arab +script for ch[1856] Arab +script for ch[1857] Arab +script for ch[1858] Arab +script for ch[1859] Arab +script for ch[1860] Arab +script for ch[1861] Arab +script for ch[1862] Arab +script for ch[1863] Arab +script for ch[1864] Arab +script for ch[1865] Arab +script for ch[1866] Arab +script for ch[1867] Arab +script for ch[1868] Arab +script for ch[1869] Arab +script for ch[1870] Arab +script for ch[1871] Arab +script for ch[1872] Arab +script for ch[1873] Arab +script for ch[1874] Arab +script for ch[1875] Arab +script for ch[1876] Arab +script for ch[1877] Arab +script for ch[1878] Arab +script for ch[1879] Arab +script for ch[1880] Arab +script for ch[1881] Arab +script for ch[1882] Arab +script for ch[1883] Arab +script for ch[1884] Arab +script for ch[1885] Arab +script for ch[1886] Arab +script for ch[1887] Arab +script for ch[1888] Arab +script for ch[1889] Arab +script for ch[1890] Arab +script for ch[1891] Arab +script for ch[1892] Arab +script for ch[1893] Arab +script for ch[1894] Arab +script for ch[1895] Arab +script for ch[1896] Arab +script for ch[1897] Arab +script for ch[1898] Arab +script for ch[1899] Arab +script for ch[1900] Arab +script for ch[1901] Arab +script for ch[1902] Arab +script for ch[1903] Arab +script for ch[1904] Arab +script for ch[1905] Arab +script for ch[1906] Arab +script for ch[1907] Arab +script for ch[1908] Arab +script for ch[1909] Arab +script for ch[1910] Arab +script for ch[1911] Arab +script for ch[1912] Arab +script for ch[1913] Arab +script for ch[1914] Arab +script for ch[1915] Arab +script for ch[1916] Arab +script for ch[1917] Arab +script for ch[1918] Arab +script for ch[1919] Arab +script for ch[1920] Arab +script for ch[1921] Arab +script for ch[1922] Arab +script for ch[1923] Arab +script for ch[1924] Arab +script for ch[1925] Arab +script for ch[1926] Arab +script for ch[1927] Arab +script for ch[1928] Arab +script for ch[1929] Arab +script for ch[1930] Arab +script for ch[1931] Arab +script for ch[1932] Arab +script for ch[1933] Arab +script for ch[1934] Arab +script for ch[1935] Arab +script for ch[1936] Arab +script for ch[1937] Arab +script for ch[1938] Arab +script for ch[1939] Arab +script for ch[1940] Arab +script for ch[1941] Arab +script for ch[1942] Arab +script for ch[1943] Arab +script for ch[1944] Arab +script for ch[1945] Arab +script for ch[1946] Arab +script for ch[1947] Arab +script for ch[1948] Arab +script for ch[1949] Arab +script for ch[1950] Arab +script for ch[1951] Arab +script for ch[1952] Arab +script for ch[1953] Arab +script for ch[1954] Arab +script for ch[1955] Arab +script for ch[1956] Arab +script for ch[1957] Arab +script for ch[1958] Arab +script for ch[1959] Arab +script for ch[1960] Arab +script for ch[1961] Arab +script for ch[1962] Arab +script for ch[1963] Arab +script for ch[1964] Arab +script for ch[1965] Arab +script for ch[1966] Arab +script for ch[1967] Arab +script for ch[1968] Arab +script for ch[1969] Arab +script for ch[1970] Arab +script for ch[1971] Arab +script for ch[1972] Arab +script for ch[1973] Arab +script for ch[1974] Arab +script for ch[1975] Arab +script for ch[1976] Arab +script for ch[1977] Arab +script for ch[1978] Arab +script for ch[1979] Arab +script for ch[1980] Arab +script for ch[1981] Arab +script for ch[1982] Arab +script for ch[1983] Arab +script for ch[1984] Arab +script for ch[1985] Arab +script for ch[1986] Arab +script for ch[1987] Arab +script for ch[1988] Arab +script for ch[1989] Arab +script for ch[1990] Arab +script for ch[1991] Arab +script for ch[1992] Arab +script for ch[1993] Arab +script for ch[1994] Arab +script for ch[1995] Arab +script for ch[1996] Arab +script for ch[1997] Arab +script for ch[1998] Arab +script for ch[1999] Arab +script for ch[2000] Arab +script for ch[2001] Arab +script for ch[2002] Arab +script for ch[2003] Arab +script for ch[2004] Arab +script for ch[2005] Arab +script for ch[2006] Arab +script for ch[2007] Arab +script for ch[2008] Arab +script for ch[2009] Arab +script for ch[2010] Arab +script for ch[2011] Arab +script for ch[2012] Arab +script for ch[2013] Arab +script for ch[2014] Arab +script for ch[2015] Arab +script for ch[2016] Arab +script for ch[2017] Arab +script for ch[2018] Arab +script for ch[2019] Arab +script for ch[2020] Arab +script for ch[2021] Arab +script for ch[2022] Arab +script for ch[2023] Arab +script for ch[2024] Arab +script for ch[2025] Arab +script for ch[2026] Arab +script for ch[2027] Arab +script for ch[2028] Arab +script for ch[2029] Arab +script for ch[2030] Arab +script for ch[2031] Arab +script for ch[2032] Arab +script for ch[2033] Arab +script for ch[2034] Arab +script for ch[2035] Arab +script for ch[2036] Arab +script for ch[2037] Arab +script for ch[2038] Arab +script for ch[2039] Arab +script for ch[2040] Arab +script for ch[2041] Arab +script for ch[2042] Arab +script for ch[2043] Arab +script for ch[2044] Arab +script for ch[2045] Arab +script for ch[2046] Arab +script for ch[2047] Arab +script for ch[2048] Arab +script for ch[2049] Arab +script for ch[2050] Arab +script for ch[2051] Arab +script for ch[2052] Arab +script for ch[2053] Arab +script for ch[2054] Arab +script for ch[2055] Arab +script for ch[2056] Arab +script for ch[2057] Arab +script for ch[2058] Arab +script for ch[2059] Arab +script for ch[2060] Arab +script for ch[2061] Arab +script for ch[2062] Arab +script for ch[2063] Arab +script for ch[2064] Arab +script for ch[2065] Arab +script for ch[2066] Arab +script for ch[2067] Arab +script for ch[2068] Arab +script for ch[2069] Arab +script for ch[2070] Arab +script for ch[2071] Arab +script for ch[2072] Arab +script for ch[2073] Arab +script for ch[2074] Arab +script for ch[2075] Arab +script for ch[2076] Arab +script for ch[2077] Arab +script for ch[2078] Arab +script for ch[2079] Arab +script for ch[2080] Arab +script for ch[2081] Arab +script for ch[2082] Arab +script for ch[2083] Arab +script for ch[2084] Arab +script for ch[2085] Arab +script for ch[2086] Arab +script for ch[2087] Arab +script for ch[2088] Arab +script for ch[2089] Arab +script for ch[2090] Arab +script for ch[2091] Arab +script for ch[2092] Arab +script for ch[2093] Arab +script for ch[2094] Arab +script for ch[2095] Arab +script for ch[2096] Arab +script for ch[2097] Arab +script for ch[2098] Arab +script for ch[2099] Arab +script for ch[2100] Arab +script for ch[2101] Arab +script for ch[2102] Arab +script for ch[2103] Arab +script for ch[2104] Arab +script for ch[2105] Arab +script for ch[2106] Arab +script for ch[2107] Arab +script for ch[2108] Arab +script for ch[2109] Arab +script for ch[2110] Arab +script for ch[2111] Arab +script for ch[2112] Arab +script for ch[2113] Arab +script for ch[2114] Arab +script for ch[2115] Arab +script for ch[2116] Arab +script for ch[2117] Arab +script for ch[2118] Arab +script for ch[2119] Arab +script for ch[2120] Arab +script for ch[2121] Arab +script for ch[2122] Arab +script for ch[2123] Arab +script for ch[2124] Arab +script for ch[2125] Arab +script for ch[2126] Arab +script for ch[2127] Arab +script for ch[2128] Arab +script for ch[2129] Arab +script for ch[2130] Arab +script for ch[2131] Arab +script for ch[2132] Arab +script for ch[2133] Arab +script for ch[2134] Arab +script for ch[2135] Arab +script for ch[2136] Arab +script for ch[2137] Arab +script for ch[2138] Arab +script for ch[2139] Arab +script for ch[2140] Arab +script for ch[2141] Arab +script for ch[2142] Arab +script for ch[2143] Arab +script for ch[2144] Arab +script for ch[2145] Arab +script for ch[2146] Arab +script for ch[2147] Arab +script for ch[2148] Arab +script for ch[2149] Arab +script for ch[2150] Arab +script for ch[2151] Arab +script for ch[2152] Arab +script for ch[2153] Arab +script for ch[2154] Arab +script for ch[2155] Arab +script for ch[2156] Arab +script for ch[2157] Arab +script for ch[2158] Arab +script for ch[2159] Arab +script for ch[2160] Arab +script for ch[2161] Arab +script for ch[2162] Arab +script for ch[2163] Arab + +Number of runs before script itemization: 3 + +Fribidi Runs: +run[0]: start: 165 length: 1999 level: 1 +run[1]: start: 163 length: 2 level: 2 +run[2]: start: 0 length: 163 level: 1 + +Number of runs after script itemization: 4 + +Final Runs: +run[0]: start: 165 length: 1999 direction: rtl script: Arab font: Amiri +run[1]: start: 163 length: 2 direction: ltr script: Arab font: Amiri +run[2]: start: 1 length: 162 direction: rtl script: Arab font: Amiri +run[3]: start: 0 length: 1 direction: rtl script: Zyyy font: Amiri + +Glyph information: +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 00 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [396] x_offset: 0 y_offset: 0 x_advance: 923 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri +glyph [427] x_offset: -81 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 00 font: Amiri +glyph [431] x_offset: 258 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2375] x_offset: 0 y_offset: 0 x_advance: 1430 line: 00 font: Amiri +glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 line: 00 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 line: 00 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [427] x_offset: 124 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 line: 00 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 00 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 line: 00 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 line: 00 font: Amiri +glyph [431] x_offset: 258 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2377] x_offset: 0 y_offset: 0 x_advance: 1430 line: 00 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 00 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 00 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 00 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 00 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [424] x_offset: 171 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 line: 00 font: Amiri +glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 line: 00 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 00 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [424] x_offset: -239 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 line: 00 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2090] x_offset: 0 y_offset: 0 x_advance: 390 line: 00 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 00 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 00 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 00 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 00 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [427] x_offset: -56 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [406] x_offset: 0 y_offset: 0 x_advance: 1107 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 00 font: Amiri +glyph [428] x_offset: -450 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 00 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [421] x_offset: 170 y_offset: 0 x_advance: 991 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [428] x_offset: 330 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [415] x_offset: 0 y_offset: 0 x_advance: 1407 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 line: 00 font: Amiri +glyph [429] x_offset: -204 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 00 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 00 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 00 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 00 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [429] x_offset: 66 y_offset: -100 x_advance: 0 line: 01 font: Amiri +glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 line: 01 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 01 font: Amiri +glyph [429] x_offset: -204 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 01 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 01 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 line: 01 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 line: 01 font: Amiri +glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 line: 01 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 01 font: Amiri +glyph [1914] x_offset: 134 y_offset: 104 x_advance: 0 line: 01 font: Amiri +glyph [430] x_offset: -276 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [4038] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [4021] x_offset: 0 y_offset: 0 x_advance: 444 line: 01 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 01 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [429] x_offset: 506 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2065] x_offset: 0 y_offset: 0 x_advance: 1810 line: 01 font: Amiri +glyph [431] x_offset: 368 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 01 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 01 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 01 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 01 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 01 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [429] x_offset: 166 y_offset: 620 x_advance: 0 line: 01 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 line: 01 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 01 font: Amiri +glyph [1914] x_offset: 134 y_offset: 104 x_advance: 0 line: 01 font: Amiri +glyph [430] x_offset: -276 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [4038] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [4021] x_offset: 0 y_offset: 0 x_advance: 444 line: 01 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 01 font: Amiri +glyph [429] x_offset: -229 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [108] x_offset: 0 y_offset: 0 x_advance: 850 line: 01 font: Amiri +glyph [62] x_offset: 0 y_offset: 0 x_advance: 740 line: 01 font: Amiri +glyph [28] x_offset: 0 y_offset: 0 x_advance: 1090 line: 01 font: Amiri +glyph [23] x_offset: 0 y_offset: 0 x_advance: 1090 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 line: 01 font: Amiri +glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 line: 01 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 01 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 01 font: Amiri +glyph [2090] x_offset: 0 y_offset: 0 x_advance: 390 line: 01 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 line: 01 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 01 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 01 font: Amiri +glyph [64] x_offset: 0 y_offset: 0 x_advance: 740 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [94] x_offset: 0 y_offset: 0 x_advance: 814 line: 01 font: Amiri +glyph [431] x_offset: 118 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [5983] x_offset: 0 y_offset: 0 x_advance: 1019 line: 01 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [3230] x_offset: 0 y_offset: 0 x_advance: 958 line: 01 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 01 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 01 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 line: 01 font: Amiri +glyph [1914] x_offset: 483 y_offset: 104 x_advance: 0 line: 01 font: Amiri +glyph [430] x_offset: 73 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2423] x_offset: 0 y_offset: 0 x_advance: 1130 line: 01 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 01 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 01 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 01 font: Amiri +glyph [427] x_offset: -476 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 01 font: Amiri +glyph [96] x_offset: 0 y_offset: 0 x_advance: 814 line: 01 font: Amiri +glyph [124] x_offset: 0 y_offset: 0 x_advance: 850 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [427] x_offset: -221 y_offset: -292 x_advance: 0 line: 01 font: Amiri +glyph [387] x_offset: 0 y_offset: 0 x_advance: 1566 line: 01 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 line: 01 font: Amiri +glyph [428] x_offset: -410 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 line: 01 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 line: 02 font: Amiri +glyph [431] x_offset: 328 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 line: 02 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 02 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 02 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 02 font: Amiri +glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 02 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 02 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 02 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 02 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 02 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 02 font: Amiri +glyph [431] x_offset: 118 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [5983] x_offset: 0 y_offset: 0 x_advance: 1019 line: 02 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [3230] x_offset: 0 y_offset: 0 x_advance: 958 line: 02 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 02 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 02 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 02 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [428] x_offset: -138 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2747] x_offset: 0 y_offset: 0 x_advance: 986 line: 02 font: Amiri +glyph [2713] x_offset: 0 y_offset: 0 x_advance: 349 line: 02 font: Amiri +glyph [429] x_offset: 36 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2517] x_offset: 170 y_offset: 0 x_advance: 783 line: 02 font: Amiri +glyph [428] x_offset: -326 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2476] x_offset: 0 y_offset: 0 x_advance: 362 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [429] x_offset: 544 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [414] x_offset: 0 y_offset: 0 x_advance: 2015 line: 02 font: Amiri +glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2154] x_offset: 0 y_offset: 0 x_advance: 965 line: 02 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [3121] x_offset: 0 y_offset: 0 x_advance: 149 line: 02 font: Amiri +glyph [431] x_offset: 138 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2543] x_offset: 0 y_offset: 0 x_advance: 1146 line: 02 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 line: 02 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 line: 02 font: Amiri +glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [428] x_offset: 375 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2065] x_offset: 0 y_offset: 0 x_advance: 1810 line: 02 font: Amiri +glyph [431] x_offset: 368 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 02 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 02 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 02 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 02 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 02 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [431] x_offset: 118 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [5983] x_offset: 0 y_offset: 0 x_advance: 1019 line: 02 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [3230] x_offset: 0 y_offset: 0 x_advance: 958 line: 02 font: Amiri +glyph [428] x_offset: -60 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [5986] x_offset: 0 y_offset: 0 x_advance: 380 line: 02 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 line: 02 font: Amiri +glyph [431] x_offset: 258 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2377] x_offset: 0 y_offset: 0 x_advance: 1430 line: 02 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 line: 02 font: Amiri +glyph [1914] x_offset: 483 y_offset: 104 x_advance: 0 line: 02 font: Amiri +glyph [430] x_offset: 73 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2423] x_offset: 0 y_offset: 0 x_advance: 1130 line: 02 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 02 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 line: 02 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 02 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 line: 03 font: Amiri +glyph [425] x_offset: -35 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 03 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 03 font: Amiri +glyph [429] x_offset: -234 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 03 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 03 font: Amiri +glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 03 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 03 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 03 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [425] x_offset: -35 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 03 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 03 font: Amiri +glyph [429] x_offset: -234 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 03 font: Amiri +glyph [429] x_offset: -364 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 03 font: Amiri +glyph [425] x_offset: 40 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 03 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 03 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 03 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 03 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2337] x_offset: 0 y_offset: 0 x_advance: 950 line: 03 font: Amiri +glyph [428] x_offset: -358 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [5336] x_offset: 0 y_offset: 0 x_advance: 302 line: 03 font: Amiri +glyph [427] x_offset: -166 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [5318] x_offset: 0 y_offset: 0 x_advance: 638 line: 03 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 03 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 03 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [421] x_offset: 170 y_offset: 0 x_advance: 991 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 line: 03 font: Amiri +glyph [427] x_offset: -56 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [406] x_offset: 0 y_offset: 0 x_advance: 1107 line: 03 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 03 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 03 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [421] x_offset: 170 y_offset: 0 x_advance: 991 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 03 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 03 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [429] x_offset: 566 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [389] x_offset: 0 y_offset: 0 x_advance: 1897 line: 03 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 03 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [431] x_offset: 308 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 line: 03 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 03 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 03 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2090] x_offset: 0 y_offset: 0 x_advance: 390 line: 03 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 03 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 03 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 03 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 line: 03 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 line: 03 font: Amiri +glyph [1914] x_offset: 103 y_offset: 104 x_advance: 0 line: 03 font: Amiri +glyph [430] x_offset: -307 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 line: 03 font: Amiri +glyph [429] x_offset: 216 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2363] x_offset: 250 y_offset: 0 x_advance: 953 line: 03 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 line: 03 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 line: 03 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 03 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 04 font: Amiri +glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 04 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 04 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 04 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 04 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 04 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 04 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 04 font: Amiri +glyph [428] x_offset: -216 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [3351] x_offset: 0 y_offset: 0 x_advance: 598 line: 04 font: Amiri +glyph [431] x_offset: -142 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [3310] x_offset: 0 y_offset: 0 x_advance: 530 line: 04 font: Amiri +glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [4368] x_offset: 0 y_offset: 0 x_advance: 800 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [3007] x_offset: 0 y_offset: 0 x_advance: 698 line: 04 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 04 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 04 font: Amiri +glyph [424] x_offset: -359 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 04 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 04 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 04 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 04 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2337] x_offset: 0 y_offset: 0 x_advance: 950 line: 04 font: Amiri +glyph [428] x_offset: -358 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [5336] x_offset: 0 y_offset: 0 x_advance: 302 line: 04 font: Amiri +glyph [427] x_offset: -166 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [5318] x_offset: 0 y_offset: 0 x_advance: 638 line: 04 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 04 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [1914] x_offset: 533 y_offset: 104 x_advance: 0 line: 04 font: Amiri +glyph [430] x_offset: 123 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 04 font: Amiri +glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 line: 04 font: Amiri +glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 line: 04 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 04 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 04 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 04 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 04 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 04 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 04 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 04 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 04 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [4112] x_offset: 0 y_offset: 0 x_advance: 864 line: 04 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [4086] x_offset: 0 y_offset: 0 x_advance: 630 line: 04 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 04 font: Amiri +glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 line: 04 font: Amiri +glyph [429] x_offset: -242 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [3434] x_offset: 0 y_offset: 0 x_advance: 543 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 04 font: Amiri +glyph [1914] x_offset: 383 y_offset: 104 x_advance: 0 line: 04 font: Amiri +glyph [430] x_offset: -27 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 04 font: Amiri +glyph [5975] x_offset: 301 y_offset: -35 x_advance: 0 line: 04 font: Amiri +glyph [6298] x_offset: 0 y_offset: 0 x_advance: 893 line: 04 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 line: 04 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 line: 04 font: Amiri +glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 04 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 04 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 04 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [428] x_offset: -140 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 04 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 04 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 04 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 04 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 04 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [431] x_offset: 308 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 line: 05 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 05 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 05 font: Amiri +glyph [427] x_offset: -557 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 05 font: Amiri +glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 05 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 05 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 05 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [425] x_offset: 40 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 05 font: Amiri +glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 line: 05 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [3568] x_offset: 0 y_offset: 0 x_advance: 502 line: 05 font: Amiri +glyph [428] x_offset: -410 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 05 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [108] x_offset: 0 y_offset: 0 x_advance: 850 line: 05 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 05 font: Amiri +glyph [424] x_offset: -329 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 line: 05 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2233] x_offset: 0 y_offset: 0 x_advance: 1250 line: 05 font: Amiri +glyph [429] x_offset: 86 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2407] x_offset: 0 y_offset: 0 x_advance: 1165 line: 05 font: Amiri +glyph [427] x_offset: -476 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [429] x_offset: 66 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 05 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 05 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 05 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 05 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 05 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [427] x_offset: 124 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 line: 05 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [1914] x_offset: 533 y_offset: 104 x_advance: 0 line: 05 font: Amiri +glyph [430] x_offset: 123 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 05 font: Amiri +glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 line: 05 font: Amiri +glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 line: 05 font: Amiri +glyph [124] x_offset: 0 y_offset: 0 x_advance: 850 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 line: 05 font: Amiri +glyph [429] x_offset: 416 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [3779] x_offset: 0 y_offset: 0 x_advance: 1583 line: 05 font: Amiri +glyph [3745] x_offset: 0 y_offset: 0 x_advance: 606 line: 05 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 05 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [3121] x_offset: 0 y_offset: 0 x_advance: 149 line: 05 font: Amiri +glyph [431] x_offset: 138 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2543] x_offset: 0 y_offset: 0 x_advance: 1146 line: 05 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 05 font: Amiri +glyph [429] x_offset: -284 y_offset: -140 x_advance: 0 line: 05 font: Amiri +glyph [5094] x_offset: 0 y_offset: 0 x_advance: 487 line: 05 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 05 font: Amiri +glyph [428] x_offset: 110 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 line: 05 font: Amiri +glyph [427] x_offset: -56 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2407] x_offset: 0 y_offset: 0 x_advance: 1165 line: 05 font: Amiri +glyph [1914] x_offset: 133 y_offset: 104 x_advance: 0 line: 05 font: Amiri +glyph [430] x_offset: -277 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [5354] x_offset: 0 y_offset: 0 x_advance: 454 line: 05 font: Amiri +glyph [5348] x_offset: 0 y_offset: 0 x_advance: 325 line: 05 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 05 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 line: 05 font: Amiri +glyph [427] x_offset: -186 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [4375] x_offset: 0 y_offset: 0 x_advance: 1242 line: 05 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 05 font: Amiri +glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 05 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 05 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 05 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [427] x_offset: 124 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 line: 06 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 line: 06 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 06 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 line: 06 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 line: 06 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 line: 06 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 06 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [429] x_offset: -144 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 06 font: Amiri +glyph [429] x_offset: -364 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 06 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 06 font: Amiri +glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 line: 06 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 06 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 06 font: Amiri +glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [4507] x_offset: 0 y_offset: 0 x_advance: 500 line: 06 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [4453] x_offset: 0 y_offset: 0 x_advance: 645 line: 06 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 06 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 06 font: Amiri +glyph [424] x_offset: 171 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 line: 06 font: Amiri +glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 line: 06 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 06 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 06 font: Amiri +glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 06 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 06 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 06 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 06 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 06 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 06 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 06 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 06 font: Amiri +glyph [424] x_offset: -129 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 06 font: Amiri +glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 line: 06 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [4752] x_offset: 0 y_offset: 0 x_advance: 443 line: 06 font: Amiri +glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [428] x_offset: -243 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [4345] x_offset: 0 y_offset: 0 x_advance: 213 line: 06 font: Amiri +glyph [427] x_offset: 372 y_offset: -4 x_advance: 0 line: 06 font: Amiri +glyph [2649] x_offset: 0 y_offset: -4 x_advance: 1739 line: 06 font: Amiri +glyph [431] x_offset: 58 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 06 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 06 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 06 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 06 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 06 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 line: 06 font: Amiri +glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 06 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 06 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 06 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 line: 06 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 06 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [426] x_offset: 101 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 06 font: Amiri +glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 line: 06 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [3568] x_offset: 0 y_offset: 0 x_advance: 502 line: 06 font: Amiri +glyph [428] x_offset: -410 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 07 font: Amiri +glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 07 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 07 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 07 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 07 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 07 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 07 font: Amiri +glyph [427] x_offset: -185 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4877] x_offset: 0 y_offset: 0 x_advance: 827 line: 07 font: Amiri +glyph [427] x_offset: -186 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4835] x_offset: 0 y_offset: 0 x_advance: 1382 line: 07 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 07 font: Amiri +glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 07 font: Amiri +glyph [429] x_offset: -495 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 07 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 07 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 07 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 line: 07 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 line: 07 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 line: 07 font: Amiri +glyph [1914] x_offset: 103 y_offset: 104 x_advance: 0 line: 07 font: Amiri +glyph [430] x_offset: -307 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 line: 07 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 07 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 07 font: Amiri +glyph [424] x_offset: -229 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 line: 07 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 07 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3053] x_offset: 0 y_offset: 0 x_advance: 345 line: 07 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3752] x_offset: 0 y_offset: 0 x_advance: 507 line: 07 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 07 font: Amiri +glyph [3971] x_offset: 0 y_offset: 0 x_advance: 447 line: 07 font: Amiri +glyph [429] x_offset: -434 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 line: 07 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3745] x_offset: 0 y_offset: 0 x_advance: 606 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 line: 07 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 07 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 line: 07 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 line: 07 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 line: 07 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 07 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 07 font: Amiri +glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 07 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 07 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 07 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 07 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 07 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 line: 07 font: Amiri +glyph [429] x_offset: -64 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3351] x_offset: 0 y_offset: 0 x_advance: 598 line: 07 font: Amiri +glyph [431] x_offset: -142 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3310] x_offset: 0 y_offset: 0 x_advance: 530 line: 07 font: Amiri +glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4368] x_offset: 0 y_offset: 0 x_advance: 800 line: 07 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4902] x_offset: 0 y_offset: 0 x_advance: 828 line: 07 font: Amiri +glyph [427] x_offset: -631 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 line: 07 font: Amiri +glyph [3007] x_offset: 0 y_offset: 0 x_advance: 698 line: 07 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 07 font: Amiri +glyph [1914] x_offset: 333 y_offset: 104 x_advance: 0 line: 07 font: Amiri +glyph [430] x_offset: -77 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4909] x_offset: 0 y_offset: 0 x_advance: 1000 line: 07 font: Amiri +glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 line: 07 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 line: 08 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 line: 08 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2419] x_offset: 0 y_offset: 0 x_advance: 1163 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 line: 08 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 08 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 line: 08 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 line: 08 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 line: 08 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 08 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 08 font: Amiri +glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 08 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 08 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 08 font: Amiri +glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4507] x_offset: 0 y_offset: 0 x_advance: 500 line: 08 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 line: 08 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 08 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 08 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 08 font: Amiri +glyph [431] x_offset: -192 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4047] x_offset: 0 y_offset: 0 x_advance: 113 line: 08 font: Amiri +glyph [427] x_offset: 316 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4043] x_offset: 0 y_offset: 0 x_advance: 1656 line: 08 font: Amiri +glyph [431] x_offset: -42 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [421] x_offset: -100 y_offset: 0 x_advance: 721 line: 08 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 08 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 line: 08 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 08 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 08 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 line: 08 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 08 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 08 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 08 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 08 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4504] x_offset: 0 y_offset: 0 x_advance: 500 line: 08 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 08 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 08 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 08 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 08 font: Amiri +glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 08 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 08 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 08 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 08 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 08 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 line: 08 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 line: 08 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 08 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 line: 08 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 line: 08 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 line: 08 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 08 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [429] x_offset: -124 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [420] x_offset: 0 y_offset: 0 x_advance: 756 line: 09 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2154] x_offset: 0 y_offset: 0 x_advance: 965 line: 09 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [422] x_offset: 0 y_offset: 0 x_advance: 1566 line: 09 font: Amiri +glyph [1914] x_offset: 458 y_offset: 104 x_advance: 0 line: 09 font: Amiri +glyph [430] x_offset: 48 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 09 font: Amiri +glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 09 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [3066] x_offset: 0 y_offset: 0 x_advance: 345 line: 09 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [3753] x_offset: 0 y_offset: 0 x_advance: 562 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 line: 09 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 09 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 line: 09 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 09 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 09 font: Amiri +glyph [428] x_offset: 375 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 line: 09 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [4504] x_offset: 0 y_offset: 0 x_advance: 500 line: 09 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 09 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 09 font: Amiri +glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 line: 09 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [4466] x_offset: 0 y_offset: 0 x_advance: 511 line: 09 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 line: 09 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 line: 09 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2419] x_offset: 0 y_offset: 0 x_advance: 1163 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 line: 09 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 09 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 line: 09 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 line: 09 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 line: 09 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 09 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 09 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 09 font: Amiri +glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 line: 09 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [3971] x_offset: 0 y_offset: 0 x_advance: 447 line: 09 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 line: 09 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [3758] x_offset: 0 y_offset: 0 x_advance: 654 line: 09 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 09 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 09 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 09 font: Amiri +glyph [427] x_offset: -36 y_offset: -950 x_advance: 0 line: 09 font: Amiri +glyph [3104] x_offset: 0 y_offset: 0 x_advance: 970 line: 09 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 09 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 line: 09 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 09 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 09 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 09 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 09 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [4504] x_offset: 0 y_offset: 0 x_advance: 500 line: 09 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 09 font: Amiri +glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [4507] x_offset: 0 y_offset: 0 x_advance: 500 line: 09 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 line: 09 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 09 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 10 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 10 font: Amiri +glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 line: 10 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 10 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 10 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 10 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 line: 10 font: Amiri +glyph [429] x_offset: 66 y_offset: -100 x_advance: 0 line: 10 font: Amiri +glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 line: 10 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2137] x_offset: 0 y_offset: 0 x_advance: 500 line: 10 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 line: 10 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 line: 10 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 10 font: Amiri +glyph [429] x_offset: -284 y_offset: -140 x_advance: 0 line: 10 font: Amiri +glyph [5094] x_offset: 0 y_offset: 0 x_advance: 487 line: 10 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 line: 10 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [394] x_offset: 0 y_offset: 0 x_advance: 1355 line: 10 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 10 font: Amiri +glyph [428] x_offset: 60 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2375] x_offset: 0 y_offset: 0 x_advance: 1430 line: 10 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 10 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 10 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 10 font: Amiri +glyph [424] x_offset: 171 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 line: 10 font: Amiri +glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 line: 10 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 10 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 10 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 line: 10 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [394] x_offset: 0 y_offset: 0 x_advance: 1355 line: 10 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 10 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 line: 10 font: Amiri +glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 line: 10 font: Amiri +glyph [1918] x_offset: 723 y_offset: -345 x_advance: 0 line: 10 font: Amiri +glyph [3006] x_offset: 170 y_offset: 0 x_advance: 868 line: 10 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 10 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 10 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 10 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 10 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 10 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 line: 10 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 10 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 10 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 10 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 10 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 10 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 line: 10 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2363] x_offset: 0 y_offset: 0 x_advance: 703 line: 10 font: Amiri +glyph [431] x_offset: -242 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 line: 10 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 line: 10 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 line: 10 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2096] x_offset: 0 y_offset: 0 x_advance: 390 line: 10 font: Amiri +glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 line: 10 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [3568] x_offset: 0 y_offset: 0 x_advance: 502 line: 10 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 10 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2137] x_offset: 0 y_offset: 0 x_advance: 500 line: 10 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 10 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 11 font: Amiri +glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 line: 11 font: Amiri +glyph [1914] x_offset: 195 y_offset: 104 x_advance: 0 line: 11 font: Amiri +glyph [430] x_offset: -215 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [3437] x_offset: 0 y_offset: 0 x_advance: 543 line: 11 font: Amiri +glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 line: 11 font: Amiri +glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 line: 11 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [396] x_offset: 0 y_offset: 0 x_advance: 923 line: 11 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 11 font: Amiri +glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 11 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 line: 11 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 line: 11 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [1914] x_offset: 533 y_offset: 104 x_advance: 0 line: 11 font: Amiri +glyph [430] x_offset: 123 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 11 font: Amiri +glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 line: 11 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 line: 11 font: Amiri +glyph [429] x_offset: -294 y_offset: -60 x_advance: 0 line: 11 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [5976] x_offset: -197 y_offset: 304 x_advance: 0 line: 11 font: Amiri +glyph [430] x_offset: -7 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [397] x_offset: 0 y_offset: 0 x_advance: 923 line: 11 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 11 font: Amiri +glyph [427] x_offset: 94 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2399] x_offset: 0 y_offset: 0 x_advance: 1164 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 11 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 line: 11 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [425] x_offset: -110 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 line: 11 font: Amiri +glyph [427] x_offset: -81 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 11 font: Amiri +glyph [431] x_offset: 368 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 11 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 11 font: Amiri +glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 11 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 11 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 11 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 line: 11 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 11 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 11 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 11 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 11 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 11 font: Amiri +glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 line: 11 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [3971] x_offset: 0 y_offset: 0 x_advance: 447 line: 11 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 line: 11 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [3758] x_offset: 0 y_offset: 0 x_advance: 654 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 line: 11 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 11 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [429] x_offset: -44 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 11 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 11 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 11 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 11 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 line: 11 font: Amiri +glyph [429] x_offset: -92 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [4908] x_offset: 0 y_offset: 0 x_advance: 1000 line: 11 font: Amiri +glyph [429] x_offset: -434 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 line: 11 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 11 font: Amiri +glyph [1916] x_offset: 723 y_offset: 184 x_advance: 0 line: 11 font: Amiri +glyph [430] x_offset: 313 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 11 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 11 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [3007] x_offset: 0 y_offset: 0 x_advance: 698 line: 12 font: Amiri +glyph [1914] x_offset: 383 y_offset: 104 x_advance: 0 line: 12 font: Amiri +glyph [430] x_offset: -27 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 12 font: Amiri +glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 line: 12 font: Amiri +glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [429] x_offset: -64 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4185] x_offset: 0 y_offset: 0 x_advance: 1134 line: 12 font: Amiri +glyph [431] x_offset: -147 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4421] x_offset: 0 y_offset: 0 x_advance: 780 line: 12 font: Amiri +glyph [427] x_offset: 3 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2298] x_offset: 0 y_offset: 0 x_advance: 1206 line: 12 font: Amiri +glyph [431] x_offset: 88 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [5986] x_offset: 0 y_offset: 0 x_advance: 380 line: 12 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 12 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 12 font: Amiri +glyph [429] x_offset: -229 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [431] x_offset: -92 y_offset: -620 x_advance: 0 line: 12 font: Amiri +glyph [2452] x_offset: 0 y_offset: 0 x_advance: 1200 line: 12 font: Amiri +glyph [429] x_offset: -194 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4051] x_offset: 0 y_offset: 0 x_advance: 113 line: 12 font: Amiri +glyph [427] x_offset: 154 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4258] x_offset: 0 y_offset: 0 x_advance: 1204 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [5985] x_offset: 0 y_offset: 0 x_advance: 990 line: 12 font: Amiri +glyph [427] x_offset: -356 y_offset: 70 x_advance: 0 line: 12 font: Amiri +glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 line: 12 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [429] x_offset: 544 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [414] x_offset: 0 y_offset: 0 x_advance: 2015 line: 12 font: Amiri +glyph [4763] x_offset: 0 y_offset: 0 x_advance: 385 line: 12 font: Amiri +glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 line: 12 font: Amiri +glyph [431] x_offset: -372 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2439] x_offset: -300 y_offset: 0 x_advance: 408 line: 12 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 12 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 12 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 12 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 12 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [429] x_offset: -26 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 line: 12 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 12 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [3385] x_offset: 0 y_offset: 0 x_advance: 565 line: 12 font: Amiri +glyph [431] x_offset: -82 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [3358] x_offset: 0 y_offset: 0 x_advance: 792 line: 12 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 12 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 12 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 12 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 12 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [429] x_offset: -26 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 line: 12 font: Amiri +glyph [4763] x_offset: 0 y_offset: 0 x_advance: 385 line: 12 font: Amiri +glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 line: 12 font: Amiri +glyph [431] x_offset: -297 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2154] x_offset: -400 y_offset: 0 x_advance: 565 line: 12 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 12 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 12 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 12 font: Amiri +glyph [4763] x_offset: 0 y_offset: 0 x_advance: 385 line: 12 font: Amiri +glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [429] x_offset: -104 y_offset: 730 x_advance: 0 line: 12 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 12 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 12 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 12 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 12 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 12 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [429] x_offset: 266 y_offset: 620 x_advance: 0 line: 12 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 line: 12 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 12 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 12 font: Amiri +glyph [429] x_offset: -364 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [429] x_offset: 46 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 12 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 12 font: Amiri +glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 12 font: Amiri +glyph [431] x_offset: 78 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 12 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 12 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 12 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 12 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 line: 12 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 line: 12 font: Amiri +glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 line: 12 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 12 font: Amiri +glyph [2454] x_offset: 0 y_offset: 0 x_advance: 1200 line: 12 font: Amiri +glyph [429] x_offset: -194 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4051] x_offset: 0 y_offset: 0 x_advance: 113 line: 12 font: Amiri +glyph [427] x_offset: 154 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4271] x_offset: 0 y_offset: 0 x_advance: 1204 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 13 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 13 font: Amiri +glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 13 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 13 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 13 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 13 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 13 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 line: 13 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [428] x_offset: -370 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [4898] x_offset: 0 y_offset: 0 x_advance: 828 line: 13 font: Amiri +glyph [427] x_offset: -563 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [4894] x_offset: 0 y_offset: 0 x_advance: 384 line: 13 font: Amiri +glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 13 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 line: 13 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 13 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [429] x_offset: -124 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [420] x_offset: 0 y_offset: 0 x_advance: 756 line: 13 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 13 font: Amiri +glyph [427] x_offset: -56 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2407] x_offset: 0 y_offset: 0 x_advance: 1165 line: 13 font: Amiri +glyph [427] x_offset: 54 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2220] x_offset: 0 y_offset: 0 x_advance: 1343 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [431] x_offset: 308 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 line: 13 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 13 font: Amiri +glyph [427] x_offset: 94 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 line: 13 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 13 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 13 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 13 font: Amiri +glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 13 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 13 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 13 font: Amiri +glyph [5975] x_offset: 301 y_offset: -35 x_advance: 0 line: 13 font: Amiri +glyph [6298] x_offset: 0 y_offset: 0 x_advance: 893 line: 13 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 13 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 13 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 13 font: Amiri +glyph [427] x_offset: -20 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [4185] x_offset: 170 y_offset: 0 x_advance: 1304 line: 13 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [4432] x_offset: 0 y_offset: 0 x_advance: 1092 line: 13 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 13 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 line: 13 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 13 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 13 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 13 font: Amiri +glyph [431] x_offset: -242 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 line: 13 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 13 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 13 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 13 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 13 font: Amiri +glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 13 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 13 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 13 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 line: 13 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 13 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 13 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 13 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [425] x_offset: -310 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [4902] x_offset: 0 y_offset: 0 x_advance: 828 line: 14 font: Amiri +glyph [427] x_offset: -563 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [4894] x_offset: 0 y_offset: 0 x_advance: 384 line: 14 font: Amiri +glyph [429] x_offset: -113 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 line: 14 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 14 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 14 font: Amiri +glyph [429] x_offset: 109 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [5116] x_offset: 0 y_offset: 0 x_advance: 1132 line: 14 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 14 font: Amiri +glyph [425] x_offset: -220 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 line: 14 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [3063] x_offset: 0 y_offset: 0 x_advance: 345 line: 14 font: Amiri +glyph [429] x_offset: -384 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [3742] x_offset: 0 y_offset: 0 x_advance: 620 line: 14 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 14 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 14 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [425] x_offset: -220 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 line: 14 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 14 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 14 font: Amiri +glyph [429] x_offset: -344 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 line: 14 font: Amiri +glyph [431] x_offset: 128 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2423] x_offset: 0 y_offset: 0 x_advance: 1130 line: 14 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 line: 14 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 14 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 14 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 14 font: Amiri +glyph [428] x_offset: -167 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [4014] x_offset: 0 y_offset: 0 x_advance: 613 line: 14 font: Amiri +glyph [427] x_offset: -87 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [3989] x_offset: 0 y_offset: 0 x_advance: 1187 line: 14 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 14 font: Amiri +glyph [427] x_offset: -344 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [5336] x_offset: 0 y_offset: 0 x_advance: 302 line: 14 font: Amiri +glyph [427] x_offset: -13 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [5280] x_offset: 0 y_offset: 0 x_advance: 787 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 line: 14 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 14 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 14 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 14 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 14 font: Amiri +glyph [427] x_offset: 104 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [3217] x_offset: 0 y_offset: 0 x_advance: 1152 line: 14 font: Amiri +glyph [427] x_offset: -555 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [3189] x_offset: 0 y_offset: 0 x_advance: 299 line: 14 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 14 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 line: 14 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [3758] x_offset: 0 y_offset: 0 x_advance: 654 line: 14 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 line: 14 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 line: 14 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 line: 14 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 14 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 14 font: Amiri +glyph [428] x_offset: -320 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 line: 14 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 line: 14 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 14 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 line: 14 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [3063] x_offset: 0 y_offset: 0 x_advance: 345 line: 14 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [3745] x_offset: 0 y_offset: 0 x_advance: 606 line: 14 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 14 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 14 font: Amiri +glyph [428] x_offset: -320 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 line: 14 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 line: 14 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 14 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [429] x_offset: -26 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 line: 15 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 15 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 15 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 15 font: Amiri +glyph [429] x_offset: -534 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2999] x_offset: 0 y_offset: 0 x_advance: 303 line: 15 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 line: 15 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [428] x_offset: -370 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 line: 15 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 15 font: Amiri +glyph [431] x_offset: 140 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [4974] x_offset: 0 y_offset: 0 x_advance: 1054 line: 15 font: Amiri +glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 line: 15 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 line: 15 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 15 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 15 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 line: 15 font: Amiri +glyph [429] x_offset: 566 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [392] x_offset: 0 y_offset: 0 x_advance: 1897 line: 15 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 15 font: Amiri +glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2042] x_offset: 0 y_offset: 0 x_advance: 750 line: 15 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 15 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 15 font: Amiri +glyph [428] x_offset: -450 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 15 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 15 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 15 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 15 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 line: 15 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 line: 15 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 line: 15 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 15 font: Amiri +glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 15 font: Amiri +glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 line: 15 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 line: 15 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 15 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 15 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 15 font: Amiri +glyph [429] x_offset: -44 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 15 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 15 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 15 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 15 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 15 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [428] x_offset: 375 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [389] x_offset: 0 y_offset: 0 x_advance: 1897 line: 15 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 15 font: Amiri +glyph [427] x_offset: -36 y_offset: -950 x_advance: 0 line: 15 font: Amiri +glyph [3104] x_offset: 0 y_offset: 0 x_advance: 970 line: 15 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2035] x_offset: 0 y_offset: 0 x_advance: 978 line: 15 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 15 font: Amiri +glyph [426] x_offset: -99 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [4902] x_offset: 0 y_offset: 0 x_advance: 828 line: 15 font: Amiri +glyph [427] x_offset: -631 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 line: 15 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 15 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 15 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 15 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [4112] x_offset: 0 y_offset: 0 x_advance: 864 line: 15 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [4086] x_offset: 0 y_offset: 0 x_advance: 630 line: 15 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 15 font: Amiri +glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 line: 15 font: Amiri +glyph [429] x_offset: -242 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [3434] x_offset: 0 y_offset: 0 x_advance: 543 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [427] x_offset: 444 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2417] x_offset: 0 y_offset: 0 x_advance: 1540 line: 16 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 line: 16 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [4112] x_offset: 0 y_offset: 0 x_advance: 864 line: 16 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [4086] x_offset: 0 y_offset: 0 x_advance: 630 line: 16 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 16 font: Amiri +glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 line: 16 font: Amiri +glyph [429] x_offset: -242 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [3434] x_offset: 0 y_offset: 0 x_advance: 543 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 16 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 16 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 16 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 16 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 16 font: Amiri +glyph [429] x_offset: 166 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [415] x_offset: 0 y_offset: 0 x_advance: 1407 line: 16 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 16 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 line: 16 font: Amiri +glyph [429] x_offset: -204 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 16 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 16 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 16 font: Amiri +glyph [429] x_offset: -229 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [428] x_offset: -370 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2646] x_offset: 0 y_offset: 0 x_advance: 457 line: 16 font: Amiri +glyph [429] x_offset: -84 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2631] x_offset: 0 y_offset: 0 x_advance: 692 line: 16 font: Amiri +glyph [431] x_offset: -192 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [4047] x_offset: 0 y_offset: 0 x_advance: 113 line: 16 font: Amiri +glyph [427] x_offset: 154 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [4258] x_offset: 0 y_offset: 0 x_advance: 1204 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 16 font: Amiri +glyph [1914] x_offset: 103 y_offset: 104 x_advance: 0 line: 16 font: Amiri +glyph [430] x_offset: -307 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2090] x_offset: 0 y_offset: 0 x_advance: 390 line: 16 font: Amiri +glyph [1918] x_offset: 250 y_offset: -175 x_advance: 0 line: 16 font: Amiri +glyph [2017] x_offset: 0 y_offset: 0 x_advance: 470 line: 16 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [428] x_offset: -390 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 line: 16 font: Amiri +glyph [429] x_offset: 69 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [5184] x_offset: 0 y_offset: 0 x_advance: 801 line: 16 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 16 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [3121] x_offset: 0 y_offset: 0 x_advance: 149 line: 16 font: Amiri +glyph [431] x_offset: 138 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2543] x_offset: 0 y_offset: 0 x_advance: 1146 line: 16 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 16 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 line: 16 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [428] x_offset: -150 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [396] x_offset: 0 y_offset: 0 x_advance: 923 line: 16 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 16 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 line: 16 font: Amiri +glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 line: 16 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 line: 16 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 16 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 16 font: Amiri +glyph [1914] x_offset: 383 y_offset: 104 x_advance: 0 line: 16 font: Amiri +glyph [430] x_offset: -27 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 16 font: Amiri +glyph [5975] x_offset: 301 y_offset: -35 x_advance: 0 line: 16 font: Amiri +glyph [6298] x_offset: 0 y_offset: 0 x_advance: 893 line: 16 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 line: 16 font: Amiri +glyph [429] x_offset: -44 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 16 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 16 font: Amiri +glyph [427] x_offset: -426 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 line: 16 font: Amiri +glyph [431] x_offset: -2 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [4379] x_offset: 0 y_offset: 0 x_advance: 1242 line: 16 font: Amiri +glyph [429] x_offset: -164 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [430] x_offset: -276 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [4038] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [4021] x_offset: 0 y_offset: 0 x_advance: 444 line: 16 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 16 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [425] x_offset: 790 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [414] x_offset: 0 y_offset: 0 x_advance: 2015 line: 17 font: Amiri +glyph [431] x_offset: -172 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 line: 17 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2419] x_offset: 0 y_offset: 0 x_advance: 1163 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 17 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 line: 17 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 line: 17 font: Amiri +glyph [429] x_offset: 466 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2165] x_offset: 0 y_offset: 0 x_advance: 2060 line: 17 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 17 font: Amiri +glyph [429] x_offset: -204 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 17 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2232] x_offset: 0 y_offset: 0 x_advance: 1250 line: 17 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 17 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 17 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 17 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 17 font: Amiri +glyph [429] x_offset: -229 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [429] x_offset: 116 y_offset: -130 x_advance: 0 line: 17 font: Amiri +glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 line: 17 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 17 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 17 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 17 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [427] x_offset: 444 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2417] x_offset: 0 y_offset: 0 x_advance: 1540 line: 17 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 line: 17 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [427] x_offset: 944 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2385] x_offset: 0 y_offset: 0 x_advance: 2210 line: 17 font: Amiri +glyph [427] x_offset: -426 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 line: 17 font: Amiri +glyph [427] x_offset: -186 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [4379] x_offset: 0 y_offset: 0 x_advance: 1242 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 17 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 17 font: Amiri +glyph [428] x_offset: -120 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 17 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [4822] x_offset: 0 y_offset: 0 x_advance: 354 line: 17 font: Amiri +glyph [427] x_offset: -336 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [4808] x_offset: 0 y_offset: 0 x_advance: 76 line: 17 font: Amiri +glyph [427] x_offset: 169 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [4776] x_offset: 0 y_offset: 0 x_advance: 1200 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [429] x_offset: 116 y_offset: -130 x_advance: 0 line: 17 font: Amiri +glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 line: 17 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 17 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 17 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 17 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 17 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 17 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [427] x_offset: 944 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2385] x_offset: 0 y_offset: 0 x_advance: 2210 line: 17 font: Amiri +glyph [427] x_offset: -426 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 line: 17 font: Amiri +glyph [427] x_offset: -186 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [4379] x_offset: 0 y_offset: 0 x_advance: 1242 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 17 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 17 font: Amiri +glyph [428] x_offset: -120 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 17 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 18 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 18 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 18 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 line: 18 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 18 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 line: 18 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 line: 18 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 line: 18 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 18 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 18 font: Amiri +glyph [427] x_offset: -81 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2154] x_offset: 0 y_offset: 0 x_advance: 965 line: 18 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 line: 18 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 18 font: Amiri +glyph [429] x_offset: 66 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 18 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 18 font: Amiri +glyph [1916] x_offset: 153 y_offset: 184 x_advance: 0 line: 18 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 18 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 18 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [429] x_offset: 166 y_offset: 620 x_advance: 0 line: 18 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 line: 18 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 18 font: Amiri +glyph [427] x_offset: -216 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2517] x_offset: 0 y_offset: 0 x_advance: 613 line: 18 font: Amiri +glyph [429] x_offset: -340 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2483] x_offset: 0 y_offset: 0 x_advance: 362 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 line: 18 font: Amiri +glyph [431] x_offset: 118 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [5983] x_offset: 0 y_offset: 0 x_advance: 1019 line: 18 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [3230] x_offset: 0 y_offset: 0 x_advance: 958 line: 18 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 18 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 18 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 line: 18 font: Amiri +glyph [1914] x_offset: 483 y_offset: 104 x_advance: 0 line: 18 font: Amiri +glyph [430] x_offset: 73 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2423] x_offset: 0 y_offset: 0 x_advance: 1130 line: 18 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 18 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 18 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 18 font: Amiri +glyph [427] x_offset: -476 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 line: 18 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 18 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 18 font: Amiri +glyph [428] x_offset: -120 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 18 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 18 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [3066] x_offset: 0 y_offset: 0 x_advance: 345 line: 18 font: Amiri +glyph [431] x_offset: -122 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [3752] x_offset: 0 y_offset: 0 x_advance: 507 line: 18 font: Amiri +glyph [427] x_offset: 144 y_offset: -950 x_advance: 0 line: 18 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 18 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 18 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 18 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 18 font: Amiri +glyph [424] x_offset: -329 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [5010] x_offset: 0 y_offset: 0 x_advance: 356 line: 18 font: Amiri +glyph [431] x_offset: 137 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [4995] x_offset: 0 y_offset: 0 x_advance: 1077 line: 18 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 18 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 18 font: Amiri +glyph [431] x_offset: -242 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 line: 18 font: Amiri +glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 18 font: Amiri +glyph [427] x_offset: 54 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2220] x_offset: 0 y_offset: 0 x_advance: 1343 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [431] x_offset: 178 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 18 font: Amiri +glyph [1918] x_offset: 250 y_offset: -175 x_advance: 0 line: 18 font: Amiri +glyph [2017] x_offset: 0 y_offset: 0 x_advance: 470 line: 18 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 18 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 19 font: Amiri +glyph [429] x_offset: -104 y_offset: 730 x_advance: 0 line: 19 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 19 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 line: 19 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [396] x_offset: 0 y_offset: 0 x_advance: 923 line: 19 font: Amiri +glyph [1914] x_offset: 134 y_offset: 104 x_advance: 0 line: 19 font: Amiri +glyph [430] x_offset: -276 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [4038] x_offset: 0 y_offset: 0 x_advance: 600 line: 19 font: Amiri +glyph [4021] x_offset: 0 y_offset: 0 x_advance: 444 line: 19 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 19 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 19 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 19 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 19 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 19 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [3125] x_offset: 0 y_offset: 0 x_advance: 149 line: 19 font: Amiri +glyph [431] x_offset: 138 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [2543] x_offset: 0 y_offset: 0 x_advance: 1146 line: 19 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 19 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 19 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 19 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 19 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 19 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 19 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 line: 19 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 19 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 19 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 19 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 19 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 19 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 19 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 19 font: Amiri + +UTF-32 clusters: 112 111 109 109 108 106 106 104 104 102 102 100 100 99 98 96 96 94 94 93 91 91 89 89 87 87 86 84 84 82 82 80 80 78 78 77 76 74 74 72 72 70 70 68 68 67 65 65 64 63 62 60 60 58 58 56 56 55 54 52 52 50 50 49 47 47 45 45 43 43 42 41 39 39 38 36 36 35 33 33 32 30 30 28 28 27 25 25 23 23 22 20 20 19 17 17 15 15 13 13 12 11 10 08 08 06 06 04 04 02 02 01 00 219 217 217 215 215 213 213 211 211 210 209 208 206 206 204 204 203 201 201 199 199 196 196 196 195 194 192 192 191 189 189 187 187 184 184 184 183 182 180 180 179 177 177 175 175 172 172 172 171 170 168 168 167 166 165 163 164 162 161 160 159 158 157 156 155 154 153 152 151 149 149 147 147 145 145 143 143 141 141 140 138 138 135 135 135 133 133 131 131 130 128 128 126 126 124 124 123 122 121 119 119 117 117 115 115 113 113 322 320 320 318 318 316 316 314 314 313 312 311 309 309 307 307 305 305 303 303 302 301 300 298 298 297 296 294 294 292 292 290 290 288 288 286 286 285 284 282 282 281 279 279 278 276 276 274 274 273 271 271 269 269 267 267 265 265 264 263 262 260 260 258 258 257 255 255 253 253 250 250 250 249 248 246 246 245 243 243 241 241 239 239 239 237 237 235 235 234 232 232 229 229 229 227 227 225 225 224 222 222 220 220 432 431 429 429 428 426 426 424 424 423 422 420 420 418 418 416 416 415 414 412 412 411 409 409 408 406 406 404 404 403 402 400 400 398 398 396 396 395 394 393 391 391 389 389 387 387 385 385 383 383 381 381 380 379 377 377 376 374 374 372 372 371 369 369 368 366 366 365 363 363 362 360 360 359 357 357 355 355 354 353 351 351 349 349 348 346 346 345 344 342 342 340 340 338 338 337 335 335 332 332 332 330 330 328 328 326 326 325 323 323 549 548 546 546 545 543 543 541 541 539 539 538 537 536 534 534 533 532 530 530 528 528 526 526 525 524 522 522 521 520 519 517 517 515 515 513 513 512 511 510 508 508 506 506 504 504 502 502 500 500 499 496 496 496 494 494 493 492 490 490 489 487 487 485 485 483 483 482 480 480 478 478 476 476 474 474 473 472 471 469 469 467 467 465 465 463 463 462 461 458 458 458 456 456 454 454 453 452 450 450 448 448 446 446 444 444 443 441 441 440 438 438 436 436 435 433 433 653 651 651 649 649 648 647 645 645 643 643 641 641 639 639 638 637 635 635 634 632 632 630 630 628 628 627 626 625 623 623 621 621 619 619 617 617 616 614 614 613 611 611 609 609 607 607 606 605 603 603 601 601 600 597 597 597 595 595 594 593 592 590 590 589 587 587 585 585 583 583 582 581 580 578 578 576 576 575 574 572 572 570 570 567 567 567 566 565 563 563 562 560 560 558 558 557 555 555 553 553 551 551 550 765 763 763 761 761 760 758 758 756 756 753 753 753 752 751 750 748 748 746 746 745 744 742 742 739 739 739 737 737 735 735 733 733 732 731 730 728 728 727 726 724 724 722 722 720 720 719 718 716 716 715 713 713 711 711 709 709 708 707 706 704 704 703 702 701 699 699 698 696 696 694 694 693 691 691 689 689 687 687 685 685 683 683 682 680 680 678 678 676 676 675 673 673 671 671 669 669 667 667 666 664 664 662 662 661 659 659 658 656 656 654 654 875 874 872 872 871 869 869 867 867 866 865 864 862 862 860 860 858 858 857 856 854 854 851 851 851 849 849 848 847 845 845 843 843 841 841 840 838 838 836 836 833 833 833 832 831 830 829 827 827 826 824 824 822 822 821 820 818 818 817 815 815 813 813 812 810 810 808 808 805 805 805 804 803 802 801 799 799 798 796 796 795 794 792 792 791 790 789 787 787 785 785 783 783 781 781 779 779 778 776 776 774 774 773 771 771 768 768 768 767 766 978 976 976 975 973 973 971 971 969 969 968 966 966 964 964 961 961 961 960 959 958 957 955 955 954 952 952 950 950 948 948 947 946 945 943 943 942 940 940 938 938 936 936 934 934 932 932 930 930 929 927 927 925 925 924 923 921 921 919 919 918 917 915 915 913 913 911 911 909 909 907 907 906 905 903 903 902 901 899 899 898 896 896 894 894 893 892 890 890 888 888 886 886 885 883 883 881 881 878 878 878 877 876 1085 1083 1083 1081 1081 1079 1079 1078 1077 1074 1074 1074 1072 1072 1070 1070 1068 1068 1067 1066 1065 1063 1063 1061 1061 1060 1059 1057 1057 1055 1055 1052 1052 1052 1050 1050 1048 1048 1047 1046 1044 1044 1043 1041 1041 1039 1039 1037 1037 1036 1034 1034 1032 1032 1029 1029 1029 1028 1027 1026 1025 1023 1023 1020 1020 1020 1018 1018 1016 1016 1015 1014 1012 1012 1011 1009 1009 1007 1007 1005 1005 1003 1003 1001 1001 1000 999 997 997 995 995 994 993 991 991 989 989 987 987 985 985 983 983 981 981 980 979 1199 1198 1196 1196 1193 1193 1193 1191 1191 1190 1189 1187 1187 1185 1185 1184 1183 1181 1181 1179 1179 1177 1177 1175 1175 1174 1173 1172 1170 1170 1168 1168 1167 1166 1164 1164 1163 1161 1161 1159 1159 1157 1157 1156 1155 1154 1152 1152 1150 1150 1148 1148 1147 1145 1145 1143 1143 1141 1141 1140 1138 1138 1137 1135 1135 1134 1132 1132 1130 1130 1129 1128 1127 1125 1125 1124 1122 1122 1120 1120 1117 1117 1117 1116 1115 1114 1113 1111 1111 1110 1109 1107 1107 1105 1105 1103 1103 1101 1101 1099 1099 1098 1096 1096 1094 1094 1093 1091 1091 1088 1088 1088 1087 1086 1313 1312 1310 1310 1307 1307 1307 1305 1305 1304 1302 1302 1300 1300 1299 1297 1297 1295 1295 1293 1293 1292 1291 1288 1288 1288 1286 1286 1284 1284 1283 1280 1280 1280 1279 1277 1277 1276 1274 1274 1272 1272 1270 1270 1269 1267 1267 1265 1265 1263 1263 1261 1261 1260 1259 1257 1257 1256 1254 1254 1252 1252 1249 1249 1249 1248 1247 1246 1245 1243 1243 1242 1241 1239 1239 1236 1236 1236 1234 1234 1232 1232 1231 1229 1229 1227 1227 1226 1224 1224 1222 1222 1220 1220 1218 1218 1216 1216 1215 1214 1212 1212 1210 1210 1209 1207 1207 1205 1205 1202 1202 1202 1201 1200 1436 1435 1432 1432 1432 1430 1430 1429 1427 1427 1425 1425 1423 1423 1421 1421 1421 1420 1418 1418 1417 1415 1415 1413 1413 1411 1411 1410 1408 1408 1406 1406 1404 1404 1403 1401 1401 1400 1398 1398 1396 1396 1393 1393 1393 1392 1391 1389 1389 1388 1386 1386 1385 1383 1383 1381 1381 1378 1378 1378 1377 1376 1374 1374 1373 1371 1371 1370 1368 1368 1366 1366 1363 1363 1363 1362 1361 1359 1359 1358 1356 1356 1355 1352 1352 1352 1351 1350 1349 1347 1347 1345 1345 1343 1343 1341 1341 1340 1338 1338 1337 1335 1335 1333 1333 1330 1330 1330 1329 1328 1327 1326 1324 1324 1322 1322 1321 1319 1319 1318 1316 1316 1314 1314 1545 1544 1543 1541 1541 1540 1538 1538 1536 1536 1535 1534 1532 1532 1530 1530 1528 1528 1527 1525 1525 1523 1523 1521 1521 1519 1519 1518 1516 1516 1514 1514 1513 1511 1511 1509 1509 1507 1507 1505 1505 1504 1502 1502 1500 1500 1499 1497 1497 1495 1495 1493 1493 1491 1491 1490 1489 1487 1487 1486 1484 1484 1482 1482 1480 1480 1479 1478 1476 1476 1474 1474 1472 1472 1470 1470 1468 1468 1467 1466 1464 1464 1463 1461 1461 1459 1459 1456 1456 1456 1455 1454 1452 1452 1451 1450 1448 1448 1447 1445 1445 1443 1443 1440 1440 1440 1439 1438 1437 1661 1659 1659 1657 1657 1655 1655 1654 1652 1652 1651 1649 1649 1647 1647 1645 1645 1644 1643 1641 1641 1639 1639 1637 1637 1636 1634 1634 1633 1632 1630 1630 1628 1628 1627 1625 1625 1623 1623 1621 1621 1619 1619 1618 1617 1616 1615 1613 1613 1611 1611 1610 1608 1608 1606 1606 1605 1603 1603 1601 1601 1599 1599 1597 1597 1596 1595 1594 1592 1592 1590 1590 1589 1587 1587 1585 1585 1584 1583 1581 1581 1580 1578 1578 1576 1576 1574 1574 1573 1571 1571 1569 1569 1567 1567 1566 1565 1564 1562 1562 1560 1560 1558 1558 1557 1555 1555 1553 1553 1551 1551 1550 1549 1548 1546 1546 1780 1778 1778 1777 1775 1775 1773 1773 1771 1771 1769 1769 1768 1767 1765 1765 1763 1763 1761 1761 1759 1759 1757 1757 1756 1755 1753 1753 1751 1751 1750 1749 1747 1747 1745 1745 1743 1743 1741 1741 1740 1739 1738 1736 1736 1734 1734 1733 1731 1731 1730 1728 1728 1726 1726 1725 1724 1722 1722 1720 1720 1718 1718 1716 1716 1714 1714 1713 1712 1710 1710 1708 1708 1707 1706 1704 1704 1702 1702 1700 1700 1698 1698 1697 1696 1695 1693 1693 1692 1690 1690 1688 1688 1686 1686 1685 1684 1682 1682 1680 1680 1678 1678 1676 1676 1674 1674 1672 1672 1671 1670 1668 1668 1666 1666 1664 1664 1662 1662 1898 1896 1896 1894 1894 1892 1892 1891 1890 1888 1888 1886 1886 1884 1884 1882 1882 1881 1880 1878 1878 1876 1876 1874 1874 1873 1872 1870 1870 1869 1868 1866 1866 1865 1863 1863 1861 1861 1859 1859 1858 1856 1856 1855 1853 1853 1851 1851 1849 1849 1847 1847 1846 1844 1844 1841 1841 1841 1839 1839 1837 1837 1836 1834 1834 1832 1832 1831 1829 1829 1827 1827 1826 1825 1823 1823 1821 1821 1819 1819 1818 1816 1816 1814 1814 1812 1812 1810 1810 1808 1808 1807 1806 1805 1802 1802 1802 1800 1800 1798 1798 1797 1796 1794 1794 1792 1792 1790 1790 1788 1788 1785 1785 1785 1784 1783 1781 1781 1998 1996 1996 1994 1994 1992 1992 1991 1989 1989 1987 1987 1985 1985 1984 1983 1981 1981 1980 1978 1978 1976 1976 1973 1973 1973 1972 1971 1969 1969 1968 1966 1966 1964 1964 1962 1962 1960 1960 1959 1958 1956 1956 1954 1954 1952 1952 1951 1949 1949 1947 1947 1945 1945 1944 1942 1942 1941 1939 1939 1937 1937 1936 1935 1933 1933 1931 1931 1930 1928 1928 1926 1926 1924 1924 1922 1922 1921 1920 1918 1918 1916 1916 1914 1914 1913 1911 1911 1909 1909 1907 1907 1906 1904 1904 1903 1901 1901 1899 1899 2119 2117 2117 2115 2115 2113 2113 2112 2111 2109 2109 2107 2107 2104 2104 2104 2103 2102 2101 2100 2098 2098 2096 2096 2094 2094 2093 2092 2090 2090 2089 2086 2086 2086 2085 2084 2083 2081 2081 2079 2079 2077 2077 2075 2075 2074 2073 2071 2071 2069 2069 2067 2067 2065 2065 2063 2063 2062 2060 2060 2057 2057 2057 2055 2055 2053 2053 2052 2050 2050 2048 2048 2046 2046 2045 2044 2042 2042 2041 2039 2039 2037 2037 2036 2034 2034 2032 2032 2030 2030 2028 2028 2026 2026 2024 2024 2023 2022 2020 2020 2018 2018 2017 2016 2014 2014 2012 2012 2010 2010 2008 2008 2006 2006 2005 2003 2003 2001 2001 1999 1999 2163 2161 2161 2160 2158 2158 2155 2155 2155 2154 2153 2151 2151 2150 2148 2148 2145 2145 2145 2143 2143 2141 2141 2140 2139 2137 2137 2135 2135 2133 2133 2132 2130 2130 2128 2128 2127 2126 2124 2124 2122 2122 2120 2120 +UTF-8 clusters: 207 206 202 202 200 196 196 192 192 188 188 184 184 182 181 177 177 173 173 172 168 168 164 164 160 160 159 155 155 151 151 147 147 143 143 141 140 136 136 132 132 128 128 124 124 122 118 118 117 116 114 110 110 106 106 102 102 101 100 96 96 92 92 90 86 86 82 82 78 78 77 76 72 72 71 67 67 65 61 61 60 56 56 52 52 50 46 46 42 42 41 37 37 35 31 31 27 27 23 23 21 20 19 15 15 11 11 07 07 03 03 01 00 403 399 399 395 395 391 391 387 387 385 384 382 378 378 374 374 373 369 369 365 365 359 359 359 357 355 351 351 350 346 346 342 342 336 336 336 334 332 328 328 327 323 323 319 319 313 313 313 311 309 305 305 304 302 301 299 300 298 297 295 293 291 289 287 285 283 282 281 280 276 276 272 272 268 268 264 264 260 260 259 255 255 249 249 249 245 245 241 241 240 236 236 232 232 228 228 227 225 224 220 220 216 216 212 212 208 208 594 590 590 586 586 582 582 578 578 576 575 574 570 570 566 566 562 562 558 558 556 555 554 550 550 549 548 544 544 540 540 536 536 532 532 528 528 527 525 521 521 520 516 516 514 510 510 506 506 505 501 501 497 497 493 493 489 489 487 486 484 480 480 476 476 475 471 471 467 467 461 461 461 459 457 453 453 452 448 448 444 444 440 440 440 436 436 432 432 431 427 427 421 421 421 417 417 413 413 412 408 408 404 404 795 793 789 789 787 783 783 779 779 778 777 773 773 769 769 765 765 764 763 759 759 758 754 754 752 748 748 744 744 743 742 738 738 734 734 730 730 729 728 726 722 722 718 718 714 714 710 710 706 706 702 702 701 699 695 695 693 689 689 685 685 684 680 680 678 674 674 673 669 669 667 663 663 662 658 658 654 654 653 652 648 648 644 644 642 638 638 637 636 632 632 628 628 624 624 623 619 619 613 613 613 609 609 605 605 601 601 599 595 595 1010 1009 1005 1005 1003 999 999 995 995 991 991 989 988 987 983 983 982 981 977 977 973 973 969 969 968 966 962 962 961 960 958 954 954 950 950 946 946 945 944 942 938 938 934 934 930 930 926 926 922 922 921 915 915 915 911 911 910 909 905 905 903 899 899 895 895 891 891 890 886 886 882 882 878 878 874 874 872 871 869 865 865 861 861 857 857 853 853 852 850 844 844 844 840 840 836 836 835 833 829 829 825 825 821 821 817 817 816 812 812 810 806 806 802 802 800 796 796 1203 1199 1199 1195 1195 1194 1193 1189 1189 1185 1185 1181 1181 1177 1177 1176 1175 1171 1171 1169 1165 1165 1161 1161 1157 1157 1156 1154 1152 1148 1148 1144 1144 1140 1140 1136 1136 1135 1131 1131 1129 1125 1125 1121 1121 1117 1117 1115 1114 1110 1110 1106 1106 1105 1099 1099 1099 1095 1095 1093 1092 1091 1087 1087 1085 1081 1081 1077 1077 1073 1073 1071 1070 1068 1064 1064 1060 1060 1059 1058 1054 1054 1050 1050 1044 1044 1044 1042 1040 1036 1036 1035 1031 1031 1027 1027 1025 1021 1021 1017 1017 1013 1013 1011 1408 1404 1404 1400 1400 1399 1395 1395 1391 1391 1385 1385 1385 1383 1381 1380 1376 1376 1372 1372 1371 1370 1366 1366 1360 1360 1360 1356 1356 1352 1352 1348 1348 1347 1346 1344 1340 1340 1339 1337 1333 1333 1329 1329 1325 1325 1324 1323 1319 1319 1317 1313 1313 1309 1309 1305 1305 1303 1302 1301 1297 1297 1296 1295 1293 1289 1289 1287 1283 1283 1279 1279 1278 1274 1274 1270 1270 1266 1266 1262 1262 1258 1258 1257 1253 1253 1249 1249 1245 1245 1244 1240 1240 1236 1236 1232 1232 1228 1228 1227 1223 1223 1219 1219 1218 1214 1214 1212 1208 1208 1204 1204 1607 1606 1602 1602 1600 1596 1596 1592 1592 1591 1590 1588 1584 1584 1580 1580 1576 1576 1575 1574 1570 1570 1564 1564 1564 1560 1560 1559 1558 1554 1554 1550 1550 1546 1546 1545 1541 1541 1537 1537 1531 1531 1531 1529 1528 1527 1525 1521 1521 1519 1515 1515 1511 1511 1510 1509 1505 1505 1503 1499 1499 1495 1495 1494 1490 1490 1486 1486 1480 1480 1480 1478 1476 1475 1474 1470 1470 1468 1464 1464 1463 1462 1458 1458 1457 1456 1454 1450 1450 1446 1446 1442 1442 1438 1438 1434 1434 1433 1429 1429 1425 1425 1423 1419 1419 1413 1413 1413 1411 1409 1794 1790 1790 1789 1785 1785 1781 1781 1777 1777 1776 1772 1772 1768 1768 1762 1762 1762 1760 1758 1757 1756 1752 1752 1750 1746 1746 1742 1742 1738 1738 1736 1735 1734 1730 1730 1729 1725 1725 1721 1721 1717 1717 1713 1713 1709 1709 1705 1705 1704 1700 1700 1696 1696 1695 1693 1689 1689 1685 1685 1684 1683 1679 1679 1675 1675 1671 1671 1667 1667 1663 1663 1662 1661 1657 1657 1656 1655 1651 1651 1649 1645 1645 1641 1641 1640 1639 1635 1635 1631 1631 1627 1627 1626 1622 1622 1618 1618 1612 1612 1612 1610 1608 1990 1986 1986 1982 1982 1978 1978 1977 1975 1969 1969 1969 1965 1965 1961 1961 1957 1957 1956 1954 1952 1948 1948 1944 1944 1943 1942 1938 1938 1934 1934 1928 1928 1928 1924 1924 1920 1920 1919 1918 1914 1914 1913 1909 1909 1905 1905 1901 1901 1900 1896 1896 1892 1892 1886 1886 1886 1884 1882 1881 1880 1876 1876 1870 1870 1870 1866 1866 1862 1862 1861 1860 1856 1856 1855 1851 1851 1847 1847 1843 1843 1839 1839 1835 1835 1834 1832 1828 1828 1824 1824 1823 1822 1818 1818 1814 1814 1810 1810 1806 1806 1802 1802 1798 1798 1796 1795 2200 2199 2195 2195 2189 2189 2189 2185 2185 2184 2183 2179 2179 2175 2175 2174 2173 2169 2169 2165 2165 2161 2161 2157 2157 2155 2154 2152 2148 2148 2144 2144 2143 2141 2137 2137 2135 2131 2131 2127 2127 2123 2123 2121 2120 2118 2114 2114 2110 2110 2106 2106 2105 2101 2101 2097 2097 2093 2093 2092 2088 2088 2086 2082 2082 2080 2076 2076 2072 2072 2070 2069 2068 2064 2064 2062 2058 2058 2054 2054 2048 2048 2048 2046 2044 2043 2042 2038 2038 2037 2036 2032 2032 2028 2028 2024 2024 2020 2020 2016 2016 2015 2011 2011 2007 2007 2005 2001 2001 1995 1995 1995 1993 1991 2412 2410 2406 2406 2400 2400 2400 2396 2396 2395 2391 2391 2387 2387 2385 2381 2381 2377 2377 2373 2373 2371 2370 2364 2364 2364 2360 2360 2356 2356 2355 2349 2349 2349 2347 2343 2343 2342 2338 2338 2334 2334 2330 2330 2329 2325 2325 2321 2321 2317 2317 2313 2313 2312 2311 2307 2307 2305 2301 2301 2297 2297 2291 2291 2291 2289 2287 2286 2285 2281 2281 2280 2279 2275 2275 2269 2269 2269 2265 2265 2261 2261 2260 2256 2256 2252 2252 2251 2247 2247 2243 2243 2239 2239 2235 2235 2231 2231 2230 2228 2224 2224 2220 2220 2219 2215 2215 2211 2211 2205 2205 2205 2203 2201 2646 2644 2638 2638 2638 2634 2634 2633 2629 2629 2625 2625 2621 2621 2617 2617 2617 2615 2611 2611 2610 2606 2606 2602 2602 2598 2598 2597 2593 2593 2589 2589 2585 2585 2584 2580 2580 2578 2574 2574 2570 2570 2564 2564 2564 2562 2560 2556 2556 2555 2551 2551 2549 2545 2545 2541 2541 2535 2535 2535 2533 2531 2527 2527 2526 2522 2522 2520 2516 2516 2512 2512 2506 2506 2506 2504 2502 2498 2498 2497 2493 2493 2491 2485 2485 2485 2483 2481 2480 2476 2476 2472 2472 2468 2468 2464 2464 2463 2459 2459 2457 2453 2453 2449 2449 2443 2443 2443 2441 2439 2438 2436 2432 2432 2428 2428 2427 2423 2423 2421 2417 2417 2413 2413 2845 2844 2843 2839 2839 2837 2833 2833 2829 2829 2828 2827 2823 2823 2819 2819 2815 2815 2814 2810 2810 2806 2806 2802 2802 2798 2798 2797 2793 2793 2789 2789 2788 2784 2784 2780 2780 2776 2776 2772 2772 2771 2767 2767 2763 2763 2762 2758 2758 2754 2754 2750 2750 2746 2746 2745 2744 2740 2740 2738 2734 2734 2730 2730 2726 2726 2725 2724 2720 2720 2716 2716 2712 2712 2708 2708 2704 2704 2703 2702 2698 2698 2696 2692 2692 2688 2688 2682 2682 2682 2680 2678 2674 2674 2673 2672 2668 2668 2666 2662 2662 2658 2658 2652 2652 2652 2650 2648 2647 3059 3055 3055 3051 3051 3047 3047 3045 3041 3041 3040 3036 3036 3032 3032 3028 3028 3027 3026 3022 3022 3018 3018 3014 3014 3012 3008 3008 3007 3006 3002 3002 2998 2998 2996 2992 2992 2988 2988 2984 2984 2980 2980 2979 2978 2976 2974 2970 2970 2966 2966 2964 2960 2960 2956 2956 2955 2951 2951 2947 2947 2943 2943 2939 2939 2937 2936 2935 2931 2931 2927 2927 2925 2921 2921 2917 2917 2916 2915 2911 2911 2910 2906 2906 2902 2902 2898 2898 2896 2892 2892 2888 2888 2884 2884 2882 2881 2880 2876 2876 2872 2872 2868 2868 2866 2862 2862 2858 2858 2854 2854 2852 2851 2850 2846 2846 3281 3277 3277 3275 3271 3271 3267 3267 3263 3263 3259 3259 3257 3256 3252 3252 3248 3248 3244 3244 3240 3240 3236 3236 3234 3233 3229 3229 3225 3225 3224 3223 3219 3219 3215 3215 3211 3211 3207 3207 3205 3204 3202 3198 3198 3194 3194 3193 3189 3189 3187 3183 3183 3179 3179 3178 3176 3172 3172 3168 3168 3164 3164 3160 3160 3156 3156 3154 3153 3149 3149 3145 3145 3144 3143 3139 3139 3135 3135 3131 3131 3127 3127 3125 3124 3123 3119 3119 3117 3113 3113 3109 3109 3105 3105 3104 3103 3099 3099 3095 3095 3091 3091 3087 3087 3083 3083 3079 3079 3078 3076 3072 3072 3068 3068 3064 3064 3060 3060 3502 3498 3498 3494 3494 3490 3490 3489 3487 3483 3483 3479 3479 3475 3475 3471 3471 3470 3469 3465 3465 3461 3461 3457 3457 3456 3455 3451 3451 3450 3449 3445 3445 3443 3439 3439 3435 3435 3431 3431 3429 3425 3425 3424 3420 3420 3416 3416 3412 3412 3408 3408 3407 3403 3403 3397 3397 3397 3393 3393 3389 3389 3388 3384 3384 3380 3380 3378 3374 3374 3370 3370 3368 3367 3363 3363 3359 3359 3355 3355 3354 3350 3350 3346 3346 3342 3342 3338 3338 3334 3334 3332 3331 3329 3323 3323 3323 3319 3319 3315 3315 3314 3312 3308 3308 3304 3304 3300 3300 3296 3296 3290 3290 3290 3288 3286 3282 3282 3690 3686 3686 3682 3682 3678 3678 3677 3673 3673 3669 3669 3665 3665 3664 3662 3658 3658 3656 3652 3652 3648 3648 3642 3642 3642 3640 3638 3634 3634 3633 3629 3629 3625 3625 3621 3621 3617 3617 3615 3614 3610 3610 3606 3606 3602 3602 3601 3597 3597 3593 3593 3589 3589 3588 3584 3584 3582 3578 3578 3574 3574 3573 3571 3567 3567 3563 3563 3562 3558 3558 3554 3554 3550 3550 3546 3546 3544 3543 3539 3539 3535 3535 3531 3531 3530 3526 3526 3522 3522 3518 3518 3517 3513 3513 3511 3507 3507 3503 3503 3916 3912 3912 3908 3908 3904 3904 3903 3902 3898 3898 3894 3894 3888 3888 3888 3886 3884 3883 3881 3877 3877 3873 3873 3869 3869 3868 3867 3863 3863 3861 3855 3855 3855 3853 3851 3850 3846 3846 3842 3842 3838 3838 3834 3834 3833 3831 3827 3827 3823 3823 3819 3819 3815 3815 3811 3811 3810 3806 3806 3800 3800 3800 3796 3796 3792 3792 3791 3787 3787 3783 3783 3779 3779 3778 3777 3773 3773 3771 3767 3767 3763 3763 3762 3758 3758 3754 3754 3750 3750 3746 3746 3742 3742 3738 3738 3737 3735 3731 3731 3727 3727 3725 3724 3720 3720 3716 3716 3712 3712 3708 3708 3704 3704 3703 3699 3699 3695 3695 3691 3691 3998 3994 3994 3992 3988 3988 3982 3982 3982 3980 3978 3974 3974 3973 3969 3969 3963 3963 3963 3959 3959 3955 3955 3953 3952 3948 3948 3944 3944 3940 3940 3939 3935 3935 3931 3931 3930 3929 3925 3925 3921 3921 3917 3917 diff --git a/tests/multi-fonts.test b/tests/multi-fonts.test index 9eb3a22d..87c34e7e 100644 --- a/tests/multi-fonts.test +++ b/tests/multi-fonts.test @@ -64,27 +64,27 @@ run[1]: start: 10 length: 11 direction: rtl script: Arab font: Aref Ruqaa run[2]: start: 8 length: 2 direction: rtl script: Arab font: Amiri Glyph information: -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 font: Amiri +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 20 19 18 17 16 15 14 13 12 11 10 09 08 UTF-8 clusters: 00 01 02 03 04 05 06 07 31 29 27 25 23 21 19 18 16 14 12 10 08 diff --git a/tests/multi-fonts2.test b/tests/multi-fonts2.test index ec7cd3ff..43c75e0f 100644 --- a/tests/multi-fonts2.test +++ b/tests/multi-fonts2.test @@ -29,10 +29,10 @@ run[1]: start: 1 length: 2 direction: rtl script: Arab font: DejaVu Sans run[2]: start: 0 length: 1 direction: rtl script: Arab font: Amiri Glyph information: -glyph [2454] x_offset: 0 y_offset: 0 x_advance: 1200 font: Amiri -glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 font: DejaVu Sans -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri +glyph [2454] x_offset: 0 y_offset: 0 x_advance: 1200 line: 00 font: Amiri +glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 line: 00 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 line: 00 font: DejaVu Sans +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri UTF-32 clusters: 03 02 01 00 UTF-8 clusters: 06 04 02 00 diff --git a/tests/raqm-test.c b/tests/raqm-test.c index ec67582f..ca393c49 100644 --- a/tests/raqm-test.c +++ b/tests/raqm-test.c @@ -40,6 +40,7 @@ static gchar *fonts = NULL; static gchar *languages = NULL; static gint cluster = -1; static gint position = -1; +static gint line_width = -1; static gchar **args = NULL; static GOptionEntry entries[] = { @@ -51,6 +52,7 @@ static GOptionEntry entries[] = { "font-features", 0, 0, G_OPTION_ARG_STRING, &features, "The font features ", "FEATURES" }, { "cluster", 0, 0, G_OPTION_ARG_INT, &cluster, "The glyph cluster ", "CLUSTER" }, { "position", 0, 0, G_OPTION_ARG_INT, &position, "The glyph position ", "POSITION" }, + { "line-width", 0, 0, G_OPTION_ARG_INT, &line_width, "The line width ", "WIDTH" }, { G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &args, "Remaining arguments", "FONTFILE" }, { NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL } }; @@ -157,6 +159,9 @@ main (int argc, char *argv[]) g_strfreev (list); } + if (line_width >= 0) + assert (raqm_set_width (rq, line_width)); + assert (raqm_layout (rq)); glyphs = raqm_get_glyphs (rq, &count); diff --git a/tests/scripts-backward-ltr.test b/tests/scripts-backward-ltr.test index 6446a7ff..229a3ac4 100644 --- a/tests/scripts-backward-ltr.test +++ b/tests/scripts-backward-ltr.test @@ -99,41 +99,41 @@ run[7]: start: 28 length: 2 direction: ltr script: Arab font: DejaVu Sans run[8]: start: 30 length: 5 direction: rtl script: Arab font: DejaVu Sans Glyph information: -glyph [49] x_offset: 0 y_offset: 0 x_advance: 1363 font: DejaVu Sans -glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 font: DejaVu Sans -glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 font: DejaVu Sans -glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 font: DejaVu Sans -glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 font: DejaVu Sans -glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 font: DejaVu Sans -glyph [46] x_offset: 0 y_offset: 0 x_advance: 1551 font: DejaVu Sans -glyph [53] x_offset: 0 y_offset: 0 x_advance: 1080 font: DejaVu Sans -glyph [16] x_offset: 0 y_offset: 0 x_advance: 569 font: DejaVu Sans -glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 font: DejaVu Sans -glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 font: DejaVu Sans -glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 font: DejaVu Sans -glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 font: DejaVu Sans -glyph [13] x_offset: 0 y_offset: 0 x_advance: 1282 font: DejaVu Sans -glyph [56] x_offset: 0 y_offset: 0 x_advance: 1707 font: DejaVu Sans -glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 font: DejaVu Sans -glyph [44] x_offset: 0 y_offset: 0 x_advance: 1222 font: DejaVu Sans -glyph [27] x_offset: 0 y_offset: 0 x_advance: 0 font: DejaVu Sans -glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [4] x_offset: 0 y_offset: 0 x_advance: 1260 font: DejaVu Sans -glyph [9] x_offset: 0 y_offset: 0 x_advance: 1298 font: DejaVu Sans -glyph [5] x_offset: 0 y_offset: 0 x_advance: 1300 font: DejaVu Sans -glyph [8] x_offset: 0 y_offset: 0 x_advance: 569 font: DejaVu Sans -glyph [7] x_offset: 0 y_offset: 0 x_advance: 569 font: DejaVu Sans -glyph [10] x_offset: 0 y_offset: 0 x_advance: 1067 font: DejaVu Sans -glyph [6] x_offset: 0 y_offset: 0 x_advance: 1298 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [35] x_offset: 0 y_offset: 0 x_advance: 624 font: DejaVu Sans -glyph [38] x_offset: 0 y_offset: 0 x_advance: 618 font: DejaVu Sans -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1266 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 font: DejaVu Sans -glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 font: DejaVu Sans +glyph [49] x_offset: 0 y_offset: 0 x_advance: 1363 line: 00 font: DejaVu Sans +glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 line: 00 font: DejaVu Sans +glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 line: 00 font: DejaVu Sans +glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 line: 00 font: DejaVu Sans +glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 line: 00 font: DejaVu Sans +glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 line: 00 font: DejaVu Sans +glyph [46] x_offset: 0 y_offset: 0 x_advance: 1551 line: 00 font: DejaVu Sans +glyph [53] x_offset: 0 y_offset: 0 x_advance: 1080 line: 00 font: DejaVu Sans +glyph [16] x_offset: 0 y_offset: 0 x_advance: 569 line: 00 font: DejaVu Sans +glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 line: 00 font: DejaVu Sans +glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 line: 00 font: DejaVu Sans +glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 line: 00 font: DejaVu Sans +glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 line: 00 font: DejaVu Sans +glyph [13] x_offset: 0 y_offset: 0 x_advance: 1282 line: 00 font: DejaVu Sans +glyph [56] x_offset: 0 y_offset: 0 x_advance: 1707 line: 00 font: DejaVu Sans +glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 line: 00 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 line: 00 font: DejaVu Sans +glyph [44] x_offset: 0 y_offset: 0 x_advance: 1222 line: 00 font: DejaVu Sans +glyph [27] x_offset: 0 y_offset: 0 x_advance: 0 line: 00 font: DejaVu Sans +glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [4] x_offset: 0 y_offset: 0 x_advance: 1260 line: 00 font: DejaVu Sans +glyph [9] x_offset: 0 y_offset: 0 x_advance: 1298 line: 00 font: DejaVu Sans +glyph [5] x_offset: 0 y_offset: 0 x_advance: 1300 line: 00 font: DejaVu Sans +glyph [8] x_offset: 0 y_offset: 0 x_advance: 569 line: 00 font: DejaVu Sans +glyph [7] x_offset: 0 y_offset: 0 x_advance: 569 line: 00 font: DejaVu Sans +glyph [10] x_offset: 0 y_offset: 0 x_advance: 1067 line: 00 font: DejaVu Sans +glyph [6] x_offset: 0 y_offset: 0 x_advance: 1298 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [35] x_offset: 0 y_offset: 0 x_advance: 624 line: 00 font: DejaVu Sans +glyph [38] x_offset: 0 y_offset: 0 x_advance: 618 line: 00 font: DejaVu Sans +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1266 line: 00 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 line: 00 font: DejaVu Sans +glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 line: 00 font: DejaVu Sans UTF-32 clusters: 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 18 18 20 21 22 23 24 25 26 27 28 29 34 33 32 31 30 UTF-8 clusters: 34 32 30 28 26 24 22 20 18 16 14 12 10 08 06 04 02 00 36 36 39 40 41 42 43 44 45 46 47 48 57 55 53 51 49 diff --git a/tests/scripts-backward-rtl.test b/tests/scripts-backward-rtl.test index 5f57eb58..a2b03e43 100644 --- a/tests/scripts-backward-rtl.test +++ b/tests/scripts-backward-rtl.test @@ -98,41 +98,41 @@ run[6]: start: 4 length: 5 direction: rtl script: Hebr font: DejaVu Sans run[7]: start: 0 length: 4 direction: rtl script: Arab font: DejaVu Sans Glyph information: -glyph [35] x_offset: 0 y_offset: 0 x_advance: 624 font: DejaVu Sans -glyph [38] x_offset: 0 y_offset: 0 x_advance: 618 font: DejaVu Sans -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1266 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 font: DejaVu Sans -glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [4] x_offset: 0 y_offset: 0 x_advance: 1260 font: DejaVu Sans -glyph [9] x_offset: 0 y_offset: 0 x_advance: 1298 font: DejaVu Sans -glyph [5] x_offset: 0 y_offset: 0 x_advance: 1300 font: DejaVu Sans -glyph [8] x_offset: 0 y_offset: 0 x_advance: 569 font: DejaVu Sans -glyph [7] x_offset: 0 y_offset: 0 x_advance: 569 font: DejaVu Sans -glyph [10] x_offset: 0 y_offset: 0 x_advance: 1067 font: DejaVu Sans -glyph [6] x_offset: 0 y_offset: 0 x_advance: 1298 font: DejaVu Sans -glyph [27] x_offset: 0 y_offset: 0 x_advance: 0 font: DejaVu Sans -glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [49] x_offset: 0 y_offset: 0 x_advance: 1363 font: DejaVu Sans -glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 font: DejaVu Sans -glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 font: DejaVu Sans -glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 font: DejaVu Sans -glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 font: DejaVu Sans -glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 font: DejaVu Sans -glyph [46] x_offset: 0 y_offset: 0 x_advance: 1551 font: DejaVu Sans -glyph [53] x_offset: 0 y_offset: 0 x_advance: 1080 font: DejaVu Sans -glyph [16] x_offset: 0 y_offset: 0 x_advance: 569 font: DejaVu Sans -glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 font: DejaVu Sans -glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 font: DejaVu Sans -glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 font: DejaVu Sans -glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 font: DejaVu Sans -glyph [13] x_offset: 0 y_offset: 0 x_advance: 1282 font: DejaVu Sans -glyph [56] x_offset: 0 y_offset: 0 x_advance: 1707 font: DejaVu Sans -glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 font: DejaVu Sans -glyph [44] x_offset: 0 y_offset: 0 x_advance: 1222 font: DejaVu Sans +glyph [35] x_offset: 0 y_offset: 0 x_advance: 624 line: 00 font: DejaVu Sans +glyph [38] x_offset: 0 y_offset: 0 x_advance: 618 line: 00 font: DejaVu Sans +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1266 line: 00 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 line: 00 font: DejaVu Sans +glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [4] x_offset: 0 y_offset: 0 x_advance: 1260 line: 00 font: DejaVu Sans +glyph [9] x_offset: 0 y_offset: 0 x_advance: 1298 line: 00 font: DejaVu Sans +glyph [5] x_offset: 0 y_offset: 0 x_advance: 1300 line: 00 font: DejaVu Sans +glyph [8] x_offset: 0 y_offset: 0 x_advance: 569 line: 00 font: DejaVu Sans +glyph [7] x_offset: 0 y_offset: 0 x_advance: 569 line: 00 font: DejaVu Sans +glyph [10] x_offset: 0 y_offset: 0 x_advance: 1067 line: 00 font: DejaVu Sans +glyph [6] x_offset: 0 y_offset: 0 x_advance: 1298 line: 00 font: DejaVu Sans +glyph [27] x_offset: 0 y_offset: 0 x_advance: 0 line: 00 font: DejaVu Sans +glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [49] x_offset: 0 y_offset: 0 x_advance: 1363 line: 00 font: DejaVu Sans +glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 line: 00 font: DejaVu Sans +glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 line: 00 font: DejaVu Sans +glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 line: 00 font: DejaVu Sans +glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 line: 00 font: DejaVu Sans +glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 line: 00 font: DejaVu Sans +glyph [46] x_offset: 0 y_offset: 0 x_advance: 1551 line: 00 font: DejaVu Sans +glyph [53] x_offset: 0 y_offset: 0 x_advance: 1080 line: 00 font: DejaVu Sans +glyph [16] x_offset: 0 y_offset: 0 x_advance: 569 line: 00 font: DejaVu Sans +glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 line: 00 font: DejaVu Sans +glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 line: 00 font: DejaVu Sans +glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 line: 00 font: DejaVu Sans +glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 line: 00 font: DejaVu Sans +glyph [13] x_offset: 0 y_offset: 0 x_advance: 1282 line: 00 font: DejaVu Sans +glyph [56] x_offset: 0 y_offset: 0 x_advance: 1707 line: 00 font: DejaVu Sans +glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 line: 00 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 line: 00 font: DejaVu Sans +glyph [44] x_offset: 0 y_offset: 0 x_advance: 1222 line: 00 font: DejaVu Sans UTF-32 clusters: 34 33 32 31 30 29 28 27 20 21 22 23 24 25 26 18 18 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 UTF-8 clusters: 57 55 53 51 49 48 47 46 39 40 41 42 43 44 45 36 36 34 32 30 28 26 24 22 20 18 16 14 12 10 08 06 04 02 00 diff --git a/tests/scripts-backward.test b/tests/scripts-backward.test index 0d434fef..4f3dcf22 100644 --- a/tests/scripts-backward.test +++ b/tests/scripts-backward.test @@ -98,41 +98,41 @@ run[6]: start: 4 length: 5 direction: rtl script: Hebr font: DejaVu Sans run[7]: start: 0 length: 4 direction: rtl script: Arab font: DejaVu Sans Glyph information: -glyph [35] x_offset: 0 y_offset: 0 x_advance: 624 font: DejaVu Sans -glyph [38] x_offset: 0 y_offset: 0 x_advance: 618 font: DejaVu Sans -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1266 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 font: DejaVu Sans -glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [4] x_offset: 0 y_offset: 0 x_advance: 1260 font: DejaVu Sans -glyph [9] x_offset: 0 y_offset: 0 x_advance: 1298 font: DejaVu Sans -glyph [5] x_offset: 0 y_offset: 0 x_advance: 1300 font: DejaVu Sans -glyph [8] x_offset: 0 y_offset: 0 x_advance: 569 font: DejaVu Sans -glyph [7] x_offset: 0 y_offset: 0 x_advance: 569 font: DejaVu Sans -glyph [10] x_offset: 0 y_offset: 0 x_advance: 1067 font: DejaVu Sans -glyph [6] x_offset: 0 y_offset: 0 x_advance: 1298 font: DejaVu Sans -glyph [27] x_offset: 0 y_offset: 0 x_advance: 0 font: DejaVu Sans -glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [49] x_offset: 0 y_offset: 0 x_advance: 1363 font: DejaVu Sans -glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 font: DejaVu Sans -glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 font: DejaVu Sans -glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 font: DejaVu Sans -glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 font: DejaVu Sans -glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 font: DejaVu Sans -glyph [46] x_offset: 0 y_offset: 0 x_advance: 1551 font: DejaVu Sans -glyph [53] x_offset: 0 y_offset: 0 x_advance: 1080 font: DejaVu Sans -glyph [16] x_offset: 0 y_offset: 0 x_advance: 569 font: DejaVu Sans -glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 font: DejaVu Sans -glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 font: DejaVu Sans -glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 font: DejaVu Sans -glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 font: DejaVu Sans -glyph [13] x_offset: 0 y_offset: 0 x_advance: 1282 font: DejaVu Sans -glyph [56] x_offset: 0 y_offset: 0 x_advance: 1707 font: DejaVu Sans -glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 font: DejaVu Sans -glyph [44] x_offset: 0 y_offset: 0 x_advance: 1222 font: DejaVu Sans +glyph [35] x_offset: 0 y_offset: 0 x_advance: 624 line: 00 font: DejaVu Sans +glyph [38] x_offset: 0 y_offset: 0 x_advance: 618 line: 00 font: DejaVu Sans +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1266 line: 00 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 line: 00 font: DejaVu Sans +glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [4] x_offset: 0 y_offset: 0 x_advance: 1260 line: 00 font: DejaVu Sans +glyph [9] x_offset: 0 y_offset: 0 x_advance: 1298 line: 00 font: DejaVu Sans +glyph [5] x_offset: 0 y_offset: 0 x_advance: 1300 line: 00 font: DejaVu Sans +glyph [8] x_offset: 0 y_offset: 0 x_advance: 569 line: 00 font: DejaVu Sans +glyph [7] x_offset: 0 y_offset: 0 x_advance: 569 line: 00 font: DejaVu Sans +glyph [10] x_offset: 0 y_offset: 0 x_advance: 1067 line: 00 font: DejaVu Sans +glyph [6] x_offset: 0 y_offset: 0 x_advance: 1298 line: 00 font: DejaVu Sans +glyph [27] x_offset: 0 y_offset: 0 x_advance: 0 line: 00 font: DejaVu Sans +glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [49] x_offset: 0 y_offset: 0 x_advance: 1363 line: 00 font: DejaVu Sans +glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 line: 00 font: DejaVu Sans +glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 line: 00 font: DejaVu Sans +glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 line: 00 font: DejaVu Sans +glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 line: 00 font: DejaVu Sans +glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 line: 00 font: DejaVu Sans +glyph [46] x_offset: 0 y_offset: 0 x_advance: 1551 line: 00 font: DejaVu Sans +glyph [53] x_offset: 0 y_offset: 0 x_advance: 1080 line: 00 font: DejaVu Sans +glyph [16] x_offset: 0 y_offset: 0 x_advance: 569 line: 00 font: DejaVu Sans +glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 line: 00 font: DejaVu Sans +glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 line: 00 font: DejaVu Sans +glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 line: 00 font: DejaVu Sans +glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 line: 00 font: DejaVu Sans +glyph [13] x_offset: 0 y_offset: 0 x_advance: 1282 line: 00 font: DejaVu Sans +glyph [56] x_offset: 0 y_offset: 0 x_advance: 1707 line: 00 font: DejaVu Sans +glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 line: 00 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 line: 00 font: DejaVu Sans +glyph [44] x_offset: 0 y_offset: 0 x_advance: 1222 line: 00 font: DejaVu Sans UTF-32 clusters: 34 33 32 31 30 29 28 27 20 21 22 23 24 25 26 18 18 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 UTF-8 clusters: 57 55 53 51 49 48 47 46 39 40 41 42 43 44 45 36 36 34 32 30 28 26 24 22 20 18 16 14 12 10 08 06 04 02 00 diff --git a/tests/scripts-forward-ltr.test b/tests/scripts-forward-ltr.test index 7df80614..75608b5f 100644 --- a/tests/scripts-forward-ltr.test +++ b/tests/scripts-forward-ltr.test @@ -55,22 +55,22 @@ run[3]: start: 11 length: 1 direction: ltr script: Grek font: DejaVu Sans run[4]: start: 12 length: 4 direction: ltr script: Cyrl font: DejaVu Sans Glyph information: -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 UTF-8 clusters: 00 01 02 03 04 05 06 08 10 12 13 14 16 18 20 22 diff --git a/tests/scripts-forward-rtl.test b/tests/scripts-forward-rtl.test index 892e2948..75cd986a 100644 --- a/tests/scripts-forward-rtl.test +++ b/tests/scripts-forward-rtl.test @@ -55,22 +55,22 @@ run[3]: start: 11 length: 1 direction: ltr script: Grek font: DejaVu Sans run[4]: start: 12 length: 4 direction: ltr script: Cyrl font: DejaVu Sans Glyph information: -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 UTF-8 clusters: 00 01 02 03 04 05 06 08 10 12 13 14 16 18 20 22 diff --git a/tests/scripts-forward.test b/tests/scripts-forward.test index eda19320..0b646085 100644 --- a/tests/scripts-forward.test +++ b/tests/scripts-forward.test @@ -55,22 +55,22 @@ run[3]: start: 11 length: 1 direction: ltr script: Grek font: DejaVu Sans run[4]: start: 12 length: 4 direction: ltr script: Cyrl font: DejaVu Sans Glyph information: -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 UTF-8 clusters: 00 01 02 03 04 05 06 08 10 12 13 14 16 18 20 22 diff --git a/tests/test1.test b/tests/test1.test index 74c63414..b41dc59b 100644 --- a/tests/test1.test +++ b/tests/test1.test @@ -62,25 +62,25 @@ run[2]: start: 5 length: 7 direction: ltr script: Latn font: Amiri run[3]: start: 0 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 line: 00 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri UTF-32 clusters: 18 17 16 15 14 13 12 05 06 07 08 09 10 11 04 03 02 01 00 UTF-8 clusters: 25 23 21 19 18 17 16 09 10 11 12 13 14 15 08 06 04 02 00 diff --git a/tests/test1_LTR.test b/tests/test1_LTR.test index 3b219430..8cd2a290 100644 --- a/tests/test1_LTR.test +++ b/tests/test1_LTR.test @@ -63,25 +63,25 @@ run[3]: start: 13 length: 2 direction: ltr script: Arab font: Amiri run[4]: start: 15 length: 4 direction: rtl script: Arab font: Amiri Glyph information: -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri UTF-32 clusters: 03 02 01 00 04 05 06 07 08 09 10 11 12 13 14 18 17 16 15 UTF-8 clusters: 06 04 02 00 08 09 10 11 12 13 14 15 16 17 18 25 23 21 19 diff --git a/tests/test1_RTL.test b/tests/test1_RTL.test index d100d3e3..fbebc0a2 100644 --- a/tests/test1_RTL.test +++ b/tests/test1_RTL.test @@ -62,25 +62,25 @@ run[2]: start: 5 length: 7 direction: ltr script: Latn font: Amiri run[3]: start: 0 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 line: 00 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri UTF-32 clusters: 18 17 16 15 14 13 12 05 06 07 08 09 10 11 04 03 02 01 00 UTF-8 clusters: 25 23 21 19 18 17 16 09 10 11 12 13 14 15 08 06 04 02 00 diff --git a/tests/test2.test b/tests/test2.test index 5302b5f7..08251726 100644 --- a/tests/test2.test +++ b/tests/test2.test @@ -53,21 +53,21 @@ run[1]: start: 12 length: 3 direction: ltr script: Arab font: Amiri run[2]: start: 7 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 12 13 14 11 10 09 08 07 UTF-8 clusters: 00 01 02 03 04 05 06 16 17 18 15 13 11 09 07 diff --git a/tests/test2_LTR.test b/tests/test2_LTR.test index e047f18b..0cfd1efe 100644 --- a/tests/test2_LTR.test +++ b/tests/test2_LTR.test @@ -53,21 +53,21 @@ run[1]: start: 12 length: 3 direction: ltr script: Arab font: Amiri run[2]: start: 7 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 12 13 14 11 10 09 08 07 UTF-8 clusters: 00 01 02 03 04 05 06 16 17 18 15 13 11 09 07 diff --git a/tests/test2_RTL.test b/tests/test2_RTL.test index a9d20121..61a23dd0 100644 --- a/tests/test2_RTL.test +++ b/tests/test2_RTL.test @@ -54,21 +54,21 @@ run[2]: start: 6 length: 1 direction: rtl script: Latn font: Amiri run[3]: start: 0 length: 6 direction: ltr script: Latn font: Amiri Glyph information: -glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 font: Amiri +glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 00 font: Amiri UTF-32 clusters: 12 13 14 11 10 09 08 07 06 00 01 02 03 04 05 UTF-8 clusters: 16 17 18 15 13 11 09 07 06 00 01 02 03 04 05 diff --git a/tests/test3.test b/tests/test3.test index 84d25643..d4fc0a70 100644 --- a/tests/test3.test +++ b/tests/test3.test @@ -84,34 +84,34 @@ run[4]: start: 20 length: 1 direction: ltr script: Arab font: Amiri run[5]: start: 21 length: 7 direction: ltr script: Latn font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 19 18 17 16 15 12 13 14 11 10 09 08 07 20 21 22 23 24 25 26 27 UTF-8 clusters: 00 01 02 03 04 05 06 26 24 22 20 19 16 17 18 15 13 11 09 07 28 29 30 31 32 33 34 35 diff --git a/tests/test3_LTR.test b/tests/test3_LTR.test index 2f395ecb..00549323 100644 --- a/tests/test3_LTR.test +++ b/tests/test3_LTR.test @@ -84,34 +84,34 @@ run[4]: start: 20 length: 1 direction: ltr script: Arab font: Amiri run[5]: start: 21 length: 7 direction: ltr script: Latn font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 19 18 17 16 15 12 13 14 11 10 09 08 07 20 21 22 23 24 25 26 27 UTF-8 clusters: 00 01 02 03 04 05 06 26 24 22 20 19 16 17 18 15 13 11 09 07 28 29 30 31 32 33 34 35 diff --git a/tests/test3_RTL.test b/tests/test3_RTL.test index 48c67b67..0a6dea63 100644 --- a/tests/test3_RTL.test +++ b/tests/test3_RTL.test @@ -84,34 +84,34 @@ run[4]: start: 6 length: 1 direction: rtl script: Latn font: Amiri run[5]: start: 0 length: 6 direction: ltr script: Latn font: Amiri Glyph information: -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 00 font: Amiri UTF-32 clusters: 21 22 23 24 25 26 27 20 19 18 17 16 15 12 13 14 11 10 09 08 07 06 00 01 02 03 04 05 UTF-8 clusters: 29 30 31 32 33 34 35 28 26 24 22 20 19 16 17 18 15 13 11 09 07 06 00 01 02 03 04 05 diff --git a/tests/test4.test b/tests/test4.test index 8f7058cb..02a2a7e8 100644 --- a/tests/test4.test +++ b/tests/test4.test @@ -55,24 +55,24 @@ Final Runs: run[0]: start: 0 length: 18 direction: rtl script: Arab font: Amiri Glyph information: -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 font: Amiri -glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 font: Amiri -glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 font: Amiri -glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 line: 00 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 line: 00 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 00 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 line: 00 font: Amiri +glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 line: 00 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 00 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 00 font: Amiri UTF-32 clusters: 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 UTF-8 clusters: 31 29 27 25 24 22 20 18 16 15 13 11 09 07 06 04 02 00 diff --git a/tests/test4_LTR.test b/tests/test4_LTR.test index a752587f..084f32df 100644 --- a/tests/test4_LTR.test +++ b/tests/test4_LTR.test @@ -55,24 +55,24 @@ Final Runs: run[0]: start: 0 length: 18 direction: rtl script: Arab font: Amiri Glyph information: -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 font: Amiri -glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 font: Amiri -glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 font: Amiri -glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 line: 00 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 line: 00 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 00 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 line: 00 font: Amiri +glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 line: 00 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 00 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 00 font: Amiri UTF-32 clusters: 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 UTF-8 clusters: 31 29 27 25 24 22 20 18 16 15 13 11 09 07 06 04 02 00 diff --git a/tests/test4_RTL.test b/tests/test4_RTL.test index bb59bef4..73280bba 100644 --- a/tests/test4_RTL.test +++ b/tests/test4_RTL.test @@ -55,24 +55,24 @@ Final Runs: run[0]: start: 0 length: 18 direction: rtl script: Arab font: Amiri Glyph information: -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 font: Amiri -glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 font: Amiri -glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 font: Amiri -glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 line: 00 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 line: 00 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 00 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 line: 00 font: Amiri +glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 line: 00 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 00 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 00 font: Amiri UTF-32 clusters: 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 UTF-8 clusters: 31 29 27 25 24 22 20 18 16 15 13 11 09 07 06 04 02 00 diff --git a/tests/test5.test b/tests/test5.test index 08ba124f..a7d18193 100644 --- a/tests/test5.test +++ b/tests/test5.test @@ -39,16 +39,16 @@ Final Runs: run[0]: start: 0 length: 10 direction: ltr script: Latn font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 936 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 936 line: 00 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 diff --git a/tests/test5_LTR.test b/tests/test5_LTR.test index 1abbdeb2..6bfdf139 100644 --- a/tests/test5_LTR.test +++ b/tests/test5_LTR.test @@ -39,16 +39,16 @@ Final Runs: run[0]: start: 0 length: 10 direction: ltr script: Latn font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 936 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 936 line: 00 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 diff --git a/tests/test5_RTL.test b/tests/test5_RTL.test index b62972ea..a3240fa8 100644 --- a/tests/test5_RTL.test +++ b/tests/test5_RTL.test @@ -39,16 +39,16 @@ Final Runs: run[0]: start: 0 length: 10 direction: ltr script: Latn font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 936 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 936 line: 00 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 diff --git a/tests/xyoffset.test b/tests/xyoffset.test index 9eea00e0..b4e6bcaf 100644 --- a/tests/xyoffset.test +++ b/tests/xyoffset.test @@ -25,11 +25,11 @@ Final Runs: run[0]: start: 0 length: 3 direction: rtl script: Arab font: Aref Ruqaa Glyph information: -glyph [4] x_offset: 783 y_offset: 50 x_advance: 0 font: Aref Ruqaa -glyph [6] x_offset: 0 y_offset: 0 x_advance: 302 font: Aref Ruqaa -glyph [4] x_offset: 909 y_offset: 1075 x_advance: 0 font: Aref Ruqaa -glyph [10] x_offset: 0 y_offset: 868 x_advance: 432 font: Aref Ruqaa -glyph [9] x_offset: 0 y_offset: 1664 x_advance: 1054 font: Aref Ruqaa +glyph [4] x_offset: 783 y_offset: 50 x_advance: 0 line: 00 font: Aref Ruqaa +glyph [6] x_offset: 0 y_offset: 0 x_advance: 302 line: 00 font: Aref Ruqaa +glyph [4] x_offset: 909 y_offset: 1075 x_advance: 0 line: 00 font: Aref Ruqaa +glyph [10] x_offset: 0 y_offset: 868 x_advance: 432 line: 00 font: Aref Ruqaa +glyph [9] x_offset: 0 y_offset: 1664 x_advance: 1054 line: 00 font: Aref Ruqaa UTF-32 clusters: 02 02 01 01 00 UTF-8 clusters: 04 04 02 02 00