ltkx

GUI toolkit for X11 (WIP)
git clone git://lumidify.org/ltkx.git
Log | Files | Refs | README | LICENSE

commit a06777c1797439f43e6b8a1026a53c5e6ac9298e
parent f3c2a8fb99e5218cdd11945d1f6e7388cc91d266
Author: lumidify <nobody@lumidify.org>
Date:   Fri, 20 Jul 2018 20:49:36 +0200

Remove several useless files

Diffstat:
Dtext/: | 249-------------------------------------------------------------------------------
Dtext/documentation/AwamiNastaliq-Features.odt | 0
Dtext/documentation/AwamiNastaliq-Features.pdf | 0
Dtext/documentation/AwamiNastaliq-TypeSample.odt | 0
Dtext/documentation/AwamiNastaliq-TypeSample.pdf | 0
Dtext/documentation/DOCUMENTATION.txt | 11-----------
Dtext/documentation/GentiumPlus-features.odt | 0
Dtext/documentation/GentiumPlus-features.pdf | 0
Dtext/test data/RandomWords.odt | 0
Dtext/test data/RandomWords.pdf | 0
Dtext/test data/RandomWords.xml | 30------------------------------
Dtext/test data/ftml_wf.xsl | 253-------------------------------------------------------------------------------
Dtext/test data/language data/Kalami-gwc_UDHR.odt | 0
Dtext/test data/language data/Kalami-gwc_UDHR.pdf | 0
Dtext/test data/language data/Khowar-khw_UDHR.odt | 0
Dtext/test data/language data/Khowar-khw_UDHR.pdf | 0
Dtext/test data/language data/Palula-phl_UDHR.odt | 0
Dtext/test data/language data/Palula-phl_UDHR.pdf | 0
Dtext/test data/language data/Saraiki-skr_UDHR.odt | 0
Dtext/test data/language data/Saraiki-skr_UDHR.pdf | 0
Dtext/test data/language data/SaraikiWords_Awami.odt | 0
Dtext/test data/language data/SaraikiWords_Awami.pdf | 0
Dtext/test data/language data/Shina-scl_UDHR.odt | 0
Dtext/test data/language data/Shina-scl_UDHR.pdf | 0
Dtext/test data/language data/Urdu-urd_UDHR.odt | 0
Dtext/test data/language data/Urdu-urd_UDHR.pdf | 0
Dtext/test data/language data/UrduWords_Awami.odt | 0
Dtext/test data/language data/UrduWords_Awami.pdf | 0
Dtext/test data/letter combinations/ftml.xsl | 251-------------------------------------------------------------------------------
Dtext/test data/letter combinations/test_allbasechars.pdf | 0
Dtext/test data/letter combinations/test_allbasechars.xml | 2324-------------------------------------------------------------------------------
Dtext/test data/letter combinations/test_basic_somediac.pdf | 0
Dtext/test data/letter combinations/test_basic_somediac.xml | 6792-------------------------------------------------------------------------------
Dtext/test data/letter combinations/test_basicforms.pdf | 0
Dtext/test data/letter combinations/test_basicforms.xml | 2626-------------------------------------------------------------------------------
35 files changed, 0 insertions(+), 12536 deletions(-)

diff --git a/text/: b/text/: @@ -1,249 +0,0 @@ -#include <stdio.h> -#include <stdlib.h> -#include <stdint.h> -#include <limits.h> -#include <X11/Xlib.h> -#include <X11/Xutil.h> -#include <harfbuzz/hb.h> -#include <harfbuzz/hb-ot.h> -#define STB_TRUETYPE_IMPLEMENTATION -#include "stb_truetype.h" /* http://nothings.org/stb/stb_truetype.h */ - -char * -ltk_load_file(const char *path, unsigned long *len) -{ - FILE *f; - char *contents; - f = fopen(path, "rb"); - fseek(f, 0, SEEK_END); - *len = ftell(f); - fseek(f, 0, SEEK_SET); - contents = malloc(*len + 1); - fread(contents, 1, *len, f); - contents[*len] = '\0'; - fclose(f); - return contents; -} - -unsigned long -ltk_blend_pixel(Display *display, Colormap colormap, XColor fg, XColor bg, double a) -{ - if (a >= 1) { - return fg.pixel; - } else if (a == 0.0) { - return bg.pixel; - } - - XColor blended; - blended.red = (int)((fg.red - bg.red) * a + bg.red); - blended.green = (int)((fg.green - bg.green) * a + bg.green); - blended.blue = (int)((fg.blue - bg.blue) * a + bg.blue); - XAllocColor(display, colormap, &blended); - - return blended.pixel; -} - -typedef struct { - stbtt_fontinfo font_info; - hb_font_t *font; -} LtkFont; - -LtkFont * -ltk_load_font(char *path) -{ - long len; - LtkFont *font = malloc(sizeof(LtkFont)); - if (!font) { - fprintf(stderr, "Out of memory!\n"); - exit(1); - } - char *contents = ltk_load_file(path, &len); - if (!stbtt_InitFont(&font->font_info, contents, 0)) - { - fprintf(stderr, "Failed to load font %s\n", path); - exit(1); - } - hb_blob_t *blob = hb_blob_create(contents, len, HB_MEMORY_MODE_READONLY, NULL, NULL); - hb_face_t *face = hb_face_create(blob, 0); - hb_blob_destroy(blob); - font->font = hb_font_create(face); - hb_face_destroy(face); - hb_ot_font_set_funcs(font->font); - return font; -} - -unsigned char * -ltk_render_text_bitmap( - uint8_t *text, - LtkFont *font, - int size, - int *width, - int *height) -{ - /* (x1*, y1*): top left corner (relative to origin and absolute) - * (x2*, y2*): bottom right corner (relative to origin and absolute) - */ - int x1, x2, y1, y2, x1_abs, x2_abs, y1_abs, y2_abs, x_abs = 0, y_abs = 0; - int x_min = INT_MAX, x_max = INT_MIN, y_min = INT_MAX, y_max = INT_MIN; - int char_w, char_h, x_off, y_off; - - int byte_offset; - int alpha; - unsigned char *bitmap; - unsigned char *char_bitmap; - hb_buffer_t *buf; - hb_glyph_info_t *ginf, *gi; - hb_glyph_position_t *gpos, *gp; - unsigned int text_len = 0; - int text_bytes = strlen(text); - if (text_bytes < 1) { - printf("WARNING: ltk_render_text: length of text is less than 1.\n"); - return ""; - } - - buf = hb_buffer_create(); - hb_buffer_set_flags(buf, HB_BUFFER_FLAG_BOT | HB_BUFFER_FLAG_EOT); - hb_buffer_add_utf8(buf, text, text_bytes, 0, text_bytes); - hb_buffer_guess_segment_properties(buf); - hb_shape(font->font, buf, NULL, 0); - ginf = hb_buffer_get_glyph_infos(buf, &text_len); - gpos = hb_buffer_get_glyph_positions(buf, &text_len); - float scale = stbtt_ScaleForMappingEmToPixels(&font->font_info, size); - - /* Calculate size of bitmap */ - for (int i = 0; i < text_len; i++) { - gi = &ginf[i]; - gp = &gpos[i]; - stbtt_GetGlyphBitmapBox(&font->font_info, gi->codepoint, scale, scale, &x1, &y1, &x2, &y2); - x1_abs = (int)(x_abs + x1 + gp->x_offset * scale); - y1_abs = (int)(y_abs + y1 - gp->y_offset * scale); - x2_abs = x1_abs + (x2 - x1); - y2_abs = y1_abs + (y2 - y1); - if (x1_abs < x_min) x_min = x1_abs; - if (y1_abs < y_min) y_min = y1_abs; - if (x2_abs > x_max) x_max = x2_abs; - if (y2_abs > y_max) y_max = y2_abs; - x_abs += (gp->x_advance * scale); - y_abs -= (gp->y_advance * scale); - } - x_abs = -x_min; - y_abs = -y_min; - *width = x_max - x_min; - *height = y_max - y_min; - /* FIXME: calloc checks for integer overflow, right? */ - /* FIXME: check if null returned */ - bitmap = calloc(*width * *width, sizeof(char)); - if (!bitmap) { - fprintf(stderr, "Can't allocate memory for bitmap!\n"); - exit(1); - } - for (int i = 0; i < text_len; i++) { - gi = &ginf[i]; - gp = &gpos[i]; - stbtt_GetGlyphBitmapBox(&font->font_info, gi->codepoint, scale, scale, &x1, &y1, &x2, &y2); - char_bitmap = stbtt_GetGlyphBitmap(&font->font_info, scale, scale, gi->codepoint, &char_w, &char_h, &x_off, &y_off); - - x1_abs = (int)(x_abs + x1 + gp->x_offset * scale); - y1_abs = (int)(y_abs + y1 - gp->y_offset * scale); - for (int k = 0; k < char_h; k++) - { - for (int j = 0; j < char_w; j++) - { - byte_offset = (y1_abs + k) * *width + x1_abs + j; - alpha = bitmap[byte_offset] + char_bitmap[k * char_w + j]; - if (alpha < 0) printf("%d|", alpha); - /* Cap at 255 so char doesn't overflow */ - bitmap[byte_offset] = alpha > 255 ? 255 : alpha; - } - } - free(char_bitmap); - - x_abs += gp->x_advance * scale; - y_abs -= gp->y_advance * scale; - } - return bitmap; -} - -Pixmap -ltk_render_text( - Display *dpy, - Window window, - GC gc, - XColor fg, - XColor bg, - Colormap colormap, - char *bitmap, - int width, - int height) -{ - XWindowAttributes attrs; - XGetWindowAttributes(dpy, window, &attrs); - int depth = attrs.depth; - Pixmap pix = XCreatePixmap(dpy, window, width, height, depth); - XSetForeground(dpy, gc, bg.pixel); - for (int i = 0; i < height; i++) { - for (int j = 0; j < width; j++) { - XSetForeground(dpy, gc, ltk_blend_pixel(dpy, colormap, fg, bg, bitmap[i * width + j] / 255.0)); - XDrawPoint(dpy, pix, gc, j, i); - } - } - return pix; -} - -int main(int argc, char *argv[]) -{ - Display *display; - int screen; - Window window; - GC gc; - - unsigned long black, white; - Colormap colormap; - display = XOpenDisplay((char *)0); - screen = DefaultScreen(display); - colormap = DefaultColormap(display, screen); - black = BlackPixel(display, screen); - white = WhitePixel(display, screen); - window = XCreateSimpleWindow(display, DefaultRootWindow(display), 0, 0, 1366, 512, 0, black, white); - XSetStandardProperties(display, window, "Random Window", NULL, None, NULL, 0, NULL); - XSelectInput(display, window, ExposureMask|ButtonPressMask|KeyPressMask); - gc = XCreateGC(display, window, 0, 0); - XSetBackground(display, gc, black); - XSetForeground(display, gc, black); - XClearWindow(display, window); - XMapRaised(display, window); - XColor c1, c2; - XParseColor(display, colormap, "#FFFFFF", &c1); - XParseColor(display, colormap, "#FF0000", &c2); - XAllocColor(display, colormap, &c1); - XAllocColor(display, colormap, &c2); - - LtkFont *font = ltk_load_font("NotoNastaliqUrdu-Regular.ttf"); - int w, h; - unsigned char *bitmap = ltk_render_text_bitmap("چشمہ میڈیا", font, 256, &w, &h); - Pixmap pix = ltk_render_text(display, window, gc, c1, c2, colormap, bitmap, w, h); - XCopyArea(display, pix, window, gc, 0, 0, w, h, 0, 0); - - XEvent event; - KeySym key; - char text[255]; - - while(1) - { - XNextEvent(display, &event); - if (event.type == KeyPress && XLookupString(&event.xkey, text, 255, &key, 0) == 1) - { - XCopyArea(display, pix, window, gc, 0, 0, w, h, 0, 0); - if (text[0] == 'q') - { - XFreeGC(display, gc); - XFreeColormap(display, colormap); - XDestroyWindow(display, window); - XCloseDisplay(display); - exit(0); - } - } - } - - return 0; -} diff --git a/text/documentation/AwamiNastaliq-Features.odt b/text/documentation/AwamiNastaliq-Features.odt Binary files differ. diff --git a/text/documentation/AwamiNastaliq-Features.pdf b/text/documentation/AwamiNastaliq-Features.pdf Binary files differ. diff --git a/text/documentation/AwamiNastaliq-TypeSample.odt b/text/documentation/AwamiNastaliq-TypeSample.odt Binary files differ. diff --git a/text/documentation/AwamiNastaliq-TypeSample.pdf b/text/documentation/AwamiNastaliq-TypeSample.pdf Binary files differ. diff --git a/text/documentation/DOCUMENTATION.txt b/text/documentation/DOCUMENTATION.txt @@ -1,11 +0,0 @@ -DOCUMENTATION -Gentium Plus -======================== - - -This file describes the documentation files included with the Gentium Plus font family. This information should be distributed along with the Gentium Plus fonts and any derivative works. - -Primary documentation for the Gentium Plus font family is on the Gentium website (http://scripts.sil.org/Gentium). - -The GentiumPlus-features.pdf file illustrates the use of OpenType and Graphite features. -The GentiumPlus-features.odt file illustrates the use of OpenType and Graphite features (source file for the pdf). diff --git a/text/documentation/GentiumPlus-features.odt b/text/documentation/GentiumPlus-features.odt Binary files differ. diff --git a/text/documentation/GentiumPlus-features.pdf b/text/documentation/GentiumPlus-features.pdf Binary files differ. diff --git a/text/test data/RandomWords.odt b/text/test data/RandomWords.odt Binary files differ. diff --git a/text/test data/RandomWords.pdf b/text/test data/RandomWords.pdf Binary files differ. diff --git a/text/test data/RandomWords.xml b/text/test data/RandomWords.xml @@ -1,30 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<?xml-stylesheet type="text/xsl" href="ftml_wf.xsl"?> -<ftml version="1.0"> - <head> - <columns class="2%" comment="2%" label="10%" string="5%"/> - <description>Test of Awami - Letter Coverage</description> - <fontscale>100</fontscale> - <fontsrc>local('Awami Nastaliq Beta3'), url(Awami_beta3.ttf)</fontsrc> - <title>Test of Awami - Random Words</title> - <styles><style feats=' ' name="default"/></styles> - </head> - <testgroup label="Group 1"> - <test label="word 1" rtl="True"><string>&#x0622;&#x062A;&#x0650;&#x0634;&#x0650;&#x06CC;&#x0646;</string><comment></comment></test> - <test label="word 2" rtl="True"><string>&#x0622;&#x0631;&#x0627;&#x0645;&#x06AF;&#x0627;&#x06C1;&#x0648;&#x06BA;</string></test> - <test label="word 3" rtl="True"><string>&#x0633;&#x0628;&#x0651;&#x06A9;&#x06CC;</string></test> - <test label="word 4" rtl="True"><string>&#x0633;&#x06D2;&#x0635;&#x064F;&#x062D;&#x0628;&#x062A;</string></test> - <test label="word 5" rtl="True"><string>&#x0634;&#x062E;&#x0635;&#x0650;&#x06CC;&#x0645;&#x0627;&#x06C1;</string></test> - <test label="word 6" rtl="True"><string>&#x0637;&#x06CC;&#x062A;&#x06BE;</string></test> - <test label="word 7" rtl="True"><string>&#x0639;&#x0648;&#x0641;&#x0644;</string></test> - <test label="word 8" rtl="True"><string>&#x0639;&#x064E;&#x0645;&#x0627;&#x0644;&#x06CC;&#x0642;</string></test> - <test label="word 9" rtl="True"><string>&#x0639;&#x0650;&#x0645;&#x0651;&#x06CC;&#x06C1;&#x064F;&#x0648;&#x062F;</string></test> - <test label="word 10" rtl="True"><string>&#x0648;&#x0627;&#x0633;&#x0637;&#x06C1;</string></test> - <test label="word 11" rtl="True"><string>&#x067E;&#x064E;&#x06BE;&#x06CC;&#x0644;&#x0627;&#x0626;&#x06CC;</string></test> - <test label="word 12" rtl="True"><string>&#x067E;&#x064E;&#x06CC;&#x062F;&#x0627;&#x06A9;&#x0631;</string></test> - <test label="word 13" rtl="True"><string>&#x06CC;&#x06C1;&#x064F;&#x0648;&#x0633;&#x0641;&#x0637;</string></test> - <test label="word 14" rtl="True"><string>&#x0627;&#x0686;&#x06BE;&#x0627;&#x0651;&#x0644;&#x06AF;&#x062A;&#x0627;</string></test> - <test label="word 15" rtl="True"><string>&#x0628;&#x063A;&#x064E;&#x06CC;&#x0631;&#x06A9;&#x0644;&#x0627;&#x0645;</string></test> - <test label="word 16" rtl="True"><string>&#x0633;&#x0645;&#x062F;&#x06BE;&#x06CC;&#x0627;&#x0646;&#x06C1;</string></test> - </testgroup> -</ftml> diff --git a/text/test data/ftml_wf.xsl b/text/test data/ftml_wf.xsl @@ -1,253 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> -<xsl:output method="html" encoding="utf-8"/> - -<!-- -This XSL stylesheet generates tables from a group of test strings, showing a waterfall at multiple sizes. -The top-level test group generates a section with a label and table. -Each test is shown in a row in the table, at four successive sizes. -The final cell in the row is the first test's comment. - -The data should look something like: - -<ftml> - <head> - <columns class="2%" comment="2%" label="10%" string="5%"/> - <description>Page Title</description> - <fontscale>100</fontscale> - <fontsrc>local('Font Name'), url(filefile.ttf)</fontsrc> - <title>Page Title</title> - <styles><style feats=' ' name="default"/></styles> - </head> - <testgroup label="Group 1"> - <test label="word 1" rtl="True"><string>test string 1</string><comment>This is a comment.</comment></test> - <test label="word 2" rtl="True"><string>test string 2</string></test> - ... ---> - -<!-- set variables from head element --> -<xsl:variable name="width-class" select="/ftml/head/columns/@class"/> -<xsl:variable name="width-comment" select="/ftml/head/columns/@comment"/> -<xsl:variable name="width-label" select="/ftml/head/columns/@label"/> -<xsl:variable name="width-string" select="/ftml/head/columns/@string"/> -<xsl:variable name="font-scale" select="concat(/ftml/head/fontscale, substring('100', 1 div not(/ftml/head/fontscale)))"/> - -<!-- - Process the root node to construct the html page ---> -<xsl:template match="/"> -<html> - <head> - <title> - <xsl:value-of select="ftml/head/title"/> - </title> - <meta charset="utf-8"/> - <meta name="description"> - <xsl:attribute name="content"> - <xsl:value-of select="ftml/head/description"/> - </xsl:attribute> - </meta> - <style> - body, td { font-family: sans-serif; } - @font-face {font-family: TestFont; src: <xsl:value-of select="ftml/head/fontsrc"/>; } - th { text-align: left; } - table { width: 100%; table-layout: fixed; } - table,th,td { padding: 20px; border: 1px solid #D8D8D8; border-collapse: collapse; } -<xsl:if test="$width-label != ''"> - .label { width: <xsl:value-of select="$width-label"/> } -</xsl:if> -<xsl:if test="$width-string != ''"> - .string {font-family: TestFont;} -</xsl:if> -<xsl:if test="$width-comment != ''"> - .comment {width: <xsl:value-of select="$width-comment"/>} -</xsl:if> -<xsl:if test="$width-class != ''"> - .comment {width: <xsl:value-of select="$width-class"/>} -</xsl:if> - .dim {color: silver;} - .bright {color: red;} - <!-- NB: Uncomment the following to build separate css styles for each item in /ftml/head/styles --> - <!-- <xsl:apply-templates select="/ftml/head/styles/*" /> --> - </style> - </head> - - <body> - <h1><xsl:value-of select="/ftml/head/title"/></h1> - <xsl:apply-templates select="/ftml/testgroup"/> - </body> -</html> -</xsl:template> - -<!-- - Build CSS style for FTML style element ---> -<xsl:template match="style"> - .<xsl:value-of select="@name"/> { - font-family: TestFont; font-size: <xsl:value-of select="$font-scale"/>%; -<xsl:if test="@feats"> - -moz-font-feature-settings: <xsl:value-of select="@feats"/>; - -ms-font-feature-settings: <xsl:value-of select="@feats"/>; - -webkit-font-feature-settings: <xsl:value-of select="@feats"/>; - font-feature-settings: <xsl:value-of select="@feats"/> ; -</xsl:if> - } -</xsl:template> - -<!-- - Process a testgroup, emitting a table containing all test records from the group ---> -<xsl:template match="testgroup"> - <h2><xsl:value-of select="@label"/></h2> - <table> - <tbody> - <xsl:apply-templates/> - </tbody> - </table> -</xsl:template> - -<!-- - Process a single test record, emitting a table row. ---> -<xsl:template match="test"> -<tr> - <xsl:if test="@background"> - <xsl:attribute name="style">background-color: <xsl:value-of select="@background"/>;</xsl:attribute> - </xsl:if> - <xsl:if test="$width-label != ''"> - <!-- emit label column --> - <td class="label"> - <xsl:value-of select="@label"/> - </td> - </xsl:if> - <xsl:if test="$width-string != ''"> - <!-- emit test data column --> - <xsl:call-template name="cell"> - <xsl:with-param name="scale">1</xsl:with-param> - </xsl:call-template> - <xsl:call-template name="cell"> - <xsl:with-param name="scale">2</xsl:with-param> - </xsl:call-template> - <xsl:call-template name="cell"> - <xsl:with-param name="scale">5</xsl:with-param> - </xsl:call-template> - <xsl:call-template name="cell"> - <xsl:with-param name="scale">10</xsl:with-param> - </xsl:call-template> - </xsl:if> - <xsl:if test="$width-comment != ''"> - <td class="comment"> - <!-- emit comment --> - <xsl:value-of select="comment"/> - </td> - </xsl:if> - <xsl:if test="$width-class != ''"> - <td class="class"> - <!-- emit class --> - <xsl:value-of select="@class"/> - </td> - </xsl:if> -</tr> -</xsl:template> - -<!-- - Emit html for one cell ---> -<xsl:template name="cell"> - <xsl:param name="scale">1</xsl:param> <!-- 1 = default --> - - <td class="string"> <!-- assume default string class --> - <xsl:variable name="styleName" select="@class"/> - <xsl:if test="$styleName != ''"> - <!-- emit lang attribute --> - <xsl:apply-templates select="/ftml/head/styles/style[@name=$styleName]" mode="getLang"/> - </xsl:if> - <xsl:if test="@background"> - <xsl:attribute name="style">background-color: <xsl:value-of select="@background"/>;</xsl:attribute> - </xsl:if> - <xsl:if test="@rtl='True' "> - <xsl:attribute name="dir">RTL</xsl:attribute> - </xsl:if> - <!-- emit style attribute with features and font-size --> - <xsl:attribute name="style"> - <xsl:if test="$styleName != ''"> - <xsl:apply-templates select="/ftml/head/styles/style[@name=$styleName]" mode="getFeats"/> - </xsl:if> - font-size: <xsl:value-of select="$scale * $font-scale"/>%; - width: - <xsl:choose> - <xsl:when test="contains($width-label,'%')"> - <xsl:value-of select="$scale * substring-before($width-string,'%')"/>%; - </xsl:when> - <!-- would need other xsl:when elements to handle other suffixes: em, pt, etc. --> - <xsl:otherwise> - <xsl:value-of select="$scale * $width-string"/>; - </xsl:otherwise> - </xsl:choose> - </xsl:attribute> - - <!-- and finally the test data --> - <xsl:choose> - <!-- if the test has an <em> marker, the use a special template --> - <xsl:when test="string[em]"> - <xsl:apply-templates select="string" mode="hasEM"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="string"/> - </xsl:otherwise> - </xsl:choose> - </td> -</xsl:template> - -<!-- - Emit html lang attribute. ---> -<xsl:template match="style" mode="getLang"> - <xsl:if test="@lang"> - <xsl:attribute name="lang"> - <xsl:value-of select="@lang"/> - </xsl:attribute> - </xsl:if> -</xsl:template> - -<!-- - Emit html feature-settings (to add to style attribute). ---> -<xsl:template match="style" mode="getFeats"> - <xsl:if test="@feats"> --moz-font-feature-settings: <xsl:value-of select="@feats"/>; --ms-font-feature-settings: <xsl:value-of select="@feats"/>; --webkit-font-feature-settings: <xsl:value-of select="@feats"/>; -font-feature-settings: <xsl:value-of select="@feats"/>; - </xsl:if> -</xsl:template> - -<!-- - Suppress all text nodes except those we really want. ---> -<xsl:template match="text()"/> - -<!-- - for test strings that have no <em> children, emit text nodes without any adornment ---> -<xsl:template match="string/text()"> - <xsl:value-of select="."/> -</xsl:template> - -<!-- - for test strings that have <em> children, emit text nodes dimmed ---> -<xsl:template match="string/text()" mode="hasEM"> - <span class="dim"><xsl:value-of select="."/></span> -</xsl:template> - -<!-- - for <em> children of test strings, emit the text nodes with no adornment ---> -<xsl:template match="em/text()" mode="hasEM"> - <!-- <span class="bright"><xsl:value-of select="."/></span> --> - <xsl:value-of select="."/> -</xsl:template> - -</xsl:stylesheet> - diff --git a/text/test data/language data/Kalami-gwc_UDHR.odt b/text/test data/language data/Kalami-gwc_UDHR.odt Binary files differ. diff --git a/text/test data/language data/Kalami-gwc_UDHR.pdf b/text/test data/language data/Kalami-gwc_UDHR.pdf Binary files differ. diff --git a/text/test data/language data/Khowar-khw_UDHR.odt b/text/test data/language data/Khowar-khw_UDHR.odt Binary files differ. diff --git a/text/test data/language data/Khowar-khw_UDHR.pdf b/text/test data/language data/Khowar-khw_UDHR.pdf Binary files differ. diff --git a/text/test data/language data/Palula-phl_UDHR.odt b/text/test data/language data/Palula-phl_UDHR.odt Binary files differ. diff --git a/text/test data/language data/Palula-phl_UDHR.pdf b/text/test data/language data/Palula-phl_UDHR.pdf Binary files differ. diff --git a/text/test data/language data/Saraiki-skr_UDHR.odt b/text/test data/language data/Saraiki-skr_UDHR.odt Binary files differ. diff --git a/text/test data/language data/Saraiki-skr_UDHR.pdf b/text/test data/language data/Saraiki-skr_UDHR.pdf Binary files differ. diff --git a/text/test data/language data/SaraikiWords_Awami.odt b/text/test data/language data/SaraikiWords_Awami.odt Binary files differ. diff --git a/text/test data/language data/SaraikiWords_Awami.pdf b/text/test data/language data/SaraikiWords_Awami.pdf Binary files differ. diff --git a/text/test data/language data/Shina-scl_UDHR.odt b/text/test data/language data/Shina-scl_UDHR.odt Binary files differ. diff --git a/text/test data/language data/Shina-scl_UDHR.pdf b/text/test data/language data/Shina-scl_UDHR.pdf Binary files differ. diff --git a/text/test data/language data/Urdu-urd_UDHR.odt b/text/test data/language data/Urdu-urd_UDHR.odt Binary files differ. diff --git a/text/test data/language data/Urdu-urd_UDHR.pdf b/text/test data/language data/Urdu-urd_UDHR.pdf Binary files differ. diff --git a/text/test data/language data/UrduWords_Awami.odt b/text/test data/language data/UrduWords_Awami.odt Binary files differ. diff --git a/text/test data/language data/UrduWords_Awami.pdf b/text/test data/language data/UrduWords_Awami.pdf Binary files differ. diff --git a/text/test data/letter combinations/ftml.xsl b/text/test data/letter combinations/ftml.xsl @@ -1,251 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> -<xsl:output method="html" encoding="utf-8"/> - -<!-- -This XSL stylesheet generates tables from a group of test strings. -The top-level test group generates a section with a label and table. -Each second-level testgroup is a single line of the of the table; the row label is taken from that -testgroup label. -The testgroup's test items are successive cells in the row. -The final cell is the first test's comment, which really functions as a comment for the group. - -The data should look something like: - -<ftml> - <head> - <columns comment="15%" label="20%" string="15%"/> - <description>Page Title</description> - <fontscale>200</fontscale> - <fontsrc>local('Font Name'), url(fontfile.ttf)</fontsrc> - <title>Page Title</title> - <styles><style feats=' ' name="default"/></styles> - </head> - <testgroup label="Section 1"> - <testgroup label="row 1" comment="comment 1"> - <test rtl="True"> - <comment>This is a comment - for the group, really.</comment> - <string><em>test1</em></string> - </test> - <test rtl="True"><string>pre-context<em>test1</em></string></test> - <test rtl="True" background="#cfcfcf"><string></string></test> - <test rtl="True" background="#cfcfcf"><string></string></test> - </testgroup> - <testgroup label="row 2"> - <test rtl="True"><string><em>test2</em></string></test> - <test rtl="True"><string>pre-context<em>test2</em></string></test> - <test rtl="True"><string><em>test2</em>y</string>post-context</test> - <test rtl="True"><string>pre-context<em>test2</em>post-context</string></test> - </testgroup> - </testgroup> - ... ---> - -<!-- set variables from head element --> -<xsl:variable name="width-comment" select="/ftml/head/columns/@comment"/> -<xsl:variable name="width-label" select="/ftml/head/columns/@label"/> -<xsl:variable name="width-string" select="/ftml/head/columns/@string"/> -<xsl:variable name="font-scale" select="concat(/ftml/head/fontscale, substring('100', 1 div not(/ftml/head/fontscale)))"/> - -<!-- - Process the root node to construct the html page. ---> -<xsl:template match="/"> -<html> - <head> - <title> - <xsl:value-of select="ftml/head/title"/> - </title> - <meta charset="utf-8"/> - <meta name="description"> - <xsl:attribute name="content"> - <xsl:value-of select="ftml/head/description"/> - </xsl:attribute> - </meta> - <style> - body, td { font-family: sans-serif; } - @font-face {font-family: TestFont; src: <xsl:value-of select="ftml/head/fontsrc"/>; } - th { text-align: left; } - table { width: 100%; table-layout: fixed; } - table,th,td { padding: 2px; border: 1px solid #D8D8D8; border-collapse: collapse; } -<xsl:if test="$width-label != ''"> - .label { width: <xsl:value-of select="$width-label"/> } -</xsl:if> -<xsl:if test="$width-string != ''"> - .string {width: <xsl:value-of select="$width-string"/>; font-family: TestFont; font-size: <xsl:value-of select="$font-scale"/>%;} -</xsl:if> -<xsl:if test="$width-comment != ''"> - .comment {width: <xsl:value-of select="$width-comment"/>} -</xsl:if> - .dim {color: silver;} - .bright {color: red;} - <!-- NB: Uncomment the following to build separate css styles for each item in /ftml/head/styles --> - <!-- <xsl:apply-templates select="/ftml/head/styles/*" /> --> - </style> - </head> - - <body> - <!-- TOC anchor --> - <a><xsl:attribute name="name">toc</xsl:attribute></a> - - <h1><xsl:value-of select="/ftml/head/title"/></h1> - - <!-- Generate table of contents --> - <ul> - <xsl:apply-templates select="/ftml/testgroup" mode="toc"/> - </ul> - - <xsl:apply-templates select="/ftml/testgroup" /> - </body> -</html> -</xsl:template> - -<!-- - Build CSS style for FTML style element. ---> -<xsl:template match="style"> - .<xsl:value-of select="@name"/> { - font-family: TestFont; font-size: <xsl:value-of select="$font-scale"/>%; -<xsl:if test="@feats"> - -moz-font-feature-settings: <xsl:value-of select="@feats"/>; - -ms-font-feature-settings: <xsl:value-of select="@feats"/>; - -webkit-font-feature-settings: <xsl:value-of select="@feats"/>; - font-feature-settings: <xsl:value-of select="@feats"/> ; -</xsl:if> - } -</xsl:template> - - -<!-- - Generate a table-of-contents link for the testgroup. ---> -<xsl:template match="ftml/testgroup" mode="toc"> - <li><a> - <xsl:attribute name="href">#section<xsl:value-of select="position()"/></xsl:attribute> - <xsl:value-of select="@label" /> - </a></li> -</xsl:template> - - -<!-- - Process a top level testgroup, emitting a table (containing a row for each testgroup subelement). ---> -<xsl:template match="/ftml/testgroup"> - <!-- TOC anchor --> - <a><xsl:attribute name="name">section<xsl:value-of select="position()"/></xsl:attribute></a> - - <h2><xsl:value-of select="@label"/></h2> - <p><a><xsl:attribute name="href">#toc</xsl:attribute>[Table of Contents]</a></p> - <table> - <tbody> - <xsl:apply-templates/> - </tbody> - </table> -</xsl:template> - -<!-- - Process a second level testgroup record, emitting a table row (containing a cell for each test subelement). - Pick up comment and class from first test subelement. ---> -<xsl:template match="/ftml/testgroup/testgroup"> -<tr> - <xsl:if test="@background"> - <xsl:attribute name="style">background-color: <xsl:value-of select="@background"/>;</xsl:attribute> - </xsl:if> - <xsl:if test="$width-label != ''"> - <!-- emit label column --> - <td class="label"> - <xsl:value-of select="@label"/> - </td> - </xsl:if> - - <xsl:apply-templates/> <!-- generate the test string cells --> - - <xsl:if test="$width-comment != ''"> - <td class="comment"> - <!-- emit comment concatenated with class (if not default) --> - <xsl:value-of select="test/comment"/> - <xsl:if test="test/@class"> (<xsl:value-of select="test/@class"/>)</xsl:if> - </td> - </xsl:if> -</tr> -</xsl:template> - -<!-- - Emit html lang and font-feature-settings for a test ---> -<xsl:template match="style" mode="getLang"> - <xsl:if test="@lang"> - <xsl:attribute name="lang"> - <xsl:value-of select="@lang"/> - </xsl:attribute> - </xsl:if> - <xsl:if test="@feats"> - <xsl:attribute name="style"> --moz-font-feature-settings: <xsl:value-of select="@feats"/>; --ms-font-feature-settings: <xsl:value-of select="@feats"/>; --webkit-font-feature-settings: <xsl:value-of select="@feats"/>; -font-feature-settings: <xsl:value-of select="@feats"/>;</xsl:attribute> - </xsl:if> -</xsl:template> - -<!-- - Process a single test record, emitting a table cell. ---> -<xsl:template match="test"> - <xsl:if test="$width-string != ''"> - <!-- emit test data column --> - <td class="string"> <!-- assume default string class --> - <xsl:if test="@class"> - <!-- emit features and lang attributes --> - <xsl:variable name="styleName" select="@class"/> - <xsl:apply-templates select="/ftml/head/styles/style[@name=$styleName]" mode="getLang"/> - </xsl:if> - <xsl:if test="@rtl='True' "> - <xsl:attribute name="dir">RTL</xsl:attribute> - </xsl:if> - <xsl:if test="@background"> - <xsl:attribute name="style">background-color: <xsl:value-of select="@background"/>;</xsl:attribute> - </xsl:if> - <!-- and finally the test data --> - <xsl:choose> - <!-- if the test has an <em> marker, the use a special template --> - <xsl:when test="string[em]"> - <xsl:apply-templates select="string" mode="hasEM"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="string"/> - </xsl:otherwise> - </xsl:choose> - </td> - </xsl:if> -</xsl:template> - -<!-- - Suppress all text nodes except those we really want. ---> -<xsl:template match="text()"/> - -<!-- - for test strings that have no <em> children, emit text nodes without any adornment ---> -<xsl:template match="string/text()"> - <xsl:value-of select="."/> -</xsl:template> - -<!-- - for test strings that have <em> children, emit text nodes dimmed ---> -<xsl:template match="string/text()" mode="hasEM"> - <span class="dim"><xsl:value-of select="."/></span> -</xsl:template> - -<!-- - for <em> children of test strings, emit the text nodes with no adornment ---> -<xsl:template match="em/text()" mode="hasEM"> - <!-- <span class="bright"><xsl:value-of select="."/></span> --> - <xsl:value-of select="."/> -</xsl:template> - -</xsl:stylesheet> diff --git a/text/test data/letter combinations/test_allbasechars.pdf b/text/test data/letter combinations/test_allbasechars.pdf Binary files differ. diff --git a/text/test data/letter combinations/test_allbasechars.xml b/text/test data/letter combinations/test_allbasechars.xml @@ -1,2324 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<?xml-stylesheet type="text/xsl" href="ftml.xsl"?> -<ftml version="1.0"> - <head> - <columns comment="15%" label="20%" string="15%"/> - <description>Test of All Awami Base Characters</description> - <fontscale>200</fontscale> - <fontsrc>local('Awami Nastaliq Beta3'), url(Awami_beta3.ttf)</fontsrc> - <title>Test of All Awami Base Characters</title> - <styles><style feats=' ' name="default"/></styles> - </head> - <testgroup label="Alef form sequences"> - <testgroup label="tteheh + alef"> - <test rtl="True"><string><em>&#x067A;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x067A;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hahTah2smd + alef"> - <test rtl="True"><string><em>&#x076F;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x076F;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + alef"> - <test rtl="True"><string><em>&#x0633;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="dadDotBelow + alef"> - <test rtl="True"><string><em>&#x06FB;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06FB;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + alef"> - <test rtl="True"><string><em>&#x0637;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ghain + alef"> - <test rtl="True"><string><em>&#x063A;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + alef"> - <test rtl="True"><string><em>&#x0641;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + alef"> - <test rtl="True"><string><em>&#x0644;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + alef"> - <test rtl="True"><string><em>&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ngoeh + alef"> - <test rtl="True"><string><em>&#x06B1;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B1;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + alef"> - <test rtl="True"><string><em>&#x06BE;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="arabicHeh + alef"> - <test rtl="True"><string><em>&#x0647;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0647;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Beh form sequences"> - <testgroup label="beh + teh"> - <test rtl="True"><string><em>&#x0628;&#x062A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x062A;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x062A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x062A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hah + peh"> - <test rtl="True"><string><em>&#x062D;&#x067E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062D;&#x067E;</em></string></test> - <test rtl="True"><string><em>&#x062D;&#x067E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062D;&#x067E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sheen + peh"> - <test rtl="True"><string><em>&#x0634;&#x067E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0634;&#x067E;</em></string></test> - <test rtl="True"><string><em>&#x0634;&#x067E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0634;&#x067E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="dad + theh"> - <test rtl="True"><string><em>&#x0636;&#x062B;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x062B;</em></string></test> - <test rtl="True"><string><em>&#x0636;&#x062B;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x062B;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + beh"> - <test rtl="True"><string><em>&#x0637;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ghain + beh"> - <test rtl="True"><string><em>&#x063A;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x063A;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + beh"> - <test rtl="True"><string><em>&#x0641;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lamSmallV + beh"> - <test rtl="True"><string><em>&#x06B5;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B5;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x06B5;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B5;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + beh"> - <test rtl="True"><string><em>&#x0645;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gueh + beh"> - <test rtl="True"><string><em>&#x06B3;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B3;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x06B3;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B3;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + beh"> - <test rtl="True"><string><em>&#x06BE;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="arabicHeh + beh"> - <test rtl="True"><string><em>&#x0647;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0647;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0647;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0647;&#x0628;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Jeem form sequences"> - <testgroup label="theh + jeem"> - <test rtl="True"><string><em>&#x062B;&#x062C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062B;&#x062C;</em></string></test> - <test rtl="True"><string><em>&#x062B;&#x062C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062B;&#x062C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="khah + tcheh"> - <test rtl="True"><string><em>&#x062E;&#x0686;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062E;&#x0686;</em></string></test> - <test rtl="True"><string><em>&#x062E;&#x0686;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062E;&#x0686;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seenDotDot + tcheh"> - <test rtl="True"><string><em>&#x069A;&#x0686;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x069A;&#x0686;</em></string></test> - <test rtl="True"><string><em>&#x069A;&#x0686;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x069A;&#x0686;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="dadDotBelow + dyeh"> - <test rtl="True"><string><em>&#x06FB;&#x0684;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06FB;&#x0684;</em></string></test> - <test rtl="True"><string><em>&#x06FB;&#x0684;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06FB;&#x0684;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="zah + tcheheh"> - <test rtl="True"><string><em>&#x0638;&#x0687;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x0687;</em></string></test> - <test rtl="True"><string><em>&#x0638;&#x0687;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x0687;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + hahHamza"> - <test rtl="True"><string><em>&#x0639;&#x0681;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0681;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0681;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0681;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh3dots + hah3dots"> - <test rtl="True"><string><em>&#x06A5;&#x0685;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x0685;</em></string></test> - <test rtl="True"><string><em>&#x06A5;&#x0685;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x0685;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + hahTah"> - <test rtl="True"><string><em>&#x0644;&#x076E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x076E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x076E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x076E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + hahTah2smd"> - <test rtl="True"><string><em>&#x0645;&#x076F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x076F;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x076F;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x076F;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ngoeh + jeem"> - <test rtl="True"><string><em>&#x06B1;&#x062C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B1;&#x062C;</em></string></test> - <test rtl="True"><string><em>&#x06B1;&#x062C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B1;&#x062C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + hah"> - <test rtl="True"><string><em>&#x06BE;&#x062D;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x062D;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x062D;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x062D;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehHamza + khah"> - <test rtl="True"><string><em>&#x06C2;&#x062E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C2;&#x062E;</em></string></test> - <test rtl="True"><string><em>&#x06C2;&#x062E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C2;&#x062E;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Dal form sequences"> - <testgroup label="beeh + dal"> - <test rtl="True"><string><em>&#x067B;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x067B;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + ddal"> - <test rtl="True"><string><em>&#x062C;&#x0688;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0688;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sheen + dal2dotsVTah"> - <test rtl="True"><string><em>&#x0634;&#x0759;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0634;&#x0759;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + dal4dots"> - <test rtl="True"><string><em>&#x0635;&#x0690;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0690;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="zah + thal"> - <test rtl="True"><string><em>&#x0638;&#x0630;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x0630;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + dalDotTah"> - <test rtl="True"><string><em>&#x0639;&#x068B;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x068B;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh3dots + dalRing"> - <test rtl="True"><string><em>&#x06A5;&#x0689;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x0689;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lamBar + dal"> - <test rtl="True"><string><em>&#x076A;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x076A;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + thal"> - <test rtl="True"><string><em>&#x0645;&#x0630;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0630;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kafRing + dalDotTah"> - <test rtl="True"><string><em>&#x06AB;&#x068B;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AB;&#x068B;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + dal2dotsVTah"> - <test rtl="True"><string><em>&#x06BE;&#x0759;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0759;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehHamza + dal4dots"> - <test rtl="True"><string><em>&#x06C2;&#x0690;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C2;&#x0690;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Reh form sequences"> - <testgroup label="tehRing + reh"> - <test rtl="True"><string><em>&#x067C;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x067C;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hah + rreh"> - <test rtl="True"><string><em>&#x062D;&#x0691;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062D;&#x0691;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seenDotDot + rehDotBelow"> - <test rtl="True"><string><em>&#x069A;&#x0694;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x069A;&#x0694;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="dad + reh2dots"> - <test rtl="True"><string><em>&#x0636;&#x0697;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x0697;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + rehHamza"> - <test rtl="True"><string><em>&#x0637;&#x076C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x076C;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ghain + rehTah2smd"> - <test rtl="True"><string><em>&#x063A;&#x0771;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x0771;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + reh"> - <test rtl="True"><string><em>&#x0641;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lamSmallV + rreh"> - <test rtl="True"><string><em>&#x06B5;&#x0691;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B5;&#x0691;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + rehDotBelow"> - <test rtl="True"><string><em>&#x0645;&#x0694;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0694;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + reh2dots"> - <test rtl="True"><string><em>&#x06A9;&#x0697;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0697;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + rehHamza"> - <test rtl="True"><string><em>&#x06BE;&#x076C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x076C;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + rehTah2smd"> - <test rtl="True"><string><em>&#x06C1;&#x0771;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0771;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Seen form sequences"> - <testgroup label="tteh + seen"> - <test rtl="True"><string><em>&#x0679;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0679;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0679;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0679;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="dyeh + seen2dotsV"> - <test rtl="True"><string><em>&#x0684;&#x076D;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0684;&#x076D;</em></string></test> - <test rtl="True"><string><em>&#x0684;&#x076D;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0684;&#x076D;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen4dots + seen2dotsV"> - <test rtl="True"><string><em>&#x075C;&#x076D;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x075C;&#x076D;</em></string></test> - <test rtl="True"><string><em>&#x075C;&#x076D;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x075C;&#x076D;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + seen"> - <test rtl="True"><string><em>&#x0635;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + seen2dotsV"> - <test rtl="True"><string><em>&#x0637;&#x076D;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x076D;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x076D;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x076D;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ghain + sheen"> - <test rtl="True"><string><em>&#x063A;&#x0634;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x0634;</em></string></test> - <test rtl="True"><string><em>&#x063A;&#x0634;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x0634;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + seenTah2smd"> - <test rtl="True"><string><em>&#x0641;&#x0770;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0770;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0770;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0770;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lamBar + seenDotDot"> - <test rtl="True"><string><em>&#x076A;&#x069A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x076A;&#x069A;</em></string></test> - <test rtl="True"><string><em>&#x076A;&#x069A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x076A;&#x069A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + seen3dots3dots"> - <test rtl="True"><string><em>&#x0645;&#x069C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x069C;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x069C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x069C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kafRing + seen4dots"> - <test rtl="True"><string><em>&#x06AB;&#x075C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AB;&#x075C;</em></string></test> - <test rtl="True"><string><em>&#x06AB;&#x075C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AB;&#x075C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + seen"> - <test rtl="True"><string><em>&#x06BE;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + seen2dotsV"> - <test rtl="True"><string><em>&#x06C1;&#x076D;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x076D;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x076D;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x076D;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Sad form sequences"> - <testgroup label="peh + sad"> - <test rtl="True"><string><em>&#x067E;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x067E;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x067E;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x067E;&#x0635;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tcheheh + dad"> - <test rtl="True"><string><em>&#x0687;&#x0636;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0687;&#x0636;</em></string></test> - <test rtl="True"><string><em>&#x0687;&#x0636;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0687;&#x0636;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seenTah2smd + dadDotBelow"> - <test rtl="True"><string><em>&#x0770;&#x06FB;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0770;&#x06FB;</em></string></test> - <test rtl="True"><string><em>&#x0770;&#x06FB;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0770;&#x06FB;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="dad + dadDotBelow"> - <test rtl="True"><string><em>&#x0636;&#x06FB;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x06FB;</em></string></test> - <test rtl="True"><string><em>&#x0636;&#x06FB;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x06FB;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="zah + dad"> - <test rtl="True"><string><em>&#x0638;&#x0636;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x0636;</em></string></test> - <test rtl="True"><string><em>&#x0638;&#x0636;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x0636;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + dadDotBelow"> - <test rtl="True"><string><em>&#x0639;&#x06FB;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x06FB;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x06FB;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x06FB;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh3dots + sad"> - <test rtl="True"><string><em>&#x06A5;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x06A5;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x0635;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lamSmallV + dad"> - <test rtl="True"><string><em>&#x06B5;&#x0636;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B5;&#x0636;</em></string></test> - <test rtl="True"><string><em>&#x06B5;&#x0636;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B5;&#x0636;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + dadDotBelow"> - <test rtl="True"><string><em>&#x0645;&#x06FB;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06FB;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x06FB;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06FB;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + sad"> - <test rtl="True"><string><em>&#x06A9;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0635;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + dad"> - <test rtl="True"><string><em>&#x06BE;&#x0636;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0636;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0636;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0636;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="arabicHeh + dadDotBelow"> - <test rtl="True"><string><em>&#x0647;&#x06FB;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0647;&#x06FB;</em></string></test> - <test rtl="True"><string><em>&#x0647;&#x06FB;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0647;&#x06FB;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Tah form sequences"> - <testgroup label="tteheh + tah"> - <test rtl="True"><string><em>&#x067A;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x067A;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x067A;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x067A;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hahHamza + zah"> - <test rtl="True"><string><em>&#x0681;&#x0638;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0681;&#x0638;</em></string></test> - <test rtl="True"><string><em>&#x0681;&#x0638;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0681;&#x0638;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen3dots3dots + tah"> - <test rtl="True"><string><em>&#x069C;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x069C;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x069C;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x069C;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + tah"> - <test rtl="True"><string><em>&#x0635;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zah"> - <test rtl="True"><string><em>&#x0637;&#x0638;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0638;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0638;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0638;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ghain + tah"> - <test rtl="True"><string><em>&#x063A;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x063A;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zah"> - <test rtl="True"><string><em>&#x0641;&#x0638;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0638;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0638;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0638;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + tah"> - <test rtl="True"><string><em>&#x0644;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zah"> - <test rtl="True"><string><em>&#x0645;&#x0638;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0638;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0638;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0638;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + tah"> - <test rtl="True"><string><em>&#x06AF;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zah"> - <test rtl="True"><string><em>&#x06BE;&#x0638;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0638;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0638;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0638;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehHamza + tah"> - <test rtl="True"><string><em>&#x06C2;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C2;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x06C2;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C2;&#x0637;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Ain form sequences"> - <testgroup label="beeh + ain"> - <test rtl="True"><string><em>&#x067B;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x067B;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x067B;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x067B;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hah3dots + ghain"> - <test rtl="True"><string><em>&#x0685;&#x063A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0685;&#x063A;</em></string></test> - <test rtl="True"><string><em>&#x0685;&#x063A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0685;&#x063A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + ain"> - <test rtl="True"><string><em>&#x0633;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="dad + ain"> - <test rtl="True"><string><em>&#x0636;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x0636;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + ain"> - <test rtl="True"><string><em>&#x0637;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + ghain"> - <test rtl="True"><string><em>&#x0639;&#x063A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x063A;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x063A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x063A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh3dots + ghain"> - <test rtl="True"><string><em>&#x06A5;&#x063A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x063A;</em></string></test> - <test rtl="True"><string><em>&#x06A5;&#x063A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x063A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lamBar + ain"> - <test rtl="True"><string><em>&#x076A;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x076A;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x076A;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x076A;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + ghain"> - <test rtl="True"><string><em>&#x0645;&#x063A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x063A;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x063A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x063A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gueh + ain"> - <test rtl="True"><string><em>&#x06B3;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B3;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x06B3;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B3;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + ghain"> - <test rtl="True"><string><em>&#x06BE;&#x063A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x063A;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x063A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x063A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + ain"> - <test rtl="True"><string><em>&#x06C1;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0639;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Feh form sequences"> - <testgroup label="tehRing + feh"> - <test rtl="True"><string><em>&#x067C;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x067C;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x067C;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x067C;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hahTah + feh3dots"> - <test rtl="True"><string><em>&#x076E;&#x06A5;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x076E;&#x06A5;</em></string></test> - <test rtl="True"><string><em>&#x076E;&#x06A5;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x076E;&#x06A5;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sheen + feh"> - <test rtl="True"><string><em>&#x0634;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0634;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x0634;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0634;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="dadDotBelow + feh"> - <test rtl="True"><string><em>&#x06FB;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06FB;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x06FB;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06FB;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="zah + feh"> - <test rtl="True"><string><em>&#x0638;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x0638;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + feh3dots"> - <test rtl="True"><string><em>&#x0639;&#x06A5;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x06A5;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x06A5;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x06A5;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + feh3dots"> - <test rtl="True"><string><em>&#x0641;&#x06A5;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x06A5;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x06A5;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x06A5;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lamSmallV + feh"> - <test rtl="True"><string><em>&#x06B5;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B5;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x06B5;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B5;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + feh3dots"> - <test rtl="True"><string><em>&#x0645;&#x06A5;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06A5;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x06A5;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06A5;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ngoeh + feh"> - <test rtl="True"><string><em>&#x06B1;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B1;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x06B1;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B1;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + feh3dots"> - <test rtl="True"><string><em>&#x06BE;&#x06A5;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06A5;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x06A5;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06A5;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="arabicHeh + feh"> - <test rtl="True"><string><em>&#x0647;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0647;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x0647;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0647;&#x0641;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Qaf form sequences"> - <testgroup label="teh3down + qaf"> - <test rtl="True"><string><em>&#x067D;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x067D;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="khah + qaf"> - <test rtl="True"><string><em>&#x062E;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062E;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen4dots + qaf"> - <test rtl="True"><string><em>&#x075C;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x075C;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="dadDotBelow + qaf"> - <test rtl="True"><string><em>&#x06FB;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06FB;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="zah + qaf"> - <test rtl="True"><string><em>&#x0638;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + qaf"> - <test rtl="True"><string><em>&#x0639;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh3dots + qaf"> - <test rtl="True"><string><em>&#x06A5;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + qaf"> - <test rtl="True"><string><em>&#x0644;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + qaf"> - <test rtl="True"><string><em>&#x0645;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + qaf"> - <test rtl="True"><string><em>&#x06AF;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + qaf"> - <test rtl="True"><string><em>&#x06BE;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="arabicHeh + qaf"> - <test rtl="True"><string><em>&#x0647;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0647;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Lam form sequences"> - <testgroup label="teh3down + lam"> - <test rtl="True"><string><em>&#x067D;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x067D;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x067D;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x067D;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hahTah2smd + lamSmallV"> - <test rtl="True"><string><em>&#x076F;&#x06B5;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x076F;&#x06B5;</em></string></test> - <test rtl="True"><string><em>&#x076F;&#x06B5;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x076F;&#x06B5;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seenDotDot + lamBar"> - <test rtl="True"><string><em>&#x069A;&#x076A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x069A;&#x076A;</em></string></test> - <test rtl="True"><string><em>&#x069A;&#x076A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x069A;&#x076A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + lam"> - <test rtl="True"><string><em>&#x0635;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + lamSmallV"> - <test rtl="True"><string><em>&#x0637;&#x06B5;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x06B5;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x06B5;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x06B5;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ghain + lamBar"> - <test rtl="True"><string><em>&#x063A;&#x076A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x076A;</em></string></test> - <test rtl="True"><string><em>&#x063A;&#x076A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x076A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + lam"> - <test rtl="True"><string><em>&#x0641;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + lamBar"> - <test rtl="True"><string><em>&#x0644;&#x076A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x076A;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x076A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x076A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + lam"> - <test rtl="True"><string><em>&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kafRing + lamSmallV"> - <test rtl="True"><string><em>&#x06AB;&#x06B5;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AB;&#x06B5;</em></string></test> - <test rtl="True"><string><em>&#x06AB;&#x06B5;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AB;&#x06B5;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + lam"> - <test rtl="True"><string><em>&#x06BE;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehHamza + lamSmallV"> - <test rtl="True"><string><em>&#x06C2;&#x06B5;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C2;&#x06B5;</em></string></test> - <test rtl="True"><string><em>&#x06C2;&#x06B5;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C2;&#x06B5;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Meem form sequences"> - <testgroup label="beh + meem"> - <test rtl="True"><string><em>&#x0628;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + meem"> - <test rtl="True"><string><em>&#x062C;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen4dots + meem"> - <test rtl="True"><string><em>&#x075C;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x075C;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x075C;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x075C;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="dad + meem"> - <test rtl="True"><string><em>&#x0636;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x0636;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="zah + meem"> - <test rtl="True"><string><em>&#x0638;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x0638;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + meem"> - <test rtl="True"><string><em>&#x0639;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh3dots + meem"> - <test rtl="True"><string><em>&#x06A5;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x06A5;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lamSmallV + meem"> - <test rtl="True"><string><em>&#x06B5;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B5;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x06B5;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B5;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + meem"> - <test rtl="True"><string><em>&#x0645;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + meem"> - <test rtl="True"><string><em>&#x06A9;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + meem"> - <test rtl="True"><string><em>&#x06BE;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + meem"> - <test rtl="True"><string><em>&#x06C1;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0645;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Alternate meem sequences"> - <testgroup label="theh + meem-alt + gaf"> - <test rtl="True"><string><em>&#x062B;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062B;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x062B;&#x0645;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062B;&#x0645;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tteh + meem-alt + lamBar"> - <test rtl="True"><string><em>&#x0679;&#x0645;&#x076A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0679;&#x0645;&#x076A;</em></string></test> - <test rtl="True"><string><em>&#x0679;&#x0645;&#x076A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0679;&#x0645;&#x076A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="theh + meem-alt + alef"> - <test rtl="True"><string><em>&#x062B;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062B;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tteh + meem-alt + thal"> - <test rtl="True"><string><em>&#x0679;&#x0645;&#x0630;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0679;&#x0645;&#x0630;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hahHamza + meem-alt + ngoeh"> - <test rtl="True"><string><em>&#x0681;&#x0645;&#x06B1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0681;&#x0645;&#x06B1;</em></string></test> - <test rtl="True"><string><em>&#x0681;&#x0645;&#x06B1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0681;&#x0645;&#x06B1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hah3dots + meem-alt + lam"> - <test rtl="True"><string><em>&#x0685;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0685;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0685;&#x0645;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0685;&#x0645;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hah + meem-alt + alef"> - <test rtl="True"><string><em>&#x062D;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062D;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="khah + meem-alt + dalDotTah"> - <test rtl="True"><string><em>&#x062E;&#x0645;&#x068B;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062E;&#x0645;&#x068B;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sheen + meem-alt + kaf"> - <test rtl="True"><string><em>&#x0634;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0634;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x0634;&#x0645;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0634;&#x0645;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seenDotDot + meem-alt + lamSmallV"> - <test rtl="True"><string><em>&#x069A;&#x0645;&#x06B5;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x069A;&#x0645;&#x06B5;</em></string></test> - <test rtl="True"><string><em>&#x069A;&#x0645;&#x06B5;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x069A;&#x0645;&#x06B5;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seenTah2smd + meem-alt + alef"> - <test rtl="True"><string><em>&#x0770;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0770;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen3dots3dots + meem-alt + dalRing"> - <test rtl="True"><string><em>&#x069C;&#x0645;&#x0689;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x069C;&#x0645;&#x0689;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="dadDotBelow + meem-alt + gueh"> - <test rtl="True"><string><em>&#x06FB;&#x0645;&#x06B3;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06FB;&#x0645;&#x06B3;</em></string></test> - <test rtl="True"><string><em>&#x06FB;&#x0645;&#x06B3;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06FB;&#x0645;&#x06B3;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + meem-alt + lamBar"> - <test rtl="True"><string><em>&#x0635;&#x0645;&#x076A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0645;&#x076A;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0645;&#x076A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0645;&#x076A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="dadDotBelow + meem-alt + alef"> - <test rtl="True"><string><em>&#x06FB;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06FB;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + meem-alt + dal"> - <test rtl="True"><string><em>&#x0635;&#x0645;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0645;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="zah + meem-alt + kafRing"> - <test rtl="True"><string><em>&#x0638;&#x0645;&#x06AB;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x0645;&#x06AB;</em></string></test> - <test rtl="True"><string><em>&#x0638;&#x0645;&#x06AB;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x0645;&#x06AB;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + meem-alt + lam"> - <test rtl="True"><string><em>&#x0637;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0645;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0645;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + meem-alt + alef"> - <test rtl="True"><string><em>&#x0637;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="zah + meem-alt + ddal"> - <test rtl="True"><string><em>&#x0638;&#x0645;&#x0688;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x0645;&#x0688;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + meem-alt + gaf"> - <test rtl="True"><string><em>&#x0639;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0645;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0645;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ghain + meem-alt + lamSmallV"> - <test rtl="True"><string><em>&#x063A;&#x0645;&#x06B5;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x0645;&#x06B5;</em></string></test> - <test rtl="True"><string><em>&#x063A;&#x0645;&#x06B5;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x0645;&#x06B5;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ghain + meem-alt + alef"> - <test rtl="True"><string><em>&#x063A;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + meem-alt + dal2dotsVTah"> - <test rtl="True"><string><em>&#x0639;&#x0645;&#x0759;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0645;&#x0759;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh3dots + meem-alt + ngoeh"> - <test rtl="True"><string><em>&#x06A5;&#x0645;&#x06B1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x0645;&#x06B1;</em></string></test> - <test rtl="True"><string><em>&#x06A5;&#x0645;&#x06B1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x0645;&#x06B1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + meem-alt + lamBar"> - <test rtl="True"><string><em>&#x0641;&#x0645;&#x076A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0645;&#x076A;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0645;&#x076A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0645;&#x076A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + meem-alt + alef"> - <test rtl="True"><string><em>&#x0641;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh3dots + meem-alt + dal4dots"> - <test rtl="True"><string><em>&#x06A5;&#x0645;&#x0690;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x0645;&#x0690;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + meem-alt + gaf"> - <test rtl="True"><string><em>&#x0645;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0645;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0645;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + meem-alt + lamBar"> - <test rtl="True"><string><em>&#x0645;&#x0645;&#x076A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0645;&#x076A;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0645;&#x076A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0645;&#x076A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + meem-alt + alef"> - <test rtl="True"><string><em>&#x0645;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + meem-alt + ddal"> - <test rtl="True"><string><em>&#x0645;&#x0645;&#x0688;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0645;&#x0688;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + meem-alt + gaf"> - <test rtl="True"><string><em>&#x06BE;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0645;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0645;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + meem-alt + lamBar"> - <test rtl="True"><string><em>&#x06BE;&#x0645;&#x076A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0645;&#x076A;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0645;&#x076A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0645;&#x076A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + meem-alt + alef"> - <test rtl="True"><string><em>&#x06BE;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + meem-alt + dalRing"> - <test rtl="True"><string><em>&#x06BE;&#x0645;&#x0689;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0645;&#x0689;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="arabicHeh + meem-alt + ngoeh"> - <test rtl="True"><string><em>&#x0647;&#x0645;&#x06B1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0647;&#x0645;&#x06B1;</em></string></test> - <test rtl="True"><string><em>&#x0647;&#x0645;&#x06B1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0647;&#x0645;&#x06B1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehHamza + meem-alt + lam"> - <test rtl="True"><string><em>&#x06C2;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C2;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x06C2;&#x0645;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C2;&#x0645;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehHamza + meem-alt + alef"> - <test rtl="True"><string><em>&#x06C2;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C2;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + meem-alt + dal"> - <test rtl="True"><string><em>&#x06C1;&#x0645;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0645;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Noon form sequences"> - <testgroup label="tteh + noon"> - <test rtl="True"><string><em>&#x0679;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0679;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hahHamza + noonRetro"> - <test rtl="True"><string><em>&#x0681;&#x0768;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0681;&#x0768;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + rnoon"> - <test rtl="True"><string><em>&#x0633;&#x06BB;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x06BB;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + noonGhunna"> - <test rtl="True"><string><em>&#x0635;&#x06BA;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x06BA;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="zah + noonDotBelow"> - <test rtl="True"><string><em>&#x0638;&#x06B9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x06B9;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + noon"> - <test rtl="True"><string><em>&#x0639;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh3dots + noonRetro"> - <test rtl="True"><string><em>&#x06A5;&#x0768;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x0768;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lamBar + rnoon"> - <test rtl="True"><string><em>&#x076A;&#x06BB;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x076A;&#x06BB;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + noonGhunna"> - <test rtl="True"><string><em>&#x0645;&#x06BA;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06BA;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + noonDotBelow"> - <test rtl="True"><string><em>&#x06A9;&#x06B9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x06B9;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + noon"> - <test rtl="True"><string><em>&#x06BE;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehHamza + noonRetro"> - <test rtl="True"><string><em>&#x06C2;&#x0768;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C2;&#x0768;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Waw form sequences"> - <testgroup label="beh + waw"> - <test rtl="True"><string><em>&#x0628;&#x0648;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0648;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tcheh + wawHamza"> - <test rtl="True"><string><em>&#x0686;&#x0624;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0686;&#x0624;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen2dotsV + wawRing"> - <test rtl="True"><string><em>&#x076D;&#x06C4;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x076D;&#x06C4;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + waw"> - <test rtl="True"><string><em>&#x0635;&#x0648;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0648;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + wawHamza"> - <test rtl="True"><string><em>&#x0637;&#x0624;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0624;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ghain + wawRing"> - <test rtl="True"><string><em>&#x063A;&#x06C4;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x06C4;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + waw"> - <test rtl="True"><string><em>&#x0641;&#x0648;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0648;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lamBar + wawHamza"> - <test rtl="True"><string><em>&#x076A;&#x0624;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x076A;&#x0624;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + wawRing"> - <test rtl="True"><string><em>&#x0645;&#x06C4;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06C4;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gueh + waw"> - <test rtl="True"><string><em>&#x06B3;&#x0648;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B3;&#x0648;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + wawHamza"> - <test rtl="True"><string><em>&#x06BE;&#x0624;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0624;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehHamza + wawRing"> - <test rtl="True"><string><em>&#x06C2;&#x06C4;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C2;&#x06C4;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Kaf form sequences"> - <testgroup label="teh + kaf"> - <test rtl="True"><string><em>&#x062A;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hah + gueh"> - <test rtl="True"><string><em>&#x062D;&#x06B3;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062D;&#x06B3;</em></string></test> - <test rtl="True"><string><em>&#x062D;&#x06B3;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062D;&#x06B3;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen2dotsV + kafRing"> - <test rtl="True"><string><em>&#x076D;&#x06AB;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x076D;&#x06AB;</em></string></test> - <test rtl="True"><string><em>&#x076D;&#x06AB;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x076D;&#x06AB;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="dadDotBelow + gaf"> - <test rtl="True"><string><em>&#x06FB;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06FB;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x06FB;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06FB;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + ngoeh"> - <test rtl="True"><string><em>&#x0637;&#x06B1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x06B1;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x06B1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x06B1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ghain + kaf"> - <test rtl="True"><string><em>&#x063A;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x063A;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + gueh"> - <test rtl="True"><string><em>&#x0641;&#x06B3;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x06B3;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x06B3;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x06B3;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + kafRing"> - <test rtl="True"><string><em>&#x0644;&#x06AB;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x06AB;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x06AB;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x06AB;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + kaf"> - <test rtl="True"><string><em>&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + gueh"> - <test rtl="True"><string><em>&#x06AF;&#x06B3;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x06B3;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x06B3;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x06B3;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + kaf"> - <test rtl="True"><string><em>&#x06BE;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="arabicHeh + gueh"> - <test rtl="True"><string><em>&#x0647;&#x06B3;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0647;&#x06B3;</em></string></test> - <test rtl="True"><string><em>&#x0647;&#x06B3;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0647;&#x06B3;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Heh-Doachashmee form sequences"> - <testgroup label="theh + hehDo"> - <test rtl="True"><string><em>&#x062B;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062B;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x062B;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062B;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="khah + hehDo"> - <test rtl="True"><string><em>&#x062E;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062E;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x062E;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062E;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seenTah2smd + hehDo"> - <test rtl="True"><string><em>&#x0770;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0770;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x0770;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0770;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + hehDo"> - <test rtl="True"><string><em>&#x0635;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="zah + hehDo"> - <test rtl="True"><string><em>&#x0638;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x0638;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + hehDo"> - <test rtl="True"><string><em>&#x0639;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh3dots + hehDo"> - <test rtl="True"><string><em>&#x06A5;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x06A5;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lamBar + hehDo"> - <test rtl="True"><string><em>&#x076A;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x076A;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x076A;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x076A;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + hehDo"> - <test rtl="True"><string><em>&#x0645;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ngoeh + hehDo"> - <test rtl="True"><string><em>&#x06B1;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B1;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x06B1;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B1;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + hehDo"> - <test rtl="True"><string><em>&#x06BE;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehHamza + hehDo"> - <test rtl="True"><string><em>&#x06C2;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C2;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x06C2;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C2;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Heh-Goal form sequences"> - <testgroup label="tteh + hehGoal"> - <test rtl="True"><string><em>&#x0679;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0679;&#x06C1;</em></string></test> - <test rtl="True"><string><em>&#x0679;&#x06C1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0679;&#x06C1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tcheh + hehHamza"> - <test rtl="True"><string><em>&#x0686;&#x06C2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0686;&#x06C2;</em></string></test> - <test rtl="True"><string><em>&#x0686;&#x06C2;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0686;&#x06C2;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen3dots3dots + arabicHeh"> - <test rtl="True"><string><em>&#x069C;&#x0647;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x069C;&#x0647;</em></string></test> - <test rtl="True"><string><em>&#x069C;&#x0647;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x069C;&#x0647;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="dad + hehGoal"> - <test rtl="True"><string><em>&#x0636;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x06C1;</em></string></test> - <test rtl="True"><string><em>&#x0636;&#x06C1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x06C1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + hehHamza"> - <test rtl="True"><string><em>&#x0637;&#x06C2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x06C2;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x06C2;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x06C2;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ghain + arabicHeh"> - <test rtl="True"><string><em>&#x063A;&#x0647;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x0647;</em></string></test> - <test rtl="True"><string><em>&#x063A;&#x0647;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x0647;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + hehGoal"> - <test rtl="True"><string><em>&#x0641;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x06C1;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x06C1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x06C1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lamSmallV + hehHamza"> - <test rtl="True"><string><em>&#x06B5;&#x06C2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B5;&#x06C2;</em></string></test> - <test rtl="True"><string><em>&#x06B5;&#x06C2;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B5;&#x06C2;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + arabicHeh"> - <test rtl="True"><string><em>&#x0645;&#x0647;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0647;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0647;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0647;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kafRing + hehGoal"> - <test rtl="True"><string><em>&#x06AB;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AB;&#x06C1;</em></string></test> - <test rtl="True"><string><em>&#x06AB;&#x06C1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AB;&#x06C1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + hehHamza"> - <test rtl="True"><string><em>&#x06BE;&#x06C2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06C2;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x06C2;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06C2;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + arabicHeh"> - <test rtl="True"><string><em>&#x06C1;&#x0647;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0647;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0647;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0647;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Teh-marbuta form sequences"> - <testgroup label="peh + tehMarbuta"> - <test rtl="True"><string><em>&#x067E;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x067E;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hah3dots + tehMarbuta"> - <test rtl="True"><string><em>&#x0685;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0685;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sheen + tehMarbuta"> - <test rtl="True"><string><em>&#x0634;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0634;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="dad + tehMarbuta"> - <test rtl="True"><string><em>&#x0636;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + tehMarbuta"> - <test rtl="True"><string><em>&#x0637;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ghain + tehMarbuta"> - <test rtl="True"><string><em>&#x063A;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + tehMarbuta"> - <test rtl="True"><string><em>&#x0641;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lamSmallV + tehMarbuta"> - <test rtl="True"><string><em>&#x06B5;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B5;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + tehMarbuta"> - <test rtl="True"><string><em>&#x0645;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + tehMarbuta"> - <test rtl="True"><string><em>&#x06AF;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + tehMarbuta"> - <test rtl="True"><string><em>&#x06BE;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + tehMarbuta"> - <test rtl="True"><string><em>&#x06C1;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Chotiyeh form sequences"> - <testgroup label="theh + chotiyeh"> - <test rtl="True"><string><em>&#x062B;&#x06CC;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062B;&#x06CC;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tcheheh + yehHamza"> - <test rtl="True"><string><em>&#x0687;&#x0626;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0687;&#x0626;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen3dots3dots + yehSmallV"> - <test rtl="True"><string><em>&#x069C;&#x06CE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x069C;&#x06CE;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="dadDotBelow + arabicE"> - <test rtl="True"><string><em>&#x06FB;&#x06D0;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06FB;&#x06D0;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + chotiyeh"> - <test rtl="True"><string><em>&#x0637;&#x06CC;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x06CC;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ghain + yehHamza"> - <test rtl="True"><string><em>&#x063A;&#x0626;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x0626;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + yehSmallV"> - <test rtl="True"><string><em>&#x0641;&#x06CE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x06CE;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + arabicE"> - <test rtl="True"><string><em>&#x0644;&#x06D0;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x06D0;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + chotiyeh"> - <test rtl="True"><string><em>&#x0645;&#x06CC;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06CC;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kafRing + yehHamza"> - <test rtl="True"><string><em>&#x06AB;&#x0626;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AB;&#x0626;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + yehSmallV"> - <test rtl="True"><string><em>&#x06BE;&#x06CE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06CE;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="arabicHeh + arabicE"> - <test rtl="True"><string><em>&#x0647;&#x06D0;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0647;&#x06D0;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Bariyeh form sequences"> - <testgroup label="teh + bariyeh"> - <test rtl="True"><string><em>&#x062A;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="dyeh + bariyeh"> - <test rtl="True"><string><em>&#x0684;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0684;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seenTah2smd + bariyeh"> - <test rtl="True"><string><em>&#x0770;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0770;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="dad + bariyeh"> - <test rtl="True"><string><em>&#x0636;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="zah + bariyeh"> - <test rtl="True"><string><em>&#x0638;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + bariyeh"> - <test rtl="True"><string><em>&#x0639;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh3dots + bariyeh"> - <test rtl="True"><string><em>&#x06A5;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lamSmallV + bariyeh"> - <test rtl="True"><string><em>&#x06B5;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B5;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + bariyeh"> - <test rtl="True"><string><em>&#x0645;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ngoeh + bariyeh"> - <test rtl="True"><string><em>&#x06B1;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B1;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + bariyeh"> - <test rtl="True"><string><em>&#x06BE;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + bariyeh"> - <test rtl="True"><string><em>&#x06C1;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Multiple Beh sequences"> - <testgroup label="peh + tteheh + beeh"> - <test rtl="True"><string><em>&#x067E;&#x067A;&#x067B;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x067E;&#x067A;&#x067B;</em></string></test> - <test rtl="True"><string><em>&#x067E;&#x067A;&#x067B;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x067E;&#x067A;&#x067B;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tehRing + teh3down + beh + teh"> - <test rtl="True"><string><em>&#x067C;&#x067D;&#x0628;&#x062A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x067C;&#x067D;&#x0628;&#x062A;</em></string></test> - <test rtl="True"><string><em>&#x067C;&#x067D;&#x0628;&#x062A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x067C;&#x067D;&#x0628;&#x062A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="dyeh + tteheh + beeh"> - <test rtl="True"><string><em>&#x0684;&#x067A;&#x067B;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0684;&#x067A;&#x067B;</em></string></test> - <test rtl="True"><string><em>&#x0684;&#x067A;&#x067B;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0684;&#x067A;&#x067B;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tcheheh + tehRing + teh3down + beh"> - <test rtl="True"><string><em>&#x0687;&#x067C;&#x067D;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0687;&#x067C;&#x067D;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0687;&#x067C;&#x067D;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0687;&#x067C;&#x067D;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + tteheh + beeh"> - <test rtl="True"><string><em>&#x0633;&#x067A;&#x067B;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x067A;&#x067B;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x067A;&#x067B;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x067A;&#x067B;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sheen + tehRing + teh3down + beh"> - <test rtl="True"><string><em>&#x0634;&#x067C;&#x067D;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0634;&#x067C;&#x067D;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0634;&#x067C;&#x067D;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0634;&#x067C;&#x067D;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="dadDotBelow + tteh + peh"> - <test rtl="True"><string><em>&#x06FB;&#x0679;&#x067E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06FB;&#x0679;&#x067E;</em></string></test> - <test rtl="True"><string><em>&#x06FB;&#x0679;&#x067E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06FB;&#x0679;&#x067E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + tteheh + beeh + tehRing"> - <test rtl="True"><string><em>&#x0635;&#x067A;&#x067B;&#x067C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x067A;&#x067B;&#x067C;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x067A;&#x067B;&#x067C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x067A;&#x067B;&#x067C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="zah + teh + theh"> - <test rtl="True"><string><em>&#x0638;&#x062A;&#x062B;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x062A;&#x062B;</em></string></test> - <test rtl="True"><string><em>&#x0638;&#x062A;&#x062B;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x062A;&#x062B;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + tteh + peh + tteheh"> - <test rtl="True"><string><em>&#x0637;&#x0679;&#x067E;&#x067A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0679;&#x067E;&#x067A;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0679;&#x067E;&#x067A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0679;&#x067E;&#x067A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + teh + theh"> - <test rtl="True"><string><em>&#x0639;&#x062A;&#x062B;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x062A;&#x062B;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x062A;&#x062B;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x062A;&#x062B;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ghain + tteh + peh + tteheh"> - <test rtl="True"><string><em>&#x063A;&#x0679;&#x067E;&#x067A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x0679;&#x067E;&#x067A;</em></string></test> - <test rtl="True"><string><em>&#x063A;&#x0679;&#x067E;&#x067A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x0679;&#x067E;&#x067A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh3dots + teh + theh"> - <test rtl="True"><string><em>&#x06A5;&#x062A;&#x062B;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x062A;&#x062B;</em></string></test> - <test rtl="True"><string><em>&#x06A5;&#x062A;&#x062B;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x062A;&#x062B;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + tteh + peh + tteheh"> - <test rtl="True"><string><em>&#x0641;&#x0679;&#x067E;&#x067A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0679;&#x067E;&#x067A;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0679;&#x067E;&#x067A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0679;&#x067E;&#x067A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + teh + theh"> - <test rtl="True"><string><em>&#x0644;&#x062A;&#x062B;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x062A;&#x062B;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x062A;&#x062B;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x062A;&#x062B;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lamBar + tteh + peh + tteheh"> - <test rtl="True"><string><em>&#x076A;&#x0679;&#x067E;&#x067A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x076A;&#x0679;&#x067E;&#x067A;</em></string></test> - <test rtl="True"><string><em>&#x076A;&#x0679;&#x067E;&#x067A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x076A;&#x0679;&#x067E;&#x067A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + teh + theh"> - <test rtl="True"><string><em>&#x0645;&#x062A;&#x062B;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x062A;&#x062B;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x062A;&#x062B;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x062A;&#x062B;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + tteh + peh + tteheh"> - <test rtl="True"><string><em>&#x0645;&#x0679;&#x067E;&#x067A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0679;&#x067E;&#x067A;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0679;&#x067E;&#x067A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0679;&#x067E;&#x067A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + teh + theh"> - <test rtl="True"><string><em>&#x06A9;&#x062A;&#x062B;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x062A;&#x062B;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x062A;&#x062B;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x062A;&#x062B;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + tteh + peh + tteheh"> - <test rtl="True"><string><em>&#x06AF;&#x0679;&#x067E;&#x067A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0679;&#x067E;&#x067A;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0679;&#x067E;&#x067A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0679;&#x067E;&#x067A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + teh + theh"> - <test rtl="True"><string><em>&#x06BE;&#x062A;&#x062B;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x062A;&#x062B;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x062A;&#x062B;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x062A;&#x062B;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + tteh + peh + tteheh"> - <test rtl="True"><string><em>&#x06BE;&#x0679;&#x067E;&#x067A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0679;&#x067E;&#x067A;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0679;&#x067E;&#x067A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0679;&#x067E;&#x067A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehHamza + teh + theh"> - <test rtl="True"><string><em>&#x06C2;&#x062A;&#x062B;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C2;&#x062A;&#x062B;</em></string></test> - <test rtl="True"><string><em>&#x06C2;&#x062A;&#x062B;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C2;&#x062A;&#x062B;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + tteh + peh + tteheh"> - <test rtl="True"><string><em>&#x06C1;&#x0679;&#x067E;&#x067A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0679;&#x067E;&#x067A;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0679;&#x067E;&#x067A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0679;&#x067E;&#x067A;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Seen/Sad + Beh sequences"> - <testgroup label="seenDotDot + teh + sad"> - <test rtl="True"><string><em>&#x069A;&#x062A;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x069A;&#x062A;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x069A;&#x062A;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x069A;&#x062A;&#x0635;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen4dots + theh + zah"> - <test rtl="True"><string><em>&#x075C;&#x062B;&#x0638;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x075C;&#x062B;&#x0638;</em></string></test> - <test rtl="True"><string><em>&#x075C;&#x062B;&#x0638;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x075C;&#x062B;&#x0638;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen2dotsV + tteh + ghain"> - <test rtl="True"><string><em>&#x076D;&#x0679;&#x063A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x076D;&#x0679;&#x063A;</em></string></test> - <test rtl="True"><string><em>&#x076D;&#x0679;&#x063A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x076D;&#x0679;&#x063A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seenTah2smd + peh + feh3dots"> - <test rtl="True"><string><em>&#x0770;&#x067E;&#x06A5;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0770;&#x067E;&#x06A5;</em></string></test> - <test rtl="True"><string><em>&#x0770;&#x067E;&#x06A5;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0770;&#x067E;&#x06A5;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen3dots3dots + tteheh + qaf"> - <test rtl="True"><string><em>&#x069C;&#x067A;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x069C;&#x067A;&#x0642;</em></string></test> - <test rtl="True"><string><em>&#x069C;&#x067A;&#x0642;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x069C;&#x067A;&#x0642;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + beeh + tehRing"> - <test rtl="True"><string><em>&#x0633;&#x067B;&#x067C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x067B;&#x067C;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x067B;&#x067C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x067B;&#x067C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="dad + teh3down + dadDotBelow"> - <test rtl="True"><string><em>&#x0636;&#x067D;&#x06FB;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x067D;&#x06FB;</em></string></test> - <test rtl="True"><string><em>&#x0636;&#x067D;&#x06FB;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x067D;&#x06FB;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + beh + zah"> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0638;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0638;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0638;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0638;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="dad + teh + ghain"> - <test rtl="True"><string><em>&#x0636;&#x062A;&#x063A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x062A;&#x063A;</em></string></test> - <test rtl="True"><string><em>&#x0636;&#x062A;&#x063A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x062A;&#x063A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="dadDotBelow + theh + feh3dots"> - <test rtl="True"><string><em>&#x06FB;&#x062B;&#x06A5;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06FB;&#x062B;&#x06A5;</em></string></test> - <test rtl="True"><string><em>&#x06FB;&#x062B;&#x06A5;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06FB;&#x062B;&#x06A5;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + tteh + qaf"> - <test rtl="True"><string><em>&#x0635;&#x0679;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0679;&#x0642;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0679;&#x0642;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0679;&#x0642;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="dad + peh + tteheh"> - <test rtl="True"><string><em>&#x0636;&#x067E;&#x067A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x067E;&#x067A;</em></string></test> - <test rtl="True"><string><em>&#x0636;&#x067E;&#x067A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x067E;&#x067A;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Beh + Reh sequences"> - <testgroup label="tehRing + teh3down + zain"> - <test rtl="True"><string><em>&#x067C;&#x067D;&#x0632;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x067C;&#x067D;&#x0632;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hahTah2smd + theh + jeh"> - <test rtl="True"><string><em>&#x076F;&#x062B;&#x0698;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x076F;&#x062B;&#x0698;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen4dots + beh + rehDotDot"> - <test rtl="True"><string><em>&#x075C;&#x0628;&#x0696;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x075C;&#x0628;&#x0696;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + tehRing + reh4dots"> - <test rtl="True"><string><em>&#x0635;&#x067C;&#x0699;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x067C;&#x0699;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + tehRing + rehRing"> - <test rtl="True"><string><em>&#x0637;&#x067C;&#x0693;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x067C;&#x0693;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ghain + tehRing + reh2dotsV"> - <test rtl="True"><string><em>&#x063A;&#x067C;&#x076B;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x063A;&#x067C;&#x076B;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + tehRing + zain"> - <test rtl="True"><string><em>&#x0641;&#x067C;&#x0632;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x067C;&#x0632;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lamBar + tehRing + jeh"> - <test rtl="True"><string><em>&#x076A;&#x067C;&#x0698;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x076A;&#x067C;&#x0698;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + tehRing + rehDotDot"> - <test rtl="True"><string><em>&#x0645;&#x067C;&#x0696;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x067C;&#x0696;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ngoeh + tehRing + reh4dots"> - <test rtl="True"><string><em>&#x06B1;&#x067C;&#x0699;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B1;&#x067C;&#x0699;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + tehRing + rehRing"> - <test rtl="True"><string><em>&#x06BE;&#x067C;&#x0693;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x067C;&#x0693;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehHamza + tehRing + reh2dotsV"> - <test rtl="True"><string><em>&#x06C2;&#x067C;&#x076B;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C2;&#x067C;&#x076B;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Beh + Noon sequences"> - <testgroup label="tteheh + beeh + noonGhunna"> - <test rtl="True"><string><em>&#x067A;&#x067B;&#x06BA;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x067A;&#x067B;&#x06BA;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hahTah + teh + noonDotBelow"> - <test rtl="True"><string><em>&#x076E;&#x062A;&#x06B9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x076E;&#x062A;&#x06B9;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seenDotDot + teh3down + noon"> - <test rtl="True"><string><em>&#x069A;&#x067D;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x069A;&#x067D;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="dadDotBelow + beeh + noonRetro"> - <test rtl="True"><string><em>&#x06FB;&#x067B;&#x0768;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06FB;&#x067B;&#x0768;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="zah + beeh + rnoon"> - <test rtl="True"><string><em>&#x0638;&#x067B;&#x06BB;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x067B;&#x06BB;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + beeh + noonGhunna"> - <test rtl="True"><string><em>&#x0639;&#x067B;&#x06BA;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x067B;&#x06BA;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh3dots + beeh + noonDotBelow"> - <test rtl="True"><string><em>&#x06A5;&#x067B;&#x06B9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x067B;&#x06B9;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + beeh + noon"> - <test rtl="True"><string><em>&#x0644;&#x067B;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x067B;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + beeh + noonRetro"> - <test rtl="True"><string><em>&#x0645;&#x067B;&#x0768;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x067B;&#x0768;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gueh + beeh + rnoon"> - <test rtl="True"><string><em>&#x06B3;&#x067B;&#x06BB;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B3;&#x067B;&#x06BB;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + beeh + noonGhunna"> - <test rtl="True"><string><em>&#x06BE;&#x067B;&#x06BA;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x067B;&#x06BA;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="arabicHeh + beeh + noonDotBelow"> - <test rtl="True"><string><em>&#x0647;&#x067B;&#x06B9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0647;&#x067B;&#x06B9;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Beh + Heh-Goal sequences"> - <testgroup label="beh + teh + arabicHeh"> - <test rtl="True"><string><em>&#x0628;&#x062A;&#x0647;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x062A;&#x0647;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + tteh + hehGoal"> - <test rtl="True"><string><em>&#x062C;&#x0679;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0679;&#x06C1;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen2dotsV + teh + hehHamza"> - <test rtl="True"><string><em>&#x076D;&#x062A;&#x06C2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x076D;&#x062A;&#x06C2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="dad + teh3down + arabicHeh"> - <test rtl="True"><string><em>&#x0636;&#x067D;&#x0647;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x067D;&#x0647;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="zah + teh3down + hehGoal"> - <test rtl="True"><string><em>&#x0638;&#x067D;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x067D;&#x06C1;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + teh3down + hehHamza"> - <test rtl="True"><string><em>&#x0639;&#x067D;&#x06C2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x067D;&#x06C2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh3dots + teh3down + arabicHeh"> - <test rtl="True"><string><em>&#x06A5;&#x067D;&#x0647;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x067D;&#x0647;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lamSmallV + teh3down + hehGoal"> - <test rtl="True"><string><em>&#x06B5;&#x067D;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B5;&#x067D;&#x06C1;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + teh3down + hehHamza"> - <test rtl="True"><string><em>&#x0645;&#x067D;&#x06C2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x067D;&#x06C2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kafRing + teh3down + arabicHeh"> - <test rtl="True"><string><em>&#x06AB;&#x067D;&#x0647;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AB;&#x067D;&#x0647;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + teh3down + hehGoal"> - <test rtl="True"><string><em>&#x06BE;&#x067D;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x067D;&#x06C1;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + teh3down + arabicHeh"> - <test rtl="True"><string><em>&#x06C1;&#x067D;&#x0647;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x067D;&#x0647;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Seen + seen + seen sequences"> - <testgroup label="peh + sheen + seenDotDot + seen4dots"> - <test rtl="True"><string><em>&#x067E;&#x0634;&#x069A;&#x075C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x067E;&#x0634;&#x069A;&#x075C;</em></string></test> - <test rtl="True"><string><em>&#x067E;&#x0634;&#x069A;&#x075C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x067E;&#x0634;&#x069A;&#x075C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hahTah + seenTah2smd + seen3dots3dots + seen"> - <test rtl="True"><string><em>&#x076E;&#x0770;&#x069C;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x076E;&#x0770;&#x069C;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x076E;&#x0770;&#x069C;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x076E;&#x0770;&#x069C;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen4dots + seen2dotsV + seenTah2smd + seen3dots3dots"> - <test rtl="True"><string><em>&#x075C;&#x076D;&#x0770;&#x069C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x075C;&#x076D;&#x0770;&#x069C;</em></string></test> - <test rtl="True"><string><em>&#x075C;&#x076D;&#x0770;&#x069C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x075C;&#x076D;&#x0770;&#x069C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="dad + sheen + seenDotDot + seen4dots"> - <test rtl="True"><string><em>&#x0636;&#x0634;&#x069A;&#x075C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x0634;&#x069A;&#x075C;</em></string></test> - <test rtl="True"><string><em>&#x0636;&#x0634;&#x069A;&#x075C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0636;&#x0634;&#x069A;&#x075C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="zah + seenTah2smd + seen3dots3dots + seen"> - <test rtl="True"><string><em>&#x0638;&#x0770;&#x069C;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x0770;&#x069C;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0638;&#x0770;&#x069C;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0638;&#x0770;&#x069C;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + seenDotDot + seen4dots + seen2dotsV"> - <test rtl="True"><string><em>&#x0639;&#x069A;&#x075C;&#x076D;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x069A;&#x075C;&#x076D;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x069A;&#x075C;&#x076D;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x069A;&#x075C;&#x076D;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh3dots + seen3dots3dots + seen + sheen"> - <test rtl="True"><string><em>&#x06A5;&#x069C;&#x0633;&#x0634;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x069C;&#x0633;&#x0634;</em></string></test> - <test rtl="True"><string><em>&#x06A5;&#x069C;&#x0633;&#x0634;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A5;&#x069C;&#x0633;&#x0634;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lamSmallV + seen4dots + seen2dotsV + seenTah2smd"> - <test rtl="True"><string><em>&#x06B5;&#x075C;&#x076D;&#x0770;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B5;&#x075C;&#x076D;&#x0770;</em></string></test> - <test rtl="True"><string><em>&#x06B5;&#x075C;&#x076D;&#x0770;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B5;&#x075C;&#x076D;&#x0770;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + seen + sheen + seenDotDot"> - <test rtl="True"><string><em>&#x0645;&#x0633;&#x0634;&#x069A;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0633;&#x0634;&#x069A;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0633;&#x0634;&#x069A;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0633;&#x0634;&#x069A;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gueh + seen2dotsV + seenTah2smd + seen3dots3dots"> - <test rtl="True"><string><em>&#x06B3;&#x076D;&#x0770;&#x069C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B3;&#x076D;&#x0770;&#x069C;</em></string></test> - <test rtl="True"><string><em>&#x06B3;&#x076D;&#x0770;&#x069C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06B3;&#x076D;&#x0770;&#x069C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + sheen + seenDotDot + seen4dots"> - <test rtl="True"><string><em>&#x06BE;&#x0634;&#x069A;&#x075C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0634;&#x069A;&#x075C;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0634;&#x069A;&#x075C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0634;&#x069A;&#x075C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + seenTah2smd + seen3dots3dots + seen"> - <test rtl="True"><string><em>&#x06C1;&#x0770;&#x069C;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0770;&#x069C;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0770;&#x069C;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0770;&#x069C;&#x0633;</em>&#x0641;</string></test> - </testgroup> - </testgroup> -</ftml> diff --git a/text/test data/letter combinations/test_basic_somediac.pdf b/text/test data/letter combinations/test_basic_somediac.pdf Binary files differ. diff --git a/text/test data/letter combinations/test_basic_somediac.xml b/text/test data/letter combinations/test_basic_somediac.xml @@ -1,6792 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<?xml-stylesheet type="text/xsl" href="ftml.xsl"?> -<ftml version="1.0"> - <head> - <columns comment="15%" label="20%" string="15%"/> - <description>Test of Awami - Basic Forms with Diacritics</description> - <fontscale>200</fontscale> - <fontsrc>local('Awami Nastaliq Beta3'), url(Awami_beta3.ttf)</fontsrc> - <title>Test of Awami - Basic Forms with Diacritics</title> - <styles><style feats=' ' name="default"/></styles> - </head> - <testgroup label="Alef form sequences with Zabar"> - <testgroup label="teh + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Alef form sequences with Zair"> - <testgroup label="teh + zair + alef + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zair + alef + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zair + alef + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zair + alef + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zair + alef + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zair + alef + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zair + alef + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zair + alef + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zair + alef + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zair + alef + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zair + alef + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zair + alef + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zair + alef + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zair + alef + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Beh form sequences with Zabar"> - <testgroup label="teh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Beh form sequences with Zair"> - <testgroup label="teh + zair + beh + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + beh + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + beh + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + beh + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + beh + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + beh + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + beh + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + beh + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + beh + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + beh + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + beh + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + beh + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Teh form sequences with Zabar"> - <testgroup label="teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Teh form sequences with Zair"> - <testgroup label="teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + teh + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + teh + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + teh + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + teh + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + teh + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + teh + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + teh + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + teh + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + teh + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + teh + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + teh + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Jeem form sequences with Zabar"> - <testgroup label="teh + zabar + jeem + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + jeem + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + jeem + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + jeem + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + jeem + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + jeem + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + jeem + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + jeem + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + jeem + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + jeem + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + jeem + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + jeem + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + jeem + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + jeem + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x062C;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x062C;&#x064E;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Jeem form sequences with Zair"> - <testgroup label="teh + zair + jeem + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + jeem + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + jeem + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + jeem + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + jeem + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + jeem + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + jeem + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + jeem + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + jeem + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + jeem + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + jeem + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + jeem + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + jeem + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + jeem + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x062C;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x062C;&#x0650;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Dal form sequences with Zabar"> - <testgroup label="teh + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Dal form sequences with Zair"> - <testgroup label="teh + zair + dal + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zair + dal + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zair + dal + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zair + dal + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zair + dal + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zair + dal + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zair + dal + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zair + dal + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zair + dal + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zair + dal + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zair + dal + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zair + dal + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zair + dal + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zair + dal + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Reh form sequences with Zabar"> - <testgroup label="teh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Reh form sequences with Zair"> - <testgroup label="teh + zair + reh + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zair + reh + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zair + reh + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zair + reh + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zair + reh + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zair + reh + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zair + reh + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zair + reh + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zair + reh + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zair + reh + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zair + reh + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zair + reh + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zair + reh + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zair + reh + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Seen form sequences with Zabar"> - <testgroup label="teh + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Seen form sequences with Zair"> - <testgroup label="teh + zair + seen + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + seen + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + seen + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + seen + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + seen + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + seen + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + seen + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + seen + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + seen + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + seen + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + seen + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + seen + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + seen + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + seen + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Sad form sequences with Zabar"> - <testgroup label="teh + zabar + sad + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + sad + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + sad + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + sad + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + sad + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + sad + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + sad + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + sad + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + sad + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + sad + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + sad + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + sad + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + sad + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + sad + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Sad form sequences with Zair"> - <testgroup label="teh + zair + sad + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + sad + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + sad + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + sad + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + sad + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + sad + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + sad + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + sad + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + sad + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + sad + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + sad + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + sad + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + sad + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + sad + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Tah form sequences with Zabar"> - <testgroup label="teh + zabar + tah + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + tah + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + tah + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + tah + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + tah + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + tah + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + tah + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + tah + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + tah + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + tah + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + tah + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + tah + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + tah + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + tah + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Tah form sequences with Zair"> - <testgroup label="teh + zair + tah + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + tah + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + tah + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + tah + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + tah + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + tah + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + tah + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + tah + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + tah + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + tah + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + tah + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + tah + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + tah + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + tah + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Ain form sequences with Zabar"> - <testgroup label="teh + zabar + ain + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + ain + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + ain + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + ain + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + ain + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + ain + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + ain + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + ain + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + ain + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + ain + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + ain + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + ain + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + ain + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + ain + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Ain form sequences with Zair"> - <testgroup label="teh + zair + ain + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + ain + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + ain + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + ain + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + ain + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + ain + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + ain + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + ain + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + ain + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + ain + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + ain + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + ain + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + ain + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + ain + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Feh form sequences with Zabar"> - <testgroup label="teh + zabar + feh + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + feh + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + feh + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + feh + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + feh + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + feh + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + feh + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + feh + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + feh + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + feh + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + feh + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + feh + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + feh + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + feh + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Feh form sequences with Zair"> - <testgroup label="teh + zair + feh + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + feh + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + feh + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + feh + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + feh + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + feh + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + feh + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + feh + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + feh + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + feh + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + feh + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + feh + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + feh + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + feh + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Qaf form sequences with Zabar"> - <testgroup label="teh + zabar + qaf + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zabar + qaf + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zabar + qaf + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zabar + qaf + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zabar + qaf + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zabar + qaf + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zabar + qaf + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zabar + qaf + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zabar + qaf + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zabar + qaf + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zabar + qaf + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zabar + qaf + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zabar + qaf + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zabar + qaf + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Qaf form sequences with Zair"> - <testgroup label="teh + zair + qaf + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zair + qaf + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zair + qaf + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zair + qaf + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zair + qaf + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zair + qaf + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zair + qaf + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zair + qaf + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zair + qaf + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zair + qaf + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zair + qaf + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zair + qaf + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zair + qaf + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zair + qaf + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Lam form sequences with Zabar"> - <testgroup label="teh + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Lam form sequences with Zair"> - <testgroup label="teh + zair + lam + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + lam + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + lam + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + lam + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + lam + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + lam + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + lam + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + lam + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + lam + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + lam + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + lam + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + lam + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + lam + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + lam + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Meem form sequences with Zabar"> - <testgroup label="teh + zabar + meem + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + meem + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + meem + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + meem + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + meem + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + meem + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + meem + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + meem + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + meem + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + meem + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + meem + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + meem + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + meem + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + meem + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0645;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0645;&#x064E;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Meem form sequences with Zair"> - <testgroup label="teh + zair + meem + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + meem + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + meem + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + meem + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + meem + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + meem + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + meem + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + meem + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + meem + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + meem + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + meem + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + meem + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + meem + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + meem + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0645;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0645;&#x0650;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Alternate meem sequences with Zabar"> - <testgroup label="teh + zabar + meem-alt + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="teh + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="teh + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="teh + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="teh + zabar + meem-alt + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zabar + meem-alt + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zabar + meem-alt + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zabar + meem-alt + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zabar + meem-alt + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zabar + meem-alt + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zabar + meem-alt + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zabar + meem-alt + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zabar + meem-alt + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zabar + meem-alt + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zabar + meem-alt + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zabar + meem-alt + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zabar + meem-alt + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zabar + meem-alt + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zabar + meem-alt + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zabar + meem-alt + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zabar + meem-alt + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zabar + meem-alt + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zabar + meem-alt + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zabar + meem-alt + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0645;&#x064E;&#x0644;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0645;&#x064E;&#x0627;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zabar + meem-alt + zabar + dal + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0645;&#x064E;&#x062F;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Alternate meem sequences with Zair"> - <testgroup label="teh + zair + meem-alt + zair + kaf + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="teh + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="teh + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="teh + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="teh + zair + meem-alt + zair + dal + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zair + meem-alt + zair + kaf + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zair + meem-alt + zair + dal + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zair + meem-alt + zair + kaf + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zair + meem-alt + zair + dal + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zair + meem-alt + zair + kaf + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zair + meem-alt + zair + dal + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zair + meem-alt + zair + kaf + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zair + meem-alt + zair + dal + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zair + meem-alt + zair + kaf + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zair + meem-alt + zair + dal + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zair + meem-alt + zair + kaf + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zair + meem-alt + zair + dal + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zair + meem-alt + zair + kaf + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zair + meem-alt + zair + dal + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zair + meem-alt + zair + kaf + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zair + meem-alt + zair + dal + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zair + meem-alt + zair + kaf + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zair + meem-alt + zair + dal + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zair + meem-alt + zair + kaf + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0645;&#x0650;&#x0644;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0645;&#x0650;&#x0627;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zair + meem-alt + zair + dal + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0645;&#x0650;&#x062F;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Noon form sequences with Zabar"> - <testgroup label="teh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Noon form sequences with Zair"> - <testgroup label="teh + zair + noon + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zair + noon + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zair + noon + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zair + noon + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zair + noon + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zair + noon + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zair + noon + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zair + noon + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zair + noon + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zair + noon + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zair + noon + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zair + noon + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zair + noon + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zair + noon + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Waw form sequences with Zabar"> - <testgroup label="teh + zabar + waw + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zabar + waw + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zabar + waw + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zabar + waw + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zabar + waw + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zabar + waw + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zabar + waw + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zabar + waw + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zabar + waw + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zabar + waw + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zabar + waw + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zabar + waw + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zabar + waw + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zabar + waw + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0648;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Waw form sequences with Zair"> - <testgroup label="teh + zair + waw + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zair + waw + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zair + waw + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zair + waw + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zair + waw + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zair + waw + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zair + waw + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zair + waw + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zair + waw + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zair + waw + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zair + waw + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zair + waw + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zair + waw + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zair + waw + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0648;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Kaf form sequences with Zabar"> - <testgroup label="teh + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + kaf + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x06A9;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x06A9;&#x064E;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Kaf form sequences with Zair"> - <testgroup label="teh + zair + kaf + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + kaf + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + kaf + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + kaf + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + kaf + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + kaf + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + kaf + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + kaf + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + kaf + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + kaf + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + kaf + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + kaf + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + kaf + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + kaf + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x06A9;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x06A9;&#x0650;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Gaf form sequences with Zabar"> - <testgroup label="teh + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + gaf + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x06AF;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x06AF;&#x064E;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Gaf form sequences with Zair"> - <testgroup label="teh + zair + gaf + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + gaf + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + gaf + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + gaf + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + gaf + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + gaf + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + gaf + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + gaf + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + gaf + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + gaf + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + gaf + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + gaf + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + gaf + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + gaf + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x06AF;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x06AF;&#x0650;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Heh-Doachashmee form sequences with Zabar"> - <testgroup label="teh + zabar + hehDo + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + hehDo + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + hehDo + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + hehDo + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + hehDo + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + hehDo + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + hehDo + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + hehDo + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + hehDo + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + hehDo + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + hehDo + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + hehDo + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + hehDo + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + hehDo + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x06BE;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x06BE;&#x064E;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Heh-Doachashmee form sequences with Zair"> - <testgroup label="teh + zair + hehDo + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + hehDo + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + hehDo + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + hehDo + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + hehDo + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + hehDo + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + hehDo + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + hehDo + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + hehDo + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + hehDo + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + hehDo + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + hehDo + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + hehDo + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + hehDo + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x06BE;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x06BE;&#x0650;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Heh-Goal form sequences with Zabar"> - <testgroup label="teh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x06C1;&#x064E;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Heh-Goal form sequences with Zair"> - <testgroup label="teh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x06C1;&#x0650;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Teh-marbuta form sequences with Zabar"> - <testgroup label="teh + zabar + tehMarbuta + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zabar + tehMarbuta + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zabar + tehMarbuta + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zabar + tehMarbuta + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zabar + tehMarbuta + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zabar + tehMarbuta + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zabar + tehMarbuta + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zabar + tehMarbuta + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zabar + tehMarbuta + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zabar + tehMarbuta + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zabar + tehMarbuta + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zabar + tehMarbuta + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zabar + tehMarbuta + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zabar + tehMarbuta + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0629;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Teh-marbuta form sequences with Zair"> - <testgroup label="teh + zair + tehMarbuta + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zair + tehMarbuta + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zair + tehMarbuta + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zair + tehMarbuta + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zair + tehMarbuta + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zair + tehMarbuta + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zair + tehMarbuta + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zair + tehMarbuta + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zair + tehMarbuta + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zair + tehMarbuta + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zair + tehMarbuta + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zair + tehMarbuta + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zair + tehMarbuta + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zair + tehMarbuta + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0629;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Chotiyeh form sequences with Zabar"> - <testgroup label="teh + zabar + chotiyeh + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zabar + chotiyeh + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zabar + chotiyeh + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zabar + chotiyeh + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zabar + chotiyeh + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zabar + chotiyeh + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zabar + chotiyeh + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zabar + chotiyeh + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zabar + chotiyeh + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zabar + chotiyeh + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zabar + chotiyeh + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zabar + chotiyeh + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zabar + chotiyeh + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zabar + chotiyeh + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x06CC;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Chotiyeh form sequences with Zair"> - <testgroup label="teh + zair + chotiyeh + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zair + chotiyeh + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zair + chotiyeh + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zair + chotiyeh + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zair + chotiyeh + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zair + chotiyeh + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zair + chotiyeh + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zair + chotiyeh + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zair + chotiyeh + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zair + chotiyeh + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zair + chotiyeh + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zair + chotiyeh + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zair + chotiyeh + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zair + chotiyeh + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x06CC;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Bariyeh form sequences with Zabar"> - <testgroup label="teh + zabar + bariyeh + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zabar + bariyeh + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zabar + bariyeh + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zabar + bariyeh + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zabar + bariyeh + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zabar + bariyeh + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zabar + bariyeh + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zabar + bariyeh + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zabar + bariyeh + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zabar + bariyeh + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zabar + bariyeh + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zabar + bariyeh + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zabar + bariyeh + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zabar + bariyeh + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x06D2;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Bariyeh form sequences with Zair"> - <testgroup label="teh + zair + bariyeh + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zair + bariyeh + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zair + bariyeh + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zair + bariyeh + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zair + bariyeh + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zair + bariyeh + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zair + bariyeh + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zair + bariyeh + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zair + bariyeh + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zair + bariyeh + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zair + bariyeh + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zair + bariyeh + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zair + bariyeh + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zair + bariyeh + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x06D2;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Multiple Beh sequences with Zabar"> - <testgroup label="teh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="teh + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="teh + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Multiple Beh sequences with Zair"> - <testgroup label="teh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="teh + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="teh + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Seen/Sad + Beh sequences with Zabar"> - <testgroup label="sad + zabar + beh + zabar + sad + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + sad + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar + tah + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + tah + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar + ain + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + ain + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar + feh + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + feh + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar + qaf + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0642;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0642;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + qaf + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0642;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0642;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + sad + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + sad + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0635;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0635;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + tah + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + tah + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0637;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0637;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + ain + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + ain + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0639;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0639;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + feh + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + feh + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0641;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0641;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + qaf + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0642;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0642;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + qaf + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0642;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0642;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0642;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0628;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x062A;&#x064E;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Seen/Sad + Beh sequences with Zair"> - <testgroup label="sad + zair + beh + zair + sad + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + sad + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + beh + zair + tah + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + tah + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + beh + zair + ain + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + ain + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + beh + zair + feh + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + feh + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + beh + zair + qaf + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0642;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0642;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + qaf + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0642;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0642;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + sad + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + sad + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0635;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0635;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + tah + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + tah + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0637;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0637;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + ain + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + ain + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0639;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0639;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + feh + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + feh + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0641;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0641;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + qaf + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0642;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0642;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + qaf + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0642;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0642;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0642;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0628;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x062A;&#x0650;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Beh + Reh sequences with Zabar"> - <testgroup label="teh + zabar + beh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="teh + zabar + teh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zabar + beh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zabar + teh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zabar + beh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zabar + teh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zabar + beh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zabar + teh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zabar + beh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zabar + teh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zabar + beh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zabar + teh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zabar + beh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zabar + teh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zabar + beh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zabar + teh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zabar + beh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zabar + teh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zabar + beh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zabar + teh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zabar + beh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zabar + teh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zabar + beh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0628;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zabar + teh + zabar + reh + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x062A;&#x064E;&#x0631;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Beh + Reh sequences with Zair"> - <testgroup label="teh + zair + beh + zair + reh + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="teh + zair + teh + zair + reh + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zair + beh + zair + reh + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zair + teh + zair + reh + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zair + beh + zair + reh + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zair + teh + zair + reh + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zair + beh + zair + reh + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zair + teh + zair + reh + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zair + beh + zair + reh + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zair + teh + zair + reh + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zair + beh + zair + reh + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zair + teh + zair + reh + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zair + beh + zair + reh + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zair + teh + zair + reh + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zair + beh + zair + reh + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + reh + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zair + beh + zair + reh + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zair + teh + zair + reh + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zair + beh + zair + reh + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zair + teh + zair + reh + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zair + beh + zair + reh + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zair + teh + zair + reh + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zair + beh + zair + reh + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zair + teh + zair + reh + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + reh + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + reh + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zair + beh + zair + reh + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0628;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zair + teh + zair + reh + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x062A;&#x0650;&#x0631;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Beh + Noon sequences with Zabar"> - <testgroup label="teh + zabar + beh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="teh + zabar + teh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zabar + beh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zabar + teh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zabar + beh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zabar + teh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zabar + beh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zabar + teh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zabar + beh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zabar + teh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zabar + beh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zabar + teh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zabar + beh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zabar + teh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zabar + beh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zabar + teh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zabar + beh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zabar + teh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zabar + beh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zabar + teh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zabar + beh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zabar + teh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zabar + beh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0628;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zabar + teh + zabar + noon + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x062A;&#x064E;&#x0646;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Beh + Noon sequences with Zair"> - <testgroup label="teh + zair + beh + zair + noon + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="teh + zair + teh + zair + noon + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zair + beh + zair + noon + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zair + teh + zair + noon + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zair + beh + zair + noon + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zair + teh + zair + noon + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zair + beh + zair + noon + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zair + teh + zair + noon + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zair + beh + zair + noon + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zair + teh + zair + noon + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zair + beh + zair + noon + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zair + teh + zair + noon + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zair + beh + zair + noon + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zair + teh + zair + noon + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zair + beh + zair + noon + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + noon + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zair + beh + zair + noon + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zair + teh + zair + noon + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zair + beh + zair + noon + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zair + teh + zair + noon + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zair + beh + zair + noon + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zair + teh + zair + noon + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zair + beh + zair + noon + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zair + teh + zair + noon + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + noon + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + noon + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zair + beh + zair + noon + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0628;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zair + teh + zair + noon + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x062A;&#x0650;&#x0646;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Beh + Heh-Goal sequences with Zabar"> - <testgroup label="teh + zabar + beh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="teh + zabar + teh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zabar + beh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zabar + teh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zabar + beh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zabar + teh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zabar + beh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zabar + teh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zabar + beh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zabar + teh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zabar + beh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zabar + teh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zabar + beh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zabar + teh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zabar + beh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zabar + teh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zabar + beh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zabar + teh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zabar + beh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zabar + teh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zabar + beh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zabar + teh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zabar + beh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0628;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zabar + teh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x062A;&#x064E;&#x06C1;&#x064E;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Beh + Heh-Goal sequences with Zair"> - <testgroup label="teh + zair + beh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="teh + zair + teh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zair + beh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + zair + teh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zair + beh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + zair + teh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zair + beh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + zair + teh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zair + beh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + zair + teh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zair + beh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + zair + teh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zair + beh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + zair + teh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zair + beh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zair + beh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + zair + teh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zair + beh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + zair + teh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zair + beh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + zair + teh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zair + beh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + zair + teh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zair + beh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0628;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + zair + teh + zair + hehGoal + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x062A;&#x0650;&#x06C1;&#x0650;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Seen + seen + seen sequences with Zabar"> - <testgroup label="teh + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;&#x0633;&#x064E;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Seen + seen + seen sequences with Zair"> - <testgroup label="teh + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062A;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062A;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;&#x0633;&#x0650;</em>&#x0641;</string></test> - </testgroup> - </testgroup> -</ftml> diff --git a/text/test data/letter combinations/test_basicforms.pdf b/text/test data/letter combinations/test_basicforms.pdf Binary files differ. diff --git a/text/test data/letter combinations/test_basicforms.xml b/text/test data/letter combinations/test_basicforms.xml @@ -1,2626 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<?xml-stylesheet type="text/xsl" href="ftml.xsl"?> -<ftml version="1.0"> - <head> - <columns comment="15%" label="20%" string="15%"/> - <description>Test of Awami Basic Base Character Set</description> - <fontscale>200</fontscale> - <fontsrc>local('Awami Nastaliq Beta3'), url(Awami_beta3.ttf)</fontsrc> - <title>Test of Awami Basic Base Character Set</title> - <styles><style feats=' ' name="default"/></styles> - </head> - <testgroup label="Alef form sequences"> - <testgroup label="beh + alef"> - <test rtl="True"><string><em>&#x0628;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + alef"> - <test rtl="True"><string><em>&#x062C;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + alef"> - <test rtl="True"><string><em>&#x0633;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + alef"> - <test rtl="True"><string><em>&#x0635;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + alef"> - <test rtl="True"><string><em>&#x0637;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + alef"> - <test rtl="True"><string><em>&#x0639;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + alef"> - <test rtl="True"><string><em>&#x0641;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + alef"> - <test rtl="True"><string><em>&#x0644;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + alef"> - <test rtl="True"><string><em>&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + alef"> - <test rtl="True"><string><em>&#x06A9;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + alef"> - <test rtl="True"><string><em>&#x06AF;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + alef"> - <test rtl="True"><string><em>&#x06BE;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + alef"> - <test rtl="True"><string><em>&#x06C1;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Beh form sequences"> - <testgroup label="beh + beh"> - <test rtl="True"><string><em>&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + beh"> - <test rtl="True"><string><em>&#x062C;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + beh"> - <test rtl="True"><string><em>&#x0633;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + beh"> - <test rtl="True"><string><em>&#x0635;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + beh"> - <test rtl="True"><string><em>&#x0637;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + beh"> - <test rtl="True"><string><em>&#x0639;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + beh"> - <test rtl="True"><string><em>&#x0641;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + beh"> - <test rtl="True"><string><em>&#x0644;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + beh"> - <test rtl="True"><string><em>&#x0645;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + beh"> - <test rtl="True"><string><em>&#x06A9;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + beh"> - <test rtl="True"><string><em>&#x06AF;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + beh"> - <test rtl="True"><string><em>&#x06BE;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + beh"> - <test rtl="True"><string><em>&#x06C1;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0628;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Jeem form sequences"> - <testgroup label="beh + jeem"> - <test rtl="True"><string><em>&#x0628;&#x062C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x062C;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x062C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x062C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + jeem"> - <test rtl="True"><string><em>&#x062C;&#x062C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x062C;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x062C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x062C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + jeem"> - <test rtl="True"><string><em>&#x0633;&#x062C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x062C;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x062C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x062C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + jeem"> - <test rtl="True"><string><em>&#x0635;&#x062C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x062C;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x062C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x062C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + jeem"> - <test rtl="True"><string><em>&#x0637;&#x062C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x062C;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x062C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x062C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + jeem"> - <test rtl="True"><string><em>&#x0639;&#x062C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x062C;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x062C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x062C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + jeem"> - <test rtl="True"><string><em>&#x0641;&#x062C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x062C;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x062C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x062C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + jeem"> - <test rtl="True"><string><em>&#x0644;&#x062C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x062C;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x062C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x062C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + jeem"> - <test rtl="True"><string><em>&#x0645;&#x062C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x062C;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x062C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x062C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + jeem"> - <test rtl="True"><string><em>&#x06A9;&#x062C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x062C;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x062C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x062C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + jeem"> - <test rtl="True"><string><em>&#x06AF;&#x062C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x062C;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x062C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x062C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + jeem"> - <test rtl="True"><string><em>&#x06BE;&#x062C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x062C;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x062C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x062C;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + jeem"> - <test rtl="True"><string><em>&#x06C1;&#x062C;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x062C;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x062C;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x062C;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Dal form sequences"> - <testgroup label="beh + dal"> - <test rtl="True"><string><em>&#x0628;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + dal"> - <test rtl="True"><string><em>&#x062C;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + dal"> - <test rtl="True"><string><em>&#x0633;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + dal"> - <test rtl="True"><string><em>&#x0635;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + dal"> - <test rtl="True"><string><em>&#x0637;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + dal"> - <test rtl="True"><string><em>&#x0639;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + dal"> - <test rtl="True"><string><em>&#x0641;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + dal"> - <test rtl="True"><string><em>&#x0644;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + dal"> - <test rtl="True"><string><em>&#x0645;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + dal"> - <test rtl="True"><string><em>&#x06A9;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + dal"> - <test rtl="True"><string><em>&#x06AF;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + dal"> - <test rtl="True"><string><em>&#x06BE;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + dal"> - <test rtl="True"><string><em>&#x06C1;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Reh form sequences"> - <testgroup label="beh + reh"> - <test rtl="True"><string><em>&#x0628;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + reh"> - <test rtl="True"><string><em>&#x062C;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + reh"> - <test rtl="True"><string><em>&#x0633;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + reh"> - <test rtl="True"><string><em>&#x0635;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + reh"> - <test rtl="True"><string><em>&#x0637;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + reh"> - <test rtl="True"><string><em>&#x0639;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + reh"> - <test rtl="True"><string><em>&#x0641;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + reh"> - <test rtl="True"><string><em>&#x0644;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + reh"> - <test rtl="True"><string><em>&#x0645;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + reh"> - <test rtl="True"><string><em>&#x06A9;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + reh"> - <test rtl="True"><string><em>&#x06AF;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + reh"> - <test rtl="True"><string><em>&#x06BE;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + reh"> - <test rtl="True"><string><em>&#x06C1;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Seen form sequences"> - <testgroup label="beh + seen"> - <test rtl="True"><string><em>&#x0628;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + seen"> - <test rtl="True"><string><em>&#x062C;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + seen"> - <test rtl="True"><string><em>&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + seen"> - <test rtl="True"><string><em>&#x0635;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + seen"> - <test rtl="True"><string><em>&#x0637;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + seen"> - <test rtl="True"><string><em>&#x0639;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + seen"> - <test rtl="True"><string><em>&#x0641;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + seen"> - <test rtl="True"><string><em>&#x0644;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + seen"> - <test rtl="True"><string><em>&#x0645;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + seen"> - <test rtl="True"><string><em>&#x06A9;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + seen"> - <test rtl="True"><string><em>&#x06AF;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + seen"> - <test rtl="True"><string><em>&#x06BE;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + seen"> - <test rtl="True"><string><em>&#x06C1;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0633;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Sad form sequences"> - <testgroup label="beh + sad"> - <test rtl="True"><string><em>&#x0628;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0635;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + sad"> - <test rtl="True"><string><em>&#x062C;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0635;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + sad"> - <test rtl="True"><string><em>&#x0633;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0635;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + sad"> - <test rtl="True"><string><em>&#x0635;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0635;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + sad"> - <test rtl="True"><string><em>&#x0637;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0635;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + sad"> - <test rtl="True"><string><em>&#x0639;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0635;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + sad"> - <test rtl="True"><string><em>&#x0641;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0635;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + sad"> - <test rtl="True"><string><em>&#x0644;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0635;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + sad"> - <test rtl="True"><string><em>&#x0645;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0635;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + sad"> - <test rtl="True"><string><em>&#x06A9;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0635;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + sad"> - <test rtl="True"><string><em>&#x06AF;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0635;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + sad"> - <test rtl="True"><string><em>&#x06BE;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0635;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + sad"> - <test rtl="True"><string><em>&#x06C1;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0635;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Tah form sequences"> - <testgroup label="beh + tah"> - <test rtl="True"><string><em>&#x0628;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + tah"> - <test rtl="True"><string><em>&#x062C;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + tah"> - <test rtl="True"><string><em>&#x0633;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + tah"> - <test rtl="True"><string><em>&#x0635;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + tah"> - <test rtl="True"><string><em>&#x0637;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + tah"> - <test rtl="True"><string><em>&#x0639;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + tah"> - <test rtl="True"><string><em>&#x0641;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + tah"> - <test rtl="True"><string><em>&#x0644;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + tah"> - <test rtl="True"><string><em>&#x0645;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + tah"> - <test rtl="True"><string><em>&#x06A9;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + tah"> - <test rtl="True"><string><em>&#x06AF;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + tah"> - <test rtl="True"><string><em>&#x06BE;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + tah"> - <test rtl="True"><string><em>&#x06C1;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0637;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Ain form sequences"> - <testgroup label="beh + ain"> - <test rtl="True"><string><em>&#x0628;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + ain"> - <test rtl="True"><string><em>&#x062C;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + ain"> - <test rtl="True"><string><em>&#x0633;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + ain"> - <test rtl="True"><string><em>&#x0635;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + ain"> - <test rtl="True"><string><em>&#x0637;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + ain"> - <test rtl="True"><string><em>&#x0639;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + ain"> - <test rtl="True"><string><em>&#x0641;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + ain"> - <test rtl="True"><string><em>&#x0644;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + ain"> - <test rtl="True"><string><em>&#x0645;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + ain"> - <test rtl="True"><string><em>&#x06A9;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + ain"> - <test rtl="True"><string><em>&#x06AF;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + ain"> - <test rtl="True"><string><em>&#x06BE;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + ain"> - <test rtl="True"><string><em>&#x06C1;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0639;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Feh form sequences"> - <testgroup label="beh + feh"> - <test rtl="True"><string><em>&#x0628;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + feh"> - <test rtl="True"><string><em>&#x062C;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + feh"> - <test rtl="True"><string><em>&#x0633;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + feh"> - <test rtl="True"><string><em>&#x0635;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + feh"> - <test rtl="True"><string><em>&#x0637;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + feh"> - <test rtl="True"><string><em>&#x0639;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + feh"> - <test rtl="True"><string><em>&#x0641;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + feh"> - <test rtl="True"><string><em>&#x0644;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + feh"> - <test rtl="True"><string><em>&#x0645;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + feh"> - <test rtl="True"><string><em>&#x06A9;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + feh"> - <test rtl="True"><string><em>&#x06AF;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + feh"> - <test rtl="True"><string><em>&#x06BE;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + feh"> - <test rtl="True"><string><em>&#x06C1;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0641;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Qaf form sequences"> - <testgroup label="beh + qaf"> - <test rtl="True"><string><em>&#x0628;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + qaf"> - <test rtl="True"><string><em>&#x062C;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + qaf"> - <test rtl="True"><string><em>&#x0633;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + qaf"> - <test rtl="True"><string><em>&#x0635;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + qaf"> - <test rtl="True"><string><em>&#x0637;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + qaf"> - <test rtl="True"><string><em>&#x0639;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + qaf"> - <test rtl="True"><string><em>&#x0641;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + qaf"> - <test rtl="True"><string><em>&#x0644;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + qaf"> - <test rtl="True"><string><em>&#x0645;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + qaf"> - <test rtl="True"><string><em>&#x06A9;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + qaf"> - <test rtl="True"><string><em>&#x06AF;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + qaf"> - <test rtl="True"><string><em>&#x06BE;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + qaf"> - <test rtl="True"><string><em>&#x06C1;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0642;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Lam form sequences"> - <testgroup label="beh + lam"> - <test rtl="True"><string><em>&#x0628;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + lam"> - <test rtl="True"><string><em>&#x062C;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + lam"> - <test rtl="True"><string><em>&#x0633;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + lam"> - <test rtl="True"><string><em>&#x0635;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + lam"> - <test rtl="True"><string><em>&#x0637;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + lam"> - <test rtl="True"><string><em>&#x0639;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + lam"> - <test rtl="True"><string><em>&#x0641;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + lam"> - <test rtl="True"><string><em>&#x0644;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + lam"> - <test rtl="True"><string><em>&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + lam"> - <test rtl="True"><string><em>&#x06A9;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + lam"> - <test rtl="True"><string><em>&#x06AF;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + lam"> - <test rtl="True"><string><em>&#x06BE;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + lam"> - <test rtl="True"><string><em>&#x06C1;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0644;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Meem form sequences"> - <testgroup label="beh + meem"> - <test rtl="True"><string><em>&#x0628;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + meem"> - <test rtl="True"><string><em>&#x062C;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + meem"> - <test rtl="True"><string><em>&#x0633;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + meem"> - <test rtl="True"><string><em>&#x0635;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + meem"> - <test rtl="True"><string><em>&#x0637;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + meem"> - <test rtl="True"><string><em>&#x0639;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + meem"> - <test rtl="True"><string><em>&#x0641;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + meem"> - <test rtl="True"><string><em>&#x0644;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + meem"> - <test rtl="True"><string><em>&#x0645;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + meem"> - <test rtl="True"><string><em>&#x06A9;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + meem"> - <test rtl="True"><string><em>&#x06AF;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + meem"> - <test rtl="True"><string><em>&#x06BE;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0645;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + meem"> - <test rtl="True"><string><em>&#x06C1;&#x0645;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0645;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0645;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0645;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Alternate meem sequences"> - <testgroup label="beh + meem-alt + kaf"> - <test rtl="True"><string><em>&#x0628;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0645;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0645;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + meem-alt + gaf"> - <test rtl="True"><string><em>&#x0628;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0645;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0645;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + meem-alt + lam"> - <test rtl="True"><string><em>&#x0628;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0645;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0645;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + meem-alt + alef"> - <test rtl="True"><string><em>&#x0628;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="beh + meem-alt + dal"> - <test rtl="True"><string><em>&#x0628;&#x0645;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0645;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + meem-alt + kaf"> - <test rtl="True"><string><em>&#x062C;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0645;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0645;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + meem-alt + gaf"> - <test rtl="True"><string><em>&#x062C;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0645;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0645;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + meem-alt + lam"> - <test rtl="True"><string><em>&#x062C;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0645;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0645;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + meem-alt + alef"> - <test rtl="True"><string><em>&#x062C;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + meem-alt + dal"> - <test rtl="True"><string><em>&#x062C;&#x0645;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0645;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + meem-alt + kaf"> - <test rtl="True"><string><em>&#x0633;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0645;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0645;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + meem-alt + gaf"> - <test rtl="True"><string><em>&#x0633;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0645;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0645;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + meem-alt + lam"> - <test rtl="True"><string><em>&#x0633;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0645;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0645;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + meem-alt + alef"> - <test rtl="True"><string><em>&#x0633;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + meem-alt + dal"> - <test rtl="True"><string><em>&#x0633;&#x0645;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0645;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + meem-alt + kaf"> - <test rtl="True"><string><em>&#x0635;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0645;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0645;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + meem-alt + gaf"> - <test rtl="True"><string><em>&#x0635;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0645;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0645;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + meem-alt + lam"> - <test rtl="True"><string><em>&#x0635;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0645;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0645;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + meem-alt + alef"> - <test rtl="True"><string><em>&#x0635;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + meem-alt + dal"> - <test rtl="True"><string><em>&#x0635;&#x0645;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0645;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + meem-alt + kaf"> - <test rtl="True"><string><em>&#x0637;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0645;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0645;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + meem-alt + gaf"> - <test rtl="True"><string><em>&#x0637;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0645;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0645;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + meem-alt + lam"> - <test rtl="True"><string><em>&#x0637;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0645;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0645;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + meem-alt + alef"> - <test rtl="True"><string><em>&#x0637;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + meem-alt + dal"> - <test rtl="True"><string><em>&#x0637;&#x0645;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0645;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + meem-alt + kaf"> - <test rtl="True"><string><em>&#x0639;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0645;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0645;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + meem-alt + gaf"> - <test rtl="True"><string><em>&#x0639;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0645;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0645;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + meem-alt + lam"> - <test rtl="True"><string><em>&#x0639;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0645;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0645;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + meem-alt + alef"> - <test rtl="True"><string><em>&#x0639;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + meem-alt + dal"> - <test rtl="True"><string><em>&#x0639;&#x0645;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0645;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + meem-alt + kaf"> - <test rtl="True"><string><em>&#x0641;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0645;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0645;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + meem-alt + gaf"> - <test rtl="True"><string><em>&#x0641;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0645;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0645;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + meem-alt + lam"> - <test rtl="True"><string><em>&#x0641;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0645;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0645;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + meem-alt + alef"> - <test rtl="True"><string><em>&#x0641;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + meem-alt + dal"> - <test rtl="True"><string><em>&#x0641;&#x0645;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0645;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + meem-alt + kaf"> - <test rtl="True"><string><em>&#x0645;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0645;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0645;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + meem-alt + gaf"> - <test rtl="True"><string><em>&#x0645;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0645;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0645;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + meem-alt + lam"> - <test rtl="True"><string><em>&#x0645;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0645;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0645;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + meem-alt + alef"> - <test rtl="True"><string><em>&#x0645;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + meem-alt + dal"> - <test rtl="True"><string><em>&#x0645;&#x0645;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0645;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + meem-alt + kaf"> - <test rtl="True"><string><em>&#x06BE;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0645;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0645;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + meem-alt + gaf"> - <test rtl="True"><string><em>&#x06BE;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0645;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0645;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + meem-alt + lam"> - <test rtl="True"><string><em>&#x06BE;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0645;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0645;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + meem-alt + alef"> - <test rtl="True"><string><em>&#x06BE;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + meem-alt + dal"> - <test rtl="True"><string><em>&#x06BE;&#x0645;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0645;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + meem-alt + kaf"> - <test rtl="True"><string><em>&#x06C1;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0645;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0645;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + meem-alt + gaf"> - <test rtl="True"><string><em>&#x06C1;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0645;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0645;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + meem-alt + lam"> - <test rtl="True"><string><em>&#x06C1;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0645;&#x0644;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0645;&#x0644;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0645;&#x0644;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + meem-alt + alef"> - <test rtl="True"><string><em>&#x06C1;&#x0645;&#x0627;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0645;&#x0627;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + meem-alt + dal"> - <test rtl="True"><string><em>&#x06C1;&#x0645;&#x062F;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0645;&#x062F;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Noon form sequences"> - <testgroup label="beh + noon"> - <test rtl="True"><string><em>&#x0628;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + noon"> - <test rtl="True"><string><em>&#x062C;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + noon"> - <test rtl="True"><string><em>&#x0633;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + noon"> - <test rtl="True"><string><em>&#x0635;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + noon"> - <test rtl="True"><string><em>&#x0637;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + noon"> - <test rtl="True"><string><em>&#x0639;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + noon"> - <test rtl="True"><string><em>&#x0641;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + noon"> - <test rtl="True"><string><em>&#x0644;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + noon"> - <test rtl="True"><string><em>&#x0645;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + noon"> - <test rtl="True"><string><em>&#x06A9;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + noon"> - <test rtl="True"><string><em>&#x06AF;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + noon"> - <test rtl="True"><string><em>&#x06BE;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + noon"> - <test rtl="True"><string><em>&#x06C1;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Waw form sequences"> - <testgroup label="beh + waw"> - <test rtl="True"><string><em>&#x0628;&#x0648;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0648;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + waw"> - <test rtl="True"><string><em>&#x062C;&#x0648;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0648;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + waw"> - <test rtl="True"><string><em>&#x0633;&#x0648;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0648;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + waw"> - <test rtl="True"><string><em>&#x0635;&#x0648;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0648;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + waw"> - <test rtl="True"><string><em>&#x0637;&#x0648;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0648;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + waw"> - <test rtl="True"><string><em>&#x0639;&#x0648;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0648;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + waw"> - <test rtl="True"><string><em>&#x0641;&#x0648;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0648;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + waw"> - <test rtl="True"><string><em>&#x0644;&#x0648;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0648;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + waw"> - <test rtl="True"><string><em>&#x0645;&#x0648;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0648;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + waw"> - <test rtl="True"><string><em>&#x06A9;&#x0648;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0648;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + waw"> - <test rtl="True"><string><em>&#x06AF;&#x0648;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0648;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + waw"> - <test rtl="True"><string><em>&#x06BE;&#x0648;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0648;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + waw"> - <test rtl="True"><string><em>&#x06C1;&#x0648;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0648;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Kaf form sequences"> - <testgroup label="beh + kaf"> - <test rtl="True"><string><em>&#x0628;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + kaf"> - <test rtl="True"><string><em>&#x062C;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + kaf"> - <test rtl="True"><string><em>&#x0633;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + kaf"> - <test rtl="True"><string><em>&#x0635;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + kaf"> - <test rtl="True"><string><em>&#x0637;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + kaf"> - <test rtl="True"><string><em>&#x0639;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + kaf"> - <test rtl="True"><string><em>&#x0641;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + kaf"> - <test rtl="True"><string><em>&#x0644;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + kaf"> - <test rtl="True"><string><em>&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + kaf"> - <test rtl="True"><string><em>&#x06A9;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + kaf"> - <test rtl="True"><string><em>&#x06AF;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + kaf"> - <test rtl="True"><string><em>&#x06BE;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + kaf"> - <test rtl="True"><string><em>&#x06C1;&#x06A9;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x06A9;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x06A9;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x06A9;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Gaf form sequences"> - <testgroup label="beh + gaf"> - <test rtl="True"><string><em>&#x0628;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + gaf"> - <test rtl="True"><string><em>&#x062C;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + gaf"> - <test rtl="True"><string><em>&#x0633;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + gaf"> - <test rtl="True"><string><em>&#x0635;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + gaf"> - <test rtl="True"><string><em>&#x0637;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + gaf"> - <test rtl="True"><string><em>&#x0639;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + gaf"> - <test rtl="True"><string><em>&#x0641;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + gaf"> - <test rtl="True"><string><em>&#x0644;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + gaf"> - <test rtl="True"><string><em>&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + gaf"> - <test rtl="True"><string><em>&#x06A9;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + gaf"> - <test rtl="True"><string><em>&#x06AF;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + gaf"> - <test rtl="True"><string><em>&#x06BE;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + gaf"> - <test rtl="True"><string><em>&#x06C1;&#x06AF;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x06AF;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x06AF;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x06AF;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Heh-Doachashmee form sequences"> - <testgroup label="beh + hehDo"> - <test rtl="True"><string><em>&#x0628;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + hehDo"> - <test rtl="True"><string><em>&#x062C;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + hehDo"> - <test rtl="True"><string><em>&#x0633;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + hehDo"> - <test rtl="True"><string><em>&#x0635;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + hehDo"> - <test rtl="True"><string><em>&#x0637;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + hehDo"> - <test rtl="True"><string><em>&#x0639;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + hehDo"> - <test rtl="True"><string><em>&#x0641;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + hehDo"> - <test rtl="True"><string><em>&#x0644;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + hehDo"> - <test rtl="True"><string><em>&#x0645;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + hehDo"> - <test rtl="True"><string><em>&#x06A9;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + hehDo"> - <test rtl="True"><string><em>&#x06AF;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + hehDo"> - <test rtl="True"><string><em>&#x06BE;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + hehDo"> - <test rtl="True"><string><em>&#x06C1;&#x06BE;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x06BE;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x06BE;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x06BE;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Heh-Goal form sequences"> - <testgroup label="beh + hehGoal"> - <test rtl="True"><string><em>&#x0628;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x06C1;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x06C1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x06C1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + hehGoal"> - <test rtl="True"><string><em>&#x062C;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x06C1;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x06C1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x06C1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + hehGoal"> - <test rtl="True"><string><em>&#x0633;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x06C1;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x06C1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x06C1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + hehGoal"> - <test rtl="True"><string><em>&#x0635;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x06C1;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x06C1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x06C1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + hehGoal"> - <test rtl="True"><string><em>&#x0637;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x06C1;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x06C1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x06C1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + hehGoal"> - <test rtl="True"><string><em>&#x0639;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x06C1;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x06C1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x06C1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + hehGoal"> - <test rtl="True"><string><em>&#x0641;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x06C1;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x06C1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x06C1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + hehGoal"> - <test rtl="True"><string><em>&#x0644;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x06C1;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x06C1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x06C1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + hehGoal"> - <test rtl="True"><string><em>&#x0645;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06C1;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x06C1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06C1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + hehGoal"> - <test rtl="True"><string><em>&#x06A9;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x06C1;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x06C1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x06C1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + hehGoal"> - <test rtl="True"><string><em>&#x06AF;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x06C1;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x06C1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x06C1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + hehGoal"> - <test rtl="True"><string><em>&#x06BE;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06C1;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x06C1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06C1;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + hehGoal"> - <test rtl="True"><string><em>&#x06C1;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x06C1;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x06C1;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x06C1;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Teh-marbuta form sequences"> - <testgroup label="beh + tehMarbuta"> - <test rtl="True"><string><em>&#x0628;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + tehMarbuta"> - <test rtl="True"><string><em>&#x062C;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + tehMarbuta"> - <test rtl="True"><string><em>&#x0633;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + tehMarbuta"> - <test rtl="True"><string><em>&#x0635;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + tehMarbuta"> - <test rtl="True"><string><em>&#x0637;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + tehMarbuta"> - <test rtl="True"><string><em>&#x0639;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + tehMarbuta"> - <test rtl="True"><string><em>&#x0641;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + tehMarbuta"> - <test rtl="True"><string><em>&#x0644;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + tehMarbuta"> - <test rtl="True"><string><em>&#x0645;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + tehMarbuta"> - <test rtl="True"><string><em>&#x06A9;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + tehMarbuta"> - <test rtl="True"><string><em>&#x06AF;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + tehMarbuta"> - <test rtl="True"><string><em>&#x06BE;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + tehMarbuta"> - <test rtl="True"><string><em>&#x06C1;&#x0629;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0629;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Chotiyeh form sequences"> - <testgroup label="beh + chotiyeh"> - <test rtl="True"><string><em>&#x0628;&#x06CC;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x06CC;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + chotiyeh"> - <test rtl="True"><string><em>&#x062C;&#x06CC;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x06CC;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + chotiyeh"> - <test rtl="True"><string><em>&#x0633;&#x06CC;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x06CC;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + chotiyeh"> - <test rtl="True"><string><em>&#x0635;&#x06CC;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x06CC;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + chotiyeh"> - <test rtl="True"><string><em>&#x0637;&#x06CC;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x06CC;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + chotiyeh"> - <test rtl="True"><string><em>&#x0639;&#x06CC;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x06CC;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + chotiyeh"> - <test rtl="True"><string><em>&#x0641;&#x06CC;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x06CC;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + chotiyeh"> - <test rtl="True"><string><em>&#x0644;&#x06CC;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x06CC;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + chotiyeh"> - <test rtl="True"><string><em>&#x0645;&#x06CC;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06CC;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + chotiyeh"> - <test rtl="True"><string><em>&#x06A9;&#x06CC;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x06CC;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + chotiyeh"> - <test rtl="True"><string><em>&#x06AF;&#x06CC;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x06CC;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + chotiyeh"> - <test rtl="True"><string><em>&#x06BE;&#x06CC;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06CC;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + chotiyeh"> - <test rtl="True"><string><em>&#x06C1;&#x06CC;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x06CC;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Bariyeh form sequences"> - <testgroup label="beh + bariyeh"> - <test rtl="True"><string><em>&#x0628;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + bariyeh"> - <test rtl="True"><string><em>&#x062C;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + bariyeh"> - <test rtl="True"><string><em>&#x0633;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + bariyeh"> - <test rtl="True"><string><em>&#x0635;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + bariyeh"> - <test rtl="True"><string><em>&#x0637;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + bariyeh"> - <test rtl="True"><string><em>&#x0639;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + bariyeh"> - <test rtl="True"><string><em>&#x0641;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + bariyeh"> - <test rtl="True"><string><em>&#x0644;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + bariyeh"> - <test rtl="True"><string><em>&#x0645;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + bariyeh"> - <test rtl="True"><string><em>&#x06A9;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + bariyeh"> - <test rtl="True"><string><em>&#x06AF;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + bariyeh"> - <test rtl="True"><string><em>&#x06BE;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + bariyeh"> - <test rtl="True"><string><em>&#x06C1;&#x06D2;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x06D2;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Multiple Beh sequences"> - <testgroup label="beh + beh + beh"> - <test rtl="True"><string><em>&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="beh + beh + beh + beh"> - <test rtl="True"><string><em>&#x0628;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + beh + beh"> - <test rtl="True"><string><em>&#x062C;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + beh + beh + beh"> - <test rtl="True"><string><em>&#x062C;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + beh + beh"> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + beh + beh + beh"> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + beh + beh"> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + beh + beh + beh"> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + beh + beh"> - <test rtl="True"><string><em>&#x0637;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + beh + beh + beh"> - <test rtl="True"><string><em>&#x0637;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + beh + beh"> - <test rtl="True"><string><em>&#x0639;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + beh + beh + beh"> - <test rtl="True"><string><em>&#x0639;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + beh + beh"> - <test rtl="True"><string><em>&#x0641;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + beh + beh + beh"> - <test rtl="True"><string><em>&#x0641;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + beh + beh"> - <test rtl="True"><string><em>&#x0644;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + beh + beh + beh"> - <test rtl="True"><string><em>&#x0644;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + beh + beh"> - <test rtl="True"><string><em>&#x0645;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + beh + beh + beh"> - <test rtl="True"><string><em>&#x0645;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + beh + beh"> - <test rtl="True"><string><em>&#x06A9;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + beh + beh + beh"> - <test rtl="True"><string><em>&#x06A9;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + beh + beh"> - <test rtl="True"><string><em>&#x06AF;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + beh + beh + beh"> - <test rtl="True"><string><em>&#x06AF;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + beh + beh"> - <test rtl="True"><string><em>&#x06BE;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + beh + beh + beh"> - <test rtl="True"><string><em>&#x06BE;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + beh + beh"> - <test rtl="True"><string><em>&#x06C1;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + beh + beh + beh"> - <test rtl="True"><string><em>&#x06C1;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0628;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0628;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Seen/Sad + Beh sequences"> - <testgroup label="seen + beh + sad"> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x0635;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + beh + tah"> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + beh + ain"> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + beh + feh"> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + beh + qaf"> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x0642;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x0642;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x0642;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + beh + beh"> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + beh + sad"> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0635;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0635;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0635;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0635;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + beh + tah"> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0637;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0637;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0637;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0637;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + beh + ain"> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0639;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0639;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0639;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0639;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + beh + feh"> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0641;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0641;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0641;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0641;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + beh + qaf"> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0642;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0642;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0642;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0642;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + beh + beh"> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0628;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0628;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0628;</em>&#x0641;</string></test> - </testgroup> - </testgroup> - <testgroup label="Beh + Reh sequences"> - <testgroup label="beh + beh + reh"> - <test rtl="True"><string><em>&#x0628;&#x0628;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0628;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + beh + reh"> - <test rtl="True"><string><em>&#x062C;&#x0628;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0628;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + beh + reh"> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + beh + reh"> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + beh + reh"> - <test rtl="True"><string><em>&#x0637;&#x0628;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0628;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + beh + reh"> - <test rtl="True"><string><em>&#x0639;&#x0628;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0628;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + beh + reh"> - <test rtl="True"><string><em>&#x0641;&#x0628;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0628;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + beh + reh"> - <test rtl="True"><string><em>&#x0644;&#x0628;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0628;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + beh + reh"> - <test rtl="True"><string><em>&#x0645;&#x0628;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0628;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + beh + reh"> - <test rtl="True"><string><em>&#x06A9;&#x0628;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0628;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + beh + reh"> - <test rtl="True"><string><em>&#x06AF;&#x0628;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0628;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + beh + reh"> - <test rtl="True"><string><em>&#x06BE;&#x0628;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0628;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + beh + reh"> - <test rtl="True"><string><em>&#x06C1;&#x0628;&#x0631;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0628;&#x0631;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Beh + Noon sequences"> - <testgroup label="beh + beh + noon"> - <test rtl="True"><string><em>&#x0628;&#x0628;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0628;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + beh + noon"> - <test rtl="True"><string><em>&#x062C;&#x0628;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0628;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + beh + noon"> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + beh + noon"> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + beh + noon"> - <test rtl="True"><string><em>&#x0637;&#x0628;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0628;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + beh + noon"> - <test rtl="True"><string><em>&#x0639;&#x0628;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0628;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + beh + noon"> - <test rtl="True"><string><em>&#x0641;&#x0628;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0628;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + beh + noon"> - <test rtl="True"><string><em>&#x0644;&#x0628;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0628;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + beh + noon"> - <test rtl="True"><string><em>&#x0645;&#x0628;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0628;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + beh + noon"> - <test rtl="True"><string><em>&#x06A9;&#x0628;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0628;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + beh + noon"> - <test rtl="True"><string><em>&#x06AF;&#x0628;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0628;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + beh + noon"> - <test rtl="True"><string><em>&#x06BE;&#x0628;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0628;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + beh + noon"> - <test rtl="True"><string><em>&#x06C1;&#x0628;&#x0646;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0628;&#x0646;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Beh + Heh-Goal sequences"> - <testgroup label="beh + beh + hehGoal"> - <test rtl="True"><string><em>&#x0628;&#x0628;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0628;&#x06C1;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="jeem + beh + hehGoal"> - <test rtl="True"><string><em>&#x062C;&#x0628;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0628;&#x06C1;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="seen + beh + hehGoal"> - <test rtl="True"><string><em>&#x0633;&#x0628;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0628;&#x06C1;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="sad + beh + hehGoal"> - <test rtl="True"><string><em>&#x0635;&#x0628;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0628;&#x06C1;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="tah + beh + hehGoal"> - <test rtl="True"><string><em>&#x0637;&#x0628;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0628;&#x06C1;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="ain + beh + hehGoal"> - <test rtl="True"><string><em>&#x0639;&#x0628;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0628;&#x06C1;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="feh + beh + hehGoal"> - <test rtl="True"><string><em>&#x0641;&#x0628;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0628;&#x06C1;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="lam + beh + hehGoal"> - <test rtl="True"><string><em>&#x0644;&#x0628;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0628;&#x06C1;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="meem + beh + hehGoal"> - <test rtl="True"><string><em>&#x0645;&#x0628;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0628;&#x06C1;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="kaf + beh + hehGoal"> - <test rtl="True"><string><em>&#x06A9;&#x0628;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0628;&#x06C1;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="gaf + beh + hehGoal"> - <test rtl="True"><string><em>&#x06AF;&#x0628;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0628;&#x06C1;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehDo + beh + hehGoal"> - <test rtl="True"><string><em>&#x06BE;&#x0628;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0628;&#x06C1;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - <testgroup label="hehGoal + beh + hehGoal"> - <test rtl="True"><string><em>&#x06C1;&#x0628;&#x06C1;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0628;&#x06C1;</em></string></test> - <test rtl="True" background="#cfcfcf"><string/></test> - <test rtl="True" background="#cfcfcf"><string/></test> - </testgroup> - </testgroup> - <testgroup label="Seen + seen + seen sequences"> - <testgroup label="beh + seen + seen + seen"> - <test rtl="True"><string><em>&#x0628;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0628;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0628;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="jeem + seen + seen + seen"> - <test rtl="True"><string><em>&#x062C;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x062C;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x062C;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="seen + seen + seen + seen"> - <test rtl="True"><string><em>&#x0633;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0633;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0633;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="sad + seen + seen + seen"> - <test rtl="True"><string><em>&#x0635;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0635;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0635;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="tah + seen + seen + seen"> - <test rtl="True"><string><em>&#x0637;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0637;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0637;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="ain + seen + seen + seen"> - <test rtl="True"><string><em>&#x0639;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0639;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0639;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="feh + seen + seen + seen"> - <test rtl="True"><string><em>&#x0641;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0641;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0641;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="lam + seen + seen + seen"> - <test rtl="True"><string><em>&#x0644;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0644;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0644;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="meem + seen + seen + seen"> - <test rtl="True"><string><em>&#x0645;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x0645;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x0645;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="kaf + seen + seen + seen"> - <test rtl="True"><string><em>&#x06A9;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x06A9;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06A9;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="gaf + seen + seen + seen"> - <test rtl="True"><string><em>&#x06AF;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x06AF;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06AF;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehDo + seen + seen + seen"> - <test rtl="True"><string><em>&#x06BE;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x06BE;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06BE;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - </testgroup> - <testgroup label="hehGoal + seen + seen + seen"> - <test rtl="True"><string><em>&#x06C1;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0633;&#x0633;&#x0633;</em></string></test> - <test rtl="True"><string><em>&#x06C1;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - <test rtl="True"><string>&#x0644;<em>&#x06C1;&#x0633;&#x0633;&#x0633;</em>&#x0641;</string></test> - </testgroup> - </testgroup> -</ftml>